    :root{
      /* tweak these to match your exact screenshot spacing */
      --panel-h: 200px;     /* dropdown panel height */
      --left-gutter: 136px; /* left margin for panel content */
      --nav-h: 52px;        /* will be overwritten by JS to exact nav height */
    }

    *{margin:0;padding:0;box-sizing:border-box}
    body{font-family:'Inter',sans-serif;color:#111;background:#fff}

    /* ===== Top Nav ===== */
    .top-nav{
      position:sticky; top:0; z-index:1000;
      background: #ffff; border-bottom:1px solid #eee;
      padding:10px 20px;
      display:flex; justify-content:center; align-items:center; gap:24px;
      font-size:13px; font-weight:500;
      min-height:44px;
    }
    .nav-item{position:relative}
    .top-nav a{color:#111;text-decoration:none;transition:color .25s; font-weight: 400;} 
    .top-nav a:hover{color:#060606}

    /* ===== FULL SCREEN BLUR OVERLAY ===== */
    .screen-blur{
      position:fixed; inset:0;
      backdrop-filter:blur(18px);
      -webkit-backdrop-filter:blur(18px);
      background:rgba(255,255,255,0.2); /* subtle wash */
      opacity:0; pointer-events:none;
      transition:opacity .35s ease;
      z-index:100; /* just below the panels */
    }
    .screen-blur.visible{
      opacity:1; pointer-events:auto;
    }

    /* ===== FULL-WIDTH HOVER PANEL (Apple-like) ===== */
    .hover-panel{
      /* fixed so it spans the entire viewport left→right no matter where the item is */
      position:fixed; left:0; right:0; top:var(--nav-h);
      height:var(--panel-h);
      background:rgba(255,255,255,.86);
      backdrop-filter:blur(16px);
      -webkit-backdrop-filter:blur(16px);
      border-bottom:1px solid #e5e5e5;
      box-shadow:0 6px 28px rgba(0,0,0,.04);

      /* layout */
      display:flex; align-items:flex-start; /* content sits from the top */
      pointer-events:none;                   /* disabled until shown */
      opacity:0; transform:translateY(-8px);
      transition:opacity .35s ease, transform .35s ease;
      z-index:1100;
    }
    /* keep visible while hovering either the trigger or the panel */
    .nav-item.open .hover-panel,
    .hover-panel.open{
      opacity:1; transform:translateY(0); pointer-events:auto;
    }

    /* Inner content block – left aligned with big gutter like screenshot */
    .hover-panel .inner{
      width:100%;
      max-width:1400px;
      margin:0 auto;              /* center the content container */
      padding:36px 24px;          /* top/bottom and right padding */
      padding-left:var(--left-gutter); /* the large left gutter */
      text-align:left;
    }
    .hover-panel p{
      max-width:920px;
      font-size:16px; line-height:1.65; font-weight:600;
      color:#111; margin-bottom:16px;
    }
    .hover-panel .learn-more{
      display:inline-block;
      font-size:14px; font-weight:500; text-decoration:none;
      color:#0070f3; transition:color .25s ease;
    }
    .hover-panel .learn-more:hover{ color:#0051a8 }

    /* Hamburger panel uses the same container, with links stacked */
    .hover-panel.menu-list .inner{ display:flex; align-items:center; gap:36px;
    padding-top:36px; }
    .hover-panel.menu-list nav{
      display:flex; flex-direction:row; gap:36px;
    }
    .hover-panel.menu-list nav a{
      font-size:16px; font-weight:600; text-decoration:none; color:#111;
    }
    .hover-panel.menu-list nav a:hover{ color:#0070f3 }



    /* ===== HAMBURGER DROPDOWN LIST (aligned right) ===== */
    .hover-panel.menu-list .inner {
      display: flex;
      flex-direction: column;   /* stack vertically */
      align-items: flex-end;    /* align to the right */
      padding: 12px 265px;
      gap: 12px;
    }

    .hover-panel.menu-list nav {
      display: flex;
      flex-direction: column;   /* vertical links */
      gap: 12px;
      align-items: flex-end;    /* align links to right */
    }

    .hover-panel.menu-list nav a {
      font-size: 16px;
      font-weight: 600;
      text-decoration: none;
      color: #111;
      padding: 6px 0;
      min-width: 120px;         /* keeps consistent width */
      text-align: right;        /* text flush right */
    }

    .hover-panel.menu-list nav a:hover {
      color: #0070f3;
    }



    /* ===== Announcement (unchanged) ===== */
    .announcement{
      text-align:center; font-size:13px; color:#555; padding:6px;
      background:#fafafa; border-bottom:1px solid #eee;
    }

    /* ===== Carousel (kept from your page) ===== */
    .carousel-section{position:relative;width:100%;overflow:hidden;background:#fff;padding:40px 0}
    .carousel-track{display:flex;transition:transform 1.2s ease-in-out;width:300%}
    .carousel{flex:0 0 100%;display:flex;align-items:center;justify-content:center;gap:400px;padding:10px 6%;min-height:100px}
    .carousel-logo img{height:200px;width:auto;display:block}
    .carousel-content{flex:1;text-align:left;opacity:0;transform:translateY(20px);transition:opacity .6s ease, transform .6s ease}
    .carousel-content.show{opacity:1;transform:translateY(0)}
    .carousel-content h2{font-size:26px;font-weight:500;margin-bottom:12px}
    .carousel-content p{font-size:15px;margin-bottom:16px;color:#666}
    .carousel-content .btn{
      display:inline-block;padding:10px 24px;border-radius:30px;background:#fff;
      box-shadow:0 4px 12px rgba(0,0,0,.08);font-weight:600;text-decoration:none;color:#111;transition:.25s
    }
    .carousel-content .btn:hover{background:#111;color:#fff}

    .link-with-arrow {
      position: relative;
      display: inline-block;
      font-size: 18px;
      font-weight: 500;
      color: rgb(0, 102, 204);
      text-decoration: none;
    }

    .link-with-arrow::after {
      content: "›"; /* arrow */
      font-size: 18px;
      margin-left: 6px;
      transition: transform 0.3s ease;
    }

    .promo-strip .link-with-arrow::after{
      content: "›"; /* arrow */
      font-size: 11px;
      margin-left: 6px;
      transition: transform 0.3s ease;
    }

    .link-with-arrow::before {
      content: "";
      position: absolute;
      left: 0;
      bottom: -2px;
      width: 0;
      height: 2px;
      background: rgb(0, 102, 204);
      transition: width 0.3s ease;
    }

    .link-with-arrow:hover::before {
      width: 100%;
    }

    .link-with-arrow:hover::after {
      transform: translateX(4px); /* arrow slides slightly */
    }

    /* == Text animation == */
    #animatedText {
      opacity: 1;
      transition: opacity 0.8s ease-in-out; /* smooth fade */
    }

  /* == hero banner video == */
    .banner {
      margin-top: 20px;
      text-align: center;
      overflow: hidden;
    }

    .video-wrapper {
      position: relative; /* ✅ important: button stays inside */
      width: 100%;
      max-width: 100%;
      max-height: 650px;
      transition: all 0.8s ease;
      border-radius: 12px;
      overflow: hidden;
      display: inline-block;
    }

    .video-wrapper video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

  /* Play/Pause button inside container */
    #playPauseBtn {
      position: absolute;
      bottom: 15px;   /* ✅ bottom right */
      right: 15px;
      width: 50px;   /* 👈 fixed square */
      height: 50px;
      border-radius: 50%;
      background: rgba(248, 248, 248, 0.6);
      border: none;
      color: rgb(29, 28, 28);
      font-size: 1.5rem;
      cursor: pointer;
      display: flex;            /* 👈 centers the icon */
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }

    #playPauseBtn:hover {
      background: rgba(0, 0, 0, 0.8);
    }



    .banner.shrink #playPauseBtn {
      width: 40px;   /* 👈 smaller but still square */
      height: 40px;
      font-size: 1.2rem;
      bottom: 10px;
      right: 10px;
    }


    /* Shrink effect */
    .banner.shrink .video-wrapper {
      width: 85%;
      max-height: 550px;
      border-radius: 40px;
    }


    .banner{margin-top:20px;text-align:center;overflow:hidden}
    .banner .heroVideo{width:100%;max-width:100%;border-radius:12px;transition:all .8s ease}
    .banner.shrink .heroVideo{width:85%}

    @media(max-width:900px){
      .carousel{flex-direction:column;text-align:center;gap:40px}
      .carousel-content{margin-top:20px;text-align:center}
      :root{ --left-gutter: 24px; } /* tighter gutter on mobile */
    }

    /* overlay */
  .nav-blur-overlay {
    position: fixed;
    inset: 0; /* full screen */
    backdrop-filter: blur(8px);
    background: rgba(255,255,255,0.4); /* optional soft tint */
    z-index: 9; /* just below nav */
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  /* show overlay when nav is hovered */
  nav:hover ~ .nav-blur-overlay {
    opacity: 1;
    pointer-events: all; /* allows clicking to close if needed */
  }

  /* nav itself should have higher z-index */
  nav {
    position: relative;
    z-index: 10;
  }

/* Base Section */
.impact-section { padding: 45px 20px; text-align: center; } 
.impact-section h2 { font-size: 56px; font-weight: 700; margin-bottom: 40px; color: #111; text-align: left; margin-left: 100px; }

/* Card */
/* Card */
.impact-card {
  background: #f7f7f9; /* light gray background (same as your uploaded example) */
  border-radius: 22px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* soft shadow */
  width: 1250px;       
  height: 500px;       
  margin: 0 auto;
  display: flex;
  align-items: center;   
  justify-content: space-between;
  padding: 50px;
  position: relative;
  color: #111;
  overflow: hidden;
}


/* Left Content */
.impact-left {
  flex: 1;
  text-align: center;         /* Center align text */
  margin-left: 0;             /* Remove extra margin */
  display: flex;
  flex-direction: column;
  align-items: center;        /* Center horizontally */
  justify-content: center;    /* Center vertically */
  max-width: 500px;           /* Keep text block tidy */
  margin: 0 -86px;
}

.impact-left h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #111;
}

.big-number {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 22px;
}

.big-number span {
  font-size: 16px;
  font-weight: 500;
  color: #555;
}

/* Stats */
.impact-stats {
  display: flex;
  justify-content: center;   /* Keep centered */
  gap: 36px;                 /* Reduce spacing */
  margin-bottom: 20px;
  text-align: center;
  max-width: 400px;          /* Prevent items from spreading too wide */
  margin-left: auto;
  margin-right: auto;
}


.impact-stats div {
  font-size: 14px;
  color: #111;
  text-align: center;
  line-height: 1.2;   /* Reduce overall line spacing */
}

.impact-stats strong {
  font-size: 18px;
  font-weight: 700;
  display: block;
  margin-bottom: 2px; /* Controls gap between number and text */
  line-height: 1.2;   /* Prevent extra spacing */
}



/* Buttons */
.impact-buttons {
  display: flex;
  align-items: center;
  justify-content: center; /* Center buttons too */
  gap: 18px;
}

.btn-primary {
  background: #0070f3;
  color: white;
  padding: 4px 22px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
  height:30px;
}

.btn-primary:hover {
  background: #0059c9;
}

.impact-buttons .link-with-arrow {
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}




/* Right (Watch Image) */
.impact-right {
  flex: 0 0 731px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width:731px;
  height:428px;
  border-radius:18px;
  overflow: hidden;
}

.impact-right img,
.impact-right video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;   /* match parent */
  height: 100%;  /* match parent */
  object-fit: cover;
  border-radius: 18px;
}


/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.fade-in {
  opacity: 0;
  transition: opacity 1s ease-out;
}

/* When visible */
.show {
  opacity: 1 !important;
  transform: translateY(0) !important;
}




/* == we specialize == */
.specialize-carousel {
  box-sizing: border-box;
  position: relative;
  width: 100%;
  height: 100vh; /* Increased height */
  padding: 36px 0;
  background: #fff;
  margin-bottom: 7%;
}

.specialize-carousel .specialize-title {
  font-size: 42px;
  font-weight: 700;
  margin-left: 135px;
  margin-bottom: 20px;
}

.specialize-carousel .specialize-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
} 
.specialize-carousel .specialize-wrapper::-webkit-scrollbar { display: none; }

.specialize-carousel .specialize-track {
  display: flex;
  gap: 20px;
  padding: 6px 12px;
  margin-left: 8%;
}
.specialize-carousel .specialize-track::after {
  content: "";
  flex: 0 0 50px; /* 👈 fake gap width */
}


.specialize-carousel .specialize-item {
  flex: 0 0 auto;
  min-width: 380px;
  max-width: 800px;
  height: 700px;
  background: #f5f5f5;
  border-radius: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  scroll-snap-align: start;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.specialize-carousel .specialize-item h3 {
  padding: 14px;
  font-size: 15px;
  font-weight: 700;
  margin: 0;
}
.specialize-carousel .specialize-item img {
  width: 100%;
  height: 700;
  object-fit: cover;
  flex: 1;
}

.specialize-carousel .specialize-plus {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  font-size: 12px;   /* controls icon size */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  border: none;
}

.specialize-carousel .specialize-plus i {
  pointer-events: none; /* ensures button click works, not the icon */
}

/* tiny CSS helpers */
.specialize-item { cursor: pointer; }          /* shows clickable affordance */
.specialize-modal.open { display: flex; }      /* optional class if you prefer class toggling */


/* Prev/Next buttons Apple-style */
.specialize-carousel .specialize-controls {
  position: absolute;
  bottom: -155px;
  right: 16px;
  display: flex;
  gap: 10px;
}
.specialize-carousel .specialize-prev,
.specialize-carousel .specialize-next {
  background: #efeeee;
  color: #000;
  border: 1px solid #ddd;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
}

.specialize-carousel .specialize-prev.disabled,
.specialize-carousel .specialize-next.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}


/*== modal style == */
/* Overlay */
.specialize-modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  justify-content: center;
  align-items: center;
  overflow-y: auto;
  padding: 40px 20px;
}

/* Modal box */
.specialize-modal-content {
  background: #fff;
  border-radius: 20px;
  max-width: 900px;
  width: 100%;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  animation: modalFadeIn 0.35s ease;
  position: relative;
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Close button */
.specialize-modal-close {
  position: absolute;
  top: 16px; right: 20px;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: #000;
  font-weight: bold;
}

.specialize-modal-content h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.specialize-modal-content h2 {
  font-size: 28px;
  font-weight: 700;
  margin: 10px 0 20px;
}

.specialize-modal-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
}

.specialize-modal-content img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

/* == Tab Style == */
 :root{
    --track-bg:#f4f4f5;
    --track-border:#e8e8ea;
    --text-muted:#777;
    --text-dark:#111;
    --card-border:#ebebef;
    --shadow-soft:0 8px 24px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.04);
    --easing: cubic-bezier(.22,.61,.36,1);
  }


  .section-title{font-size:42px; font-weight: 700; text-align: left; margin-bottom: 5%; margin-left:55px;}

  /* Segmented control */
  .segmented {
    position: relative;
    display: flex;
    justify-content: center;
    background: var(--track-bg);
    border: 1px solid var(--track-border);
    border-radius: 9999px;
    padding: 4px;
    max-width: 1080px;
    margin: 0 auto;
  }
  .segmented .seg-btn{
    flex: 1 1 auto;
    background: transparent;
    border: 0;
    padding: 10px 18px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-muted);
    text-align: center;
    transition: color .25s var(--easing);
    position: relative;
    z-index: 2;
  }
  .segmented .seg-btn[aria-selected="true"]{
    color: var(--text-dark);
  }
  .segmented .slider{
    position: absolute;
    z-index: 1;
    top: 4px;
    left: 4px;
    height: calc(100% - 8px);
    width: 0;
    border-radius: 9999px;
    background: #fff;
    border:1px solid var(--card-border);
    box-shadow: var(--shadow-soft);
    transition: left .45s var(--easing), width .45s var(--easing);
  }

  /* Card wrapper */
  .result-wrap{
    max-width: 1080px;
    margin: 30px auto 40px;
    padding: 0 12px;
  }
  .result-card{
    position: relative;
    background: #fff;
    border: 1px solid var(--card-border);
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(0,0,0,.08), 0 8px 18px rgba(0,0,0,.05);
    padding: 50px 40px;
    text-align: center;
  }
  .result-card::before{
    content:"";
    position:absolute;
    top: 12px;
    left:50%;
    width:28px;
    height:4px;
    background:#d7d7db;
    border-radius:8px;
    transform:translateX(-50%);
  }
  .check-badge{
    position: absolute;
    left: 20px;
    top: 18px;
    width: 28px; height: 28px;
    border-radius: 50%;
    background:#fff;
    border:1px solid var(--card-border);
    box-shadow: var(--shadow-soft);
    display: grid;
    place-items: center;
  }
  .check-badge svg{width:16px; height:16px;}
  .check-badge {
    transition: transform .4s var(--easing), opacity .4s var(--easing);
  }


  /* Panels */
  .tab-panel{
    display: none;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .5s var(--easing), transform .6s var(--easing);
  }
  .tab-panel.active{
    display: block;
  }
  .tab-panel.animate-in{
    opacity: 1 !important;
    transform: translateY(0) !important;
  }

  /* ================ Top Content Style ================ */
  .top-section {
  background-color: #f5f7fa;
  width: 100%;
  padding: 4rem 1rem;
}

.top-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  font-family: 'Inter', sans-serif;
  opacity: 0;  /* start hidden */
}



.top-content blockquote {
  font-size: 1.75rem;
  font-weight: 500;
  color: #000;
  line-height: 1.4;
  margin: 0 0 1rem 0;
}

.top-content cite {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #333;
  font-style: normal;
}


  /*== Timeline Style === */
      .section {
      display: flex;
      min-height: 100vh;
      position: relative;
    }

    /* LEFT FIXED PANEL */
    .left {
      position: sticky;
      top: 0;
      flex: 0 0 40%;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #f5f7fa; /* MATCHED BG */
      padding: 2rem;
    }

    .left-inner {
      max-width: 380px;
      text-align: left;
    }

    .left-inner h1 {
      font-size: 3rem;
      margin-bottom: 1rem;
    }

    .left-inner p {
      font-size: 1.1rem;
      line-height: 1.6;
      color: #333;
    }

    /* RIGHT TIMELINE */
    .right {
      flex: 1;
      padding: 5rem 2rem;
      position: relative;
      background: #f5f7fa;
    }

    /* TIMELINE LINE */
    .timeline::before {
      content: "";
      position: absolute;
      left: -20px;
      top: 0;
      width: 4px;
      height: 100%;
      background: #ddd;
      border-radius: 20px;
    }

    .timeline {
      display: flex;
      flex-direction: column;
      gap: 4rem;
      position: relative;
    }

    /* TIMELINE DOTS */
    .timeline .card::before {
      content: "";
      position: absolute;
      left: -25px;
      top: 30px;
      width: 12px;
      height: 12px;
      background: #007bff;
      border-radius: 50%;
      border: 2px solid #fff;
      box-shadow: 0 0 0 2px #ddd;
    }

    .card {
      background: #fff;
      padding: 2rem;
      border-radius: 40px !important;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
      opacity: 0;
      transform: translateY(100px);
      position: relative;
    }

    /* TOP BLUE LINE */
    .card h2::before {
      content: "";
      display: block;
      width: 50px;
      height: 4px;
      background: #007bff;
      border-radius: 2px;
      margin: 0 auto 1rem auto;
    }

    .card h2 {
      font-size: 1.2rem;
      margin-bottom: 1rem;
      text-align: center;
      font-weight: 600;
      color: #222;
    }

    .card p {
      font-size: 0.95rem;
      color: #555;
      line-height: 1.5;
      text-align: center;
    }

    /* Gray base line */
    .timeline::before{
      content:"";
      position:absolute;
      left:-21px;           /* keep centers aligned */
      top:0;
      width:4px;
      height:100%;
      background:#ddd;
      border-radius:20px;
      z-index:0;
    }

    /* Dots */
    .timeline .card::before{
      content:"";
      position:absolute;
      left:-25px;
      top:30px;
      width:10px;
      height:10px;
      background:#007bff;
      border-radius:50%;
      border:2px solid #fff;
      box-shadow:0 0 0 2px #ddd;
      z-index:4;            /* dots on top */
    }

    /* Blue active line (real element you added) */
    .timeline-line{
      position:absolute;
      left:-21px;           /* centers the 4px line with 12px dot (−25+6 = −19; −21+2 = −19) */
      top:0;
      width:4px;
      height:100%;
      background:#007bff;
      border-radius:20px;
      transform-origin:top center;
      transform:scaleY(0);  /* start collapsed */
      z-index:0;            /* above gray, below dots */
      pointer-events:none;
    }



/* == Milestone == */
 /* Section container */
    #milestones {
      background: #fff;
      padding: 72px 20px;
      font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
      color: #111;
    }
    .m-wrap {
      max-width: 1200px;
      margin: 0 auto;
    }

    /* Header */
    .m-header {
      text-align: center;
      margin-bottom: 36px;
    }
    .m-header h3 {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 16px;
    }
    .m-header p {
      max-width: 880px;
      margin: 0 auto;
      color: var(--muted);
      line-height: 1.6;
      font-size: 14px;
    }

    /* Stats row (icons + numbers) */
    .m-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 48px;
      align-items: start;
      margin: 48px 0 64px;
    }

    .stat {
      text-align: center;
      padding: 4px 12px;
    }

    .stat .icon {
      display: inline-flex;
      width: 90px; /* bigger size */
      height: 90px;
      align-items: center;
      justify-content: center;
      border-radius: 12px;
      font-size: 42px; /* bigger icons */
      color: #111;
      background: transparent;
      margin-bottom: 18px;
    }

    /* Number style */
    .stat .num {
      font-size: 46px;
      font-weight: 800;
      margin: 6px 0;
      letter-spacing: -0.6px;
      color: #111;
    }

    .stat .small {
      display: block;
      margin-top: 8px;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.6;
      max-width: 220px;
      margin-left: auto;
      margin-right: auto;
    }

    /* CTA block below (two-column layout: left = text + button, right = empty/visual) */
    .m-cta {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: start;
      margin-top: 8px;
    }

    .cta-left {
      max-width: 560px;
    }

    .cta-left h2 {
      font-size: 26px;
      margin-bottom: 8px;
      line-height: 1.05;
      font-weight: 800;
      color: #111;
    }

    .cta-left h2 .muted-line {
      display: block;
      font-weight: 700;
      color: #111;
    }

    .cta-left p {
      margin-top: 12px;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.6;
      margin-bottom: 22px;
    }

    .btn-cta {
      display: inline-block;
      background: #fff;
      color: var(--accent);
      border-radius: 999px;
      padding: 10px 18px;
      font-weight: 600;
      text-decoration: none;
      box-shadow: 0 6px 22px rgba(3,41,90,0.06);
      border: 1px solid rgba(0,123,255,0.06);
      transition: transform .18s ease, box-shadow .18s ease;
      font-size: 14px;
    }
    .btn-cta:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(3,41,90,0.08); }

    .cta-right {
      min-height: 1px;
    }

    /* responsive */
    @media (max-width: 900px) {
      .m-stats { grid-template-columns: 1fr; gap: 22px; margin-bottom: 32px; }
      .m-cta { grid-template-columns: 1fr; }
      .cta-left h2 { font-size: 22px; }
      .stat .icon { width: 70px; height: 70px; font-size: 32px; }
      .stat .num { font-size: 38px; }
      #milestones { padding: 36px 16px; }
    }

    .sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

  
/*== Profile == */
  #about-jovin { background: var(--bg); padding: 64px 20px; font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial; color: #111; }
    .aj-container { max-width: 1200px; margin: 0 auto; }

    /* platforms row */
    .aj-platforms {
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap: 18px;
      margin-bottom: 28px;
    }
    .aj-platforms .label { color: #333; font-size: 32px; font-weight: 600; }
    .aj-logos { display:flex; gap: 22px; align-items:center;}
    .aj-logo {
      display:flex;
      align-items:center;
      gap:10px;
      font-size: 15px;
      color: #111;
      text-decoration: none;
      min-height: 32px;
    }
    .aj-logo img { width:28px; height:28px; object-fit:contain; display:block; }

    /* main grid */
    .aj-grid {
      display: grid;
      grid-template-columns: 380px 1fr;
      gap: 48px;
      align-items: start;
    }

    /* photo card */
    .aj-photo {
      background:none;
      border-radius: 12px;
      padding: 18px;
      display:flex;
      justify-content:center;
      align-items:center;
      width: 100%;
    }
    /* .aj-photo .frame {
      width: 320px;
      border-radius: 6px;
      overflow: hidden;
      border: 8px solid #fff;
      box-shadow: 0 20px 40px rgba(18,22,28,0.06);
    } */
    .aj-photo img { display:block; width:100%; height:auto; object-fit:cover;  border-radius: 10px;}

    /* content */
    .aj-content { padding-top: 6px; }
    .intro-line { color: #111; font-size: 18px; margin-bottom: 6px; font-weight:600; }
    .intro-sub { color: #111; font-size: 20px; margin-bottom: 8px; font-weight:700; }
    .hero-title {
      font-size: 36px;
      line-height: 1.02;
      margin: 0 0 16px 0;
      font-weight: 800;
      color: #111;
      letter-spacing: -0.6px;
    }

    .aj-desc {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.7;
      max-width: 680px;
      margin-bottom: 18px;
    }

    .btn-read {
      display:inline-block;
      background:#fff;
      color: #111;
      border-radius: 999px;
      padding: 10px 18px;
      box-shadow: 0 8px 30px rgba(3,41,90,0.06);
      border: 1px solid rgba(0,0,0,0.04);
      cursor:pointer;
      font-weight:600;
      transition: transform .15s ease, box-shadow .15s ease;
      text-decoration: none;
    }
    .btn-read:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(3,41,90,0.10); }

    /* small meta under hero */
    .aj-meta { color: var(--muted); font-size:13px; margin-top:12px; max-width:700px; }

    /* responsiveness */
    @media (max-width: 980px) {
      .aj-grid { grid-template-columns: 1fr; }
      .aj-photo { justify-content:flex-start; }
      .aj-photo .frame { width: 260px; }
      .hero-title { font-size: 30px; }
      .aj-platforms { flex-direction: column; align-items:flex-start; gap:12px; }
    }
    @media (max-width:480px) {
      .aj-photo .frame { width: 100%; }
      .hero-title { font-size: 26px; }
      .aj-desc { font-size: 15px; }
    }


/* Made for u */
 /* wrapper */
    #made-for-each-other {
      background: #fff;
      padding: 56px 20px;
      font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
      color: #111;
    }
    .mfe-wrap {
      max-width: 1160px;
      max-height: 950px;
      margin: 0 auto;
    }

    /* title */
    #made-title {
      font-size: 42px;
      font-weight: 700;
      margin: 0 0 20px 0;
      color: #111;
      letter-spacing: -0.2px;
    }

    /* card container (rounded panel) */
    .mfe-panel {
      background: #F5F7FA;
      border-radius: 14px;
      padding: 28px;
      box-shadow: 0 10px 30px rgba(17,22,27,0.06);
      display: grid;
      grid-template-columns: 1fr 360px;
      gap: 28px;
      align-items: center;
    }

    /* left column (text) */
    .mfe-left h3 {
      font-size: 20px;
      margin: 0 0 12px 0;
      font-weight: 700;
      color: #111;
    }
    .mfe-left p {
      margin: 0 0 16px 0;
      color: var(--muted);
      line-height: 1.7;
      font-size: 14px;
      max-width: 520px;
    }
    .mfe-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--accent);
      font-weight: 600;
      text-decoration: none;
      padding: 6px 0;
      border-radius: 999px;
      transition: transform .12s ease, opacity .12s ease;
    }
    .mfe-cta:hover { 
      transform: translateX(6px); 
      opacity: .95; 
      text-decoration: underline; /* underline on hover */
    }


    /* arrow chevron */
    .mfe-cta::after {
      content: "›";
      display: inline-block;
      transform: translateY(-1px);
      font-size: 18px;
      color: var(--accent);
      opacity: .95;
    }

    /* right column: image card */
    .mfe-image-wrap {
      display:flex;
      justify-content:flex-end;
    }
    /* .mfe-image-card {
      width: 320px;
      height: 320px;
      border-radius: 18px;
      overflow: hidden;
      position: relative;
     
      display:flex;
      align-items:center;
      justify-content:center;
    } */

    /* subtle pattern / diagonal sheen */
    /* .mfe-image-card::before{
      content: "";
      position:absolute;
      inset: 0;
      background: linear-gradient(120deg, rgba(255,255,255,0.06) 0%, rgba(0,0,0,0.02) 100%);
      mix-blend-mode: overlay;
      pointer-events:none;
    } */

    /* the actual image (replace src) */
    .mfe-image {
      width: 525px;
      height: 100%;
      object-fit: cover;
      border-radius: 14px;
      transform: translateY(-4px);
      margin-top: 46px;
      margin-right: 35px;
    }

    /* rounded border highlight on card */
    .mfe-image-outline{
      position:absolute;
      inset: 10px;
      border-radius: 14px;
      pointer-events:none;
      box-shadow: inset 0 0 0 1px rgba(0,0,0,0.03);
    }

    /* responsive adjustments */
    @media (max-width: 980px) {
      .mfe-panel { grid-template-columns: 1fr 300px; gap: 18px; padding: 20px; }
      .mfe-image-card { width: 280px; height: 280px; }
    }
    @media (max-width: 720px) {
      #made-title { font-size: 22px; }
      .mfe-panel { grid-template-columns: 1fr; gap: 18px; }
      .mfe-image-wrap { justify-content: center; margin-top: 6px; }
      .mfe-image-card { width: 92%; height: 260px; }
    }



    /*==== Footer ==== */
      /* Base Footer */
  .footer {
    background: #ffffff;
    color: #000000;
    font-family: 'Inter', sans-serif;
    border-top: 3px solid #1c1a2b;
  }

  .logo-footer img{
    margin: 0 auto;
    height:100px;
    width:100px;
    display:block;
  }
  .footer-top{
  max-width:1200px;
  margin:0 auto;
  padding:40px 24px;
  display:grid;

  /* 🔧 Content-sized columns, evenly distributed */
  grid-template-columns: repeat(4, max-content);
  justify-content: space-between;   /* equal gaps between columns */
  align-items:start;
  column-gap:70px;                  /* safety gap if space gets tight */
}

/* keep brand text from stretching too wide */
.footer-col.brand{ max-width:320px; }

/* Prevent ultra-narrow columns; keeps lists readable */
.footer-col{ min-width:220px; }

/* Responsive */
@media (max-width: 992px){
  .footer-top{
    grid-template-columns: repeat(2, minmax(220px, max-content));
    justify-content: space-between;
    row-gap:28px;
  }
}
@media (max-width: 560px){
  .footer-top{
    grid-template-columns: 1fr;
    justify-content: start;
    row-gap:22px;
  }
}

  .footer-col h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #000000;
  }

  .footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #000000;
  }

  .footer-col p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #000000;
  }

  .footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-col ul li {
    margin-bottom: 10px;
  }

  .footer-col ul li a {
    text-decoration: none;
    color: #000000;
    font-size: 14px;
    transition: color 0.3s ease;
  }

  .footer-col ul li a:hover {
    color: #393838;
  }

  .contact-link {
    color: #4da6ff;
    font-weight: 600;
    text-decoration: none;
  }

  .socials {
    display: flex;
    gap: 15px;
    margin: 12px 0;
  }

  .socials a {
    font-size: 18px;
    color: #000000;
    transition: color 0.3s ease;
  }

  .socials a:hover {
    color: #393838;
  }

  .mail {
    font-size: 13px;
    color: #000000;
  }

  /* Bottom */
  .footer-bottom {
    background: #ffffff;
    padding: 10px 20px;   /* reduced bottom padding */
    text-align: center;
    font-size: 13px;
    color: #000000;
    border-top: 1px solid #ddd; /*  lighter line */
    margin-bottom: 0 !important;
  }

  /* ================= CLEAN WHITE FOOTER ================= */
.footer {
  background: #fff;
  color: #000;
  padding: 60px 20px 25px;
  border-top: 2px solid #111;
  font-size: 1.05rem; /* Global base font size */
}

/* --- Layout: Equal spacing & center alignment --- */
.footer-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: flex-start;
  justify-items: center;
  gap: 97px; /* Equal gap between all columns */
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Brand Column --- */
.footer-col.brand {
  text-align: center;
}

.footer-col.brand img {
  display: block;
  margin: 0 auto 12px;
  max-width: 120px;
  height: auto;
}

.footer-col.brand p {
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
  color: #000;
}

/* --- Column Headings --- */
.footer-col h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #000;
  font-weight: 600;
}

/* --- Column Links --- */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #000;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-col ul li a:hover {
  color: #0070f3;
}

/* --- Social & Contact --- */
.footer-col .contact-link {
  color: #0070f3;
  font-weight: 600;
  text-decoration: none;
}

.footer-col .contact-link:hover {
  text-decoration: underline;
}

.footer-col .socials {
  margin: 10px 0;
}

.footer-col .socials a {
  color: #000;
  font-size: 1.3rem;
  margin-right: 10px;
  transition: 0.3s ease;
}

.footer-col .socials a:hover {
  color: #0070f3;
}

.footer-col .mail {
  font-weight: 500;
  color: #000;
  margin: 4px 0;
  font-size: 0.95rem;
}

/* --- Bottom Section --- */
.footer-bottom {
  text-align: center;
  border-top: 1px solid #ddd;
  margin-top: 40px;
  padding-top: 15px;
  font-size: 1.5rem;
  color: #000;
}

/* --- Responsive Fixes --- */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
  }
}

@media (max-width: 600px) {
  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .footer-col h4 {
    margin-top: 10px;
  }

  .footer-col .socials a {
    margin: 0 8px;
  }
}




/* =======================================================
   ✅ RESPONSIVE MEDIA QUERIES (with Fixed iPad Navbar)
   ======================================================= */

/* ============================
   📱 MOBILE VIEW (max 480px)
   ============================ */
@media (max-width: 480px) {
  /* ---- Contact Section ---- */
  .contact-section {
    padding: 40px 15px;
  }

  .title {
    font-size: 1.4rem;
    line-height: 1.3;
  }

  .subtitle {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 25px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  input,
  select,
  textarea {
    font-size: 13px;
    height: 45px;
  }

  .btn-submit {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    border-radius: 6px;
  }

  .consent {
    font-size: 11px;
    text-align: center;
  }

  /* ---- Navbar ---- */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .navbar .logo {
    margin-left: 10px;
  }

  .navbar .logo img {
    max-width: 110px;
    height: auto;
  }

  /* Hamburger button */
  .navbar-toggler {
    margin-left: auto;
    margin-right: 15px;
    border: none !important;
    background: none !important;
    box-shadow: none !important;
    outline: none !important;
    z-index: 1001;
  }

  .navbar-toggler-icon {
    width: 25px;
    height: 2px;
    background-color: #000;
    position: relative;
    transition: all 0.3s ease;
  }

  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 25px;
    height: 2px;
    background-color: #000;
    transition: all 0.3s ease;
  }

  .navbar-toggler-icon::before {
    top: -7px;
  }

  .navbar-toggler-icon::after {
    top: 7px;
  }

  .navbar-toggler.active .navbar-toggler-icon {
    background-color: transparent;
  }

  .navbar-toggler.active .navbar-toggler-icon::before {
    transform: rotate(45deg);
    top: 0;
  }

  .navbar-toggler.active .navbar-toggler-icon::after {
    transform: rotate(-45deg);
    top: 0;
  }

  /* Slide-in menu */
  .navbar-collapse {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background-color: #fff;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
    transition: left 0.4s ease;
    z-index: 1000;
    padding-top: 80px;
    text-align: left;
  }

  .navbar-collapse.show {
    left: 0;
  }

  .navbar-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 20px;
  }

  .navbar-nav .nav-item {
    margin: 15px 0;
  }

  .navbar-nav .nav-link {
    font-size: 18px;
    color: #000;
    font-weight: 500;
    transition: color 0.3s;
  }

  .navbar-nav .nav-link:hover {
    color: #0070f3;
  }

  /* Close button (inside slide menu) */
.close-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 28px;
  font-weight: bold;
  color: #000;
  cursor: pointer;
  z-index: 1100; /* make sure it’s above all content */
}

/* Ensure slide menu itself is clickable area */
.navbar-collapse {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  height: 100vh;
  background-color: #fff;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
  transition: left 0.4s ease;
  z-index: 1000;
  padding-top: 80px;
  text-align: left;
}

.navbar-collapse.show {
  left: 0;
}


  /* ---- Footer ---- */
  .footer-top {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 30px 15px;
    text-align: center;
  }

  .footer-top .footer-col {
    width: 100%;
  }

  .footer-top .footer-col.brand img {
    max-width: 120px;
    margin: 0 auto 10px;
  }

  .footer-top .footer-col h4 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .footer-top .footer-col ul li a {
    font-size: 14px;
  }

  .footer-top .footer-col .socials a {
    font-size: 18px;
    margin: 0 6px;
  }

  .footer-bottom {
    text-align: center;
    padding: 15px 10px;
    font-size: 13px;
  }
}

/* ============================
   📲 TABLETS (481px – 767px)
   ============================ */
@media (min-width: 481px) and (max-width: 767px) {
  .contact-section {
    padding: 60px 25px;
  }

  .title {
    font-size: 1.7rem;
  }

  .subtitle {
    font-size: 1.1rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .btn-submit {
    width: 80%;
    font-size: 15px;
  }

  /* Navbar with hamburger */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .navbar-toggler {
    margin-left: auto;
    margin-right: 20px;
    border: none !important;
    background: none !important;
    z-index: 1001;
  }

  .navbar-collapse {
    position: fixed;
    top: 0;
    left: -100%;
    width: 65%;
    height: 100vh;
    background-color: #fff;
    transition: left 0.4s ease;
    z-index: 1000;
    padding-top: 80px;
  }

  .navbar-collapse.show {
    left: 0;
  }

  .navbar-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 20px;
  }

  .navbar-nav .nav-item {
    margin: 10px 0;
  }

  .navbar-nav .nav-link {
    font-size: 18px;
    color: #000;
    font-weight: 500;
  }

  .navbar .logo img {
    max-width: 130px;
  }

  .close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 28px;
    font-weight: bold;
    color: #000;
    cursor: pointer;
    z-index: 1100;
  }

  /* Footer */
  .footer-top {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 40px 25px;
    text-align: center;
  }
}

/* ============================
   💻 IPAD & SMALL LAPTOPS (768px – 1023px)
   ============================ */
@media (min-width: 768px) and (max-width: 1023px) {
  .contact-section {
    padding: 80px 50px;
  }

  .title {
    font-size: 1.9rem;
  }

  .subtitle {
    font-size: 1.15rem;
  }

  /* ✅ Show full menu (no hamburger) */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .navbar-toggler {
    display: none !important;
  }

  .navbar-collapse {
    position: static;
    width: auto;
    height: auto;
    background: none;
    box-shadow: none;
    display: flex !important;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    padding-top: 0;
  }

  .navbar-nav {
    display: flex;
    flex-direction: row;
    gap: 25px;
  }

  .navbar-nav .nav-link {
    font-size: 16px;
    color: #000;
    font-weight: 500;
  }

  .navbar-nav .nav-link:hover {
    color: #0070f3;
  }

  .navbar .logo img {
    max-width: 150px;
  }

  .footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px 15px;
    gap: 25px;
  }

  .footer-top .footer-col {
    width: 100%;
    max-width: 320px;
    margin-bottom: 20px;
  }

  .footer-top .footer-col.brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .footer-top .footer-col.brand img {
    display: block;
    margin: 0 auto 10px;
    max-width: 130px;
    height: auto;
  }

  .footer-top .footer-col h4 {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .footer-top .footer-col ul li a {
    font-size: 14px;
  }

  .footer-top .footer-col .socials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
  }

  .footer-top .footer-col .socials a {
    font-size: 20px;
    color: #000;
    transition: color 0.3s;
  }

  .footer-top .footer-col .socials a:hover {
    color: #0070f3;
  }

  .footer-bottom {
    text-align: center;
    padding: 15px 10px;
    font-size: 13px;
  }
}

/* ============================
   🖥️ DESKTOPS (≥1024px)
   ============================ */
@media (min-width: 1024px) {
  .contact-section {
    padding: 100px 60px;
  }

  .title {
    font-size: 2.2rem;
  }

  .subtitle {
    font-size: 1.2rem;
  }

  .form-grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }

  .btn-submit {
    width: 400px;
  }

  /* Full desktop navbar */
  .navbar-nav {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 25px;
  }

  .navbar-nav .nav-item {
    margin-left: 20px;
  }

  .navbar-nav .nav-link {
    color: #000;
    font-weight: 500;
  }

  /* ===== Footer Cleanup for iPad Pro & Desktop ===== */
  .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding: 40px 60px 20px;
    text-align: left;
  }

  .footer-top .footer-col {
    flex: 1;
    max-width: 280px;
    margin-bottom: 0;
  }

  .footer-top .footer-col.brand {
    align-items: flex-start;
    text-align: left;
  }

  .footer-top .footer-col.brand img {
    margin: 0 0 10px 0;
    max-width: 120px;
  }

  .footer-top .footer-col h4 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .footer-top .footer-col ul {
    padding: 0;
    margin: 0;
  }

  .footer-top .footer-col ul li {
    margin-bottom: 6px;
  }

  .footer-top .footer-col ul li a {
    font-size: 14px;
  }

  .footer-top .footer-col .socials {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    margin-top: 8px;
  }

  .footer-bottom {
    padding: 10px 0 20px;
    text-align: center;
    font-size: 13px;
  }
}

/* Extra fallback for <1024px if needed */
@media (max-width: 1023px) {
  .footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .footer-top .footer-col {
    width: 100%;
    max-width: 300px;
    margin-bottom: 20px;
  }

  .footer-top .footer-col.brand img {
    display: block;
    margin: 0 auto 10px;
  }

  .footer-top .footer-col .socials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
  }

  .footer-top .footer-col .socials a {
    font-size: 20px;
    color: #000;
    transition: color 0.3s;
  }

  .footer-top .footer-col .socials a:hover {
    color: #0070f3;
  }

  .footer-bottom {
    text-align: center;
    padding: 15px 10px;
    font-size: 13px;
  }
}


/* =======================================================
   ✅ RESPONSIVE MEDIA QUERIES (with Fixed iPad Navbar)
   ======================================================= */

/* ============================
   📱 MOBILE VIEW (max 480px)
   ============================ */
@media (max-width: 480px) {
  /* ---- Contact Section ---- */
  .contact-section {
    padding: 40px 15px;
  }

  .title {
    font-size: 1.4rem;
    line-height: 1.3;
  }

  .subtitle {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 25px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  input,
  select,
  textarea {
    font-size: 13px;
    height: 45px;
  }

  .btn-submit {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    border-radius: 6px;
  }

  .consent {
    font-size: 11px;
    text-align: center;
  }

  /* ---- Navbar ---- */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .navbar .logo {
    margin-left: 10px;
  }

  .navbar .logo img {
    max-width: 110px;
    height: auto;
  }

  /* Hamburger button */
  .navbar-toggler {
    margin-left: auto;
    margin-right: 15px;
    border: none !important;
    background: none !important;
    box-shadow: none !important;
    outline: none !important;
    z-index: 1001;
  }

  .navbar-toggler-icon {
    width: 25px;
    height: 2px;
    background-color: #000;
    position: relative;
    transition: all 0.3s ease;
  }

  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 25px;
    height: 2px;
    background-color: #000;
    transition: all 0.3s ease;
  }

  .navbar-toggler-icon::before {
    top: -7px;
  }

  .navbar-toggler-icon::after {
    top: 7px;
  }

  .navbar-toggler.active .navbar-toggler-icon {
    background-color: transparent;
  }

  .navbar-toggler.active .navbar-toggler-icon::before {
    transform: rotate(45deg);
    top: 0;
  }

  .navbar-toggler.active .navbar-toggler-icon::after {
    transform: rotate(-45deg);
    top: 0;
  }

  /* Slide-in menu */
  .navbar-collapse {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background-color: #fff;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
    transition: left 0.4s ease;
    z-index: 1000;
    padding-top: 80px;
    text-align: left;
  }

  .navbar-collapse.show {
    left: 0;
  }

  .navbar-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 20px;
  }

  .navbar-nav .nav-item {
    margin: 15px 0;
  }

  .navbar-nav .nav-link {
    font-size: 18px;
    color: #000;
    font-weight: 500;
    transition: color 0.3s;
  }

  .navbar-nav .nav-link:hover {
    color: #0070f3;
  }

  /* Close button (inside slide menu) */
.close-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 28px;
  font-weight: bold;
  color: #000;
  cursor: pointer;
  z-index: 1100; /* make sure it’s above all content */
}

/* Ensure slide menu itself is clickable area */
.navbar-collapse {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  height: 100vh;
  background-color: #fff;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
  transition: left 0.4s ease;
  z-index: 1000;
  padding-top: 80px;
  text-align: left;
}

.navbar-collapse.show {
  left: 0;
}


  /* ---- Footer ---- */
  .footer-top {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 30px 15px;
    text-align: center;
  }

  .footer-top .footer-col {
    width: 100%;
  }

  .footer-top .footer-col.brand img {
    max-width: 120px;
    margin: 0 auto 10px;
  }

  .footer-top .footer-col h4 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .footer-top .footer-col ul li a {
    font-size: 14px;
  }

  .footer-top .footer-col .socials a {
    font-size: 18px;
    margin: 0 6px;
  }

  .footer-bottom {
    text-align: center;
    padding: 15px 10px;
    font-size: 13px;
  }
}

/* ============================
   📲 TABLETS (481px – 767px)
   ============================ */
@media (min-width: 481px) and (max-width: 767px) {
  .contact-section {
    padding: 60px 25px;
  }

  .title {
    font-size: 1.7rem;
  }

  .subtitle {
    font-size: 1.1rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .btn-submit {
    width: 80%;
    font-size: 15px;
  }

  /* Navbar with hamburger */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .navbar-toggler {
    margin-left: auto;
    margin-right: 20px;
    border: none !important;
    background: none !important;
    z-index: 1001;
  }

  .navbar-collapse {
    position: fixed;
    top: 0;
    left: -100%;
    width: 65%;
    height: 100vh;
    background-color: #fff;
    transition: left 0.4s ease;
    z-index: 1000;
    padding-top: 80px;
  }

  .navbar-collapse.show {
    left: 0;
  }

  .navbar-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 20px;
  }

  .navbar-nav .nav-item {
    margin: 10px 0;
  }

  .navbar-nav .nav-link {
    font-size: 18px;
    color: #000;
    font-weight: 500;
  }

  .navbar .logo img {
    max-width: 130px;
  }

  .close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 28px;
    font-weight: bold;
    color: #000;
    cursor: pointer;
    z-index: 1100;
  }

  /* Footer */
  .footer-top {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 40px 25px;
    text-align: center;
  }
}

/* ============================
   💻 IPAD & SMALL LAPTOPS (768px – 1023px)
   ============================ */
@media (min-width: 768px) and (max-width: 1023px) {
  .contact-section {
    padding: 80px 50px;
  }

  .title {
    font-size: 1.9rem;
  }

  .subtitle {
    font-size: 1.15rem;
  }

  /* ✅ Show full menu (no hamburger) */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .navbar-toggler {
    display: none !important;
  }

  .navbar-collapse {
    position: static;
    width: auto;
    height: auto;
    background: none;
    box-shadow: none;
    display: flex !important;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    padding-top: 0;
  }

  .navbar-nav {
    display: flex;
    flex-direction: row;
    gap: 25px;
  }

  .navbar-nav .nav-link {
    font-size: 16px;
    color: #000;
    font-weight: 500;
  }

  .navbar-nav .nav-link:hover {
    color: #0070f3;
  }

  .navbar .logo img {
    max-width: 150px;
  }

  .footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px 15px;
    gap: 25px;
  }

  .footer-top .footer-col {
    width: 100%;
    max-width: 320px;
    margin-bottom: 20px;
  }

  .footer-top .footer-col.brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .footer-top .footer-col.brand img {
    display: block;
    margin: 0 auto 10px;
    max-width: 130px;
    height: auto;
  }

  .footer-top .footer-col h4 {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .footer-top .footer-col ul li a {
    font-size: 14px;
  }

  .footer-top .footer-col .socials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
  }

  .footer-top .footer-col .socials a {
    font-size: 20px;
    color: #000;
    transition: color 0.3s;
  }

  .footer-top .footer-col .socials a:hover {
    color: #0070f3;
  }

  .footer-bottom {
    text-align: center;
    padding: 15px 10px;
    font-size: 13px;
  }
}

/* ============================
   🖥️ DESKTOPS (≥1024px)
   ============================ */
@media (min-width: 1024px) {
  .contact-section {
    padding: 100px 60px;
  }

  .title {
    font-size: 2.2rem;
  }

  .subtitle {
    font-size: 1.2rem;
  }

  .form-grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }

  .btn-submit {
    width: 400px;
  }

  /* Full desktop navbar */
  .navbar-nav {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 25px;
  }

  .navbar-nav .nav-item {
    margin-left: 20px;
  }

  .navbar-nav .nav-link {
    color: #000;
    font-weight: 500;
  }

  /* ===== Footer Cleanup for iPad Pro & Desktop ===== */
  .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding: 40px 60px 20px;
    text-align: left;
  }

  .footer-top .footer-col {
    flex: 1;
    max-width: 280px;
    margin-bottom: 0;
  }

  .footer-top .footer-col.brand {
    align-items: flex-start;
    text-align: left;
  }

  .footer-top .footer-col.brand img {
    margin: 0 0 10px 0;
    max-width: 120px;
  }

  .footer-top .footer-col h4 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .footer-top .footer-col ul {
    padding: 0;
    margin: 0;
  }

  .footer-top .footer-col ul li {
    margin-bottom: 6px;
  }

  .footer-top .footer-col ul li a {
    font-size: 14px;
  }

  .footer-top .footer-col .socials {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    margin-top: 8px;
  }

  .footer-bottom {
    padding: 10px 0 20px;
    text-align: center;
    font-size: 13px;
  }
}

/* Extra fallback for <1024px if needed */
@media (max-width: 1023px) {
  .footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .footer-top .footer-col {
    width: 100%;
    max-width: 300px;
    margin-bottom: 20px;
  }

  .footer-top .footer-col.brand img {
    display: block;
    margin: 0 auto 10px;
  }

  .footer-top .footer-col .socials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
  }

  .footer-top .footer-col .socials a {
    font-size: 20px;
    color: #000;
    transition: color 0.3s;
  }

  .footer-top .footer-col .socials a:hover {
    color: #0070f3;
  }

  .footer-bottom {
    text-align: center;
    padding: 15px 10px;
    font-size: 13px;
  }
}
/* ===============================
   COMPANY INTRO SECTION (Desktop)
   =============================== */
.company-intro {
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.company-intro .intro-container {
  max-width: 950px;
  text-align: center;
}

.company-intro .intro-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

.company-intro .intro-text {
  font-size: 17px;
  line-height: 1.7;
  max-width: 850px;
  margin: 0 auto 30px;
  text-align: justify;
}

.company-intro .link-with-arrow {
  font-weight: 600;
  font-size: 16px;
  display: inline-block;
  margin-top: 10px;
}



/* ===============================
   📱 MOBILE VIEW (max 576px)
   =============================== */
@media (max-width: 576px) {

  .company-intro {
    padding: 50px 15px;
  }

  .company-intro .intro-container {
    text-align: center;
  }

  .company-intro .intro-title {
    font-size: 30px;
    line-height: 1.3;
  }

  .company-intro .intro-text {
    font-size: 15px;
    line-height: 1.6;
    text-align: justify;
    padding: 0 5px;
  }

  .company-intro .link-with-arrow {
    font-size: 14px;
    margin-top: 15px;
  }
}



/* ===============================
   📱 TABLET VIEW (min 577px – max 768px)
   =============================== */
@media (min-width: 577px) and (max-width: 768px) {

  .company-intro {
    padding: 60px 20px;
  }

  .company-intro .intro-title {
    font-size: 35px;
  }

  .company-intro .intro-text {
    font-size: 16px;
    max-width: 700px;
  }
}

/* Slide Menu (hidden by default on the left) */
.slide-menu {
  position: fixed;
  top: 0;
  left: -300px; /* hide offscreen to the left */
  width: 280px;
  height: 100%;
  background: #fff;
  box-shadow: 2px 0 8px rgba(0,0,0,0.2);
  transition: left 0.3s ease;
  padding: 20px;
  z-index: 1050; /* above navbar */
}

/* Show menu */
.slide-menu.open {
  left: 0; /* slide in from left */
}

/* Close button inside slide menu */
.slide-menu .close-btn {
  font-size: 28px;
  font-weight: bold;
  border: none;
  background: transparent;
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 20px; /* you can move it to left: 20px if you prefer */
}

/* Slide menu links */
.slide-menu .nav-link {
  display: block;       /* each link on its own line */
  margin: 8px 0;        /* reduce vertical spacing */
  font-size: 18px;      /* keep size consistent */
  text-decoration: none;
  color: #000;
  font-weight: 500;
  transition: color 0.3s ease;
}

.slide-menu .nav-link:hover {
  color: #ff6600; /* optional hover color */
}

  /* ===== Banner Base Style ===== */


/* ===== Mobile (up to 480px) ===== */
@media (max-width: 480px) {
  .banner{
    height: 127px;
  }
}


/* ===== Tablet (481px - 768px) ===== */
@media (min-width: 481px) and (max-width: 768px) {
 .banner{
  height: 254px;
 }
}


/* ===== Tablet Landscape / Small Laptop (769px - 1024px) ===== */
@media (min-width: 769px) and (max-width: 1024px) {
  .banner{
    height: 335px;
  }
}



