.hamburger-rotate,
.get-in-touch-btn,
.flag-menu {
    position: absolute;   /* keeps it in place while scrolling */
    z-index: 9999;     /* higher than everything else */
}

/* Example positions */
.hamburger-rotate { top: 20px; right: 20px; }
.get-in-touch-btn { top: 20px; right: 85px; }
.flag-menu { top: 30px; right: 320px; }
  .gradient {
      position: fixed; /* FIXED instead of absolute */
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: -1; /* keep behind content */
    }

    body {
      margin: 0;
      min-height: 200vh; /* just for testing scrolling */
      background: black;
       overflow-x: hidden;
      color: white;
      font-family: 'Poppins', sans-serif;
      padding-top: 0
      
      ;
    }

    /* Rest of your CSS styles... */
    /* [Keep all your existing CSS styles here] */

  /* Hero Section */
    .section {
      width: 100%;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 60px 5%;
      position: relative;
    }

    .transformed {
      display: flex;
      width: 100%;
      height: 100%;
      justify-content: center;
      align-items: center;
      opacity: 1;
      pointer-events: auto;
      transition: all 0.8s ease;
    }

    .hero {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 60px;
      width: 100%;
      max-width: 1200px;
    }

    /* Left Content */
    .left {
      flex: 1;
      min-width: 320px;
      padding: 40px;
    }

    .left h1 {
      font-family: 'Montserrat', sans-serif;
      font-size: 3rem;
      font-weight: 600;
      line-height: 1.2;
      color: #fff;
      margin-bottom: 20px;
    }

    .accent {
      color: #00A499;
    }

    .lead {
      font-size: 1.1rem;
      color: #ccc;
      line-height: 1.6;
      margin-bottom: 30px;
      max-width: 500px;
    }

    .actions {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
    }

    .btn {
      padding: 12px 28px;
      border-radius: 30px;
      font-weight: 600;
      text-decoration: none;
      cursor: pointer;
      transition: 0.3s;
    }

    .btn-primary {
      background-color: #00A499;
      color: #fff;
      border: none;
    }

    .btn-primary:hover {
      background-color: #008b81;
      transform: scale(1.05);
    }

    .btn-ghost {
      border: 2px solid #00A499;
      color: #00A499;
      background: transparent;
    }

    .btn-ghost:hover {
      background: #00A499;
      color: #fff;
    }

    /* Right Images */
    .right {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      min-width: 400px;
      height: 100%;
      margin-top: 80px; /* 👈 Lifted image up slightly */
    }

    .image-container {
      width: 100%;
      max-width: 400px;
      height: 500px;
      position: relative;
    }

    .card {
      position: absolute;
      width: 280px;
      height: 380px;
      overflow: hidden;
      border-radius: 15px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.5);
      animation: float 5s ease-in-out infinite;
    }

    .card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .c1 {
      top: -40px;
      left: 30px;
      animation-delay: 0s;
    }

    .c2 {
      top: 80px;
      right: 30px;
      animation-delay: 2.5s;
    }

    @keyframes float {
      0%, 100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-15px);
      }
    }

    /* Responsive */
    @media (max-width: 900px) {
      .hero {
        flex-direction: column;
        text-align: center;
      }

      .left h1 {
        font-size: 2.3rem;
      }

      .lead {
        margin: 0 auto 25px auto;
      }

      .right {
        margin-top: 40px; /* reset for small screens */
      }

      .card {
        position: relative;
        width: 90%;
        height: auto;
        margin: 10px auto;
        animation: none;
      }
    }
    
  /* Remove absolute positioning from client-carousel */
.client-carousel {
  position: relative; /* Changed from absolute */
  width: 100%;
  padding: 40px 0;
  background: transparent;
  overflow: hidden;
}

/* Optional: Add spacing between sections */
.client-carousel-section {
  margin-top: 5px; /* Adjust as needed */
}

/* Keep your scrolling animation as-is */
.client-carousel .logos {
  display: flex;
  align-items: center;  
  justify-content: center;
  animation: scroll 25s linear infinite;
  gap: 80px;
}

    .client-carousel img {
      height: 40px;
      filter: grayscale(100%);
      opacity: 0.7;
      transition: transform 0.3s ease, opacity 0.3s ease;
    }


    .client-carousel img:hover {
      filter: grayscale(0%);
      opacity: 1;
      transform: scale(1.1);
    }

    @keyframes scroll {
      0% { transform: translateX(100%); }
      100% { transform: translateX(-100%); }
    }

    /* Hamburger Menu Styles */
    .hamburger-rotate {
      position: absolute;
      top: 20px;   
      right: 20px;
      width: 50px;       
      height: 50px;     
      border-radius: 0.5em; 
      background: #111;
      overflow: hidden;
      cursor: pointer;
      box-shadow: 0 4px 0 #072b73;  
      z-index: 1001;
    }

    .hamburger-rotate::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: conic-gradient(from 0deg, #00A499, #00A499, #00A499);
      animation: rotateBorder 3s linear infinite;
      transform-origin: center;
      z-index: 0;
    }

    .hamburger-rotate::after {
      content: '';
      position: absolute;
      top: 3px;       
      left: 3px;
      right: 3px;
      bottom: 3px;
      background: #111;
      border-radius: 0.4em;  
      z-index: 1;
    }

    .hamburger-icon {
      position: relative;
      z-index: 3;
      width: 20px;   
      height: 18px;
      margin: 16px auto 0; 
    }

    .hamburger-icon span {
      position: absolute;
      height: 2px;
      width: 100%;
      background: #fff;
      border-radius: 2px;
      transition: 0.4s ease;
      box-shadow: 0 0 4px #fff;
    }

    .hamburger-icon span:nth-child(1) { top: 0; }
    .hamburger-icon span:nth-child(2) { top: 8px; }
    .hamburger-icon span:nth-child(3) { top: 16px; }

    .hamburger-rotate.active .hamburger-icon span:nth-child(1) {
      transform: rotate(45deg);
      top: 5px;
    }

    .hamburger-rotate.active .hamburger-icon span:nth-child(2) {
      opacity: 0;
    }

    .hamburger-rotate.active .hamburger-icon span:nth-child(3) {
      transform: rotate(-45deg);
      top: 5px;
    }

    @keyframes rotateBorder {
      0%   { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    /* Menu Panel Styles */
    
   /* 1. Import Google Fonts */

    /* Menu Panel Styles */
    .menu-panel {
      position: absolute;
      top: 0;
      right: 0;
      width: 100vw;
      height: 100vh;
      background: #fff;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      padding: 40px 50px;
      transform: translateX(100%);
      transition: transform 0.6s ease;
      z-index: 1000;
      line-height: 12vh;
    }

    .menu-panel.active {
      transform: translateX(0);
    }

    .menu-logo {
      flex: 0 0 auto;
    }

    .menu-logo img {
      height: 150px;
      width: 100%;
      display: block;
    }
.menu-links {
    display: flex;
    flex-direction: column;
    font-family: 'Antique', sans-serif;
    height: auto;
    width: 40vw;
    margin-right: 35px;
    margin-top: 40px;
    font-size: 60px; /* Increased font size */
}


    .menu-links a {
      text-decoration: none;
      color: #00afaf; /* Green color */
    }

    .menu-links h4 {
      display: inline-block;
      position: relative;
      cursor: pointer;
      transition: color 0.3s ease;
      margin: 15px 0;
    font-size: 60px;
    font-weight: 800; /* or adjust as needed */


    }

    .menu-links h4:hover {
      color: #0077cc; /* Blue color on hover */
    }

    .menu-links .cross-line {
      position: absolute;
      height: 2px;
      width: 0;
      background: #00afaf;
      bottom: 0;
      left: 0;
      transition: width 0.4s ease;
    }

    .menu-links h4:hover .cross-line {
      width: 70%;
    }

    /* Overlay for when menu is open */
    .menu-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.5);
      z-index: 999;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .menu-overlay.active {
      opacity: 1;
      visibility: visible;
    }
/* ✅ FORCE FLAG MENU TO BE CLICKABLE */
.flag-menu,
.flag-dropdown,
.flag-list,
.flag-list li {
  pointer-events: auto !important;
  z-index: 999999 !important;
  position: relative;
}

/* ✅ MAKE SURE OVERLAY DOES NOT BLOCK FLAG */
.menu-overlay {
  pointer-events: none;
}

/* ✅ WHEN MENU IS OPEN, ONLY MENU SHOULD BLOCK */
.menu-panel.active {
  pointer-events: auto;
}

/* ✅ PREVENT GRADIENT / FLOAT LAYERS FROM BLOCKING */
.gradient,
.card,
.right img,
.hero::after {
  pointer-events: none;
}

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .menu-panel {
        flex-direction: column;
        padding: 20px;
      }

      .menu-logo img {
        height: 100px;
      }

      .menu-links {
        width: 100%;
        font-size: 6vw;
        margin-right: 0;
        margin-top: 20px;
      }
    }

    /* Get in Touch Button */
    .get-in-touch-btn {
      position: absolute;
      top: 20px;
      right: 85px;
      z-index: 1002;
      display: inline-block;
      width: 220px;
      height: 60px;
      box-sizing: border-box;
      text-align: center;
      font-size: 1.125rem;
      color: #00A499;
      background: transparent;
      text-decoration: none;
      font-weight: 700;
      border: 2px solid #00A499;
      border-radius: 50px;
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .button-inner {
      position: relative;
      display: flex;            
      width: 100%;
      height: 100%;
      align-items: center;     
      justify-content: center;  
    }

    .button-inner-static,
    .button-inner-hover {
      position: absolute;
      width: 100%;
      text-align: center;
      transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .button-inner-static {
      opacity: 1;
    }

    .button-inner-hover {
      opacity: 0;
      transform: translateY(50%);
    }

    .get-in-touch-btn:hover .button-inner-static {
      opacity: 0;
      transform: translateY(-50%);
    }

    .get-in-touch-btn:hover .button-inner-hover {
      opacity: 1;
      transform: translateY(0);
    }

    .get-in-touch-btn::before,
    .get-in-touch-btn::after {
      content: "";
      position: absolute;
      width: 0%;
      height: 2px;
      background: #00A499;
      transition: all 0.4s ease;
    }

    .get-in-touch-btn::before { top: 0; left: 0; }
    .get-in-touch-btn::after { bottom: 0; right: 0; }

    .get-in-touch-btn span::before,
    .get-in-touch-btn span::after {
      content: "";
      position: absolute;
      width: 2px;
      height: 0%;
      background: #00A499;
      transition: all 0.4s ease;
    }

    .get-in-touch-btn span::before { top: 0; right: 0; }
    .get-in-touch-btn span::after { bottom: 0; left: 0; }

    .get-in-touch-btn:hover::before,
    .get-in-touch-btn:hover::after {
      width: 100%;
    }

    .get-in-touch-btn:hover span::before,
    .get-in-touch-btn:hover span::after {
      height: 100%;
    }

    .get-in-touch-btn:hover {
      color: #fff;
      background: #00A499;
    }

    /* Logo Styles */
    .logo {
      position: absolute;
      top: 25px;
      left: 25px;
      z-index: 1002;
      display: flex;
      gap: 4px;
      font-size: 2.75rem;
      font-weight: bold;
      color: #00A499;
    
  font-family: 'trajan pro', sans-serif;

    
    font-weight: 700;
    text-transform: lowercase;
    color: #00A499;
    margin-top: -.5rem;
    letter-spacing: -.05em;
    }

    .logo-txt {
      display: inline-block;
      transition: transform 0.3s ease, color 0.3s ease;
    }

    .logo-txt:hover {
      transform: scale(1.2);
      color: #ffffff;
    }

    /* Modern Button Styles */
    .modern-btn {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 12px 26px;
      font-size: 1rem;
      font-weight: 600;
      color: #00A499;
      border: 2px solid #00A499;
      border-radius: 40px;
      background: transparent;
      overflow: hidden;
      cursor: pointer;
      transition: color 0.3s ease;
      text-decoration: none;
      z-index: 1;
    }

    .modern-btn::before {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 0%;
      background: #00A499;
      z-index: 0;
      transition: height 0.3s ease;
    }

    .modern-btn:hover::before {
      height: 100%;
    }

    .modern-btn span,
    .modern-btn i {
      position: relative;
      z-index: 1;
      transition: transform 0.3s ease, color 0.3s ease;
    }

    .modern-btn:hover span,
    .modern-btn:hover i {
      color: #000;
    }

    .modern-btn:hover i {
      transform: translateX(6px);
    }

    /* Custom Select Styles */
    .custom-select-container {
      position: relative;
      width: 160px;
      font-size: 0.78rem;
      font-weight: 600;
      border: 1px solid #00A499;
      border-radius: 6px;
      background: #111;
      color: #00A499;
      cursor: pointer;
      padding: 6px 10px;
      user-select: none;
      top: 25px;
      right: 885px;
    }

    .custom-select-container img {
      width: 14px;
      margin-right: 32px;
      vertical-align: middle;
    }

    .custom-select-container::after {
      content: "▼";
      position: absolute;
      right: 10px;
      top: 8px;
      font-size: 0.5rem;
      color: #00A499;
    }

    .custom-options {
      display: none;
      position: absolute;
      width: 100%;
      top: 100%;
      left: 0;
      background: #111;
      border: 1px solid #00A499;
      border-radius: 6px;
      z-index: 100;
    }

    .custom-options div {
      padding: 6px 10px;
      display: flex;
      align-items: center;
      gap: 6px;
      cursor: pointer;
    }

    .custom-options div:hover {
      background: #00A499;
      color: #000;
    }

    /* Flag Menu Styles */
    .flag-menu {
      position: absolute;
      top: 30px;
      right: 320px;
      z-index: 2000;
    }

    .flag-dropdown {
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(8px);
      border: 1px solid #00A499;
      border-radius: 12px;
      padding: 6px 10px;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 8px;
      color: #00A499;
    }

    .flag-list {
      display: none;
      position: absolute;
      right: 0;
      background: rgba(0, 0, 0, 0.4);
      backdrop-filter: blur(10px);
      border: 1px solid #00A499;
      border-radius: 12px;
      margin-top: 5px;
      list-style: none;
      padding: 0;
      width: 140px;
      color: #fff;
    }

    .flag-list li {
      padding: 8px;
      display: flex;
      align-items: center;
      gap: 8px;
      cursor: pointer;
      transition: background 0.2s, border-left 0.2s;
      border-radius: 8px;
    }

    .flag-list li:hover {
      background: rgba(255, 255, 255, 0.15);
      border-left: 3px solid #00A499;
    }

    /* Section Headings */
    .section-head {
      margin-bottom: 50px;
    }
    .section-head h4 {
      position: relative;
      color: #00A499;
      font-size: 34px;
      font-weight: 700;
      text-align: center;
      margin-bottom: 30px;
    }
    .section-head h4:before {
      content: '';
      width: 60px;
      height: 3px;
      background: #00A499;
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
    }
    .section-head h4 span {
      font-weight: 700;
      color: #fff;
    }
    .section-head p {
      color: #fff;
      font-size: 16px;
      line-height: 28px;
      text-align: center;
    }

    /* Feature Items */
    .item {
  background: transparent;
  text-align: center;
  padding: 30px 25px;
  box-shadow: 0 0px 25px rgba(0, 0, 0, 0.07);
  border-radius: 20px;
  border: 5px solid rgba(0, 0, 0, 0.07);
  margin-bottom: 30px;
  transition: all .5s ease;
}

.item:hover {
  background: #00A499;
  box-shadow: 0 8px 20px 0px rgba(0, 0, 0, 0.2);
}

.item .icon {
  font-size: 40px;
  margin-bottom: 25px;
  color: #00A499;
  width: 90px;
  height: 90px;
  line-height: 96px;
  border-radius: 50%;
  background: transparent;
  display: inline-block;
  transition: all .5s ease;
}

/* ✅ Icon changes on hover */
.item:hover .icon {
  background: #fff;
  color: #00A499;
  border-radius: 50%;
}

.item:hover h6, 
.item:hover p {
  color: #fff;
}

    .item p {
      font-size: 15px;
      line-height: 26px;
    }

    .item h6 {
      margin-bottom: 20px;
      color: #00A499;
    }

    /* Our Expertise Section */
    .our-expertise {
      background: transparent;
      padding: 60px 10%;
      color: #f0f0f0;
    }

    .oe-heading {
      text-align: center;
      margin-bottom: 50px;
    }

    .oe-heading h2 {
      font-size: 2.4rem;
      color: #fff;
      margin-bottom: 14px;
    }
 .oe-heading span {
      font-size: 2.4rem;
      color: #00A499;
      margin-bottom: 14px;
    }
    .oe-heading .oe-subheading {
      font-size: 1.05rem;
      color: #ccc;
      max-width: 600px;
      margin: 0 auto;
    }

    .oe-container {
      display: flex;
      align-items: center;
      gap: 60px;
      max-width: 1200px;
      margin: 0 auto;
      flex-wrap: wrap;
    }

    .oe-points-wrapper {
      flex: 1 1 420px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 20px;
    }

    .oe-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.oe-points li {
  display: grid;
  grid-template-columns: 40px 1fr; /* fixed width for icon, rest for text */
  gap: 18px;
  align-items: start; /* aligns all icons to the top of text */
}

.oe-points i {
  color: #00A499;
  font-size: 1.8rem;
}

.oe-points strong {
  display: block;
  color: #f0f0f0;
  margin-bottom: 6px;
  font-size: 1.1rem;
}

.oe-desc {
  font-size: 0.97rem;
  color: #ccc;
  margin: 0;
  line-height: 1.5;
}


    .oe-image-wrapper {
      flex: 1 1 480px;
      display: flex;
      justify-content: center;
    }

    .oe-image img {
      width: 100%;
      max-width: 500px;
      border-radius: 25px;
      padding: 5px;
      background: linear-gradient(135deg, rgba(0, 128, 128, 0.3), rgba(0, 255, 255, 0.1));
      box-shadow: 0 4px 20px rgba(0, 255, 255, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .oe-image img:hover {
      transform: scale(1.05);
      box-shadow: 0 6px 25px rgba(0, 255, 255, 0.4);
      border: 3px solid #00A499;
    }

    @media (max-width: 768px) {
      .oe-container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
      }

      .oe-points li {
        justify-content: center;
        text-align: left;
      }
    }

    /* Future Services Section */
#future-services {
  position: relative !important;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  min-height: 300px;
  z-index: 50;
}

    #future-services h1 {
      text-align: center;
      color: #00A499;
      margin-bottom: 30px;
    }

    .subtitle {
      font-size: 1.1rem;
      color: #bbb;
      margin-bottom: 40px;
      max-width: 650px;
      margin-left: auto;
      margin-right: auto;
      opacity: 0;
      transform: translateY(20px);
    }

    .features {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
      margin-bottom: 50px;
    }

    .feature {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255,255,255,0.1);
      padding: 20px 25px;
      border-radius: 12px;
      font-size: 1.05rem;
      color: #fff;
      backdrop-filter: blur(10px);
      opacity: 0;
      transform: translateY(20px);
    }

    .stats {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
    }

    .stat-card {
      background: rgba(10, 26, 33, 0.3);
      border: 1px solid rgba(26, 143, 159, 0.3);
      border-radius: 12px;
      padding: 2.5rem 2rem;
      text-align: center;
      transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
      opacity: 0;
      transform: translateY(30px);
      animation: fadeUp 0.8s cubic-bezier(0.19, 1, 0.22, 1) forwards;
      animation-delay: calc(var(--order) * 0.1s);
      backdrop-filter: blur(8px);
    }

    .stat-card:hover {
      transform: translateY(-10px);
      background: rgba(26, 143, 159, 0.15);
      border-color:#00A499;
      box-shadow: 0 1rem 2rem rgba(0,0,0,0.3);
    }

    .stat-number {
      font-size: 3.5rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
      color: #00A499;
      font-family: 'Inter', sans-serif;
    }

    .stat-label {
      color:#fff;
      font-size: 1.1rem;
      letter-spacing: 0.5px;
    }

.subtitle,
.feature,
.stat-card {
  opacity: 1;
  transform: none;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}



    /* Show animation class */
   /* Show animation class */
    .show {
      opacity: 1 !important;
      transform: translateY(0); 
    }


    /* Get in Touch Section */
    #get-in-touch {
      padding: 120px 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 40px;
      flex-wrap: wrap;flex-wrap:transparent; font-family:relative;
      background-color: transparent;
      position: relative;
    }

    #get-in-touch .heading-line1,
    #get-in-touch .heading-line2 {
      color: #fff;
      font-family: 'Montserrat', sans-serif;
      margin: 0;
    }

    #get-in-touch .heading-line1 {
      font-size: 46px;
    }

    #get-in-touch .heading-line2 {
      font-size: 50px;
      font-weight: bold;
    }

    #get-in-touch .subheading {
      color: #fff;
      font-size: 30px;width:100px;height:100px;border-radius:50%;
      margin-top: 20px;
      font-family: 'Montserrat', sans-serif;
    }

    .scroll-arrow {
      font-size: 48px;
      color: #fff;
      background: linear-gradient(135deg, #DCBB42, #042E23);
      width: 100px;
      height: 100px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      transform: rotate(-45deg);
      font-family: 'Montserrat', sans-serif;
      transition: transform 0.3s, font-size 0.3s, background 0.3s;
    }

    /* Hero Section Styles */
    :root {
      --bg: black;
      --card: transparent;
      --ink: #111827;
      --muted: #6b7280;
      --brand: #00A499;
      --cta: #00A499;
    }

    .wrap {
      max-width: 1200px;
      margin: 56px auto;
      padding: 0 20px;
    }

    .hero {
      position: relative;
      display: grid;
      grid-template-columns: 1.05fr 1fr;
      gap: 40px;
      background: var(--card);
      border-radius: 24px;
      padding: 60px clamp(24px, 6vw, 64px);
      box-shadow: var(--shadow);
      overflow: hidden;
      isolation: isolate;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: -20% -10% auto auto;
      height: 420px;
      width: 420px;
      background: radial-gradient(rgba(17, 178, 155, .12), transparent 60%);
      filter: blur(6px);
      z-index: 0;
      transform: translate(20%, -10%);
    }

    .left {
      z-index: 1;
      align-self: center;
    }

    .eyebrow {
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
      font-size: .78rem;
      color: var(--brand);
    }

    h1 {
      font-size: clamp(28px, 4.2vw, 46px);
      line-height: 1.2;
      margin: .35em 0 .4em;
    }

    h1 .accent {
      color: var(--brand);
    }

    h1 .white {
      color: white;
    }

    p.lead {
      color: var(--muted);
      max-width: 40ch;
      margin: 0 0 26px;
    }

    .actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 24px;
    }

    .btn {
      appearance: none;
      border: 0;
      cursor: pointer;
      font-weight: 600;
      border-radius: 12px;
      padding: 12px 18px;
      transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
    }

    .btn:active {
      transform: translateY(1px);
    }

    .btn-primary {
      background: var(--cta);
      color: #fff;
      box-shadow: 0 8px 22px rgba(108, 99, 255, .35);
    }

    .btn-primary:hover {
      filter: brightness(.95);
    }

    .btn-ghost {
      background: #e8fbf7;
      color: var(--brand);
      box-shadow: var(--ring);
    }

    .members {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .stack {
      display: flex;
    }

    .stack img {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid #fff;
      margin-left: -10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, .12);
    }

    .stack img:first-child {
      margin-left: 0;
    }

    .members small {
      color: var(--muted);
      font-weight: 600;
    }

    .right {
      position: relative;
      min-height: 360px;
    }

    .card {
      position: absolute;
      width: 220px;
      height: 280px;
      border-radius: 18px;
      overflow: hidden;
      background: #ddd;
      box-shadow: 0 14px 30px rgba(0, 0, 0, .10);
      transform-origin: center center;
      will-change: transform;
    }

    .card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .c1 {
      top: -10px;
      left: -20px;
      z-index: 3;
    }

    .c2 {
      top: 60px;
      left: 120px;
      z-index: 2;
    }

    .c3 {
      top: 120px;
      left: 10px;
      z-index: 1;
    }

    .chip {
      position: absolute;
      right: -8px;
      bottom: 18px;
      z-index: 4;
      background: #fff;
      border-radius: 12px;
      padding: 10px 12px;
      font-size: .82rem;
      box-shadow: var(--shadow);
      display: flex;
      gap: 10px;
      align-items: center;
    }

    .spark {
      width: 74px;
      height: 28px;
    }

    .curve {
      position: absolute;
      inset: auto -8% -6% -8%;
      z-index: 0;
      pointer-events: none;
    }

    @media (max-width: 980px) {
      .hero {
        grid-template-columns: 1fr;
        padding: 48px 28px;
      }
      .right {
        min-height: 340px;
      }
      .c1 {
        top: 0;
        left: 10px;
      }
      .c2 {
        top: 70px;
        left: 150px;
      }
      .c3 {
        top: 140px;
        left: 40px;
      }
      .chip {
        right: 6px;
      }
    }

    @media (max-width: 560px) {
      .right {
        min-height: 300px;
      }
      .card {
        width: 46vw;
        height: 58vw;
        max-width: 260px;
        max-height: 320px;
      }
      .c2 {
        left: 44vw;
      }
    }  footer {
    position: relative;
    background-color: #00A499;
    color: #fff;
    padding: 40px 0 20px; /* Reduced from 100px top padding to 40px and bottom from 40px to 20px */
}

/* SVG Top Curve */
.footer-bg-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px; /* Reduced from 120px */
    transform: translateY(-100%);
    z-index: 1;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
    padding: 0 10% 20px; /* Reduced bottom padding from 40px to 20px */
}

.footer-bottom {
    text-align: center;
    padding: 10px; /* Reduced from 20px */
    border-top: 1px solid #00A499;
    font-size: 14px;
}


.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
    padding: 0 10% 40px;
}

.footer-column {
    flex: 1;
    margin: 5px;
    min-width: 220px;
}

.footer-column h3 {
    margin-bottom: 15px;
    font-size: 20px;
    color: #072b73;
    font-family: 'Montserrat', sans-serif; /* Headings */
    font-weight: 700; /* Bold */
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #fff;
    text-decoration: none;
}

.contact-form-2 input,
.contact-form-2 textarea {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 4px;
    margin-bottom: 10px;
}

.contact-form-2 button {
    width: 50%;                /* Full width like inputs */
    padding: 12px 15px;         /* Balanced padding */
    background: #072b73;        /* Dark blue background */
    border: none;
    color: #fff;
    font-size: 16px;            /* Slightly larger text */
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.contact-form-2 button:hover {
    background: #0948b3;        /* Hover effect */
    transform: translateY(-2px); /* Small lift effect */
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    border-top: 1px solid #00A499;
    font-size: 14px;
}

.logo-img {
  position: absolute;
    height: 80px;
    margin-left: 10px;
    vertical-align: middle;
}
logo-img {
  height: 80px; /* adjust as needed */
  margin-left: 10px; /* spacing from text */
  vertical-align: middle;

}
.transformed .left {
  margin-right: 40px; /* pushes right column away */
}
   
@media (max-width: 768px) {

  body {
    font-size: 14px;
    overflow-x: hidden;
    padding: 0; /* ✅ REMOVE SIDE PADDING */
  }

  .logo {
    top: 15px;
    left: 15px;
    font-size: 1.8rem;
  }

  .logo-img {
    height: 50px;
  }

  .hamburger-rotate {
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
  }

  .hamburger-icon {
    width: 18px;
    height: 16px;
    margin: 12px auto 0;
  }

  /* ✅ MOBILE MENU – FULLY HIDDEN BY DEFAULT */
  .menu-panel {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 80px 20px 20px;
    text-align: center;
    line-height: 8vh;
    z-index: 1000;
  }

  /* ✅ ONLY OPEN WHEN ACTIVE */
  .menu-panel.active {
    transform: translateX(0);
  }

  .menu-links {
    width: 100%;
    font-size: 8vw;
    margin-top: 20px;
    line-height: 2.5rem;
  }

  .menu-links h4 {
    font-size: 8vw;
    margin: 15px 0;
  }

  .flag-menu {
    top: 20px;
    right: 90px;
  }

  .flag-dropdown {
    padding: 5px 8px;
    font-size: 0.8rem;
  }
  .get-in-touch-btn {
    display: none !important;
  }

}
/* Stats grid */

/* Responsive */
