* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-orange: #F7931E;   /* Logo Orange */
    --primary-blue: #243E8F;     /* Logo Blue */
    --primary-cyan: #2f6db3;     /* Softer supporting blue */
    --light-orange: #fff4e6;
    --light-blue: #eef2fb;
    --light-cyan: #f3f7fd;
    --dark-gray: #111827;
    --light-gray: #f8fafc;
    --text-primary: #1f2937;
    --text-secondary: #4b5563;
    --border-color: #e5e7eb;
    --success-green: #10b981;
    --warning-yellow: #f59e0b;
}

/* Social Icons */
.social-icons {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
}
.social-icons li {
    display: inline-block;
}
.social-icons a {
    color: #fff;
    background-color: #333;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
}
.social-icons a:hover {
    background-color: #555;
}
.social-icons a[aria-label="Facebook"]:hover {
    background-color: #3b5998;
}
.social-icons a[aria-label="Instagram"]:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.social-icons a[aria-label="YouTube"]:hover {
    background-color: #ff0000;
}
.social-icons a[aria-label="LinkedIn"]:hover {
    background-color: #0077b5;
}
.social-icons i {
    font-size: 18px;
}

/* ================================
   EVENT GALLERY SECTION
================================ */
.gallery-container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
@media (max-width: 1024px) {
    .gallery-container {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
    }
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}
.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.gallery-item:hover {
    transform: translateY(-6px);
}
.gallery-item:hover img {
    transform: scale(1.15);
}
.gallery-item::after {
    content: "View";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery-item:hover::after {
    opacity: 1;
}
.gallery-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 10px auto 40px;
    color: #555;
    font-size: 1.1rem;
}

/* ================================
   LIGHTBOX (combined)
================================ */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}
.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
}
.close-btn {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    transition: transform 0.2s ease;
}
.close-btn:hover {
    transform: scale(1.2);
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ================================
   NEWS SECTION
================================ */
.news-section {
    padding: 80px 20px;
    background: #f5f7fb;
    text-align: center;
}
.featured-news {
    margin-bottom: 40px;
}
.featured-news img {
    width: 100%;
    max-width: 900px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.featured-news img:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}
.news-item {
    background: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    overflow: hidden;
}
.news-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.4s ease;
}
.news-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}
.news-item:hover img {
    transform: scale(1.08);
}

/* ================================
   VIDEO SECTION
================================ */
.video-section {
    padding: 100px 0;
    background: var(--light-gray);
}
.video-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}
.video-frame {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.video-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.video-content {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.video-intro {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}
.feature-title {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.3rem;
}
.feature-list {
    padding-left: 20px;
}
.feature-list li {
    margin-bottom: 12px;
    line-height: 1.6;
    color: #555;
}
@media (max-width: 900px) {
    .video-wrapper {
        grid-template-columns: 1fr;
    }
    .video-content {
        margin-top: 20px;
    }
}

/* ================================
   GLOBAL STYLES
================================ */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
    font-size: 16px;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Text elements (combined) */
.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-primary);
}
.program-description {
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    color: var(--text-secondary);
}
.team-qualification {
    color: var(--dark-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    animation: fadeInUp 0.6s ease;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .floating-robot, .floating-elements, .particles, .circuit-bg {
        display: none;
    }
}
@media (prefers-contrast: high) {
    :root {
        --primary-orange: #e55100;
        --primary-blue: #0d47a1;
        --primary-cyan: #006064;
        --text-primary: #000000;
        --text-secondary: #333333;
    }
    .hero {
        background: linear-gradient(135deg, #0d47a1 0%, #006064 50%, #e55100 100%);
    }
}
.nav-menu a:focus,
.cta-button:focus,
.tech-bubble:focus {
    outline: 3px solid #ffd700;
    outline-offset: 2px;
}
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-blue);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 10000;
    border-radius: 4px;
}
.skip-link:focus {
    top: 6px;
}

/* Floating elements */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.8;
}
.floating-robot {
    position: absolute;
    animation: floatRobot 20s infinite linear;
    opacity: 0.06;
    will-change: transform;
}
.floating-robot:nth-child(1) { top: 10%; left: -100px; animation-delay: 0s; font-size: 3rem; }
.floating-robot:nth-child(2) { top: 30%; right: -100px; animation-delay: -5s; font-size: 2rem; }
.floating-robot:nth-child(3) { top: 60%; left: -100px; animation-delay: -10s; font-size: 2.5rem; }
.floating-robot:nth-child(4) { top: 80%; right: -100px; animation-delay: -7s; font-size: 3.5rem; }
@keyframes floatRobot {
    0% { transform: translateX(-100px) rotate(0deg); }
    25% { transform: translateX(25vw) rotate(90deg); }
    50% { transform: translateX(calc(100vw + 100px)) rotate(180deg); }
    75% { transform: translateX(25vw) rotate(270deg); }
    100% { transform: translateX(-100px) rotate(360deg); }
}
.circuit-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="circuit" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M0 5h5v-5h5v10h-5v-5h-5z" stroke="rgba(8,145,178,0.05)" stroke-width="0.5" fill="none"/></pattern></defs><rect width="100" height="100" fill="url(%23circuit)"/></svg>') repeat;
    pointer-events: none;
    z-index: -2;
    animation: circuitMove 30s infinite linear;
    will-change: transform;
}
@keyframes circuitMove {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-50px) translateY(-50px); }
}

/* ================================
   CTA BUTTON (combined)
================================ */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ff7a18, #ffb347);
    color: #ffffff;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.4s both;
    box-shadow: 0 6px 18px rgba(255, 122, 24, 0.25);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    min-width: 160px;
    text-align: center;
}
.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(255, 122, 24, 0.35);
}
.cta-button:focus {
    outline: 3px solid #ffd700;
    outline-offset: 2px;
}
.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}
.cta-button:hover::before {
    left: 100%;
}

/* Animations */
.animated-robot {
    display: inline-block;
    animation: robotBounce 2s infinite ease-in-out;
}
@keyframes robotBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}
.gear {
    animation: spin 10s infinite linear;
    transform-origin: center;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.pulse-icon {
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

/* Header */
header {
    background: linear-gradient(120deg, var(--primary-orange) 0%, var(--primary-cyan) 100%);
    color: white;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    align-items: left;
    position: relative;
}
.logo::before {
    margin-right: 10px;
    animation: robotBounce 2s infinite ease-in-out;
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}
.nav-menu a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
}
.nav-menu a:hover {
    color: var(--primary-orange);
    transform: translateY(-2px);
}
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}
.nav-menu a:hover::after {
    width: 100%;
}
.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}
.mobile-menu span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--light-orange) 0%, var(--primary-cyan) 50%, var(--primary-blue) 100%);
    color: white;
    padding: 250px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: float 20s infinite linear;
}
@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}
.hero-robot {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15rem;
    opacity: 0.2;
    animation: heroRobotAnimation 6s infinite ease-in-out;
}
@keyframes heroRobotAnimation {
    0%, 100% { transform: translateY(-50%) rotate(-5deg); }
    50% { transform: translateY(-60%) rotate(5deg); }
}
.hero-content {
    position: relative;
    z-index: 1;
}
.hero h1 {
    font-size: 3.5rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Animated Tech Icons */
.tech-icon {
    display: inline-block;
    font-size: 3rem;
    margin: 1rem;
    animation: techFloat 4s infinite ease-in-out;
    position: relative;
}
.tech-icon:nth-child(1) { animation-delay: 0s; }
.tech-icon:nth-child(2) { animation-delay: 0.5s; }
.tech-icon:nth-child(3) { animation-delay: 1s; }
.tech-icon:nth-child(4) { animation-delay: 1.5s; }
.tech-icon:nth-child(5) { animation-delay: 2s; }
@keyframes techFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(5deg); }
    50% { transform: translateY(0px) rotate(0deg); }
    75% { transform: translateY(-5px) rotate(-5deg); }
}
.tech-icons-container {
    text-align: center;
    margin: 3rem 0;
}

/* Stats Section */
.stats {
    background: var(--light-gray);
    padding: 80px 0;
    position: relative;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}
.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-orange);
    position: relative;
    overflow: hidden;
}
.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(247, 147, 30, 0.1) 0%, transparent 70%);
    animation: statGlow 3s infinite ease-in-out;
}
@keyframes statGlow {
    0%, 100% { transform: rotate(0deg) scale(0); }
    50% { transform: rotate(180deg) scale(1); }
}
.stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}
.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
    animation: countUp 2s ease-in-out;
}
@keyframes countUp {
    from { opacity: 0; transform: scale(0.5); }
    to { opacity: 1; transform: scale(1); }
}
.stat-label {
    color: var(--dark-gray);
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* About Section */
.about {
    padding: 100px 0;
    background: white;
    position: relative;
}
.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: #222;
    position: relative;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-cyan));
    border-radius: 2px;
}
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 4rem;
}
.about-features {
    display: grid;
    gap: 1rem;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-cyan);
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(8, 145, 178, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.feature-item h4 {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.feature-item p {
    color: var(--text-secondary);
    line-height: 1.5;
}
.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}
.feature-item:hover {
    transform: translateX(10px) scale(1.02);
    background: rgba(240, 249, 255, 0.8);
    box-shadow: 0 4px 15px rgba(8, 145, 178, 0.15);
}
.feature-item:hover::before {
    left: 100%;
}
.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    animation: iconPulse 2s infinite;
}
@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Team Section */
.team {
    padding: 100px 0;
    background: var(--light-gray);
    position: relative;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}
.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}
.team-card:hover {
    transform: translateY(-10px) rotateY(5deg);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}
.team-header {
    height: 120px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-cyan));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    position: relative;
    overflow: hidden;
}
.team-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: teamGlow 4s infinite linear;
}
@keyframes teamGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.team-info {
    padding: 2rem;
    text-align: center;
}
.team-name {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    animation: fadeInLeft 0.6s ease;
}
.team-role {
    color: var(--primary-orange);
    font-weight: 500;
    margin-bottom: 1rem;
    animation: fadeInRight 0.6s ease;
}
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Programs Section */
.programs {
    padding: 100px 0;
    background: var(--light-blue);
    position: relative;
}
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}
.program-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 5px solid var(--primary-orange);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
}
.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100px;
    width: 100px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(247, 147, 30, 0.1), transparent);
    animation: cardSweep 3s infinite;
}
@keyframes cardSweep {
    0% { right: -100px; }
    50% { right: 100%; }
    100% { right: -100px; }
}
.program-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}
.program-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}
.program-features {
    list-style: none;
    position: relative;
    z-index: 1;
}
.program-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 20px;
    transition: all 0.3s ease;
    color: var(--text-secondary);
}
.program-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-cyan);
    font-weight: bold;
    font-size: 1.1rem;
    animation: checkBounce 2s infinite;
}
@keyframes checkBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}
.program-features li:hover {
    padding-left: 30px;
    color: var(--primary-blue);
}

/* Curriculum Section */
.curriculum {
    padding: 100px 0;
    background: white;
}
.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}
.grade-card {
    background: linear-gradient(135deg, var(--light-orange) 0%, var(--light-cyan) 100%);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.grade-card::before {
    content: '🎓';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 4rem;
    opacity: 0.1;
    animation: gradeBadge 4s infinite ease-in-out;
}
@keyframes gradeBadge {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(10deg) scale(1.1); }
}
.grade-card:hover {
    transform: translateY(-5px) rotateX(5deg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}
.grade-title {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}
.grade-focus {
    background: white;
    padding: 1rem;
    border-radius: 10px;
    margin: 1rem 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}
.grade-focus:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Infrastructure Section */
.infrastructure {
    padding: 100px 0;
    background: var(--light-gray);
}
.infra-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}
.infra-card {
    border: 2px solid transparent;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
.infra-card:hover {
    border: 2px solid var(--primary-cyan);
}
.infra-image {
    width: 100%;
    max-width: 900px;
    display: block;
    margin: 40px auto;
    border-radius: 15px;
    filter: grayscale(100%);
    transition: all 0.5s ease;
}
.infra-image:hover {
    filter: grayscale(0);
    transform: scale(1.05);
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: white;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}
.pricing-card {
    background: var(--light-gray);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.pricing-card.featured {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-cyan));
    color: white;
    transform: scale(1.05);
    animation: featuredGlow 3s infinite ease-in-out;
}
@keyframes featuredGlow {
    0%, 100% { box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1); }
    50% { box-shadow: 0 15px 60px rgba(6, 182, 212, 0.4), 0 0 30px rgba(6, 182, 212, 0.3); }
}
.pricing-card:hover {
    transform: translateY(-10px);
}
.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}
.price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-orange);
    margin: 1rem 0;
    animation: priceFloat 3s infinite ease-in-out;
}
@keyframes priceFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}
.pricing-card.featured .price {
    color: white;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--light-cyan);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
}
.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
    transition: all 0.3s ease;
}
.contact-item:hover {
    transform: translateX(10px);
}
.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    animation: contactIconPulse 2s infinite;
}
@keyframes contactIconPulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(180deg); }
}

/* To Top Button */
.to-top-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #333;
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 24px;
    line-height: 1;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}
.to-top-button.show {
    opacity: 1;
    visibility: visible;
}

/* Footer */
footer {
    background: var(--primary-blue);
    color: white;
    padding: 50px 0 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="0,100 50,0 100,100" fill="rgba(6,182,212,0.1)"/></svg>') repeat-x;
    animation: footerWave 8s infinite linear;
}
@keyframes footerWave {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100px); }
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}
.footer-section h3 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
    animation: footerTitleGlow 2s infinite ease-in-out;
}
@keyframes footerTitleGlow {
    0%, 100% { text-shadow: 0 0 5px rgba(247, 147, 30, 0.5); }
    50% { text-shadow: 0 0 15px rgba(247, 147, 30, 0.8); }
}
.footer-section a {
    color: white;
    text-decoration: none;
    display: block;
    margin: 0.5rem 0;
    transition: all 0.3s ease;
    position: relative;
}
.footer-section a:hover {
    color: var(--primary-cyan);
    transform: translateX(10px);
}

/* Technology Showcase */
.tech-showcase {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.tech-bubble {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-cyan));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    animation: bubbleFloat 3s infinite ease-in-out;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.8;
}
.tech-bubble:nth-child(1) { animation-delay: 0s; }
.tech-bubble:nth-child(2) { animation-delay: 0.5s; }
.tech-bubble:nth-child(3) { animation-delay: 1s; }
.tech-bubble:nth-child(4) { animation-delay: 1.5s; }
@keyframes bubbleFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-10px) scale(1.1); }
}
.tech-bubble:hover {
    transform: scale(1.2);
    opacity: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Particle System */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-cyan);
    border-radius: 50%;
    animation: particleMove 10s infinite linear;
    opacity: 0.6;
}
.particle:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { top: 20%; left: 80%; animation-delay: 1s; }
.particle:nth-child(3) { top: 80%; left: 20%; animation-delay: 2s; }
.particle:nth-child(4) { top: 60%; left: 70%; animation-delay: 3s; }
.particle:nth-child(5) { top: 40%; left: 40%; animation-delay: 4s; }
@keyframes particleMove {
    0% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-100px) rotate(90deg); }
    50% { transform: translateY(-200px) rotate(180deg); }
    75% { transform: translateY(-100px) rotate(270deg); }
    100% { transform: translateY(0px) rotate(360deg); }
}

/* Loading Animation */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-cyan);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 1s ease;
}
.loading-robot {
    font-size: 5rem;
    animation: loadingBounce 1s infinite ease-in-out;
    margin-bottom: 2rem;
}
@keyframes loadingBounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}
.loading-text {
    color: white;
    font-size: 1.5rem;
    animation: loadingPulse 1.5s infinite ease-in-out;
}
@keyframes loadingPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}
.loading-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    margin-top: 2rem;
    overflow: hidden;
}
.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-orange), white);
    width: 0%;
    border-radius: 2px;
    animation: loadingProgress 3s ease-in-out;
}
@keyframes loadingProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* ================================
   RESPONSIVE DESIGN (combined)
================================ */
@media (max-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .infra-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 1024px) {
    .gallery-container {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 1000px) {
    .school-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 900px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .infra-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .video-wrapper {
        grid-template-columns: 1fr;
    }
    .video-content {
        margin-top: 20px;
    }
}
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    .nav-menu a {
        color: var(--primary-blue);
    }
    .mobile-menu {
        display: flex;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero-robot {
        font-size: 8rem;
        right: -20%;
    }
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .container {
        padding: 0 15px;
    }
    .tech-showcase {
        display: none;
    }
    .tech-icon {
        font-size: 2rem;
        margin: 0.5rem;
    }
    .stats-grid,
    .team-grid,
    .programs-grid,
    .curriculum-grid,
    .infra-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .floating-robot {
        font-size: 2rem;
    }
    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .seo-content .container {
        padding: 35px 25px;
    }
    .seo-content h2 {
        font-size: 1.4rem;
    }
}
@media (max-width: 700px) {
    .school-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    .infra-grid {
        grid-template-columns: 1fr;
    }
    .client-list ul {
        columns: 1;
    }
}
@media (max-width: 500px) {
    .school-grid {
        grid-template-columns: 1fr;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}
section {
    scroll-margin-top: 80px;
}

/* Google Review Card */
.google-review-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
    max-width: 400px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    font-family: Arial, sans-serif;
}
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.reviewer-name {
    font-weight: bold;
    color: #333;
    font-size: 1.1em;
}
.star-rating {
    color: gold;
    font-size: 1.2em;
}
.rating-text {
    font-size: 0.8em;
    color: #666;
    margin-left: 5px;
}
.review-text {
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.4;
}
.review-source-link {
    color: #1a73e8;
    text-decoration: none;
    font-size: 0.9em;
}
.review-source-link:hover {
    text-decoration: underline;
}

/* Client List */
.client-list ul {
    columns: 3;
    -webkit-columns: 3;
    -moz-columns: 3;
    list-style-type: disc;
    padding-left: 20px;
}

/* School Logos Grid */
.school-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    justify-content: center;
    margin-bottom: 50px;
}
.school-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: 0.3s;
}
.school-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.school-icon {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
}
.school-card p {
    font-weight: 600;
}

/* Testimonial Section */
.testimonial-section {
    padding: 80px 20px;
    background: #f8f9fc;
    text-align: center;
}
.testimonial-slider {
    position: relative;
    max-width: 1000px;
    margin: auto;
    display: flex;
    align-items: center;
}
.testimonial-container {
    display: flex;
    overflow: hidden;
    scroll-behavior: smooth;
    gap: 20px;
}
.testimonial-card {
    min-width: 300px;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: left;
}
.testimonial-card p {
    font-style: italic;
    font-size: 1rem;
    color: #444;
    margin-bottom: 15px;
}
.testimonial-card h4 {
    margin: 0;
    color: #ff6600;
}
.testimonial-card span {
    font-size: 0.9rem;
    color: #777;
}
.prev,
.next {
    background: #ff6600;
    border: none;
    color: white;
    font-size: 22px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    margin: 0 10px;
}

/* Top Sticky CTA Bar */
.top-cta-bar {
    background: #0b1c3d;
    color: #ffffff;
    text-align: center;
    padding: 10px 15px;
    font-size: 15px;
    font-weight: 500;
    position: sticky;
    top: 20px;
    z-index: 9999;
}
.top-cta-bar a {
    color: #ffb347;
    font-weight: 700;
    margin-left: 10px;
    text-decoration: none;
}
.top-cta-bar a:hover {
    text-decoration: underline;
}

/* SEO Content Section */
.seo-content {
    background: #f8fafc;
    padding: 80px 0;
}
.seo-content .container {
    max-width: 900px;
    margin: auto;
    background: #ffffff;
    padding: 50px 60px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
.seo-content h2 {
    font-size: 1.7rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary-blue);
    position: relative;
    padding-left: 18px;
    font-weight: 700;
}
.seo-content h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 26px;
    background: var(--primary-orange);
    border-radius: 3px;
}
.seo-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 20px;
}
.seo-content ul {
    margin-top: 15px;
    padding-left: 0;
    list-style: none;
}
.seo-content ul li {
    padding: 10px 0 10px 28px;
    position: relative;
    font-size: 1rem;
    border-bottom: 1px solid #e5e7eb;
}
.seo-content ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: bold;
}

/* Trust Badges */
.trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    padding: 30px 15px;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
}
.trust-item {
    text-align: center;
}
.trust-number {
    font-size: 32px;
    font-weight: 800;
    color: #ff7a18;
}
.trust-label {
    font-size: 14px;
    color: #4a5568;
}

/* Image SEO Safety */
img {
    max-width: 100%;
    height: auto;
}

.metronics-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:20px;
margin-top:20px;
}

.presence-grid{
display:flex;
justify-content:center;
gap:25px;
margin-top:30px;
flex-wrap:wrap;
}

.presence-card{
background:#eef4ff;
padding:15px 25px;
border-radius:8px;
font-weight:600;
}

.books-note{
background:#f9fbff;
padding:25px;
border-radius:10px;
margin-top:30px;
}