html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  background-color: #fffef3;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.coming-soon {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

.container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
}

img, video {
  max-width: 100%;
  height: auto;
}


.dropdown-toggle{
  text-decoration: none;
  color: white;
}

.second-navbar {
  background: #fffef3;
  justify-content: space-between;
  align-items: center;
  height: 69px;
  border-radius: 12px;
  box-shadow: 0 0 0 1px #ccc;
  display: none;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  padding: 20px 5%;
}

.second-navbar.show {
  display: flex;
}

.navbar.hide {
  display: none;
}

.second-logo img {
  width: 45px;
}

.second-nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.second-nav-links a {
  color: #767466;
  text-decoration: none;
  font-weight: 400;
}

.second-cloud-icon {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #242929;
}

.second-cloud-icon img {
  width: 40px;
  height: 40px;
}

.second-contact-btn {
  background-color: #242929;
  color: #fffef3;
  padding: 12px 24px;
  border: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.second-dropdown {
  position: relative;
}

.second-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links-india-nav{
  display: flex;
  gap: 30px;
}

.second-arrow-img {
  transition: transform 0.3s ease;
}

.second-dropdown:hover .second-arrow-img {
  transform: rotate(180deg);
}

.second-dropdown-content {
  display: none;
  position: absolute;
  top: calc(100% + 10px); /* Added 10px gap between navbar and dropdown */
  left: 0;
  background: #fffef3;
  color: #242929;
  padding: 16px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 100;
  white-space: nowrap;
  min-width: 200px; /* Ensure minimum width for better responsiveness */
}

.second-dropdown:hover .second-dropdown-content {
  display: block;
}

.second-dropdown-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.second-dropdown-content li {
  margin: 8px 0;
  font-size: 14px;
}

.second-grid-3 {
  display: flex;
  gap: 24px;
}

.dots-container {
    text-align: center;
    margin-top: 15px;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 4px;
    background-color: #fffef3;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
    cursor: pointer;
}


.dropdown-column{
  display: flex;
  align-items: start;
  /* justify-content: space-between; */
  gap: 30px;
}

.dropdown-column strong {
  color: #000000 !important;
}

.menu-toggle {
  display: none;
  background: none;
  font-size: 26px;
  color: white;
  border: none;
  cursor: pointer;
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 7%; /* Increased from 5% to 7% for more breathing room */
  color: #fff;
  width: 100%;
  transition: top 0.3s ease-in-out;
}

.nav-3{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
  margin-left: 30px; /* Add margin to separate from nav-links */
}

.hide-navbar {
  top: -100px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: bold;
}

.logo img {
  height: 24.24px;
  max-width: 225.63px;
}

.nav-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  gap: 10px;
}

.contact-btn {
  background-color: #fffef3;
  text-decoration: none;
  color: #242929;
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 100%;
  font-weight: 500;
  width: 122px;
  height: 42px;
  display: flex;               
  align-items: center;         
  justify-content: center;     
  cursor: pointer;
}

.dropdown {
  position: relative;
  display: flex;
  align-items: center;
  white-space: nowrap;

}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #f7f5ec;
  color: #333;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  z-index: 99;
}

.dropdown-content grid-3 {
  display: flex;
  gap: 40px;
}

.dropdown:hover .arrow-img {
  transform: rotate(180deg);
}

.nav-links-data{
  display: flex;
  flex-direction: column;
  align-items: start; 
  gap: 8px;
}

.nav-links-data a{
  color: #716f60;
  text-decoration: none;
}
.nav-links-data a:hover{ 
  color:#ffa163;
}

.nav-links-data strong{
    /* padding-bottom: 10px; */
    padding-bottom: 5px;
    padding-top: 10px;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.cloud-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color:#fffef3;
  text-decoration: none;
}

.arrow-img {
  transition: transform 0.7s ease;
  vertical-align: middle;
  transform-origin: center;
}

.hero-section {
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: url('/assets/images/hero background_4x.webp') no-repeat center center/cover;
  position: relative;
  z-index: 4;
}

.hero-content {
  width: 100%;
  position: relative;
  z-index: 1;
  padding: 0px 5%;
  text-align: center;
}

.hero-content h1 {
  font-size: 84px;
  font-weight: 550;
  line-height: 84px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #fffef3;
  letter-spacing: -0.72px;
  margin: 50px;   /* reset default margins */
}
.hero-content h1 + h1 {
  margin-top: 30px; /* adjust this value for gap */
}

.hero-content p {
  font-size: 24px;
  color: #fffef3;
  margin: 50px;
  line-height: 100%;
  font-weight: 400;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
#typed-text {
  color: #ffa163; 
}

#typed-text::after {
  content: "|";
  animation: blink 1s infinite;
  color: #ffa163;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.cta-button {
  padding: 12px 24px;
  border-radius: 12px;
  color: transparent;
  background-image: linear-gradient(to right, #fca66f, #ffffff75, #17766b);
  -webkit-background-clip: text;
  background-color: black;
  text-decoration: none;
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 265px;
  white-space: nowrap;
  gap: 4px;
  margin: auto;
}

.hero-stats {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin-top: 60px;
  padding-top:18px;
  padding-bottom: 30px;
 
}


.stat-box h2 {
  font-size: 36px;
  margin-bottom: 12px;
  letter-spacing: 2px;
  color: white;
  font-weight: 400;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.stat-box p {
  font-size: 15px;
  letter-spacing: 2px;
  color: #fffef3;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
/* Aurora Background Section Component */
.aurora-background-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* min-height: 100vh; */
    width: 100%;
    background: linear-gradient(135deg, #0a2e2b 0%, #1a3d3a 50%, #2d4f4c 100%);
    color: #e2e8f0;
    transition: background 0.3s ease;
    overflow: hidden;
    padding:30px 5%;
}

/* Aurora Overlay Effect */
.aurora-background-section .aurora-overlay {
    position: absolute;
    inset: -10px;
    overflow: hidden;
    pointer-events: none;
    background-image: 
        repeating-linear-gradient(100deg, #fff 0%, #fff 7%, transparent 10%, transparent 12%, #fff 16%),
        repeating-linear-gradient(100deg, #ffcaa3 10%, #7bc8c4 15%, #5bb5b2 20%, #f8f0e5 25%, #4da5b0 30%);
    background-size: 300% 200%, 200% 100%;
    background-position: 50% 50%, 50% 50%;
    opacity: 0.5;
    filter: blur(10px) invert(1);
    will-change: transform;
    animation: aurora-animation 20s ease-in-out infinite;
    mask-image: radial-gradient(ellipse at 100% 0%, black 10%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at 100% 0%, black 10%, transparent 70%);
}

.aurora-background-section .aurora-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        repeating-linear-gradient(100deg, #fff 0%, #fff 7%, transparent 10%, transparent 12%, #fff 16%),
        repeating-linear-gradient(100deg, #ffcaa3 10%, #7bc8c4 15%, #5bb5b2 20%, #f8f0e5 25%, #4da5b0 30%);
    background-size: 200% 100%;
    background-attachment: fixed;
    mix-blend-mode: difference;
    animation: aurora-animation-reverse 25s ease-in-out infinite;
}

/* Content Wrapper */
.aurora-background-section .aurora-content-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    padding: 4rem 1rem;
    text-align: center;
    z-index: 10;
    opacity: 0;
    transform: translateY(40px);
    animation: fade-in-up 0.8s ease-out 0.3s forwards;
}

/* Typography */
.aurora-background-section .aurora-main-heading {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    color: #f8fafc;
    line-height: 1.4;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.aurora-background-section .aurora-sub-heading {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 300;
    color: #cbd5e1;
    line-height: 1.5;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* CTA Button */
.aurora-background-section .aurora-cta-button {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: #f8fafc;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.aurora-background-section .aurora-cta-button:hover {
    background: linear-gradient(135deg, #334155 0%, #475569 100%);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.aurora-background-section .aurora-cta-button:active {
    transform: translateY(0);
}

/* Animations */
@keyframes aurora-animation {
    0%, 100% {
        background-position: 50% 50%, 50% 50%;
        transform: rotate(0deg);
    }
    25% {
        background-position: 0% 100%, 100% 0%;
    }
    50% {
        background-position: 100% 50%, 0% 100%;
        transform: rotate(180deg);
    }
    75% {
        background-position: 0% 0%, 50% 50%;
    }
}

@keyframes aurora-animation-reverse {
    0%, 100% {
        background-position: 100% 0%, 0% 100%;
    }
    25% {
        background-position: 0% 100%, 100% 0%;
    }
    50% {
        background-position: 50% 50%, 50% 50%;
    }
    75% {
        background-position: 100% 100%, 0% 0%;
    }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .aurora-background-section .aurora-content-wrapper {
        padding: 3rem 1rem;
        gap: 1.5rem;
    }
    
    .aurora-background-section .aurora-main-heading {
        margin-bottom: 1.5rem;
    }
    
    .aurora-background-section .aurora-sub-heading {
        margin-bottom: 2.5rem;
    }
    
    .aurora-background-section .aurora-cta-button {
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .aurora-background-section .aurora-content-wrapper {
        padding: 2rem 0.75rem;
    }
    
    .aurora-background-section .aurora-cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .aurora-background-section .aurora-overlay {
        background-image: 
            repeating-linear-gradient(100deg, #000 0%, #000 7%, transparent 10%, transparent 12%, #000 16%),
            repeating-linear-gradient(100deg, #ffcaa3 10%, #7bc8c4 15%, #5bb5b2 20%, #f8f0e5 25%, #4da5b0 30%);
        filter: blur(10px);
    }
    
    .aurora-background-section .aurora-overlay::after {
        background-image: 
            repeating-linear-gradient(100deg, #000 0%, #000 7%, transparent 10%, transparent 12%, #000 16%),
            repeating-linear-gradient(100deg, #ffcaa3 10%, #7bc8c4 15%, #5bb5b2 20%, #f8f0e5 25%, #4da5b0 30%);
    }
    
    .aurora-background-section .aurora-cta-button {
        background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        color: #1e293b;
        border-color: rgba(30, 41, 59, 0.2);
    }
    
    .aurora-background-section .aurora-cta-button:hover {
        background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
        border-color: rgba(30, 41, 59, 0.3);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .aurora-background-section .aurora-overlay {
        animation: none !important;
    }
    
    .aurora-background-section .aurora-content-wrapper {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

@media (max-width: 992px) {
  .aurora-background-section .aurora-content-wrapper {
    padding: 2.5rem 1rem;
    gap: 1.2rem;
    text-align: center;
  }

  .aurora-background-section .aurora-main-heading {
    font-size: 2rem;   /* balanced for smaller screens */
    line-height: 1.5;
    margin-bottom: 1rem;
  }

  .aurora-background-section .aurora-sub-heading {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .aurora-background-section .aurora-cta-button {
    padding: 0.75rem 1.8rem;
    font-size: 0.95rem;
  }
}
@media (max-width: 770px) {
  .aurora-background-section .aurora-content-wrapper {
    padding: 2.5rem 1rem;
    gap: 1.2rem;
    text-align: center;
  }

  .aurora-background-section .aurora-main-heading {
    font-size: 1.8rem;   /* balanced for smaller screens */
    line-height: 1.5;
    margin-bottom: 1rem;
  }

  .aurora-background-section .aurora-sub-heading {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .aurora-background-section .aurora-cta-button {
    padding: 0.75rem 1.8rem;
    font-size: 0.95rem;
  }
}
@media (max-width: 640px) {
  .aurora-background-section .aurora-content-wrapper {
    padding: 2.5rem 1rem;
    gap: 1.2rem;
    text-align: center;
  }

  .aurora-background-section .aurora-main-heading {
    font-size: 1.5rem;   /* balanced for smaller screens */
    line-height: 1.5;
    margin-bottom: 1rem;
  }

  .aurora-background-section .aurora-sub-heading {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .aurora-background-section .aurora-cta-button {
    padding: 0.75rem 1.8rem;
    font-size: 0.95rem;
  }
}
@media (max-width: 480px) {
  .aurora-background-section .aurora-content-wrapper {
    padding: 30px 5%;
    gap: 1.2rem;
    text-align: center;
  }

  .aurora-background-section .aurora-main-heading {
    font-size: 0.9rem;   /* balanced for smaller screens */
    line-height: 1.5;
    margin-bottom: 1rem;
  }

  .aurora-background-section .aurora-sub-heading {
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 320px) {
  .aurora-background-section .aurora-content-wrapper {
    padding: 30px 5%;
    gap: 1.2rem;
    text-align: center;
  }

  .aurora-background-section .aurora-main-heading {
    font-size: 0.6rem;   /* balanced for smaller screens */
    line-height: 1.5;
    margin-bottom: 1rem;
  }

  .aurora-background-section .aurora-sub-heading {
    font-size: 0.5rem;
    margin-bottom: 1.5rem;
  }
}


.solutions-section {
  text-align: center;
  max-width: 1300px;
  margin: 0 auto;
  background-color: #fffef3;
  padding-bottom: 30px;
  position: relative;
  overflow: hidden;
}

.solution-for {
  margin: 10px 0px 10px;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 30px;
 letter-spacing: 2.6px;
 color: #716f60;
}

.cards {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
  margin-right:50px;
}

.card-sub{
  border-top: 1px solid #d7d6cc;
  padding: 30px 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
}

.scroll-button {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  z-index: 10;
  padding: 10px 15px;
  background-color: #333;
  color: #fff;
  border: none;
  display: none;
}

.card-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  scrollbar-width: none;
  padding: 30px;
  animation: fadeSlideIn 0.6sec ease-out both;
  display: flex;
  gap: 20px;
  align-items: stretch; /* makes all cards equal height */
} 

.card-group::-webkit-scrollbar {
  display: none;
}

.card-group .card:hover {
  box-shadow: 7px 7px 20px #02413f9d, -7px -7px 20px  #ffa163a9;
}

.card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;line-height: 150%;
  letter-spacing: -2.2%;
}

.card p {
  font-size: 16px;
  color: #716f60;
  margin-bottom: 12px;
  font-weight: 400;
  line-height: 130%;
}

.card a {
  font-size: 14px;
  color: #007d66;
  text-decoration: none;
  font-weight: 500;
}

.image1 img {
  width: 100%;
  height: auto;

  object-fit: cover;
  border-bottom: 1px solid rgba(128, 128, 128, 0.53);
}
.features{
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 30px 5% ;
  box-sizing: border-box;
  background-color: #fffef3;
}
.features-title {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 30px;
  letter-spacing: 2.6px;
  color: #716f60;
  display: flex;
  justify-content: center;
  align-items: center;
}

.features-grid {
  display: flex;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
  padding-top: 20px;
  padding-bottom: 20px;
}

.feature-item img {
  width: 80px;
  height: 80px;
  border: 1px solid #d7d6cc;
  border-radius: 12px;
  padding: 10px;
}

.feature-item p {
  margin-bottom:30px;
  font-weight: 500;
  color: #242929;
}
.features-carousel-wrapper {
  overflow: hidden;
  width: 100%;
}
.features-carousel {
  display: flex;
  position: relative;
  max-width: 1600px;
  height: 150px;
  margin-inline: auto;
}

@keyframes scrollleft{
  to{
      left: -150px;
  }
}

.item-1{
  animation-delay: calc(60s / 6 * (6 - 1) * -1);
}
.item-2{
  animation-delay: calc(60s / 6 * (6 - 2) * -1);
}
.item-3{
  animation-delay: calc(60s / 6 * (6 - 3) * -1);
}
.item-4{
  animation-delay: calc(60s / 6 * (6 - 4) * -1);
}
.item-5{
  animation-delay: calc(60s / 6 * (6 - 5) * -1);
}
.item-6{
  animation-delay: calc(60s / 6 * (6 - 6) * -1);
}

.ai-assistant {
  display: flex;
  align-items: flex-start;
  background: #02413f;
  color: white;
  padding: 30px 5%;
  max-width: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.ai-left {
  width: 40%;
}

.ai-left .ai-subtext {
  font-size: 18px;
  opacity: 1;
  line-height: 150%;
  font-weight: 400;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ai-inline {
  display: flex;
  align-items: center;
  gap: 15px;
}

.ai-heading {
  font-size: 48px;
  font-weight: 500;
  line-height: 54px;
  margin-top: 30px;

}

.ai-right {
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.ai-search {
  display: flex;
  border: 1px solid #fffef3;
  border-radius: 12px;
  overflow: hidden;
  max-width: 600px;
  margin-top:10px;
}

.ai-search input {
  border: none;
  padding: 12px 15px;
  flex: 1;
  font-size: 16px;
  background-color: transparent;
  color: white;
}

.ai-search ::placeholder {
  color: #fffef3;
  font-size: 16px;
  font-weight: 700;
}

.ai-search input:focus {
  outline: none;
}

.send-button {
  background: transparent;
  border: none;
  font-size: 18px;
  padding: 0 14px;
  cursor: pointer;
  color: #fffef3;
}

.ai-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ai-option {
  background: transparent;
  color: white;
  border: 1px solid white;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
  width: 100%;         
  max-width: 600px;
  line-height: 1.4;
  text-align: left;

  /* NEW: keep text in one line */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ai-option:hover {
  background: rgba(255, 255, 255, 0.1);
}

.trial-section {
  position: relative;
  padding: 40px 5%;
  height: 370px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fffef3;
}

.trial-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 120%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.trial-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.4));
  z-index: 1;
}

.trial-content {
  position: relative;
  z-index: 2;
  width: 85%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-radius: none;
}

.trial-left {
  flex: 1 1 70%;
}

.trial-heading {
  font-size: 48px;
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 72px;
  color: #fffef3;
  letter-spacing: -0.96px;
  max-width: 726px;
}

.trial-description {
  font-size: 18px;
  line-height: 1.5;
  color: #fffef3;
  font-weight: 400;
  max-width: 726px;
}

.trial-right {
  flex: 1 1 30%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.trial-btn {
  background-color: #ffa163;
  color: #000;
  padding: 16px 36px;
  font-size: 18px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}


.trial-btn:hover {
  background-color: #02413f;
  color: #fff;
}

.global-map-section {
  width: 100%;
  padding: 30px 5%;
  background-color: #242929;
}


.map-container {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.map-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  user-select: none;
  pointer-events: none;
}




/* Responsive improvements for map section */
@media (max-width: 1600px) {
  .map-image {
    width: 118%;
    max-width: 118%;
    margin-left: -9%;
  }
}

@media (max-width: 1200px) {
  
  .map-image {
    width: 115%;
    max-width: 115%;
    margin-left: -7.5%;
  }
}

@media (max-width: 1040px) {
  .map-image {
    width: 110%;
    max-width: 110%;
    margin-left: -5%;
  }
}

@media (max-width: 992px) {
  .global-map-section {
    padding: 40px 4%;
  }
  
  .map-container {
    width: 100%;
    max-width: 100%;
  }
  
  .map-image {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  
  .map-legend {
    gap: 30px;
    margin-top: 18px;
  }
  
  .legend-label {
    font-size: 17px;
  }
}



/* Specific fix for MacBook Air */
@media (max-width: 992px) and (max-height: 975px) {
  .map-container {
    max-width: 850px;
  }
  
  .map-legend {
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .global-map-section {
    padding: 32px 16px;
  }
  
  .map-legend {
    gap: 20px;
    margin-top: 16px;
  }
  
  .legend-label {
    font-size: 16px;
  }
  
  .legend-location {
    font-size: 13px;
  }
  

  
  .map-container {
    width: 100%;
    max-width: 100%;
  }
  
  .map-image {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }


}

@media (max-width: 640px) {
  .global-map-section {
    padding: 16px 12px;
  }
  
  .map-image {
    border-radius: 12px;
  }
  

}

@media (max-width: 480px) {
  .global-map-section {
    padding: 12px 8px;
  }
  
  .map-legend {
    gap: 15px;
    margin-top: 12px;
  }
  
  .legend-label {
    font-size: 15px;
  }
  
  .legend-location {
    font-size: 12px;
  }
}

@media (max-width: 320px) {
  .global-map-section {
    padding: 10px 2%;
  }
  
  .map-container {
    margin: 0 auto;
  }
  
  .map-legend {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }
  
  .legend-group {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }
  
  .legend-dot {
    margin-bottom: 0;
    margin-right: 5px;
  }
  
  .legend-label {
    font-size: 14px;
    margin-bottom: 0;
    margin-right: 8px;
  }
  
  .legend-locations {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .legend-location {
    font-size: 12px;
    margin: 0 5px;
  }
}

.invest-section {
  padding: 40px 5%;
  overflow: hidden;
  position: relative;
  align-items: center;
  background-color:#02413f;
}

.invest-content {
  color:#fffef3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.invest-content h2 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 500;
 text-align: left;
}

.invest-content p {
  font-size: 18px;
 text-align: left;
  max-width: 500px;
}

.invest-buttons {
  height: 100%;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  border-radius: 9px;
  height: 47px;
  width:149px;
  color: #02413f;
  border: none;
  background-color: #fffef3;
  padding:12px 36px; 
  margin-right:30px;
  text-decoration: none;
  font-size: 18px;
}

.btn-primary:hover {
  background-color: #fcfaeb;
}

.btn-outline {
  border-radius: 9px;
  background-color: transparent;
  border: 1px solid #fffef3;
  color: #fffef3;
  height: 47px;
  width:149px;
  padding:12px 36px;
  text-decoration: none; 
  font-size: 18px;
}
  /* 3D Card Container Styles */
.card-3d-container {
  perspective: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(90% / 3);
}

/* Enhanced Card Styles for 3D Effect */
.card {
  background-color: #fdfbea;
  border: 1px solid #d7d6cc;
  border-radius: 12px;
  box-sizing: border-box;
  transition: all 0.2s ease-linear;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  transform-style: preserve-3d;
  position: relative;
}

.card img {
  width: 100%;
  padding: 20px;
  object-fit: contain;
  transform-style: preserve-3d;
  transition: transform 0.2s ease-linear;
  border-bottom: none;
}

.card .card-sub {
  transform-style: preserve-3d;
  transition: transform 0.2s ease-linear;
  padding: 0 20px 20px 20px;
  text-align: left;
  border-top: 1px solid #d7d6cc;
  height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card h4 {
  font-size: 20px;
  color: #242929;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: -0.056px;
  margin: 10px 0px;
  transform-style: preserve-3d;
  transition: transform 0.2s ease-linear;
}

.card p {
  font-size: 16px;
  color: #716f60;
  font-weight: 400;
  margin-bottom: 15px;
  transform-style: preserve-3d;
  transition: transform 0.2s ease-linear;
  height: 60px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.card-link {
  color: #13795b;
  font-weight: bold;
  text-decoration: none;
  font-size: 14px;
  transform-style: preserve-3d;
  transition: transform 0.2s ease-linear;
  display: inline-block;
}

/* Enhanced hover effects combining original shadow with 3D */
.card:hover {
  box-shadow: 
    7px 7px 20px #0d4c44ab, 
    -7px -7px 20px #c47442a9,
    0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.card-link:hover {
  text-decoration: underline;
}

/* Preserve all existing styles */
.section-container {
  background-color: #fffef3;
  padding: 30px 5%;
  width: 100%;
  box-sizing: border-box;
}

.section-heading {
  text-align: center;
  margin-bottom: 30px;
  font-size: 18px;
  color: #716f60;
  letter-spacing: 2.6px;
  font-weight: 700;
}

.tab-switcher {
  display: flex;
  border: 1px solid #f2f1e3;
  border-radius: 20px;
  padding: 10px;
  background-color: #fffef3;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}

.tab {
  padding: 12px 24px;
  background-color: #fffef3;
  color: #abaa9b;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-size: 18px;
  transition: background 0.3s, color 0.3s;
  line-height: 100%;
  width: 25%;
}

.tab.active {
  background: linear-gradient(90deg, #ffa163, #fca66f);
  width: 25%;
  color: #242929;
  font-weight: 400;
  animation: tabActiveAnim 0.4s ease forwards;
  box-shadow: 0 4px 12px rgba(255, 161, 99, 0.3);
}

@keyframes tabActiveAnim {
  0% {
    transform: scale(0.95);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.tab:hover {
  opacity: 0.9;
}

.card-group-main {
  position: relative;
  overflow: hidden;
  width: 100%;
  transition: all 0.3s ease;
}

.card-group-main.inactive {
  display: none;
}

.card-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 30px;
  gap: 20px;
  align-items: stretch;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Slide-in animations */
.card-group.slide-in-left {
  animation: slideInLeft 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.card-group.slide-in-right {
  animation: slideInRight 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideInLeft {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Fade animations */
.card-group-main.fade-in {
  animation: fadeIn 0.3s ease-in forwards;
}

.card-group-main.fade-out {
  animation: fadeOut 0.3s ease-out forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* Tab button animations */
.tab-switcher .tab {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  background: transparent;
  color: #716f60;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
}

.tab-switcher .tab::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
}

.tab-switcher .tab.active::before {
  width: 100%;
}

.tab-switcher .tab:hover {
  transform: translateY(-2px);
  border-color: #ffa163;
  color: #242929;
}

.tab-switcher .tab.active {
  background: linear-gradient(to right, #FFA163 0%, #F1EDD2 53%, #036B67 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 161, 99, 0.3);
  border-color: #ffa163;
}

/* Ensure tabs are active initially */
#btn-blogs.active,
#btn-data-center.active {
  background: linear-gradient(to right, #FFA163 0%, #F1EDD2 53%, #036B67 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 161, 99, 0.3);
  border-color: #ffa163;
}

/* Responsive adjustments for 3D effect */
@media (max-width: 768px) {
  .card-3d-container {
    width: 100%;
  }
  
  .card-group {
    flex-direction: column;
  }
}

/* Section Container Media Queries - Higher Specificity */
@media (max-width: 1600px) {
  .section-container .card-group {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 30px;
  }
  
  .section-container .card {
    flex: 0 0 300px !important;
    width: 300px !important;
    min-width: 300px !important;
    max-width: 300px !important;
  }
}

@media (max-width: 1200px) {
  .section-container .card-group {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 30px;
  }
  
  .section-container .card {
    flex: 0 0 280px !important;
    width: 280px !important;
    min-width: 280px !important;
    max-width: 280px !important;
  }
}

@media (max-width: 1040px) {
  .section-container .card-group {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 30px;
  }
  
  .section-container .card {
    flex: 0 0 260px !important;
    width: 260px !important;
    min-width: 260px !important;
    max-width: 260px !important;
  }
}

@media (max-width: 992px) {
  .section-container .card-group {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 30px;
  }
  
  .section-container .card {
    flex: 0 0 250px !important;
    width: 280px !important;
    min-width: 280px !important;
    max-width: 280px !important;
  }
}
@media (max-width: 792px) {
  .section-container .card-group {
    display: flex !important;
    flex-direction: row !important;   /* force horizontal */
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-behavior: smooth;
    gap: 16px;
    padding: 20px;
  }

  .section-container .card {
    flex: 0 0 260px !important;   /* fixed width */
    min-width: 260px !important;
    max-width: 260px !important;
  }

  /* Optional: hide scrollbar for cleaner look */
  .section-container .card-group::-webkit-scrollbar {
    display: none;
  }
  .section-container .card-group {
    -ms-overflow-style: none;  /* IE & Edge */
    scrollbar-width: none;     /* Firefox */
  }
}


/* 
@media (max-width: 768px) {
  .section-container .card-group {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-behavior: smooth;
    gap: 15px;
    padding: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
  
  .section-container .card-group::-webkit-scrollbar {
    height: 6px;
  }
  
  .section-container .card-group::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
  }
  
  .section-container .card-group::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
  }
  
  .section-container .card-group::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
  }
  
  .section-container .card {
    flex: 0 0 220px !important;
    width: 220px !important;
    min-width: 220px !important;
    max-width: 220px !important;
  }
}

@media (max-width: 640px) {
  .section-container .card-group {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-behavior: smooth;
    gap: 15px;
    padding: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
  
  .section-container .card-group::-webkit-scrollbar {
    height: 6px;
  }
  
  .section-container .card-group::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
  }
  
  .section-container .card-group::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
  }
  
  .section-container .card-group::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
  }
  
  .section-container .card {
    flex: 0 0 200px !important;
    width: 200px !important;
    min-width: 200px !important;
    max-width: 200px !important;
  }
}

@media (max-width: 480px) {
  .section-container .card-group {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-behavior: smooth;
    gap: 12px;
    padding: 15px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
  
  .section-container .card-group::-webkit-scrollbar {
    height: 6px;
  }
  
  .section-container .card-group::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
  }
  
  .section-container .card-group::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
  }
  
  .section-container .card-group::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
  }
  
  .section-container .card {
    flex: 0 0 180px !important;
    width: 180px !important;
    min-width: 180px !important;
    max-width: 180px !important;
  }
}

@media (max-width: 320px) {
  .section-container .card-group {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-behavior: smooth;
    gap: 10px;
    padding: 15px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
  
  .section-container .card-group::-webkit-scrollbar {
    height: 6px;
  }
  
  .section-container .card-group::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
  }
  
  .section-container .card-group::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
  }
  
  .section-container .card-group::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
  }
  
  .section-container .card {
    flex: 0 0 160px !important;
    width: 160px !important;
    min-width: 160px !important;
    max-width: 160px !important;
  }
} */
.footer {
  color: #fffef3;
  background: linear-gradient(135deg, #1e1e1e 70%, #02413f 100%);
  padding: 48px 5% 24px 5%;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.footer-container {
  background: transparent;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1800px;
  margin: 0 auto;
}
.footer-left {
  width: 36%;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer-logo img {
  width: 240px;
  height: auto;
  margin-bottom: 12px;
}
.footer-left p {
  font-size: 16px;
  color: #e0e0e0;
  margin-bottom: 0;
  line-height: 1.6;
}
.email-subscribe {
  display: flex;
  width: 100%;
  max-width: 340px;
  margin-top: 10px;
  background: #232323;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #333;
}
.email-subscribe input[type="email"] {
  flex: 1;
  padding: 14px 16px;
  background: transparent;
  border: none;
  color: #fffef3;
  font-size: 15px;
  outline: none;
}
.email-subscribe input[type="email"]::placeholder {
  color: #aaa;
  opacity: 1;
}
.email-subscribe input[type="email"]:focus {
  background: #232929;
}
.email-subscribe button {
  background: #ffa163;
  color: #232323;
  border: none;
  padding: 0 18px;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  border-radius: 0 12px 12px 0;
}
.email-subscribe button:hover,
.email-subscribe button:focus {
  background: #02413f;
  color: #fffef3;
}
.footer-right {
  width: 60%;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer-main-links {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
  flex-wrap: wrap;
}
.footer-column {
  min-width: 120px;
  flex: 1 1 120px;
}
.footer-column h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fffef3;
}
.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-column ul li {
  font-size: 15px;
  color: #e0e0e0;
  margin-bottom: 8px;
}
.footer-column ul li a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-column ul li a:hover,
.footer-column ul li a:focus {
  color: #ffa163;
}
.social-icons {
  display: flex;
  gap: 18px;
  margin: 18px 0 0 0;
}
.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #232323;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  transition: background 0.2s;
}
.social-icons a:hover,
.social-icons a:focus {
  background: #ffa163;
}
.social-icons img {
  width: 22px;
  height: 22px;
  filter: brightness(1.2);
}
.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid #333;
  padding-top: 18px;
  margin-top: 24px;
  font-size: 14px;
}
.footer-copy {
  color: #aaa;
  font-size: 13px;
  white-space: nowrap;
}
.footer-links {
  display: flex;
  gap: 18px;
}
.footer-links a {
  color: #aaa;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-links a:hover,
.footer-links a:focus {
  color: #ffa163;
  text-decoration: underline;
}
@media (max-width: 1200px) {
  .footer-container {
    flex-direction: column;
    gap: 32px;
  }
  .footer-left, .footer-right {
    width: 100%;
    min-width: 0;
  }
  .footer-main-links {
    flex-wrap: wrap;
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .footer {
    padding: 36px 4% 18px 4%;
  }
  .footer-container {
    gap: 24px;
  }
  .footer-main-links {
    flex-direction: column;
    gap: 18px;
  }
  .footer-bottom-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-top: 12px;
  }
  .social-icons {
    margin: 12px 0 0 0;
  }
}
@media (max-width: 480px) {
  .footer {
    padding: 24px 2% 12px 2%;
  }
  .footer-logo img {
    width: 90px;
  }
  .footer-main-links {
    gap: 10px;
  }
  .footer-column h4 {
    font-size: 15px;
  }
  .footer-column ul li {
    font-size: 13px;
  }
  .footer-links {
    gap: 10px;
  }
  .footer-bottom-row {
    font-size: 12px;
  }
}

.hero-section,
.global-map-section,
.try-bdc {
  width: 100%;
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  justify-items: center;
  padding: 20px 0;
}

.feature-item {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin: 0 20px;
  width: 150px;
  position: absolute;
  left: max(calc(150px * 6), 100%);
  animation-name: scrollleft;
  animation-duration: 60s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}


.data-center-nav{
  display: flex;
  gap: 60px;
}


.email-subscribe input[type="email"] {
  flex: 1;
  padding: 13px;
  background-color: transparent;
  border-radius: 9px;
  border: 1px solid #aaa;
  color: #aaa;
  outline: none;
}

.email-subscribe input:focus-visible {
  border: 1px solid #aaa;
  background-color: transparent;
  color: #ccc;
  box-shadow: none; 
}

.email-subscribe button {
  padding: 0.5rem 1rem;
  background: transparent;
  color: #fff;
  border: none;
  border-color: transparent;
  cursor: pointer;
  position: absolute;
  right: 0%;
  top: 9%;
}



.card-group-main{
  position: relative;
  overflow: hidden;
  width: 100%;
  animation: fadeSlideIn 0.5s ease-out both;
}

@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.inactive {
  display: none;
}


@media (max-width: 1600px) {
  .trial-heading {
    font-size: 35px;
    line-height: 44px;
  }

  .trial-description {
    font-size: 18px;
  }
  .footer {
    padding: 40px 5%;
  }

  .map-container{
    display: flex;
    justify-content: center;
  }

  .map-image{
    width: 80%;
  }

   .legend-grid {
  display: flex;
  justify-content: space-around;
  background-color: #242929;
  color: #fffef3;
  border-radius: 16px;
  margin-bottom: 40px;
  column-gap: 10px; /* ⬅️ horizontal gap between columns */
}

}

@media (max-width: 1200px) {
  .navbar {
    padding: 18px 4%; /* Adjust for smaller screens */
  }
  .hero-content h1 {
    font-size: 64px;
    line-height: 1.2;
  }
  .trial-heading {
    font-size: 44px;
    line-height: 64px;
  }

  .trial-description {
    font-size: 18px;
  }

  .nav-links a {
    font-size: 15px;
    max-width: none;
  }

  .logo img {
    max-width: 180px;
    height: auto;
  }

  .logo {
    gap: 6px;
  }

  .footer-left {
    width: 100%;
  }

  .invest-content h2 {
    font-size: 42px;
  }

  .invest-buttons {
    right: 20px;
    top: 50px;
  }

  .legend-grid {
    flex-direction: row;
    justify-content: space-between;
    width: 40%;
    margin-top: -150px;
  }

  .map-container{
    display: flex;
    justify-content: center;
  }

  .map-image{
    width: 80%;
  }
}

@media (max-width: 992px) {
  .navbar {
    padding: 16px 3%;
  }
  .footer-container {
    flex-direction: column;
    gap: 2rem;
  }
  .footer-main-links {
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-bottom-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .footer-links a {
    margin-left: 0;
    margin-right: 1rem;
  }
  .hero-content h1 {
    font-size: 48px;
  }
  
  
  .trial-heading {
    font-size: 40px;
    line-height: 56px;
  }

  .trial-description {
    font-size: 17.5px;
  }

  .trial-content {
    flex-direction: column;
    text-align: center;
  }

  .trial-right {
    justify-content: center;
    margin-top: 24px;
  }
  .main-heading {
    font-size: 42px;
  }
  .sub-heading {
    font-size: 20px;
  }
  .nav-links.active {
    display: flex;
  }
  .dropdown-content {
    position: static;
    width: 100%;
  }
  .card-group.active {
    display: flex;
    justify-content: start;
    align-items: start;
    flex-wrap: nowrap;
    scroll-behavior: smooth;
    padding-top: 20px;
    padding-bottom: 20px;
    width: 100%;
    overflow: hidden;
    overflow-x: scroll;
  }

  .card {
    flex: 0 0 auto;
    width: 30%;
    scroll-snap-align: start;
    background-color: #fdfbea;
    border: 1px solid #d7d6cc;
    border-radius: 12px;
    box-sizing: border-box;
    margin-left: 0;
    display: flex;
    flex-direction: column;
    width: calc(100% / 3 - 20px); /* equal width */
    box-sizing: border-box;
  }

  .card img {
    width: 100%;
    object-fit: cover;
  }

  .menu-toggle {
    display: block;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
  }

  .nav-links.active {
    display: flex;
  }

  .dropdown > a {
    padding: 12px 15px;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
    border: none;
    display: none;
    padding: 10px 15px;
    margin-top: 20px;
    margin-left: 20px
  }

  .dropdown.open .dropdown-content {
    display: block;
  }

  .tab-switcher{
    width: 100%;
  }

  .contact-btn {
    width: 100%;
    margin-top: 15px;
    text-align: center;
  }

  .try-bdc {
    padding: 24px 16px;
    height: auto;
  }

  .try-bdc-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .try-left {
    max-width: 100%;
  }

  .try-title {
    font-size: 32px;
    line-height: 1.3;
  }

  .try-subtext {
    font-size: 16px;
    line-height: 1.4;
  }

  .try-right {
    width: 100%;
    justify-content: flex-start;
  }

  .try-btn {
    width: 100%;
    text-align: center;
  }
  .ai-assistant {
    align-items: flex-start;
    gap: 24px;
    flex-wrap: unset;
  }

  .ai-left {
    flex: 1 1 100%;
    width: 100%;
  }

  .ai-heading {
    font-size: 32px;
    line-height: 1.3;
  }

  .ai-left .ai-subtext {
    font-size: 16px;
    line-height: 1.4;
  }

  .ai-right {
    flex: 1 1 100%;
    width: 100%;
    align-items: flex-start;
  }

  .ai-search {
    max-width: 100%;
    width: 100%;
  }

  .ai-search input {
    padding: 16px;
    font-size: 16px;
  }

  .send-button {
    padding: 0 12px;
    font-size: 18px;
  }

  .ai-buttons {
    width: 100%;
    flex-direction: column;
    gap: 12px;
  }

  .ai-option {
    width: 100%;
    max-width: 100%;
    text-align: center;
    font-size: 16px;
    padding: 14px 0;
  }

  .invest-content h2 {
    font-size: 36px;
  }

  .invest-buttons {
    position: relative;
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    margin-top: 30px;
    right: 0;
    top: 0;
  }

  .footer-container {
    flex-direction: column;
    gap: 60px;
  }

  .footer-left,
  .footer-right {
    max-width: 100%;
    justify-content: flex-start;
  }

  .footer-left p,
  .email-subscribe {
    width: 100%;
  }
  .legend-grid {
    flex-direction: row;
    justify-content: space-evenly;
    margin-top: -150px;
  }
  .footer-left {
    flex: unset;
  }
  .footer-right{
    flex: unset;
    width: 100%;
  }
  .footer-main-links{
    row-gap: 15px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
  }
  .footer-bottom-row{
    flex-direction: row;
    gap: unset;
  }
  .footer-copy{
    text-align: unset;
    width: unset;
  }
  .footer-links {
    width: unset;
    flex-direction: row;
  }
  .footer-links a {
    margin: 0px;
  }
  .map-container{
    display: flex;
    justify-content: center;
  }
  .map-image{
    width: 80%;
  }
  .main-logo-div {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .nav-links {
    display: none;
    align-items: start;
    flex-direction: column;
    position: absolute;
    width: 100%;
    background: #25292A;
    top: 10%;
    left: 0%;
    z-index: 5;
    padding: 20px 0px;
    gap: 16px;
  }
  
  .nav-links a, .nav-links button {
    margin: auto;
  }
    
  .dropdown {
    display: unset;
  }

  .section-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .card-group-main{
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .card-group{
    width: 100%;
    gap: 20px;
    flex-wrap: nowrap;
    overflow-x: scroll;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 12px 2%;
  }
  .testimonial-slider-container {
    padding: 0;
  }

  .invest-content h2 {
    font-size: 32px;
  }

  .email-subscribe input {
    padding: 18px;
    font-size: 16px;
  }

  .email-subscribe button {
    font-size: 16px;
  }

  .footer-logo {
    font-size: 18px;
  }

  .footer-column h4 {
    font-size: 15px;
  }

  .footer-column ul li {
    font-size: 15px;
  }

  .footer-bottom {
    font-size: 14px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .invest-content p {
    font-size: 16px;
    max-width: 100%;
  }

  .invest-buttons {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-top: 30px;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
  .logo img {
    max-width: 150px;
  }
  .contact-btn {
    width: 100%;
    margin-top: 10px;
  }

  .email-subscribe {
    width: 100%;
  }

  .footer-right {
    flex-direction: column;
  }

  .social-icons {
    gap: 12px;
  }

  .footer-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .hero-content h1 {
    font-size: 36px;
  }
  
  .tab-container {
    flex-wrap: wrap;
  }
  
  .tab {
    flex: 1 1 45%;
    margin-bottom: 10px;
  }
  .footer-bottom-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .social-icons,
  .footer-copy,
  .footer-links {
    width: 100%;
  }

  .menu-toggle {
    display: block;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
    padding: 20px 20px;
    background: #f7f5ec;
    flex-direction: column;
  }

  .second-navbar {
    display: none !important;
  }

  .trial-heading {
    font-size: 36px;
    line-height: 50px;
  }

  .trial-description {
    font-size: 17px;
  }

  .trial-content {
    flex-direction: column;
    text-align: center;
  }

  .trial-right {
    justify-content: center;
    margin-top: 24px;
  }
  .legend-grid {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    margin-bottom: 40px;
    scroll-snap-type: x mandatory;
    background-color: transparent;
  }

  .legend-column {
    min-width: 160px;
    scroll-snap-align: start;
    background-color: #242929;
    padding: 10px;
    border-radius: 10px;
  }

  .map-heading {
    font-size: 16px;
    letter-spacing: 1.5px;
  }

  .legend-column h4 {
    font-size: 15px;
    margin-bottom: 6px;
  }

  .legend-column p {
    font-size: 14px;
  }

  .legend-marker,
  .legend-dot.india {
    width: 10px;
    height: 10px;
    min-width: 10px;
    margin-right: 6px;
  }
  .tab-switcher{
    flex-wrap: wrap;
    width: 100%;
  }
    .features-title{
    padding-top: 0px;
  }
  .legend-grid {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }
  .btn-primary{
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .footer-left{
    flex: unset;
  }
  .footer-right{
    flex: unset;
    width: 100%;
  }
  .footer-main-links{
    row-gap: 15px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
  }
  .footer-bottom-row{
    flex-direction: row;
    gap: unset;
  }
  .footer-copy{
    text-align: unset;
    width: unset;
  }
  .footer-links {
    width: unset;
    flex-direction: row;
  }
  .footer-links a {
    margin: 0px;
  }

  .map-container{
    display: flex;
    justify-content: center;
  }

  .map-image{
    width: 100%;
  }
  .main-logo-div {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .nav-links {
    display: none;
    align-items: start;
    position: absolute;
    width: 100%;
    background: #25292A;
    top: 10%;
    z-index: 5;
    padding: 20px 0px;
  }
    
  .dropdown {
    display: unset;
  }

  .card{
    width: 40%;
  }
}

@media (max-width: 640px) {
  .legend-column {
    min-width: 150px;
  }
  .trial-heading {
    font-size: 32px;
    line-height: 44px;
  }

  .trial-description {
    font-size: 16px;
  }

  .trial-content {
    flex-direction: column;
    text-align: center;
  }

  .trial-right {
    justify-content: center;
    margin-top: 24px;
  }
  .btn-primary{
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .footer-left {
    flex: unset;
  }
  .footer-right{
    flex: unset;
    width: 100%;
  }
  .footer-main-links{
    row-gap: 15px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
  }
  .footer-bottom-row{
    flex-direction: row;
    gap: unset;
  }
  .footer-copy{
    text-align: unset;
    width: unset;
  }
  .footer-links {
    width: unset;
    flex-direction: row;
  }
  .footer-links a {
    margin: 0px;
  }
  .ai-assistant {
    flex-wrap: wrap;
  }

  .map-container{
    display: flex;
    justify-content: center;
  }
  .map-image{
    width: 100%;
  }
  .main-logo-div {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .nav-links {
    display: none;
    align-items: start;
    position: absolute;
    width: 100%;
    background: #25292A;
    top: 10%;
    z-index: 5;
    padding: 20px 0px;
  }
  .dropdown {
    display: unset;
  }
  .stat-box h2 {
    font-size: 28px;
  }
  .card{
    width: 90%;
  }
}  

@media (max-width: 480px) {
.legend-column {
    min-width: 140px;
    align-items: baseline;
  }
  .navbar {
    padding: 8px 1%;
  }
  .footer {
    padding: 40px 5%;
  }

  .footer-left p, .email-subscribe {
    width: 100%;
  }

  .email-subscribe input {
    padding: 14px;
    font-size: 14px;
  }

  .email-subscribe button {
    font-size: 14px;
  }

  .footer-logo span {
    font-size: 16px;
  }

  .footer-column h4, .footer-column ul li {
    font-size: 14px;
  }
  .sub-heading {
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 20px;
  }

  .main-heading {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 40px;
  }
  .footer-links {
    flex-direction: column;
    gap: 8px;
  }
  .trial-heading {
    font-size: 32px;
    line-height: 44px;
  }

  .trial-description {
    font-size: 16px;
  }

  .trial-content {
    flex-direction: column;
    text-align: center;
  }

  .trial-right {
    justify-content: center;
    margin-top: 20px;
  }

  .footer-logo {
    font-size: 18px;
  }

  .footer-left p {
    font-size: 13px;
  }

  .footer-column h4 {
    font-size: 15px;
  }

  .footer-column ul li {
    font-size: 13px;
  }

  .footer-copy {
    font-size: 12px;
  }

  .footer-links a {
    font-size: 12px;
  }

  .social-icons img {
    width: 24px;
    height: 24px;
  }

  .email-subscribe input {
    padding: 10px;
  }

  .email-subscribe button {
    font-size: 16px;
  }
  .features-title{
    padding-top: 0px;
  }
  .btn-primary{
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .footer-left{
    flex: unset;
  }
  .footer-right{
    flex: unset;
    width: 100%;
  }
  .footer-main-links{
    row-gap: 35px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
  }
  .footer-bottom-row{
    flex-direction: column;
    gap: 15px;
  }
  .footer-copy{
    text-align: unset;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .footer-links {
    width: 100%;
    flex-direction: row;
  }
  .footer-links a {
    margin: 0px;
  }
  .ai-assistant {
    flex-wrap: wrap;
  } 

  .map-container{
    display: flex;
    justify-content: center;
  }
  .map-image{
    width: 100%;
  }

  .nav-links{
    display: none;
    align-items: start;
    position: absolute;
    width: 100%;
    background: #25292A;
    top: 10%;
    z-index: 5;
    padding: 20px 0px;
  }
  .hero-content h1 {
    font-size: 27px;
  }
  .stat-box h2 {
    font-size: 24px;
  }
  .stat-box p {
    font-size: 12px;
  }
  .dropdown {
    display: unset;
  }
}
/* 2x2 Grid */
.dropdown-content.grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columns */
  grid-template-rows: repeat(2, auto);   /* 2 rows */
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
}

/* Each column styled as a card */
.dropdown-content.grid-2x2 .dropdown-column {
  padding: 10px;
}
/* Hide dropdown by default */
.dropdown .dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
}

/* Show when hovering over parent */
.dropdown:hover .dropdown-content {
  display: grid; /* grid because of 2x2 */
}



@media (max-width: 992px) {
  .legend-grid {
    flex-direction: row;
    padding: 16px 10px;
    row-gap: 18px;
  }
  .legend-column {
    min-width: 120px;
    padding-right: 0;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .legend-grid {
    padding: 8px 2px;
  }
  .legend-column {
    min-width: 90px;
    gap: 6px;
  }
}

/* For tablets & smaller screens */
@media (max-width: 768px) {
  .dots {
    display: none;
  }

  .content {
    flex-direction: column;
    text-align: center;
    padding: 40px 10%;
  }

  .content-section {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .main-heading {
    font-size: 32px;
  }

  .sub-heading {
    font-size: 16px;
  }

  .cta-btn {
    font-size: 14px;
    padding: 10px 20px;
  }
}
    .gradient-btn {
      background: linear-gradient(90deg, #2e9e96, #ffffff, #f7a36f);
      border: none;
      padding: 10px 28px;
      border-radius: 25px;
      font-size: 22px;
      font-weight: 500;
      cursor: pointer;
      text-align: center;
      display: flex;
      align-items: center;
      gap: 12px;
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
      line-height: 1.2;
    }
    .gradient-btn svg.arrow-icon {
      vertical-align: middle;
      margin-left: 8px;
      width: 1.2em;
      height: 1.2em;
      transition: transform 0.2s;
    }
    .gradient-btn:hover svg.arrow-icon {
      transform: translateX(6px) scale(1.1);
    }
    .gradient-btn:focus {
      outline: 2px solid #ffa163;
      outline-offset: 2px;
    }
    .gradient-btn-container {
      background: #1a1a1a;
      padding: 6px 36px;
      border-radius: 40px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    }
    /* Responsive Styles */
@media (max-width: 992px) {
  .hero-section {
    background-position: center;
    padding: 40px 20px;
  }

  .hero-content h1 {
    font-size: 42px;
    line-height: 48px;
    margin: 20px 0;
  }

  .hero-content p {
    font-size: 16px;
    margin: 20px 0;
    line-height: 22px;
  }

  .cta-button,
  .gradient-btn {
    font-size: 16px;
    width: auto;
    padding: 10px 18px;
  }

  .hero-stats {
    flex-direction: row;
    margin-top: 30px;
    gap: 24px;
  }

  .stat-box h2 {
    font-size: 28px;
  }

  .stat-box p {
    font-size: 13px;
    letter-spacing: 1px;
  }
}
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 25px;
    line-height: 20px;
    margin: 20px 0;
  }
}
/* For very small fold-like screens (up to 375px wide) */
@media (max-width: 375px) {
  .hero-section {
    padding: 30px 15px;
  }

  .hero-content h1 {
    font-size: 21px;
    line-height: 16px;
  }

  .hero-content p {
    font-size: 14px;
    line-height: 20px;
  }

  .cta-button,
  .gradient-btn {
    font-size: 14px;
    padding: 8px 14px;
  }

  .hero-stats {
    gap: 18px;
  }

  .stat-box h2 {
    font-size: 22px;
  }

  .stat-box p {
    font-size: 12px;
  }
}

/* On small screens: stack vertically */
@media (max-width: 768px) {
  .hero-stats {
    flex-direction: row;
    align-items: center;
    gap: 30px; /* spacing between items */
  }

  .stat-box {
    text-align: center;
  }

  .stat-box h2 {
    font-size: 28px;
  }

  .stat-box p {
    font-size: 13px;
    letter-spacing: 1px;
  }
}
/* Tablet and below (992px and under) */
@media (max-width: 992px) {
  .content {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  .content-section {
    flex: 0 0 100%;
    max-width: 100%;
    opacity: 1;
    transform: translateY(0);
  }

  .dots-image {
    display: none;
  }

  .main-heading {
    font-size: 32px;
    line-height: 1.4;
  }

  .sub-heading {
    font-size: 16px;
    margin-bottom: 15px;
  }
}

/* Mobile screens (max 576px) */
@media (max-width: 576px) {
  .main-heading {
    font-size: 26px;
    line-height: 1.4;
  }

  .sub-heading {
    font-size: 15px;
  }
}

/* Small foldables (like Galaxy Z Fold, ~320px wide) */
@media (max-width: 360px) {
  .main-heading {
    font-size: 22px;
    line-height: 1.3;
  }

  .sub-heading {
    font-size: 14px;
  }

  .content {
    padding: 15px;
  }
}

/* Ultra-small fold (280px and below) */
@media (max-width: 280px) {
  .main-heading {
    font-size: 18px;
    line-height: 1.2;
  }

  .sub-heading {
    font-size: 13px;
  }

  .content {
    padding: 10px;
  }
}

/* Base styles (desktop-first, already fine) */

/* Tablet and below */
@media (max-width: 992px) {
  .gradient-btn {
    font-size: 18px;
    padding: 8px 18px;
    gap: 8px;
  }
  .gradient-btn-container {
    padding: 4px 18px;
    border-radius: 30px;
  }
}

/* Mobile screens (max 576px) */
@media (max-width: 576px) {
  .gradient-btn {
    font-size: 18px;
    padding: 12px 24px;
    gap: 8px;
  }

  .gradient-btn-container {
    padding: 10px 24px;
    border-radius: 30px;
  }

  .gradient-btn svg {
    width: 18px;
    height: 18px;
  }
}

/* Small foldables (Z Fold portrait, ~320px wide) */
@media (max-width: 360px) {
  .gradient-btn {
    font-size: 16px;
    padding: 10px 20px;
    gap: 6px;
  }

  .gradient-btn-container {
    padding: 8px 20px;
    border-radius: 28px;
  }

  .gradient-btn svg {
    width: 16px;
    height: 16px;
  }
}

/* Ultra-small fold (280px and below) */
@media (max-width: 280px) {
  .gradient-btn {
    font-size: 14px;
    padding: 8px 16px;
    gap: 5px;
  }

  .gradient-btn-container {
    padding: 6px 16px;
    border-radius: 25px;
  }

  .gradient-btn svg {
    width: 14px;
    height: 14px;
  }
}

/* Responsive dropdown styles */
@media (max-width: 992px) {
  .second-dropdown-content {
    top: calc(100% + 8px); /* Slightly reduced gap on smaller screens */
  }
}

@media (max-width: 768px) {
  .second-dropdown-content {
    top: calc(100% + 6px);
    padding: 12px;
    min-width: 180px;
  }
}

@media (max-width: 480px) {
  .second-dropdown-content {
    top: calc(100% + 5px);
    padding: 10px;
    min-width: 160px;
  }
}
