/* ==================================================
       GLOBAL RESET & THEME VARIABLES
    ================================================== */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --bg: #f2f9ff;
      --card: #ffffff;
      --soft: #fff5d7;
      --pink: #ffcce1;
      --rose: #e195ab;
      --text: #263238;
      --muted: #6b7280;
      --border: rgba(38, 50, 56, 0.12);
      --shadow: rgba(38, 50, 56, 0.12);
      --blue: #063b8f;
      --red: #e50914;
    }

    body.dark-mode {
      --bg: #151922;
      --card: #202633;
      --soft: #2c2f38;
      --pink: #3b2933;
      --rose: #ff9fbd;
      --text: #f8fafc;
      --muted: #cbd5e1;
      --border: rgba(255, 255, 255, 0.12);
      --shadow: rgba(0, 0, 0, 0.35);
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Poppins", sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.7;
      overflow-x: hidden;
      transition: background 0.3s ease, color 0.3s ease;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      width: 100%;
      display: block;
    }

    section {
      padding: 64px 7%;
      scroll-margin-top: 90px;
    }

    .section-label {
      color: var(--rose);
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 1.8px;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .section-title {
      font-size: clamp(2rem, 4vw, 3.4rem);
      line-height: 1.15;
      margin-bottom: 14px;
    }

    .section-text {
      max-width: 820px;
      color: var(--muted);
      margin-bottom: 28px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 13px 22px;
      border-radius: 999px;
      border: none;
      background: var(--blue);
      color: #ffffff;
      font-weight: 700;
      cursor: pointer;
      transition: 0.25s ease;
    }

    .btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 16px 35px var(--shadow);
      background: var(--red);
    }

    .btn-light {
      background: #ffffff;
      color: var(--blue);
    }

    .btn-outline {
      background: transparent;
      border: 1px solid var(--border);
      color: var(--text);
    }

    /* ==================================================
       HAMBURGER-ONLY NAVIGATION
    ================================================== */
    .topbar {
      position: fixed;
      inset: 0 0 auto 0;
      height: 78px;
      z-index: 2000;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 7%;
      background: rgba(242, 249, 255, 0.82);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid var(--border);
    }

    body.dark-mode .topbar {
      background: rgba(21, 25, 34, 0.86);
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 800;
      font-size: 1.15rem;
    }

    .brand img {
      width: 52px;
      height: 52px;
      object-fit: contain;
      border-radius: 14px;
      background: #fff;
      padding: 4px;
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .icon-btn {
      width: 46px;
      height: 46px;
      border-radius: 15px;
      border: 1px solid var(--border);
      background: var(--card);
      color: var(--text);
      cursor: pointer;
      transition: 0.25s ease;
    }

    .icon-btn:hover {
      transform: translateY(-2px);
    }

    .hidden-nav {
      position: fixed;
      inset: 0 0 0 auto;
      width: min(380px, 88%);
      background: var(--card);
      z-index: 2500;
      padding: 30px;
      transform: translateX(100%);
      transition: 0.3s ease;
      box-shadow: -20px 0 50px var(--shadow);
    }

    .hidden-nav.open {
      transform: translateX(0);
    }

    .nav-close {
      float: right;
    }

    .hidden-nav ul {
      list-style: none;
      display: grid;
      gap: 12px;
      margin-top: 70px;
    }

    .hidden-nav a {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 13px 15px;
      border-radius: 16px;
      color: var(--muted);
      font-weight: 600;
      transition: 0.25s ease;
    }

    .hidden-nav a:hover,
    .hidden-nav a.active {
      background: var(--soft);
      color: var(--text);
      transform: translateX(5px);
    }

    .nav-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.45);
      z-index: 2400;
      display: none;
    }

    .nav-overlay.show {
      display: block;
    }

    /* ==================================================
       HERO VIDEO
    ================================================== */
    .hero {
      min-height: 100vh;
      position: relative;
      display: flex;
      align-items: center;
      overflow: hidden;
      padding-top: 120px;
    }

    .hero video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(6, 59, 143, 0.85), rgba(225, 149, 171, 0.6)),
        radial-gradient(circle at 80% 20%, rgba(255, 245, 215, 0.5), transparent 35%);
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      color: #ffffff;
    }

    .hero-logo {
      width: 120px;
      height: 120px;
      object-fit: contain;
      background: #ffffff;
      border-radius: 28px;
      padding: 10px;
      margin-bottom: 22px;
      box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    }

    .hero h1 {
      font-size: clamp(2.7rem, 6vw, 5.7rem);
      line-height: 1.05;
      margin-bottom: 20px;
    }

    .hero p {
      max-width: 760px;
      font-size: 1.05rem;
      margin-bottom: 28px;
      color: rgba(255,255,255,0.9);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
    }

    /* ==================================================
       CARDS & LAYOUTS
    ================================================== */
    .grid {
      display: grid;
      gap: 22px;
    }

    .grid-2 {
      grid-template-columns: repeat(2, 1fr);
    }

    .grid-3 {
      grid-template-columns: repeat(3, 1fr);
    }

    .grid-4 {
      grid-template-columns: repeat(4, 1fr);
    }

    .card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 28px;
      padding: 26px;
      box-shadow: 0 18px 40px var(--shadow);
      transition: 0.25s ease;
    }

    .card:hover {
      transform: translateY(-6px);
    }

    .icon-box {
      width: 56px;
      height: 56px;
      display: grid;
      place-items: center;
      border-radius: 18px;
      background: linear-gradient(135deg, var(--blue), var(--rose));
      color: #ffffff;
      font-size: 1.25rem;
      margin-bottom: 18px;
    }

    .card h3 {
      margin-bottom: 10px;
      font-size: 1.2rem;
    }

    .card p,
    .card li {
      color: var(--muted);
    }

    .card ul {
      list-style: none;
      display: grid;
      gap: 10px;
      margin-top: 16px;
    }

    .card li i {
      color: var(--rose);
      margin-right: 8px;
    }

    .founder-layout {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 28px;
      align-items: center;
    }

    .founder-photo {
      border-radius: 34px;
      overflow: hidden;
      border: 8px solid var(--soft);
      box-shadow: 0 25px 55px var(--shadow);
    }

    .founder-photo img {
      height: 540px;
      object-fit: cover;
    }

    .founder-badge {
      display: inline-flex;
      padding: 8px 14px;
      border-radius: 999px;
      background: var(--pink);
      color: #7a3045;
      font-weight: 700;
      margin-bottom: 14px;
      font-size: 0.85rem;
    }

    .timeline {
      position: relative;
      display: grid;
      gap: 18px;
      max-width: 900px;
    }

    .timeline-item {
      display: grid;
      grid-template-columns: 110px 1fr;
      gap: 18px;
      align-items: start;
    }

    .timeline-year {
      background: var(--blue);
      color: #fff;
      padding: 10px 14px;
      border-radius: 999px;
      font-weight: 700;
      text-align: center;
    }

    .stats {
      background: linear-gradient(135deg, var(--blue), var(--rose));
      color: #ffffff;
      border-radius: 36px;
      padding: 34px;
    }

    .stat strong {
      display: block;
      font-size: 2.2rem;
      line-height: 1;
    }

    .stat span {
      color: rgba(255,255,255,0.82);
      font-size: 0.9rem;
    }

    /* ==================================================
       SLIDERS, GALLERY, BLOG
    ================================================== */
    .slider {
      position: relative;
      overflow: hidden;
    }

    .testimonial-track {
      display: flex;
      transition: transform 0.45s ease;
    }

    .testimonial-slide {
      min-width: 100%;
      padding: 4px;
    }

    .slider-controls {
      display: flex;
      gap: 10px;
      margin-top: 18px;
    }

    .slider-controls button {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      border: none;
      background: var(--blue);
      color: #fff;
      cursor: pointer;
    }

    .gallery-item {
      cursor: pointer;
      overflow: hidden;
      border-radius: 26px;
      border: 1px solid var(--border);
      box-shadow: 0 16px 35px var(--shadow);
    }

    .gallery-item img {
      height: 310px;
      object-fit: cover;
      transition: 0.35s ease;
    }

    .gallery-item:hover img {
      transform: scale(1.07);
    }

    .blog-card img {
      height: 220px;
      object-fit: cover;
      border-radius: 20px;
      margin-bottom: 16px;
    }

    /* ==================================================
       CONTACT & MAP
    ================================================== */
    .contact-form {
      display: grid;
      gap: 14px;
    }

    .form-group {
      display: grid;
      gap: 6px;
    }

    label {
      font-weight: 700;
      font-size: 0.9rem;
    }

    input,
    select,
    textarea {
      width: 100%;
      border: 1px solid var(--border);
      background: var(--bg);
      color: var(--text);
      padding: 14px 16px;
      border-radius: 16px;
      outline: none;
      font-family: inherit;
      transition: 0.25s ease;
    }

    textarea {
      min-height: 140px;
      resize: vertical;
    }

    input:focus,
    select:focus,
    textarea:focus {
      border-color: var(--rose);
      box-shadow: 0 0 0 4px rgba(225, 149, 171, 0.16);
    }

    .error {
      color: #dc2626;
      font-size: 0.8rem;
      display: none;
    }

    .success-message {
      display: none;
      background: #dcfce7;
      color: #166534;
      padding: 13px;
      border-radius: 14px;
      font-weight: 700;
    }

    iframe {
      width: 100%;
      height: 340px;
      border: 0;
      border-radius: 26px;
      box-shadow: 0 18px 40px var(--shadow);
    }

    /* ==================================================
       FOOTER
    ================================================== */
    footer {
      background: #063b8f;
      color: #ffffff;
      padding: 58px 7% 26px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1fr;
      gap: 28px;
      margin-bottom: 30px;
    }

    footer p,
    footer a {
      color: rgba(255,255,255,0.78);
      display: block;
      margin-bottom: 9px;
    }

    footer a:hover {
      color: #fff;
    }

    .socials {
      display: flex;
      gap: 10px;
      margin-top: 14px;
    }

    .socials a {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      border: 1px solid rgba(255,255,255,0.25);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.18);
      padding-top: 18px;
      color: rgba(255,255,255,0.72);
      font-size: 0.9rem;
    }

    /* ==================================================
       LIGHTBOX & BACK TO TOP
    ================================================== */
    .lightbox {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.9);
      z-index: 3000;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 24px;
    }

    .lightbox.show {
      display: flex;
    }

    .lightbox img {
      max-width: 92%;
      max-height: 84vh;
      object-fit: contain;
      border-radius: 20px;
    }

    .lightbox-close {
      position: absolute;
      top: 22px;
      right: 26px;
      color: #fff;
      font-size: 2rem;
      cursor: pointer;
    }

    .back-to-top {
      position: fixed;
      right: 22px;
      bottom: 22px;
      width: 48px;
      height: 48px;
      border: none;
      border-radius: 50%;
      background: var(--red);
      color: #fff;
      cursor: pointer;
      display: none;
      place-items: center;
      z-index: 1900;
    }

    .back-to-top.show {
      display: grid;
    }

    /* ==================================================
       SCROLL ANIMATION
    ================================================== */
    .reveal {
      opacity: 0;
      transform: translateY(34px);
      transition: opacity 0.7s ease, transform 0.7s ease;
      transition-delay: var(--delay, 0s);
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ==================================================
       RESPONSIVE DESIGN
    ================================================== */
    @media (max-width: 1100px) {
      .grid-4,
      .grid-3,
      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .founder-layout,
      .grid-2 {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 680px) {
      section {
        padding: 52px 6%;
      }

      .topbar {
        padding: 0 6%;
      }

      .brand span {
        display: none;
      }

      .grid-4,
      .grid-3,
      .grid-2,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .hero-actions {
        flex-direction: column;
      }

      .btn {
        width: 100%;
      }

      .founder-photo img {
        height: 420px;
      }

      .timeline-item {
        grid-template-columns: 1fr;
      }
    }
  