@import url('https://fonts.googleapis.com/css2?family=Kalam:wght@400;700&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --color-primary: #7A4F7A;
  /* Brand Purple */
  --color-primary-hover: #633c63;
  --color-secondary: #F5A623;
  /* Brand Gold */
  --color-text-dark: #374151;
  /* Slate Grey */
  --color-text-heading: #1F2937;
  --color-border: #E5E7EB;
  /* Light border */
  --color-bg-light: #FFFFFF;

  --font-main: 'Inter', sans-serif;
  --header-height: 80px;
  --transition-normal: 0.2s ease;
}

/* RESET & CORE STYLES */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  background-color: #F9FAFB;
  color: var(--color-text-dark);
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

/* NAVBAR STRUCTURE */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: var(--color-bg-light);
  border-bottom: 1px solid var(--color-border);
  z-index: 1000;
  display: flex;
  align-items: center;
}

.navbar .container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

/* LOGO STYLING */
.logo {
  display: flex;
  align-items: center;
  cursor: pointer;
}

/* NAVIGATION LINKS */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-item {
  position: relative;
  list-style: none;
  display: flex;
  align-items: center;
  height: var(--header-height);
}

.nav-link {
  font-weight: 500;
  font-size: 0.98rem;
  color: var(--color-text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-normal);
}

.nav-link i {
  font-size: 0.75rem;
  color: var(--color-text-dark);
  transition: transform 0.2s ease;
}

.nav-item:hover .nav-link {
  color: var(--color-primary);
}

.nav-item:hover .nav-link i {
  color: var(--color-primary);
  transform: rotate(180deg);
}

/* DROPDOWN MENU */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  min-width: 220px;
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1000;
}

.dropdown-menu.scrollable {
  max-height: 350px;
  overflow-y: auto;
}

/* Custom Scrollbar for Industries */
.dropdown-menu.scrollable::-webkit-scrollbar {
  width: 6px;
}

.dropdown-menu.scrollable::-webkit-scrollbar-track {
  background: transparent;
}

.dropdown-menu.scrollable::-webkit-scrollbar-thumb {
  background-color: #D1D5DB;
  border-radius: 10px;
}

.dropdown-menu.scrollable::-webkit-scrollbar-thumb:hover {
  background-color: #9CA3AF;
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-text-dark);
  transition: var(--transition-normal);
}

.dropdown-menu a:hover {
  background-color: #F3F4F6;
  color: var(--color-primary);
}

/* Show Dropdown on Hover */
.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* ACTION BUTTONS */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-normal);
  border: 1px solid transparent;
}

.btn-filled {
  background-color: var(--color-primary);
  color: var(--color-bg-light);
}

.btn-filled:hover {
  background-color: var(--color-primary-hover);
}

.btn-outlined {
  background-color: transparent;
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn-outlined:hover {
  background-color: rgba(122, 79, 122, 0.04);
}

/* GLOBAL PRESENCE & FOOTER STYLING */
.site-footer {
  background-color: var(--color-primary);
  color: rgba(255, 255, 255, 0.95);
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
}

.footer-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px; /* Matches navbar container width and padding */
  position: relative;
  z-index: 5;
}

/* Background Bubbles/Circles */
.footer-bg-circle {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
  z-index: 1;
}

.footer-bg-circle.circle-1 {
  width: 220px;
  height: 220px;
  right: -40px;
  top: 10%;
}

.footer-bg-circle.circle-2 {
  width: 180px;
  height: 180px;
  right: 5%;
  bottom: -40px;
}

.footer-bg-circle.circle-3 {
  width: 140px;
  height: 140px;
  left: 2%;
  bottom: -30px;
}

.footer-bg-circle.circle-left {
  width: 280px;
  height: 280px;
  left: -80px;
  top: -80px;
  background-color: rgba(255, 255, 255, 0.035);
}

/* Soft circle container for the footer brand logo */
.logo-circle {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.font-kalam-white {
  font-family: 'Kalam', cursive;
  font-style: italic;
  font-weight: 700;
}

.global-presence {
  text-align: center;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.global-presence h2 {
  color: #FFFFFF;
  font-size: 2.2rem;
  margin-bottom: 8px;
}

.global-presence p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.08rem;
}

.global-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
  text-align: left;
}

.global-card {
  background-color: rgba(0, 0, 0, 0.18);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-normal);
}

.global-card:hover {
  background-color: rgba(0, 0, 0, 0.25);
  transform: translateY(-5px);
}

.global-card h3 {
  color: #FFFFFF;
  font-size: 1.4rem;
  margin-bottom: 20px;
  text-align: center;
}

.global-info {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.global-info i {
  font-size: 0.95rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.global-info i.fa-map-marker-alt {
  color: #FF6B6B;
}

.global-info i.fa-phone-alt {
  color: #4ECDC4;
}

.footer-main {
  display: flex;
  justify-content: space-between; /* Distribute columns evenly across the container */
  gap: 40px; /* Fallback gap */
  padding: 60px 0 40px;
}

.footer-col:first-child {
  max-width: 440px; /* Allow logo and text enough width to fill space nicely */
  width: 100%;
}

.footer-col:not(:first-child) {
  width: auto;
  min-width: 160px;
}

.footer-col p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 20px;
  max-width: 360px;
}

.footer-col h3 {
  font-size: 1.45rem;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links li {
  list-style: none;
}

.footer-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: var(--transition-normal);
}

.footer-links a:hover {
  color: #FFFFFF;
  padding-left: 5px;
}

.social-icons {
  display: flex;
  gap: 16px;
  margin-top: 25px;
}

.social-icons a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  transition: var(--transition-normal);
  display: inline-flex;
  animation: bounce-gentle 2s ease-in-out infinite;
}

/* Staggered bouncing delays */
.social-icons a:nth-child(2) {
  animation-delay: 0.2s;
}

.social-icons a:nth-child(3) {
  animation-delay: 0.4s;
}

.social-icons a:hover {
  color: #FFFFFF;
}

/* Gentle Bouncing keyframe definition */
@keyframes bounce-gentle {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* SCROLL TO TOP BUTTON */
.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: #3d253d;
  /* Dark purple/plum matching screenshot */
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  cursor: pointer;
  z-index: 1000;
  transition: var(--transition-normal);
  opacity: 0;
  visibility: hidden;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background-color: var(--color-secondary);
  transform: translateY(-3px);
}

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

.footer-bottom-text {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  max-width: 780px;
}

.footer-bottom-text a {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

.footer-certified {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--color-secondary);
  white-space: nowrap;
}

/* MOBILE TOGGLE BUTTON */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 22px;
  height: 16px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--color-text-heading);
  transition: all 0.3s ease;
}

/* RESPONSIVE MEDIA QUERY */
@media (max-width: 1024px) {
  .navbar .container {
    padding: 0 24px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--header-height);
    right: -100%;
    width: 300px;
    height: calc(100vh - var(--header-height));
    background-color: var(--color-bg-light);
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    gap: 0;
    transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.05);
    overflow-y: auto;
    border-left: 1px solid var(--color-border);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-item {
    flex-direction: column;
    align-items: stretch;
    height: auto;
    border-bottom: 1px solid var(--color-border);
  }

  .nav-link {
    padding: 16px 0;
    justify-content: space-between;
  }

  .dropdown-menu {
    position: static;
    display: none;
    transform: none !important;
    left: auto !important;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    border: none;
    min-width: 100%;
    padding: 0 0 16px 16px;
    transition: none;
  }

  .nav-item.active-dropdown .dropdown-menu {
    display: block;
  }

  .nav-item.active-dropdown .nav-link i {
    transform: rotate(180deg);
  }

  .nav-actions {
    display: none;
  }

  /* Footer Responsive Tablet */
  .site-footer {
    padding: 60px 0 30px;
  }

  .footer-container {
    padding: 0 30px;
  }

  .global-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .footer-main {
    flex-direction: column;
    gap: 40px;
  }

  .footer-col:first-child, .footer-col:not(:first-child) {
    width: 100%;
  }
}

@media (max-width: 767px) {

  /* Footer Responsive Mobile */
  .site-footer {
    padding: 40px 0 25px;
  }

  .footer-container {
    padding: 0 20px;
  }

  .global-grid {
    grid-template-columns: 1fr;
  }

  .footer-main {
    flex-direction: column;
    gap: 30px;
  }

  .footer-col:first-child, .footer-col:not(:first-child) {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}

/* ==========================================
   HERO SECTION STYLING
   ========================================== */
.hero-section {
  position: relative;
  height: calc(100vh - var(--header-height));
  min-height: 550px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-image: url('../images/hero-bg.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  padding: 40px 24px 80px; /* reduced top and bottom paddings to keep content within screen */
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-headings {
  margin-bottom: 18px;
}

.hero-title {
  font-family: 'Kalam', cursive;
  font-size: 52px;
  font-weight: 700;
  color: #2E3856;
  line-height: 1.25;
  margin-bottom: 12px;
  max-width: 820px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.color-heading {
  color: var(--color-primary);
}

.hero-subtitle {
  font-family: 'Kalam', cursive;
  font-size: 28px;
  font-weight: 700;
  color: #FF6B6B;
  margin-top: 5px;
}

.relative-underline {
  position: relative;
  display: inline-block;
}

.relative-underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 8px;
  border-radius: 10px;
  background: rgba(78, 205, 196, 0.6);
}

.hero-description {
  font-family: var(--font-main);
  font-size: 19px;
  color: var(--color-text-dark);
  max-width: 820px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  justify-content: center;
}

.hero-btn {
  padding: 12px 28px;
  font-size: 1rem;
  border-radius: 6px;
}

.hero-badges {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #556070;
  animation: badge-bounce 3s ease-in-out infinite;
}

.hero-badge:nth-child(1) {
  animation-delay: 0s;
}

.hero-badge:nth-child(2) {
  animation-delay: 0.3s;
}

.hero-badge:nth-child(3) {
  animation-delay: 0.6s;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #4ECDC4;
}

/* Scroll Down Indicator */
.hero-scroll-down-wrapper {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  z-index: 2;
}

.hero-scroll-down {
  cursor: pointer;
}

.hero-scroll-down svg {
  display: block;
}

/* FLOATING BACKGROUND ICONS */
.hero-floating-icon {
  position: absolute;
  opacity: 0.15;
  z-index: 1;
  pointer-events: none;
}

.icon-settings {
  bottom: 20%;
  right: 5%;
}

.icon-db {
  top: 20%;
  left: 5%;
}

.icon-phone {
  top: 35%;
  left: 9%;
}

.icon-chart {
  top: 22%;
  right: 8%;
}

.icon-cart {
  top: 40%;
  right: 13%;
}

/* ANIMATIONS KEYFRAMES */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes arrow-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

@keyframes badge-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bouncing_img {
  animation: float 6s ease-in-out infinite;
}

.arrow_bounce {
  animation: arrow-bounce 2s infinite;
}

.fade-in-up {
  opacity: 0;
  animation: fadeInUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.animation-delay-1 {
  animation-delay: 0.15s;
}

.animation-delay-2 {
  animation-delay: 0.30s;
}

.animation-delay-3 {
  animation-delay: 0.45s;
}

.delay1 { animation-delay: 0.5s; }
.delay2 { animation-delay: 1.5s; }
.delay5 { animation-delay: 2.5s; }
.delay6 { animation-delay: 3.5s; }
.delay7 { animation-delay: 4.5s; }

/* RESPONSIVE MEDIA QUERIES FOR HERO */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 42px;
  }
  .hero-subtitle {
    font-size: 24px;
  }
  .hero-description {
    font-size: 17px;
  }
  .hero-floating-icon {
    opacity: 0.1;
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding: 60px 16px 80px;
    min-height: 550px;
  }
  .hero-title {
    font-size: 30px;
    line-height: 1.3;
  }
  .hero-subtitle {
    font-size: 20px;
  }
  .hero-description {
    font-size: 15px;
    margin-bottom: 24px;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    gap: 12px;
    margin-bottom: 30px;
  }
  .hero-btn {
    width: 100%;
  }
  .hero-badges {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .hero-floating-icon {
    display: none; /* Hide floating icons on mobile for cleanliness and performance */
  }
}

/* ==========================================
   SERVICES SECTION STYLING
   ========================================== */
.services-section {
  background-color: #FFFFFF; /* White background to match main alternating sections */
  padding: 80px 24px;
  width: 100%;
}

.services-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.services-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 60px;
}

.services-section-title {
  font-family: 'Kalam', cursive;
  font-size: 38px;
  font-weight: 700;
  color: #2E3856;
  line-height: 1.3;
  margin-bottom: 15px;
}

.services-section-title .services-underline {
  position: relative;
  display: inline-block;
  color: var(--color-primary);
}

.services-section-title .services-underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 6px;
  border-radius: 10px;
  background: var(--color-secondary); /* Brand Gold */
}

.services-section-subtitle {
  font-family: var(--font-main);
  font-size: 16px;
  color: #556070;
  line-height: 1.7;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

/* Service Card */
.service-card {
  background-color: #FFFFFF;
  border-radius: 16px;
  border: 1px solid rgba(122, 79, 122, 0.06);
  box-shadow: 0 10px 30px rgba(122, 79, 122, 0.03);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(122, 79, 122, 0.1);
}

/* Card Image */
.service-card-image-wrapper {
  position: relative;
  height: 220px;
  width: 100%;
  overflow: hidden;
}

.service-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-card:hover .service-card-image {
  transform: scale(1.04);
}

/* Badge overlay */
.service-card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
  z-index: 2;
}

.service-card-badge i {
  font-size: 18px;
}

.badge-purple i {
  color: var(--color-primary);
}

.badge-orange i {
  color: var(--color-secondary);
}

.badge-red i {
  color: #FF6B6B;
}

/* Card Content */
.service-card-content {
  padding: 30px 30px 35px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card-title {
  font-family: 'Kalam', cursive;
  font-size: 23px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.service-card-description {
  font-family: var(--font-main);
  font-size: 15px;
  color: #556070;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Bullets list */
.service-card-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto; /* Push lists to bottom of cards */
}

.service-card-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-main);
  font-size: 14.5px;
  color: #4B5563;
  font-weight: 500;
}

.service-card-bullets i {
  color: #4ECDC4; /* Teal color */
  font-size: 16px;
  flex-shrink: 0;
}

/* Responsive Styles for Services */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .services-section {
    padding: 60px 16px;
  }

  .services-header {
    margin-bottom: 40px;
  }

  .services-section-title {
    font-size: 32px;
  }

  .service-card-content {
    padding: 24px 24px 30px;
  }
}

/* ==========================================
   ABOUT US SECTION STYLING
   ========================================== */
.about-section {
  position: relative;
  background-color: #FAF6FA; /* Soft lilac background */
  padding: 150px 24px 90px; /* Increased top padding for wave divider */
  overflow: hidden;
  width: 100%;
}

.about-wave-divider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.about-wave-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
}

.about-wave-divider .shape-fill {
  fill: #FFFFFF; /* Matches services white background */
}

.about-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Left Column: Staggered Floating Photos */
.about-images-column {
  position: relative;
  height: 450px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.18;
  z-index: 1;
}

.blob-purple {
  width: 180px;
  height: 180px;
  background-color: var(--color-primary);
  top: 5%;
  right: 5%;
}

.blob-orange {
  width: 140px;
  height: 140px;
  background-color: var(--color-secondary);
  bottom: 5%;
  left: 5%;
}

.about-photo-wrapper {
  position: absolute;
  width: 48%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  z-index: 2;
  aspect-ratio: 4/3;
}

.photo-left {
  left: 0;
  top: 15%;
}

.photo-right {
  right: 0;
  top: 23%;
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Keyframes for Staggered Photo Floating */
@keyframes float-photo-1 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
}

@keyframes float-photo-2 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(16px);
  }
}

.float-up {
  animation: float-photo-1 5s ease-in-out infinite;
}

.float-down {
  animation: float-photo-2 5.5s ease-in-out infinite;
}

/* Right Column: Content and Features */
.about-content-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Scroll-triggered entry state */
.about-content-inner {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s cubic-bezier(0.25, 1, 0.5, 1), transform 0.9s cubic-bezier(0.25, 1, 0.5, 1);
}

.about-section.in-view .about-content-inner {
  opacity: 1;
  transform: translateY(0);
}

.about-header {
  margin-bottom: 25px;
}

.about-pretitle {
  font-family: 'Kalam', cursive;
  font-size: 24px;
  font-weight: 700;
  color: #4ECDC4;
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.pretitle-underline {
  position: absolute;
  bottom: -6px;
  left: 0;
  height: 3px;
  width: 50px;
  background-color: #4ECDC4; /* Teal */
  border-radius: 2px;
}

.pretitle-underline::after {
  content: '';
  position: absolute;
  left: 100%;
  margin-left: 6px;
  height: 3px;
  width: 45px;
  background-color: var(--color-primary); /* Purple */
  border-radius: 2px;
}

.about-title {
  font-family: 'Kalam', cursive;
  font-size: 38px;
  font-weight: 700;
  color: #2E3856;
  line-height: 1.25;
}

.about-description {
  font-family: var(--font-main);
  font-size: 16px;
  color: #556070;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* Features Grid */
.about-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 35px;
}

.about-feature-card {
  background-color: #FFFFFF;
  border: 1px solid rgba(122, 79, 122, 0.08);
  border-radius: 16px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 8px 25px rgba(122, 79, 122, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(122, 79, 122, 0.1);
}

.feature-icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.icon-teal {
  background-color: rgba(78, 205, 196, 0.1);
}

.icon-teal i {
  color: #4ECDC4;
  font-size: 18px;
}

.icon-purple {
  background-color: rgba(122, 79, 122, 0.1);
}

.icon-purple i {
  color: var(--color-primary);
  font-size: 18px;
}

.icon-orange {
  background-color: rgba(245, 166, 35, 0.1);
}

.icon-orange i {
  color: var(--color-secondary);
  font-size: 18px;
}

.feature-card-title {
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  line-height: 1.4;
}

.about-action {
  display: flex;
  justify-content: flex-start;
}

.about-btn {
  padding: 12px 30px;
  font-size: 1rem;
}

/* Responsive Styles for About Us Section */
@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .about-section {
    padding: 60px 16px;
  }

  .about-images-column {
    height: 380px;
  }

  .about-title {
    font-size: 32px;
  }
}

@media (max-width: 600px) {
  .about-features-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .about-images-column {
    height: 300px;
  }
  
  .about-photo-wrapper {
    border-radius: 14px;
  }
}

/* ==========================================
   WHY CHOOSE US STYLING
   ========================================== */
.why-choose-us-section {
  background-color: #FFFFFF; /* White background to alternate with lilac about-section */
  padding: 90px 24px;
  width: 100%;
}

.benefits-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.benefits-header {
  text-align: center;
  margin-bottom: 60px;
}

.benefits-title {
  font-family: 'Kalam', cursive;
  font-size: 38px;
  font-weight: 700;
  color: #2E3856;
  line-height: 1.3;
}

.benefits-title .benefits-underline {
  position: relative;
  display: inline-block;
  color: var(--color-primary);
}

.benefits-title .benefits-underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 6px;
  border-radius: 10px;
  background: var(--color-secondary); /* Brand Gold */
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Benefit Card */
.benefit-card {
  background-color: #FFFFFF;
  border: 1px solid rgba(122, 79, 122, 0.08);
  border-top: 4px solid var(--color-primary); /* Bold purple top border */
  border-radius: 16px;
  padding: 35px 30px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.015);
  
  /* Scroll animation initial state */
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(122, 79, 122, 0.08);
}

/* Scroll Animation Trigger Staggering */
.why-choose-us-section.in-view .benefit-card {
  opacity: 1;
  transform: translateY(0);
}

.why-choose-us-section.in-view .benefit-card:nth-child(1) { transition-delay: 0s; }
.why-choose-us-section.in-view .benefit-card:nth-child(2) { transition-delay: 0.12s; }
.why-choose-us-section.in-view .benefit-card:nth-child(3) { transition-delay: 0.24s; }
.why-choose-us-section.in-view .benefit-card:nth-child(4) { transition-delay: 0.36s; }
.why-choose-us-section.in-view .benefit-card:nth-child(5) { transition-delay: 0.48s; }
.why-choose-us-section.in-view .benefit-card:nth-child(6) { transition-delay: 0.60s; }

/* Icon badge wrapper */
.benefit-icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.benefit-icon-wrapper i {
  font-size: 20px;
}

.benefit-card-title {
  font-family: 'Kalam', cursive;
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 16px;
  line-height: 1.35;
}

.benefit-card-description {
  font-family: var(--font-main);
  font-size: 15px;
  color: #556070;
  line-height: 1.7;
}

/* Responsive Styles for Benefits */
@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .why-choose-us-section {
    padding: 70px 16px;
  }
}

@media (max-width: 767px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .benefit-card {
    padding: 30px 20px 35px;
  }

  .benefits-title {
    font-size: 32px;
  }
}

/* ==========================================
   STATS SECTION STYLING
   ========================================== */
.stats-section {
  background-color: #FFFFFF; /* White background */
  padding: 90px 24px;
  width: 100%;
  overflow: hidden;
}

.stats-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Left Column: Content */
.stats-content-column {
  display: flex;
  flex-direction: column;
}

.stats-title {
  font-family: 'Kalam', cursive;
  font-size: 38px;
  font-weight: 700;
  color: #2E3856;
  line-height: 1.25;
  margin-bottom: 20px;
}

.stats-title .stats-underline {
  position: relative;
  display: inline-block;
  color: var(--color-primary);
}

.stats-title .stats-underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 6px;
  border-radius: 10px;
  background: var(--color-secondary); /* Brand Gold */
}

.stats-description {
  font-family: var(--font-main);
  font-size: 16px;
  color: #556070;
  line-height: 1.7;
  margin-bottom: 28px;
}

.stats-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 35px;
}

.stats-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-main);
  font-size: 15px;
  color: #4B5563;
  font-weight: 500;
}

.stats-list i {
  color: #4ECDC4; /* Teal checkmark */
  font-size: 16px;
  flex-shrink: 0;
}

.stats-action {
  display: flex;
  justify-content: flex-start;
}

.stats-btn {
  padding: 12px 28px;
  font-size: 0.98rem;
}

/* Right Column: Stats Card & Blobs */
.stats-card-column {
  display: flex;
  justify-content: center;
  align-items: center;
}

.stats-card-wrapper {
  position: relative;
  width: 100%;
  max-width: 520px;
  padding: 30px;
}

/* Decorative background circles */
.stats-blob {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.stats-blob-orange {
  width: 38px;
  height: 38px;
  background-color: var(--color-secondary);
  opacity: 0.45;
  top: 10px;
  right: 10px;
}

.stats-blob-teal {
  width: 28px;
  height: 28px;
  background-color: #4ECDC4;
  opacity: 0.5;
  bottom: 15px;
  left: 10px;
}

/* Stats Card */
.stats-card-container {
  background: linear-gradient(135deg, #FAF6F8, #FFF8F5);
  border: 1px solid rgba(122, 79, 122, 0.05);
  border-radius: 20px;
  padding: 50px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 24px;
  box-shadow: 0 15px 35px rgba(122, 79, 122, 0.04);
  position: relative;
  z-index: 2;
  width: 100%;
}

.stat-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  
  /* Number floating animation */
  animation: float-stat 4.5s ease-in-out infinite;
}

.stat-top {
  grid-column: span 2;
}

.stat-bottom {
  grid-column: span 2;
}

/* Keyframes for Stats Floating */
@keyframes float-stat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Stagger delays for stats blocks to create wave effect */
.float-stat-1 { animation-delay: 0s; }
.float-stat-2 { animation-delay: 1.1s; }
.float-stat-3 { animation-delay: 2.2s; }
.float-stat-4 { animation-delay: 3.3s; }

.stat-number {
  font-family: 'Kalam', cursive;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 6px;
}

.color-primary-text {
  color: var(--color-primary);
}

.color-secondary-text {
  color: var(--color-secondary);
}

.stat-label {
  font-family: var(--font-main);
  font-size: 14.5px;
  color: #556070;
  font-weight: 500;
}

/* Responsive Styles for Stats Section */
@media (max-width: 900px) {
  .stats-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .stats-section {
    padding: 70px 16px;
  }

  .stats-title {
    font-size: 32px;
  }

  .stats-card-wrapper {
    padding: 10px 0;
  }
}

@media (max-width: 600px) {
  .stats-card-container {
    padding: 40px 20px;
    gap: 30px 15px;
  }

  .stat-number {
    font-size: 36px;
  }

  .stat-label {
    font-size: 13.5px;
  }
}

/* ==========================================
   FAQ SECTION STYLING
   ========================================== */
.faq-section {
  background-color: #FAF6FA; /* Lilac background to alternate with Industries section */
  padding: 95px 24px;
  width: 100%;
  overflow: hidden;
}

.faq-container {
  width: 100%;
  max-width: 820px; /* Centered, compact container for better readability */
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 55px;
}

.faq-title {
  font-family: 'Kalam', cursive;
  font-size: 38px;
  font-weight: 700;
  color: #7A4F7A;
  line-height: 1.3;
  margin-bottom: 20px;
}

.faq-title .faq-underline {
  position: relative;
  display: inline-block;
  color: var(--color-primary);
}

.faq-title .faq-underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 6px;
  border-radius: 10px;
  background: var(--color-secondary); /* Brand Gold */
}

.faq-subtitle {
  font-family: var(--font-main);
  font-size: 16px;
  color: #556070;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* Accordion Layout */
.faq-list {
  display: flex;
  flex-direction: column;
  background: transparent;
}

.faq-item {
  border-bottom: 1px solid rgba(122, 79, 122, 0.1);
  transition: background-color 0.3s ease;
}

.faq-item:first-child {
  border-top: 1px solid rgba(122, 79, 122, 0.1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 12px;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  transition: padding-left 0.3s ease;
}

.faq-question-text {
  font-family: 'Kalam', cursive;
  font-size: 20px;
  font-weight: 700;
  color: #7A4F7A;
  margin: 0;
  transition: color 0.25s ease;
}

.faq-chevron {
  font-size: 15px;
  color: var(--color-primary);
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), color 0.25s ease;
  margin-left: 20px;
  flex-shrink: 0;
}

/* Hover Effects */
.faq-question:hover .faq-question-text {
  color: var(--color-secondary); /* Gold text hover */
}

.faq-question:hover .faq-chevron {
  color: var(--color-secondary);
}

/* Slide open transition for the answers */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease;
}

.faq-answer-content {
  font-family: var(--font-main);
  font-size: 15px;
  color: #556070;
  line-height: 1.75;
  padding: 0 12px 24px;
  margin: 0;
}

/* Active State Styles */
.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--color-secondary);
}

.faq-item.active .faq-question-text {
  color: var(--color-primary);
}

/* Scroll Trigger Animation styling */
.faq-section.scroll-trigger .faq-container {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s cubic-bezier(0.25, 1, 0.5, 1), transform 0.9s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-section.scroll-trigger.in-view .faq-container {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Styles for FAQ */
@media (max-width: 767px) {
  .faq-section {
    padding: 70px 16px;
  }
  
  .faq-title {
    font-size: 32px;
  }
  
  .faq-question-text {
    font-size: 18px;
  }

  .faq-answer-content {
    font-size: 14px;
    padding: 0 12px 20px;
  }
  
  .faq-question {
    padding: 20px 12px;
  }
}

/* ==========================================
   INDUSTRIES WE SERVE SECTION STYLING
   ========================================== */
.industries-section {
  background-color: #FFFFFF; /* White background to alternate with Testimonials and FAQ */
  padding: 95px 24px;
  width: 100%;
  overflow: hidden;
}

.industries-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}

.industries-header {
  text-align: center;
  margin-bottom: 55px;
  
  /* Scroll animation initial state */
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.industries-section.in-view .industries-header {
  opacity: 1;
  transform: translateY(0);
}

.industries-title {
  font-family: 'Kalam', cursive;
  font-size: 38px;
  font-weight: 700;
  color: #7A4F7A; /* Brand Purple */
  line-height: 1.3;
  margin-bottom: 20px;
}

.industries-title .industries-underline {
  position: relative;
  display: inline-block;
  color: #7A4F7A;
}

.industries-title .industries-underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 6px;
  border-radius: 10px;
  background: #4ECDC4; /* Light Teal Underline */
}

.industries-subtitle {
  font-family: var(--font-main);
  font-size: 16px;
  color: #556070;
  line-height: 1.7;
  max-width: 820px;
  margin: 0 auto;
}

/* Industries Grid */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 45px;
}

/* Industry Card */
.industry-card {
  background: #FFFFFF;
  border: 1px solid rgba(122, 79, 122, 0.08);
  border-top: 4px solid var(--color-secondary); /* Brand Gold top border */
  border-radius: 12px;
  padding: 35px 28px;
  box-shadow: 0 8px 25px rgba(122, 79, 122, 0.015);
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  
  /* Scroll animation initial state */
  opacity: 0;
  transform: translateY(40px);
}

.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(122, 79, 122, 0.08);
}

/* Staggered Scroll Animation delay triggers */
.industries-section.in-view .industry-card {
  opacity: 1;
  transform: translateY(0);
}

.industries-section.in-view .industry-card:nth-child(1) { transition-delay: 0.1s; }
.industries-section.in-view .industry-card:nth-child(2) { transition-delay: 0.2s; }
.industries-section.in-view .industry-card:nth-child(3) { transition-delay: 0.3s; }
.industries-section.in-view .industry-card:nth-child(4) { transition-delay: 0.4s; }
.industries-section.in-view .industry-card:nth-child(5) { transition-delay: 0.5s; }
.industries-section.in-view .industry-card:nth-child(6) { transition-delay: 0.6s; }

.industry-card-title {
  font-family: 'Kalam', cursive;
  font-size: 22px;
  font-weight: 700;
  color: #7A4F7A; /* Brand Purple */
  margin-bottom: 14px;
}

.industry-card-description {
  font-family: var(--font-main);
  font-size: 15px;
  color: #556070;
  line-height: 1.65;
}

/* Responsive Styles for Industries Section */
@media (max-width: 1024px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .industries-section {
    padding: 70px 16px;
  }
}

@media (max-width: 767px) {
  .industries-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .industries-title {
    font-size: 32px;
  }

  .industry-card {
    padding: 30px 20px;
  }
}

/* ==========================================
   MILESTONES SECTION STYLING
   ========================================== */
.milestones-section {
  background-color: #FAF6FA; /* Lilac background */
  padding: 95px 24px;
  width: 100%;
  overflow: hidden;
}

.milestones-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}

.milestones-header {
  text-align: center;
  margin-bottom: 55px;
  
  /* Scroll animation initial state */
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.milestones-section.in-view .milestones-header {
  opacity: 1;
  transform: translateY(0);
}

.milestones-title {
  font-family: 'Kalam', cursive;
  font-size: 38px;
  font-weight: 700;
  color: #7A4F7A; /* Brand Purple */
  line-height: 1.3;
  margin-bottom: 20px;
}

.milestones-title .milestones-underline {
  position: relative;
  display: inline-block;
  color: #7A4F7A;
}

.milestones-title .milestones-underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 6px;
  border-radius: 10px;
  background: #4ECDC4; /* Light Teal Underline */
}

.milestones-subtitle {
  font-family: var(--font-main);
  font-size: 16px;
  color: #556070;
  line-height: 1.7;
  max-width: 820px;
  margin: 0 auto;
}

/* Milestones Grid */
.milestones-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 45px;
}

/* Milestone Card */
.milestone-card {
  background: #FFFFFF;
  border: 1px solid rgba(122, 79, 122, 0.08);
  border-radius: 12px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 8px 25px rgba(122, 79, 122, 0.015);
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  
  /* Scroll animation initial state */
  opacity: 0;
  transform: translateY(40px);
}

.milestone-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(122, 79, 122, 0.08);
}

/* Staggered Scroll Animation delay triggers */
.milestones-section.in-view .milestone-card {
  opacity: 1;
  transform: translateY(0);
}

.milestones-section.in-view .milestone-card:nth-child(1) { transition-delay: 0.1s; }
.milestones-section.in-view .milestone-card:nth-child(2) { transition-delay: 0.2s; }
.milestones-section.in-view .milestone-card:nth-child(3) { transition-delay: 0.3s; }
.milestones-section.in-view .milestone-card:nth-child(4) { transition-delay: 0.4s; }
.milestones-section.in-view .milestone-card:nth-child(5) { transition-delay: 0.5s; }
.milestones-section.in-view .milestone-card:nth-child(6) { transition-delay: 0.6s; }

/* Milestone Icon styling */
.milestone-icon-wrapper {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.milestone-icon-wrapper i {
  font-size: 24px;
}

/* Card-Specific Themes */
/* 1. Happy Clients (Purple) */
.milestone-purple .milestone-icon-wrapper {
  background-color: #FAF4FA;
}
.milestone-purple .milestone-icon-wrapper i {
  color: #F5A623; /* Yellow bolt */
}
.milestone-purple .milestone-number,
.milestone-purple .milestone-label {
  color: #7A4F7A;
}

/* 2. Countries Served (Gold) */
.milestone-gold .milestone-icon-wrapper {
  background-color: #FAF6EE;
}
.milestone-gold .milestone-icon-wrapper i {
  color: #2E3856; /* Dark icon */
}
.milestone-gold .milestone-number,
.milestone-gold .milestone-label {
  color: #F5A623;
}

/* 3. Success Rate (Teal) */
.milestone-teal .milestone-icon-wrapper {
  background-color: #EEFAF8;
}
.milestone-teal .milestone-icon-wrapper i {
  color: #F5A623; /* Yellow bolt */
}
.milestone-teal .milestone-number,
.milestone-teal .milestone-label {
  color: #4ECDC4;
}

/* 4. Support Available (Orange/Red) */
.milestone-orange .milestone-icon-wrapper {
  background-color: #FAF3F2;
}
.milestone-orange .milestone-icon-wrapper i {
  color: #F5A623; /* Yellow bolt */
}
.milestone-orange .milestone-number,
.milestone-orange .milestone-label {
  color: #FF6B6B;
}

/* 5. Client Rating (Blue) */
.milestone-blue .milestone-icon-wrapper {
  background-color: #EEF7FA;
}
.milestone-blue .milestone-icon-wrapper i {
  color: #F5A623; /* Yellow bolt */
}
.milestone-blue .milestone-number,
.milestone-blue .milestone-label {
  color: #118AB2;
}

/* 6. Industries (Purple Alt) */
.milestone-purple-alt .milestone-icon-wrapper {
  background-color: #FAF4FA;
}
.milestone-purple-alt .milestone-icon-wrapper i {
  color: #F5A623; /* Yellow bolt */
}
.milestone-purple-alt .milestone-number,
.milestone-purple-alt .milestone-label {
  color: #7A4F7A;
}

.milestone-number {
  font-family: 'Kalam', cursive;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.2;
}

.milestone-label {
  font-family: 'Kalam', cursive;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.milestone-description {
  font-family: var(--font-main);
  font-size: 14px;
  color: #556070;
  line-height: 1.6;
}

/* Responsive Styles for Milestones */
@media (max-width: 1024px) {
  .milestones-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .milestones-section {
    padding: 70px 16px;
  }
}

@media (max-width: 767px) {
  .milestones-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .milestones-title {
    font-size: 32px;
  }

  .milestone-card {
    padding: 30px 20px;
  }
}

/* ==========================================
   TESTIMONIALS SECTION STYLING
   ========================================== */
.testimonials-section {
  background-color: #FAF6FA; /* Lilac background */
  padding: 95px 0; /* Keep top/bottom padding but no horizontal padding on section for full-width track */
  width: 100%;
  overflow: hidden;
}

.testimonials-container {
  width: 100%;
  margin: 0 auto;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 50px;
  padding: 0 24px; /* Pad the title area */
  
  /* Scroll animation initial state */
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.testimonials-section.in-view .testimonials-header {
  opacity: 1;
  transform: translateY(0);
}

.testimonials-title {
  font-family: 'Kalam', cursive;
  font-size: 38px;
  font-weight: 700;
  color: #7A4F7A; /* Brand Purple */
  line-height: 1.3;
  margin: 0;
}

.testimonials-title .testimonials-underline {
  position: relative;
  display: inline-block;
  color: #7A4F7A;
}

.testimonials-title .testimonials-underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 6px;
  border-radius: 10px;
  background: #4ECDC4; /* Light Teal Underline */
}

/* Loop Scrolling Track Container */
.testimonials-track-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
  
  /* Scroll animation initial state */
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.15s, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.15s;
}

.testimonials-section.in-view .testimonials-track-container {
  opacity: 1;
  transform: translateY(0);
}

.testimonials-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: scroll-marquee 40s linear infinite;
}

/* Pause scroll animation on hover */
.testimonials-track-container:hover .testimonials-track {
  animation-play-state: paused;
}

@keyframes scroll-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    /* Translate exactly half of the total track width (set of 6 cards + gaps) */
    transform: translateX(calc(-50% - 15px)); 
  }
}

/* Testimonial Card Styling */
.testimonial-card {
  background: #FFFFFF;
  border: 1px solid rgba(122, 79, 122, 0.08);
  border-radius: 12px;
  padding: 35px 28px;
  width: 320px;
  box-shadow: 0 6px 20px rgba(122, 79, 122, 0.01);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(122, 79, 122, 0.06);
}

.testimonial-name {
  font-family: 'Kalam', cursive;
  font-size: 20px;
  font-weight: 700;
  color: #7A4F7A; /* Brand Purple */
  margin-bottom: 6px;
}

.testimonial-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 8px;
}

.testimonial-rating i {
  color: #F5A623; /* Gold stars */
  font-size: 14px;
}

.testimonial-location {
  font-family: var(--font-main);
  font-size: 12px;
  color: #8892A0;
  margin-bottom: 16px;
  font-weight: 500;
}

.testimonial-text {
  font-family: var(--font-main);
  font-size: 14.5px;
  color: #556070;
  line-height: 1.65;
  margin: 0;
  font-style: italic;
}

/* Responsive Styles for Testimonials */
@media (max-width: 767px) {
  .testimonials-section {
    padding: 70px 0;
  }
  
  .testimonials-title {
    font-size: 32px;
  }
  
  .testimonial-card {
    width: 280px;
    padding: 25px 20px;
  }
}

/* ==========================================
   BRANDS SECTION STYLING
   ========================================== */
.brands-section {
  background-color: #FAF6FA; /* Lilac background */
  padding: 95px 24px;
  width: 100%;
  overflow: hidden;
}

.brands-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}

.brands-header {
  text-align: center;
  margin-bottom: 50px;
  
  /* Scroll animation initial state */
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.brands-section.in-view .brands-header {
  opacity: 1;
  transform: translateY(0);
}

.brands-title {
  font-family: 'Kalam', cursive;
  font-size: 38px;
  font-weight: 700;
  color: #7A4F7A; /* Brand Purple */
  line-height: 1.3;
  margin: 0;
}

.brands-title .brands-underline {
  position: relative;
  display: inline-block;
  color: #7A4F7A;
}

.brands-title .brands-underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 6px;
  border-radius: 10px;
  background: #4ECDC4; /* Light Teal Underline */
}

/* Stepped Slider Track Container */
.brands-slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 10px 0;
  
  /* Scroll animation initial state */
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.15s, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.15s;
}

.brands-section.in-view .brands-slider-container {
  opacity: 1;
  transform: translateY(0);
}

.brands-track {
  display: flex;
  gap: 30px;
  width: max-content;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); /* Smooth shift animation */
}

/* Brand Circle Design */
.brand-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: #FFFFFF;
  border: 1px solid rgba(122, 79, 122, 0.08);
  box-shadow: 0 4px 15px rgba(122, 79, 122, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-circle:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(122, 79, 122, 0.08);
}

.brand-circle img {
  max-width: 70%;
  max-height: 70%;
  object-fit: contain;
}

/* Responsive Styles for Brands */
@media (max-width: 767px) {
  .brands-section {
    padding: 70px 16px;
  }
  
  .brands-title {
    font-size: 32px;
  }
  
  .brand-circle {
    width: 100px;
    height: 100px;
  }
}

/* CAL.COM BOOKING MODAL */
.cal-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 10, 15, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.cal-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.cal-modal-container {
  background: #FFFFFF;
  width: 90%;
  max-width: 850px;
  height: 85%;
  max-height: 750px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 
              0 0 0 1px rgba(122, 79, 122, 0.1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transform: translateY(30px) scale(0.96);
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.cal-modal-overlay.active .cal-modal-container {
  transform: translateY(0) scale(1);
}

.cal-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(0, 0, 0, 0.05);
  border: none;
  font-size: 24px;
  font-weight: 300;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #374151;
  transition: all 0.2s ease;
  z-index: 10;
}

.cal-modal-close:hover {
  background: rgba(122, 79, 122, 0.1);
  color: var(--color-primary);
  transform: rotate(90deg);
}

.cal-modal-header {
  padding: 24px 32px 16px;
  border-bottom: 1px solid rgba(122, 79, 122, 0.08);
  text-align: left;
}

.cal-modal-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(122, 79, 122, 0.1), rgba(245, 166, 35, 0.15));
  border-radius: 12px;
  color: var(--color-primary);
  font-size: 20px;
  margin-bottom: 12px;
}

.cal-modal-title {
  font-family: 'Kalam', cursive;
  font-size: 1.6rem;
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 4px;
}

.cal-modal-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #6B7280;
}

.cal-modal-body {
  flex: 1;
  position: relative;
  background: #FAFAFA;
}

.cal-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Spinner Loader */
.cal-modal-loader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FAFAFA;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
  transition: opacity 0.3s ease;
}

.cal-spinner {
  width: 40px;
  height: 40px;
  border: 3.5px solid rgba(122, 79, 122, 0.1);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: cal-spin 0.8s linear infinite;
}

@keyframes cal-spin {
  to { transform: rotate(360deg); }
}

.cal-modal-footer {
  padding: 14px 32px;
  border-top: 1px solid rgba(122, 79, 122, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #FFFFFF;
}

.cal-modal-link-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: #6B7280;
}

.cal-modal-external-btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.cal-modal-external-btn:hover {
  color: var(--color-secondary);
}

.cal-modal-external-btn i {
  font-size: 0.75rem;
  transition: transform 0.2s ease;
}

.cal-modal-external-btn:hover i {
  transform: translate(2px, -2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .cal-modal-container {
    width: 95%;
    height: 90%;
    border-radius: 16px;
  }
  
  .cal-modal-header {
    padding: 16px 20px 12px;
  }
  
  .cal-modal-title {
    font-size: 1.35rem;
  }
  
  .cal-modal-footer {
    padding: 12px 20px;
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* Global Scroll Triggered Fade-In-Up Animation */
.global-scroll-animate {
  opacity: 0 !important;
  transform: translateY(40px) !important;
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
  will-change: transform, opacity;
}

.global-scroll-animate.global-animated {
  opacity: 1 !important;
  transform: translateY(0) !important;
}