  :root {
    --navy: #1E3A5F;
    --navy-dark: #132640;
    --navy-light: #2A4F80;
    --electric: #0066FF;
    --yellow: #FFD700;
    --yellow-light: #FFE44D;
    --white: #FFFFFF;
    --off-white: #F0F4FA;
    --gray: #8899AA;
    --text: #1a2a3a;
    --glow: 0 0 20px rgba(0,102,255,0.4);
    --glow-yellow: 0 0 20px rgba(255,215,0,0.5);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Cairo', 'Tajawal', sans-serif;
    background: var(--white);
    color: var(--text);
    overflow-x: hidden;
  }

  /* ─── NAVBAR ─── */
  nav {
    position: fixed;
    top: 0; right: 0; left: 0;
    z-index: 100;
    background: rgba(19, 38, 64, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,215,0,0.15);
    padding: 0 5%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-logo {
    text-decoration:none;
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 1px;
  }

  .nav-logo span { color: var(--yellow); }

  .nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
  }

  .nav-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--yellow); }

  .nav-cta {
    background: var(--yellow);
    color: var(--navy-dark) !important;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700 !important;
    transition: all 0.2s !important;
  }

  .nav-cta:hover {
    background: var(--yellow-light) !important;
    box-shadow: var(--glow-yellow) !important;
    color: var(--navy-dark) !important;
  }

  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
  }

  .hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s;
  }

  /* ─── HERO ─── */
  .hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
    display: flex;
    align-items: center;
    padding: 100px 5% 60px;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0,102,255,0.15) 0%, transparent 70%);
    border-radius: 50%;
  }

  .hero::after {
    content: '';
    position: absolute;
    bottom: -30%; left: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255,215,0,0.08) 0%, transparent 70%);
    border-radius: 50%;
  }

  /* Floating math symbols */
  .math-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
  }

  .math-symbol {
    position: absolute;
    color: rgba(255,255,255,0.04);
    font-size: 4rem;
    font-weight: 900;
    animation: float 8s ease-in-out infinite;
  }

  .math-symbol:nth-child(1)  { top: 10%; right: 8%;  font-size: 5rem; animation-delay: 0s; }
  .math-symbol:nth-child(2)  { top: 25%; left: 5%;   font-size: 3rem; animation-delay: 1s; }
  .math-symbol:nth-child(3)  { top: 60%; right: 15%; font-size: 6rem; animation-delay: 2s; }
  .math-symbol:nth-child(4)  { bottom: 20%; left: 8%; font-size: 4rem; animation-delay: 3s; }
  .math-symbol:nth-child(5)  { top: 40%; right: 5%;  font-size: 3.5rem; animation-delay: 1.5s; }

  @keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
  }
  .hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 0.5rem;
  }

  .hero h1 .highlight {
    color: var(--yellow);
    text-shadow: var(--glow-yellow);
    display: block;
  }

  .hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    margin: 1.2rem 0 2rem;
    line-height: 1.8;
    max-width: 540px;
  }

  .hero-subjects {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 2.5rem;
  }

  .subject-tag {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
  }

  .btn-primary {
    background: var(--yellow);
    color: var(--navy-dark);
    padding: 14px 30px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s;
    box-shadow: 0 4px 20px rgba(255,215,0,0.3);
  }

  .btn-primary:hover {
    background: var(--yellow-light);
    transform: translateY(-2px);
    box-shadow: var(--glow-yellow);
  }

  .btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 13px 28px;
    border-radius: 30px;
    border: 2px solid rgba(255,255,255,0.3);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s;
  }

  .btn-secondary:hover {
    border-color: var(--yellow);
    color: var(--yellow);
    transform: translateY(-2px);
  }

  /* ─── STATS BAR ─── */
  .stats-bar {
    background: var(--navy-dark);
    padding: 30px 5%;
    display: flex;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    border-bottom: 3px solid var(--yellow);
  }

  .stat-item {
    text-align: center;
    padding: 15px 40px;
    border-left: 1px solid rgba(255,255,255,0.1);
    flex: 1;
    min-width: 150px;
  }

  .stat-item:last-child { border-left: none; }

  .stat-num {
    font-size: 2rem;
    font-weight: 900;
    color: var(--yellow);
    display: block;
    text-shadow: var(--glow-yellow);
  }

  .stat-label {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    margin-top: 4px;
  }

  /* ─── SECTION SHARED ─── */
  section { padding: 80px 5%; }

  .section-label {
    display: inline-block;
    background: rgba(30,58,95,0.08);
    color: var(--navy);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 1rem;
    border: 1px solid rgba(30,58,95,0.15);
  }

  .section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 900;
    color: var(--navy-dark);
    margin-bottom: 0.6rem;
    line-height: 1.3;
  }

  .section-title span { color: var(--electric); }

  .section-sub {
    color: var(--gray);
    font-size: 1rem;
    max-width: 500px;
    line-height: 1.8;
    margin-bottom: 3rem;
  }

  /* ─── SUBJECTS ─── */
  .subjects { background: var(--off-white); }

  .subjects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
  }

  .subject-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 2px 20px rgba(30,58,95,0.06);
    border: 2px solid transparent;
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
  }

  .subject-card:hover {
    border-color: var(--electric);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,102,255,0.12);
  }

  .subject-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    box-shadow: var(--glow);
  }

  .subject-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--navy-dark);
    margin-bottom: 0.5rem;
  }

  .subject-card p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .subject-levels {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 1rem;
  }

  .level-badge {
    background: var(--off-white);
    color: var(--navy);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 12px;
    border: 1px solid rgba(30,58,95,0.15);
  }

  /* ─── COURSES ─── */
  .courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
  }

  .course-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(30,58,95,0.07);
    border: 1px solid rgba(30,58,95,0.08);
    transition: all 0.3s;
  }

  .course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(30,58,95,0.12);
  }

  .course-thumb {
    height: 160px;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  .course-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0,102,255,0.3), transparent 60%);
  }

  .course-thumb-icon {
    font-size: 3.5rem;
    position: relative;
    z-index: 1;
  }

  .course-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--yellow);
    color: var(--navy-dark);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    z-index: 2;
  }

  .course-body { padding: 22px; }

  .course-level {
    color: var(--electric);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: 1px;
  }

  .course-body h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--navy-dark);
    margin-bottom: 8px;
    line-height: 1.4;
  }

  .course-body p {
    color: var(--gray);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 16px;
  }

  .course-meta {
    display: flex;
    gap: 14px;
    font-size: 0.82rem;
    color: var(--gray);
    padding-top: 14px;
    border-top: 1px solid var(--off-white);
  }

  .course-meta span { display: flex; align-items: center; gap: 4px; }

  .course-card{
    text-decoration: none;
    color: inherit;
}

  /* ─── WHY ─── */
  .why { background: linear-gradient(135deg, var(--navy-dark), var(--navy)); }

  .why .section-label { background: rgba(255,215,0,0.15); color: var(--yellow); border-color: rgba(255,215,0,0.3); }
  .why .section-title { color: var(--white); }
  .why .section-title span { color: var(--yellow); }
  .why .section-sub { color: rgba(255,255,255,0.6); }

  .why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
  }

  .why-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 28px 24px;
    transition: all 0.3s;
  }

  .why-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,215,0,0.3);
    transform: translateY(-4px);
  }

  .why-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
  }

  .why-card h3 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
  }

  .why-card p {
    color: rgba(255,255,255,0.55);
    font-size: 0.88rem;
    line-height: 1.7;
  }

  /* ─── PLATFORMS ─── */
  .platforms { background: var(--off-white); }

  .platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
  }

  .platform-card {
    background: var(--white);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    border: 2px solid transparent;
    transition: all 0.3s;
  }

  .platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  }

  .platform-card.yt:hover  { border-color: #000000; }
  .platform-card.fb:hover  { border-color: #000000; }
  .platform-card.tt:hover  { border-color: #000000; }
  .platform-card.bl:hover  { border-color: black; }

  .platform-icon{
    width:70px;
    height:70px;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:auto;
    margin-bottom:15px;
}

.platform-icon img{
    width:60px;
    height:60px;
    object-fit:contain;
    transition:.3s;
}

.platform-card:hover .platform-icon img{
    transform:scale(1.15);
}

  .platform-card.yt .platform-icon  { background: rgba(255, 255, 255, 0.1); }
  .platform-card.fb .platform-icon  { background: rgba(255, 255, 255, 0.1); }
  .platform-card.tt .platform-icon  { background: rgba(255, 255, 255, 0.06); }
  .platform-card.bl .platform-icon  { background: rgba(255, 255, 255, 0.1); }

  .platform-card h3 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--navy-dark);
  }

  .platform-card p {
    color: var(--gray);
    font-size: 0.85rem;
    line-height: 1.6;
  }

  .platform-btn {
    margin-top: 6px;
    padding: 8px 22px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    border: 2px solid currentColor;
    transition: all 0.2s;
  }

  .platform-card.yt .platform-btn  { color: #000000; }
  .platform-card.fb .platform-btn  { color: #000000; }
  .platform-card.tt .platform-btn  { color: #000000; }
  .platform-card.bl .platform-btn  { color: black; }

  .platform-card:hover .platform-btn {
    color: var(--white) !important;
  }

  .platform-card.yt:hover .platform-btn  { background: #000000; border-color: #000000; }
  .platform-card.fb:hover .platform-btn  { background: #000000; border-color: #000000; }
  .platform-card.tt:hover .platform-btn  { background: #000; border-color: #000; }
  .platform-card.bl:hover .platform-btn  { background: black; border-color: black; }

  /* ─── EXAM SECTION ─── */
  .exams { background: var(--white); }
  .exams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
  }

  .exam-card {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    border-radius: 16px;
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    text-decoration: none;
    display: block;
  }

  .exam-card::before {
    content: '';
    position: absolute;
    top: -30px; left: -30px;
    width: 120px; height: 120px;
    background: rgba(255,215,0,0.08);
    border-radius: 50%;
  }

  .exam-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(30,58,95,0.25); }

  .exam-year {
    background: var(--yellow);
    color: var(--navy-dark);
    font-size: 0.8rem;
    font-weight: 800;
    padding: 3px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 12px;
  }

  .exam-card h3 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 6px;
    line-height: 1.4;
  }

  .exam-card p { color: rgba(255,255,255,0.6); font-size: 0.85rem; }

  .exam-arrow {
    position: absolute;
    bottom: 20px; left: 20px;
    color: var(--yellow);
    font-size: 1.2rem;
    opacity: 0;
    transition: opacity 0.2s;
  }

  .exam-card:hover .exam-arrow { opacity: 1; }

  /* ─── NEWSLETTER ─── */
  .newsletter {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy-light));
    text-align: center;
    padding: 80px 5%;
  }

  .newsletter h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 0.8rem;
  }

  .newsletter h2 span { color: var(--yellow); }

  .newsletter p {
    color: rgba(255,255,255,0.65);
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
  }

  .newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 460px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
  }

  .newsletter-form input {
    flex: 1;
    min-width: 240px;
    padding: 13px 20px;
    border-radius: 30px;
    border: none;
    font-family: 'Cairo', sans-serif;
    font-size: 0.95rem;
    outline: none;
    background: rgba(255,255,255,0.95);
    color: var(--text);
    direction: rtl;
  }

  .newsletter-form button {
    background: var(--yellow);
    color: var(--navy-dark);
    border: none;
    padding: 13px 28px;
    border-radius: 30px;
    font-family: 'Cairo', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
  }

  .newsletter-form button:hover {
    background: var(--yellow-light);
    box-shadow: var(--glow-yellow);
    transform: translateY(-2px);
  }
  /* CONTACT */
.contact{
    background:#f5f7fb;
    padding:90px 5%;
}

.contact-box{
    max-width:700px;
    margin:auto;
    background:#fff;
    border-radius:20px;
    padding:50px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.contact-box h2{
    color:var(--navy-dark);
    font-size:2rem;
    margin-bottom:15px;
}

.contact-box p{
    color:#666;
    line-height:1.8;
    margin-bottom:30px;
}

.whatsapp-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:#25D366;
    color:#fff;
    text-decoration:none;
    padding:16px 35px;
    border-radius:50px;
    font-size:1.1rem;
    font-weight:700;
    transition:.3s;
}

.whatsapp-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 12px 25px rgba(37,211,102,.35);
}

  /* ─── FOOTER ─── */
  footer {
    background: var(--navy-dark);
    padding: 50px 5% 30px;
    border-top: 3px solid rgba(255,215,0,0.2);
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }

  .footer-brand h3 {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 10px;
  }

  .footer-brand h3 span { color: var(--yellow); }

  .footer-brand p {
    color: rgba(255,255,255,0.5);
    font-size: 0.88rem;
    line-height: 1.8;
    max-width: 280px;
    margin-bottom: 16px;
  }

  .social-links {
    display: flex;
    gap: 10px;
  }

  .social-link {
    width: 36px; height: 36px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.2s;
    border: 1px solid rgba(255,255,255,0.1);
  }

  .social-link:hover {
    background: var(--yellow);
    transform: translateY(-2px);
    box-shadow: var(--glow-yellow);
  }

  .footer-col h4 {
    color: var(--yellow);
    font-size: 0.9rem;
    font-weight: 800;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
  }

  .footer-col ul { list-style: none; }

  .footer-col ul li {
    margin-bottom: 8px;
  }

  .footer-col ul li a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .footer-col ul li a:hover { color: var(--yellow); }

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .footer-bottom p {
    color: rgba(255,255,255,0.35);
    font-size: 0.83rem;
  }

  .footer-bottom span { color: var(--yellow); }

  /* ─── MOBILE ─── */
  @media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }

    .nav-links.open {
      display: flex;
      flex-direction: column;
      position: fixed;
      top: 70px; right: 0; left: 0;
      background: var(--navy-dark);
      padding: 20px 5%;
      gap: 16px;
      border-bottom: 2px solid rgba(255,215,0,0.2);
    }

    .hero { flex-direction: column; text-align: center; padding-top: 90px; }
    .hero-subjects { justify-content: center; }
    .hero-btns { justify-content: center; }
    .hero-sub { margin-left: auto; margin-right: auto; }

    .stats-bar { gap: 10px; }
    .stat-item { padding: 12px 20px; border-left: none; border-bottom: 1px solid rgba(255,255,255,0.08); }

    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .newsletter-form { flex-direction: column; align-items: center; }
    .newsletter-form input { width: 100%; }
  }

  @media (max-width: 480px) {
    section { padding: 60px 4%; }
    .subjects-grid, .courses-grid, .why-grid, .platforms-grid, .exams-grid {
      grid-template-columns: 1fr;
    }
  }

  /* ─── HERO TWO-COLUMN ─── */
  .hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
  }

  .hero-content { flex: 1; max-width: 580px; }

  .hero-photo-wrap {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-photo-ring {
    position: relative;
    width: 300px;
    height: 340px;
  }

  .hero-photo-inner {
    width: 280px;
    height: 320px;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    overflow: hidden;
    border: 4px solid var(--yellow);
    box-shadow: 0 0 40px rgba(255,215,0,0.25), 0 0 80px rgba(0,102,255,0.15);
    position: relative;
    z-index: 2;
  }

  .hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
  }

  .photo-badge-1, .photo-badge-2 {
    position: absolute;
    background: var(--yellow);
    color: var(--navy-dark);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 20px;
    white-space: nowrap;
    z-index: 3;
    box-shadow: 0 4px 16px rgba(255,215,0,0.3);
  }

  .photo-badge-1 { top: 20px; left: -20px; }
  .photo-badge-2 { bottom: 30px; right: -20px; }

  .photo-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 320px; height: 360px;
    background: radial-gradient(circle, rgba(0,102,255,0.12) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: pulse 3s ease-in-out infinite;
  }

  @keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
  }

  /* ─── ABOUT SECTION ─── */
  .about { background: var(--white); }

  .about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }

  .about-img-wrap {
    position: relative;
  }

  .about-img-box {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid var(--yellow);
    box-shadow: 8px 8px 0 var(--navy);
  }

  .about-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
  }

  .about-exp-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--navy-dark);
    border: 3px solid var(--yellow);
    color: var(--white);
    padding: 16px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  }

  .about-exp-badge strong {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--yellow);
    line-height: 1;
  }

  .about-exp-badge span {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
  }

  .about-text h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 900;
    color: var(--navy-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
  }

  .about-text h2 span { color: var(--electric); }

  .about-text p {
    color: var(--gray);
    font-size: 0.97rem;
    line-height: 1.9;
    margin-bottom: 1.2rem;
  }

  .about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 1.5rem;
  }

  .about-tag {
    background: var(--off-white);
    color: var(--navy);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    border: 1px solid rgba(30,58,95,0.12);
  }

  /* ─── SERVICES SECTION ─── */
  .services { background: var(--off-white); }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 22px;
  }

  .service-card {
    background: var(--white);
    border-radius: 18px;
    padding: 32px 26px;
    box-shadow: 0 2px 20px rgba(30,58,95,0.06);
    border: 2px solid transparent;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
  }

  .service-card::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 80px; height: 80px;
    background: radial-gradient(circle, rgba(0,102,255,0.06), transparent);
    border-radius: 50%;
  }

  .service-card:hover {
    border-color: var(--electric);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,102,255,0.1);
  }

  .service-num {
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(30,58,95,0.06);
    position: absolute;
    top: 12px;
    left: 20px;
    line-height: 1;
  }

  .service-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    box-shadow: var(--glow);
  }

  .service-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--navy-dark);
    margin-bottom: 8px;
  }

  .service-card p {
    color: var(--gray);
    font-size: 0.88rem;
    line-height: 1.7;
  }

  

  /* ─── RESPONSIVE UPDATES ─── */
  @media (max-width: 900px) {
    .hero-inner { flex-direction: column-reverse; text-align: center; gap: 30px; }
    .hero-subjects { justify-content: center; }
    .hero-btns { justify-content: center; }
    .hero-sub { margin: 1rem auto 1.5rem; }
    .hero-photo-ring { width: 220px; height: 260px; }
    .hero-photo-inner { width: 200px; height: 240px; }
    .photo-badge-1 { top: 10px; left: -10px; font-size: 0.7rem; }
    .photo-badge-2 { bottom: 20px; right: -10px; font-size: 0.7rem; }
    .about-inner { grid-template-columns: 1fr; }
    .about-img-wrap { max-width: 300px; margin: 0 auto; }
    .contact-inner { grid-template-columns: 1fr; }
  }


  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

