:root {
  --black: #1D1D1D;
  --lime: #DCF986;
  --green: #5EA977;
  --graywhite: #F6F6F6;
  --text: #0e0f10;
}

* {
  box-sizing: border-box
}

html,
body {
  margin: 0;
  padding: 0
}


* {
  font-family: 'Gilroy', sans-serif;
  color: var(--text);
}

body,
h1,
h2,
h3 {
  font-family: 'Gilroy', sans-serif;
  font-weight: 100;
  color: var(--text);


}

/* Navbar Container */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1030;
  background: #1a1a1a;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

/* Nav Container */
.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
}

/* Logo */
.nav-logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  z-index: 10002;
  position: relative;
  white-space: nowrap;
}

.nav-logo:hover {
  color: #30b74b;
  transform: translateY(-1px);
}

/* Desktop Navigation Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #6a6a6a;
  text-decoration: none;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
  display: inline-block;

}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #30b74b, #1db94f);
  transition: width 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
  color: #30b74b;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Desktop CTA Button */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 1.75rem;
  background: linear-gradient(135deg, #30b74b 0%, #1db94f 100%);
  color: white;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(48, 183, 75, 0.25);
  white-space: nowrap;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(48, 183, 75, 0.35);
  background: linear-gradient(135deg, #1db94f 0%, #30b74b 100%);
}

.nav-cta:active {
  transform: translateY(0);
}

.nav-cta i {
  font-size: 0.875rem;
  transition: transform 0.3s ease;
}

.nav-cta:hover i {
  transform: translateX(4px);
}

/* ========================================
   HAMBURGER MENU BUTTON
   ======================================== */

.hamburger-menu {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: transparent;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  padding: 0;
  z-index: 10002;
  position: relative;
  transition: all 0.3s ease;
}

.hamburger-menu:hover {
  background: rgba(48, 183, 75, 0.08);
}

.hamburger-menu:active {
  transform: scale(0.95);
}

.hamburger-menu i {
  font-size: 24px;
  color: #181717;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: block;
}

/* Hamburger Active State */
.hamburger-menu.active i::before {
  content: "\f00d";
  /* Font Awesome X icon */
  color: #30b74b;
}

/* ========================================
   MOBILE SIDEBAR
   ======================================== */

.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: #ffffff;
  box-shadow: -10px 0 50px rgba(0, 0, 0, 0.15);
  z-index: 10001;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.mobile-sidebar.active {
  right: 0;
}

/* Custom Scrollbar */
.mobile-sidebar::-webkit-scrollbar {
  width: 6px;
}

.mobile-sidebar::-webkit-scrollbar-track {
  background: #fafafa;
}

.mobile-sidebar::-webkit-scrollbar-thumb {
  background: #30b74b;
  border-radius: 3px;
}

.mobile-sidebar::-webkit-scrollbar-thumb:hover {
  background: #1db94f;
}

/* Sidebar Header */
.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 2px solid #f0f0f0;
  background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
  position: sticky;
  top: 0;
  z-index: 10;
}

.sidebar-logo {
  font-weight: 800;
  font-size: 1.375rem;
  letter-spacing: -0.02em;
  color: #0a0a0a;
}

.close-sidebar {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #30b74b, #1db94f);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.25rem;
  color: white;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(48, 183, 75, 0.3);
}

.close-sidebar:hover {
  background: linear-gradient(135deg, #1db94f, #30b74b);
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 6px 16px rgba(48, 183, 75, 0.4);
}

.close-sidebar:active {
  transform: rotate(90deg) scale(0.95);
}

/* Sidebar Navigation Links */
.sidebar-links {
  display: flex;
  flex-direction: column;
  padding: 1.5rem 0;
  flex: 1;
  gap: 0.25rem;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.125rem 1.5rem;
  text-decoration: none;
  color: #0a0a0a;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 4px solid transparent;
  position: relative;
  margin: 0 0.5rem;
  border-radius: 0 12px 12px 0;
}

.sidebar-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg,
      rgba(48, 183, 75, 0.1) 0%,
      rgba(48, 183, 75, 0.05) 50%,
      transparent 100%);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
  border-radius: 0 12px 12px 0;
}

.sidebar-link:hover::before,
.sidebar-link.active::before {
  width: 100%;
}

.sidebar-link:hover,
.sidebar-link.active {
  color: #30b74b;
  border-left-color: #30b74b;
  padding-left: 2rem;
}

.sidebar-link i {
  font-size: 1.25rem;
  width: 24px;
  min-width: 24px;
  color: #30b74b;
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.sidebar-link:hover i {
  transform: scale(1.2) rotate(5deg);
}

.sidebar-link span {
  flex: 1;
}

/* Sidebar CTA */
.sidebar-cta {
  margin: 1.5rem;
  padding: 1.125rem 1.5rem;
  background: linear-gradient(135deg, #30b74b 0%, #1db94f 100%);
  color: white;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  box-shadow: 0 8px 20px rgba(48, 183, 75, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.sidebar-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.sidebar-cta:hover::before {
  left: 100%;
}

.sidebar-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(48, 183, 75, 0.4);
}

.sidebar-cta:active {
  transform: translateY(-1px);
}

.sidebar-cta i {
  font-size: 1.125rem;
  transition: transform 0.3s ease;
}

.sidebar-cta:hover i {
  transform: translateX(4px);
}

/* Sidebar Overlay */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}

.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* ========================================
   RESPONSIVE BREAKPOINTS
   ======================================== */

/* MOBILE RESPONSIVE - NAV LINKS */
/* Hide desktop nav links on mobile and tablets */
@media (max-width: 1024px) {
  .nav-links {
    display: none !important;
  }
  
  .hamburger-menu {
    display: flex !important;
  }
}

/* Show nav links only on desktop (1025px and above) */
@media (min-width: 1025px) {
  .nav-links {
    display: flex !important;
  }
  
  .hamburger-menu {
    display: none !important;
  }
}



/* Mobile (480px) */
@media (max-width: 480px) {
  .nav-container {
    padding: 0.875rem 1rem;
  }

  .nav-logo {
    font-size: 1.25rem;
  }

  .sidebar-link {
    padding: 1rem 1.25rem;
    font-size: 0.9375rem;
  }

  .sidebar-cta {
    margin: 1rem;
    padding: 1rem;
    font-size: 0.9375rem;
  }

  .close-sidebar {
    width: 44px;
    height: 44px;
  }

  .hamburger-menu {
    width: 40px;
    height: 40px;
  }
}

/* ========================================
   ACCESSIBILITY & PERFORMANCE
   ======================================== */

/* Focus States for Keyboard Navigation */
.nav-link:focus-visible,
.sidebar-link:focus-visible,
.nav-cta:focus-visible,
.sidebar-cta:focus-visible,
.hamburger-menu:focus-visible,
.close-sidebar:focus-visible {
  outline: 3px solid rgba(48, 183, 75, 0.5);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Reduce Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Print Styles */
@media print {

  .navbar,
  .mobile-sidebar,
  .sidebar-overlay,
  .hamburger-menu {
    display: none !important;
  }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  .navbar {
    border-bottom: 2px solid #0a0a0a;
  }

  .nav-link,
  .sidebar-link {
    font-weight: 700;
  }
}

/* top navigation */
.nav {
  max-width: 1120px;
  margin: 18px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 20px;
}

.logo {
  font-weight: 800;
  letter-spacing: 1.5px;
}

.nav-links {
  display: flex;
  gap: 24px;

}

.nav-links a {
  text-decoration: none;
  color: #5b5e62;
  font-weight: 500;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  transition: all .2s ease;
  position: relative;
}

/* Get Started - black button with green arrow circle */
.btn-dark {
  background: var(--black);
  color: #fff;
  padding: 14px 20px;
  border: none;
}

/* Learn more - white button with border */
.btn-light {
  background: #fff;
  color: var(--black);
  padding: 29px 22px;
  border: 1px solid #e0e0e0;
}


/* Green circle behind arrow ONLY for dark button */
.btn-dark .icon-arrow {
  background: var(--lime);
  color: var(--black);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: transform .2s ease;
  margin-left: 8px;
}

/* Regular arrow for light button */
.btn-light .icon-arrow {
  color: var(--black);
  font-size: 16px;
  transition: transform .2s ease;
}

.btn-lg {
  padding: 14px 22px;
}

.btn-dark.btn-lg {
  background: var(--black);
}


.btn:hover .icon-arrow {
  transform: translateX(3px);
}

.icon-arrow {
  display: inline-block;
  transition: transform .2s ease
}

.cta-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

/* hero */
.hero {
  position: relative;
  max-width: 1120px;
  margin: 28px auto 64px;
  padding: 40px 20px 120px;
}

.grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(#0000 31px, rgba(17, 17, 17, 0.04) 32px),
    linear-gradient(90deg, #0000 31px, rgba(17, 17, 17, 0.04) 32px);
  background-size: 32px 32px;
  border-radius: 24px;
  pointer-events: none;
}

/* content */
.hero-content {
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {

  line-height: 1.05;
  letter-spacing: -0.02em;
  font-size: clamp(28px, 4.5vw, 64px);
  /* fluid type */
}

.sub {
  margin: 14px auto 26px;
  max-width: 780px;
  color: #5b5e62;
  font-size: clamp(14px, 1.8vw, 18px);
}

.cta-row {
  display: flex;
  justify-content: center;
  gap: 14px;
}

/* floating cards */
.card {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
  padding: 14px 16px;
  width: 260px;
  backdrop-filter: saturate(1.2) blur(2px);
  transform: translateZ(0);
}

.card-left {
  left: 40px;
  bottom: 18px;
}

.card-right {
  right: 40px;
  bottom: 22px;
  width: 300px;
}

.card-title {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 10px;
}

.muted {
  color: #8b8f93;
  font-size: 12px;
}

.bar {
  height: 10px;
  border-radius: 999px;
  background: #e7efe8;
  margin: 10px 0 8px;
  position: relative;
  overflow: hidden;
}

.bar-green::after {
  content: "";
  position: absolute;
  inset: 0 40% 0 0;
  background: var(--green);
}

/* badges row */
.badges {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}

.badge {
  background: var(--graywhite);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  color: #2a2d30;
  border: 1px solid #ececec;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  display: inline-block;
}

.dot-red {
  background: #ff7b7b;
}

/* buttons theme accents to match palette */
.btn-dark {
  background: var(--black);
}

.btn-light:hover {
  background: var(--graywhite);
}

/* rounded CTA with lime accent like screenshot */
.btn-dark.btn-lg {
  background: var(--black);
  position: relative;
}

/* responsiveness */
@media (max-width: 780px) {
  .nav {
    grid-template-columns: 1fr auto;
  }
}


/* Trusted Companies Section */
.trusted-companies {
  background: #ffffff;
  padding: 80px 0 60px;
  margin: 40px 0;
  position: relative;
}

.trusted-companies .container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.trusted-header {
  text-align: center;
  margin-bottom: 50px;
}

.trusted-header h3 {
  font-family: "Gilroy", sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 3vw, 36px);
  color: var(--black);
  margin: 0 0 12px 0;
  letter-spacing: -0.01em;
}

.trusted-header p {
  font-family: "Gilroy", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #6b7280;
  margin: 0;
  letter-spacing: 0.01em;
}

/* TRUSTED COMPANIES - SINGLE LINE WITH CIRCULAR LOGOS */
.trusted-companies-line {
  background: #ffffff;
  padding: 60px 0;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
}

.companies-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.companies-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 0 120px;
  animation: slowSlide 30s linear infinite;
}

.company-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-width: 120px;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.company-item:hover {
  opacity: 1;
  transform: translateY(-4px);
}

/* Circular company logos */
.company-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #F6F6F6;
  border: 2px solid #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}



.company-circle img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  transition: filter 0.3s ease;
}

.company-item:hover .company-circle img {
  filter: grayscale(0%) opacity(1);
}

.company-name {
  font-family: "Gilroy", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #1D1D1D;
  text-align: center;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

/* Fade effects on both sides */
.fade-left,
.fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 10;
  pointer-events: none;
}

.fade-left {
  left: 0;
  background: linear-gradient(to right,
      #ffffff 0%,
      #ffffff 30%,
      rgba(255, 255, 255, 0.8) 60%,
      rgba(255, 255, 255, 0) 100%);
}

.fade-right {
  right: 0;
  background: linear-gradient(to left,
      #ffffff 0%,
      #ffffff 30%,
      rgba(255, 255, 255, 0.8) 60%,
      rgba(255, 255, 255, 0) 100%);
}

/* Pause animation on hover */
.trusted-companies-line:hover .companies-track {
  animation-play-state: paused;
}

/* Responsive Design */
@media (max-width: 768px) {
  .trusted-companies-line {
    padding: 40px 0;
  }

  .companies-track {
    gap: 40px;
    padding: 0 80px;
  }

  .company-circle {
    width: 60px;
    height: 60px;
  }

  .company-circle img {
    width: 36px;
    height: 36px;
  }

  .company-name {
    font-size: 12px;
  }

  .fade-left,
  .fade-right {
    width: 80px;
  }
}

@media (max-width: 480px) {
  .companies-track {
    gap: 30px;
    padding: 0 60px;
  }

  .company-circle {
    width: 50px;
    height: 50px;
  }

  .company-circle img {
    width: 30px;
    height: 30px;
  }

  .company-name {
    font-size: 11px;
  }
}


/* SCROLLING BANNER  */

.scrolling-banner {
  background: #f8f9fa;
  padding: 24px 0;
  margin: 60px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
}

.scroll-container {
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}

.scroll-content {
  display: inline-flex;
  white-space: nowrap;
  animation: scroll-right-to-left 50s linear infinite;
  will-change: transform;
}

.scroll-item {
  display: inline-flex;
  align-items: center;
  font-family: "Gilroy", sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #1a1a1a;
  padding: 12px 0;
  margin-right: 80px;
  white-space: nowrap;
  position: relative;
  letter-spacing: 0.5px;
}

.scroll-item i {
  color: #fff;
  margin-right: 12px;
  font-size: 34px;
  /* Medium size */
  min-width: 28px;
  text-align: center;
}

/* Remove the old green dot separator */
.scroll-item::before {
  display: none;
}

/* Add subtle separator between items */
.scroll-item::after {
  content: "·";
  color: #5EA977;
  font-weight: 900;
  font-size: 24px;
  margin-left: 40px;
  opacity: 0.6;
}

.scroll-item:last-child::after {
  display: none;
}

/* Scrolling Animation Keyframes */
@keyframes scroll-right-to-left {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* Fade effect on edges */
.scrolling-banner::before,
.scrolling-banner::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 10;
  pointer-events: none;
}

.scrolling-banner::before {
  left: 0;
  background: linear-gradient(to right,
      #f8f9fa 0%,
      #f8f9fa 20%,
      rgba(248, 249, 250, 0.8) 50%,
      rgba(248, 249, 250, 0) 100%);
}

.scrolling-banner::after {
  right: 0;
  background: linear-gradient(to left,
      #f8f9fa 0%,
      #f8f9fa 20%,
      rgba(248, 249, 250, 0.8) 50%,
      rgba(248, 249, 250, 0) 100%);
}

/* Icon hover effect */
.scroll-item:hover i {
  transform: scale(1.1);
  transition: transform 0.2s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
  .scrolling-banner {
    padding: 20px 0;
  }

  .scroll-item {
    font-size: 16px;
    margin-right: 60px;
    padding: 10px 0;
  }

  .scroll-item i {
    font-size: 18px;
    margin-right: 10px;
  }
}

@media (max-width: 480px) {
  .scroll-item {
    font-size: 14px;
    margin-right: 40px;
  }

  .scroll-item i {
    font-size: 16px;
    margin-right: 8px;
  }
}

/* ========================================
   PROFESSIONAL STATS SECTION - COMPLETE REWRITE
   ======================================== */

.stats-section-redesign {
  background: #1a1a1a;
  padding: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.stats-section-redesign::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 25% 30%, rgba(94, 169, 119, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 75% 70%, rgba(220, 249, 134, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

/* Container */
.stats-container-redesign {
  max-width: 1200px;
  margin: 0;
  padding: 80px 60px;
  position: relative;
  z-index: 2;
  width: 100%;
}

.stats-content-redesign {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 60px;
}

/* ========================================
   HEADING SECTION - LEFT ALIGNED
   ======================================== */

.stats-text-redesign {
  text-align: left;
  max-width: 900px;
  margin: 0;
  position: relative;
}

.stats-heading-redesign {
  font-family: 'Gilroy', sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 2.6vw, 32px);
  line-height: 1.45;
  color: #ffffff;
  margin: 0 0 20px 0;
  letter-spacing: 0;
  text-transform: uppercase;
  opacity: 1 !important;
  visibility: visible !important;
}

.stats-underline {
  width: 160px;
  height: 3px;
  background: linear-gradient(90deg, #5EA977 0%, #DCF986 100%);
  border-radius: 2px;
  margin: 0;
  opacity: 1 !important;
  visibility: visible !important;
}

/* ========================================
   BOTTOM SECTION - STATS + BUTTON
   ======================================== */

.stats-bottom-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 40px;
}

/* ========================================
   STATS BOXES - FULLY BOXED CARDS
   ======================================== */

.stats-boxes-redesign {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  flex-wrap: wrap;
  flex: 1;
  opacity: 1 !important;
  visibility: visible !important;
}

/* FULLY BOXED STAT CARD - As Per Image */
.stat-card-box {
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 28px 32px;
  text-align: left;
  min-width: 160px;
  flex: 0 1 auto;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  opacity: 1 !important;
  visibility: visible !important;
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Stat Label - Top */
.stat-label-redesign {
  font-family: 'Gilroy', sans-serif;
  font-weight: 600;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 1 !important;
  visibility: visible !important;
  margin: 0;
}

/* Plus Icon - Medium Size */
.stat-icon-redesign {
  font-family: 'Gilroy', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 4.5vw, 46px);
  color: #ffffff;
  line-height: 1;
  opacity: 1 !important;
  visibility: visible !important;
  margin: 4px 0;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
}

/* Stat Number */
.stat-number-redesign {
  font-family: 'Gilroy', sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 3.8vw, 36px);
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.01em;
  opacity: 1 !important;
  visibility: visible !important;
  margin: 0;
}

/* Counter Styling */
.stat-number-redesign .counter {
  display: inline-block;
  font-variant-numeric: tabular-nums;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 1 !important;
  visibility: visible !important;
  color: #ffffff !important;
}

.stat-number-redesign .counter.counting {
  color: #5EA977 !important;
  text-shadow: 0 0 15px rgba(94, 169, 119, 0.5);
}

/* Card Hover Effects */
.stat-card-box:hover {
  background: rgba(94, 169, 119, 0.08);
  border-color: #5EA977;
  box-shadow: 0 8px 30px rgba(94, 169, 119, 0.25);
  transform: translateY(-4px) translateX(4px);
}

.stat-card-box:hover .stat-icon-redesign {
  color: #5EA977;
  text-shadow: 0 0 25px rgba(94, 169, 119, 0.6);
  transform: scale(1.05);
}

.stat-card-box:hover .stat-label-redesign {
  color: #DCF986;
  letter-spacing: 2.5px;
}

.stat-card-box:hover .stat-number-redesign {
  color: #DCF986;
}

/* ========================================
   CONSULT NOW BUTTON - RIGHT SIDE, MINIMAL
   ======================================== */

.stats-cta-redesign {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-shrink: 0;
}

.btn-consult-redesign {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(94, 169, 119, 0.15);
  color: #ffffff;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: 'Gilroy', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(94, 169, 119, 0.3);
  position: relative;
  overflow: hidden;
}

/* Minimal Shimmer Effect */
.btn-consult-redesign::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.btn-consult-redesign:hover::before {
  left: 100%;
}

/* Button Arrow */
.btn-consult-redesign i {
  font-size: 12px;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Minimal Hover Animation */
.btn-consult-redesign:hover {
  background: #5EA977;
  border-color: #5EA977;
  transform: translateX(4px);
  box-shadow: 0 6px 20px rgba(94, 169, 119, 0.3);
}

.btn-consult-redesign:hover i {
  transform: translateX(3px);
}

.btn-consult-redesign:active {
  transform: translateX(2px) scale(0.98);
  box-shadow: 0 3px 12px rgba(94, 169, 119, 0.25);
}

/* ========================================
   ENTRANCE ANIMATIONS
   ======================================== */

@keyframes fadeInLeftStats {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRightStats {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.stat-card-box {
  animation: fadeInLeftStats 0.7s ease forwards;
  opacity: 0;
}

.stat-card-box:nth-child(1) {
  animation-delay: 0.1s;
}

.stat-card-box:nth-child(2) {
  animation-delay: 0.2s;
}

.stat-card-box:nth-child(3) {
  animation-delay: 0.3s;
}

.btn-consult-redesign {
  animation: fadeInRightStats 0.7s ease forwards;
  animation-delay: 0.4s;
  opacity: 0;
}

/* ========================================
   FORCE VISIBILITY
   ======================================== */

.stats-section-redesign *,
.stats-section-redesign .stat-card-box,
.stats-section-redesign .counter,
.stats-section-redesign .stat-number-redesign,
.stats-section-redesign .stat-label-redesign,
.stats-section-redesign .stat-icon-redesign {
  opacity: 1 !important;
  visibility: visible !important;
}

.stat-number-redesign,
.stat-number-redesign .counter {
  color: #ffffff !important;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
  .stats-bottom-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }

  .stats-cta-redesign {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 968px) {
  .stats-container-redesign {
    padding: 60px 40px;
  }

  .stats-content-redesign {
    gap: 50px;
  }

  .stats-heading-redesign {
    font-size: clamp(18px, 3vw, 28px);
  }

  .stats-boxes-redesign {
    gap: 20px;
  }

  .stat-card-box {
    padding: 24px 28px;
    min-width: 150px;
  }

  .stat-icon-redesign {
    font-size: clamp(32px, 5vw, 42px);
  }

  .stat-number-redesign {
    font-size: clamp(24px, 4.5vw, 32px);
  }

  .btn-consult-redesign {
    padding: 11px 22px;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .stats-container-redesign {
    padding: 50px 32px;
  }

  .stats-heading-redesign {
    font-size: clamp(17px, 3.5vw, 24px);
  }

  .stats-underline {
    width: 130px;
  }

  .stats-boxes-redesign {
    gap: 18px;
  }

  .stat-card-box {
    padding: 22px 26px;
    min-width: 140px;
  }

  .stat-label-redesign {
    font-size: 9px;
    letter-spacing: 1.5px;
  }

  .stat-icon-redesign {
    font-size: 30px;
  }

  .stat-number-redesign {
    font-size: 22px;
  }

  .btn-consult-redesign {
    padding: 10px 20px;
    font-size: 12px;
  }

  .btn-consult-redesign i {
    font-size: 11px;
  }
}

@media (max-width: 580px) {
  .stats-boxes-redesign {
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }

  .stat-card-box {
    width: 100%;
    max-width: 280px;
    min-width: auto;
  }

  .btn-consult-redesign {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .stats-container-redesign {
    padding: 40px 24px;
  }

  .stats-heading-redesign {
    font-size: 16px;
    line-height: 1.5;
  }

  .stats-underline {
    width: 110px;
    height: 2px;
  }

  .stats-content-redesign {
    gap: 40px;
  }

  .stat-card-box {
    padding: 20px 24px;
    gap: 8px;
  }

  .stat-label-redesign {
    font-size: 8px;
    letter-spacing: 1.5px;
  }

  .stat-icon-redesign {
    font-size: 28px;
  }

  .stat-number-redesign {
    font-size: 20px;
  }

  .btn-consult-redesign {
    padding: 10px 18px;
    font-size: 12px;
    gap: 8px;
  }
}

/* ========================================
   ACCESSIBILITY
   ======================================== */

@media (prefers-reduced-motion: reduce) {

  .stat-card-box,
  .btn-consult-redesign {
    animation: none !important;
    transition: none !important;
  }

  .stat-number-redesign .counter.counting {
    animation: none !important;
  }

  .btn-consult-redesign::before {
    animation: none !important;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .stat-card-box {
    border: 3px solid #fff;
  }

  .btn-consult-redesign {
    border: 2px solid #fff;
  }

  .stats-heading-redesign,
  .stat-number-redesign,
  .stat-label-redesign,
  .stat-icon-redesign {
    color: #fff !important;
  }
}

/* Print Styles */
@media print {
  .stats-section-redesign {
    background: white !important;
    min-height: auto;
  }

  .stat-card-box {
    border: 2px solid #000 !important;
    box-shadow: none !important;
    page-break-inside: avoid;
  }

  .btn-consult-redesign {
    display: none;
  }

  .stats-heading-redesign,
  .stat-number-redesign,
  .stat-label-redesign,
  .stat-icon-redesign {
    color: #000 !important;
  }
}

/* SERVICES SECTION */
.services-section {
  background: #ffffff;
  padding: 100px 0;
  margin: 60px 0;
  position: relative;
}

.services-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.services-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: start;
}

.services-left {
  padding-right: 20px;
}

.services-title {
  font-family: "Gilroy", sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 42px);
  color: #1D1D1D;
  line-height: 1.2;
  margin: 0 0 50px 0;
  letter-spacing: -0.01em;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.service-item:hover {
  background: rgba(246, 246, 246, 0.3);
  padding-left: 12px;
  border-bottom-color: #dc3545;
}

.service-item:last-child {
  border-bottom: none;
}

.service-content {
  flex: 1;
  padding-right: 20px;
}

.service-name {
  font-family: "Gilroy", sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #1D1D1D;
  margin: 0 0 8px 0;
  letter-spacing: 0.01em;
  transition: color 0.3s ease;
}

.service-item:hover .service-name {
  color: #dc3545;
}

.service-description {
  font-family: "Gilroy", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
  letter-spacing: 0.01em;
}

/* Animated Arrow */
.service-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #F6F6F6;
  border: 1px solid #e8e8e8;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-arrow i {
  font-size: 16px;
  color: #1D1D1D;
  transition: all 0.4s ease;
  transform: translateX(0);
}

/* Hover Animation for Arrow */
.service-item:hover .service-arrow {
  background: #dc3545;
  border-color: #dc3545;
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(94, 169, 119, 0.25);
}

.service-item:hover .service-arrow i {
  color: #ffffff;
  transform: translateX(4px) scale(1.1);
}

/* Arrow bounce animation */
@keyframes arrowBounce {

  0%,
  100% {
    transform: translateX(0) scale(1);
  }

  50% {
    transform: translateX(6px) scale(1.1);
  }
}

.service-item:hover .service-arrow i {
  animation: arrowBounce 0.6s ease-in-out;
}

/* Right Side Image */
.services-right {
  position: sticky;
  top: 100px;
}

.service-image {
  width: 100%;
  height: 350px;
  border-radius: 16px;
  overflow: hidden;
  background: #F6F6F6;
  border: 1px solid #f0f0f0;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.service-image:hover {
  transform: translateY(-8px);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-image:hover img {
  transform: scale(1.05);
}

/* Additional hover effects */
.service-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #dc3545;
  transform: scaleY(0);
  transition: transform 0.3s ease;
  transform-origin: bottom;
}

.service-item:hover::before {
  transform: scaleY(1);
}

/* Responsive Design */
@media (max-width: 968px) {
  .services-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .services-right {
    position: static;
  }

  .service-image {
    height: 280px;
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 60px 0;
  }

  .services-title {
    margin-bottom: 30px;
  }

  .service-item {
    padding: 20px 0;
  }

  .service-name {
    font-size: 18px;
  }

  .service-description {
    font-size: 14px;
  }

  .service-arrow {
    width: 38px;
    height: 38px;
  }

  .service-arrow i {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .service-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .service-content {
    padding-right: 0;
    width: 100%;
  }

  .service-arrow {
    align-self: flex-end;
  }
}

/* INTERACTIVE GRADIENT CARD SECTION - ISOLATED CSS */
.interactive-card-section {
  /* background: #000000; */
  padding: 100px 0;
  margin: 60px 0;
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

.interactive-card-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}

.interactive-card-section .gradient-card {
  width: 100%;
  max-width: 1200px;
  /* Increased from 900px */
  height: 600px;
  /* Increased from 400px */
  border-radius: 24px;
  position: relative;
  overflow: visible;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.interactive-card-section .gradient-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* NEW GRADIENT BACKGROUND - DIFFERENT COLORS */
.interactive-card-section .gradient-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      #ff6b6b 0%,
      /* Coral Red */
      #4ecdc4 20%,
      /* Teal */
      #45b7d1 40%,
      /* Sky Blue */
      #96ceb4 60%,
      /* Mint Green */
      #ffeaa7 80%,
      /* Light Yellow */
      #fd79a8 100%
      /* Pink */
    );
  background-size: 300% 300%;
  animation: uniqueGradientShift 8s ease infinite;
  border-radius: 24px;
  transition: all 0.4s ease;
}

.interactive-card-section .gradient-card:hover .gradient-bg {
  background-size: 400% 400%;
  animation-duration: 4s;
}

@keyframes uniqueGradientShift {
  0% {
    background-position: 0% 50%;
  }

  25% {
    background-position: 100% 0%;
  }

  50% {
    background-position: 100% 100%;
  }

  75% {
    background-position: 0% 100%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* CARD CONTENT - SCOPED */
.interactive-card-section .card-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 40px;
  color: white;
}

.interactive-card-section .card-title {
  font-family: "Gilroy", sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.2;
  margin: 0 0 24px 0;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
  transition: all 0.4s ease;
}

.interactive-card-section .gradient-card:hover .card-title {
  transform: scale(1.05);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

.interactive-card-section .card-description {
  font-family: "Gilroy", sans-serif;
  font-weight: 500;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.6;
  margin: 0;
  max-width: 600px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.01em;
  transition: all 0.4s ease;
}

.interactive-card-section .gradient-card:hover .card-description {
  transform: translateY(-2px);
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

.interactive-card-section .card-description strong {
  font-weight: 700;
  color: #DCF986;
  text-shadow: 0 0 10px rgba(220, 249, 134, 0.4);
}

/* FLOATING CIRCLE - SCOPED */
.interactive-card-section .floating-circle {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
  z-index: 20;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.interactive-card-section .gradient-card:hover .floating-circle {
  transform: translateX(-50%) translateY(-10px) scale(1.1);
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

/* CENTRAL AVATAR - SCOPED */
.interactive-card-section .avatar-circle {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #1D1D1D 0%, #2d2d2d 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 3px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  z-index: 25;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.interactive-card-section .gradient-card:hover .avatar-circle {
  background: linear-gradient(135deg, #5EA977 0%, #4a9960 100%);
  border-color: #DCF986;
  transform: translate(-50%, -50%) scale(1.1) rotate(360deg);
  box-shadow:
    0 8px 30px rgba(94, 169, 119, 0.4),
    0 0 0 2px rgba(220, 249, 134, 0.3) inset;
}

.interactive-card-section .avatar-circle i {
  font-size: 28px;
  color: white;
  transition: all 0.4s ease;
}

.interactive-card-section .gradient-card:hover .avatar-circle i {
  color: white;
  transform: scale(1.1);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* ROTATING TEXT CONTAINER - SCOPED */
.interactive-card-section .rotating-text-container {
  width: 120px;
  height: 120px;
  position: absolute;
  top: 0;
  left: 0;
  animation: rotateCardText 15s linear infinite;
  transition: animation-duration 0.4s ease;
}

.interactive-card-section .gradient-card:hover .rotating-text-container {
  animation-duration: 8s;
}

.interactive-card-section .circular-text-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.interactive-card-section .circular-text {
  fill: none;
  stroke: none;
}

.interactive-card-section .text-path {
  font-family: "Gilroy", sans-serif;
  font-size: 11px;
  font-weight: 600;
  fill: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
  transition: all 0.4s ease;
}

.interactive-card-section .gradient-card:hover .text-path {
  fill: #DCF986;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-shadow: 0 0 10px rgba(220, 249, 134, 0.6);
}

@keyframes rotateCardText {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* CARD HOVER EFFECTS - SCOPED */
.interactive-card-section .gradient-card:hover {
  animation: uniqueCardPulse 2s ease-in-out infinite alternate;
}

@keyframes uniqueCardPulse {
  0% {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  }

  100% {
    box-shadow:
      0 25px 70px rgba(0, 0, 0, 0.4),
      0 0 50px rgba(255, 107, 107, 0.1);
  }
}

/* FLOATING ANIMATION FOR CIRCLE - SCOPED */
.interactive-card-section .floating-circle {
  animation: cardFloatUp 3s ease-in-out infinite alternate;
}

.interactive-card-section .gradient-card:hover .floating-circle {
  animation: cardFloatUpHover 1.5s ease-in-out infinite alternate;
}

@keyframes cardFloatUp {
  0% {
    transform: translateX(-50%) translateY(0px);
  }

  100% {
    transform: translateX(-50%) translateY(-5px);
  }
}

@keyframes cardFloatUpHover {
  0% {
    transform: translateX(-50%) translateY(-10px) scale(1.1) rotate(0deg);
  }

  100% {
    transform: translateX(-50%) translateY(-15px) scale(1.15) rotate(5deg);
  }
}

/* SPARKLE EFFECTS - SCOPED */
.interactive-card-section .sparkle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 15;
}

/* RESPONSIVE DESIGN - SCOPED */
@media (max-width: 968px) {
  .interactive-card-section {
    padding: 80px 0;
  }
}

@media (max-width: 768px) {
  .interactive-card-section {
    padding: 60px 0;
  }

  .interactive-card-section .gradient-card {
    height: 350px;
    max-width: 100%;
    margin: 0 16px;
    border-radius: 20px;
  }

  .interactive-card-section .card-content {
    padding: 40px 24px;
  }

  .interactive-card-section .card-title {
    font-size: clamp(28px, 6vw, 40px);
    margin-bottom: 20px;
  }

  .interactive-card-section .card-description {
    font-size: clamp(14px, 3vw, 18px);
  }

  .interactive-card-section .floating-circle {
    width: 100px;
    height: 100px;
    bottom: -50px;
  }

  .interactive-card-section .avatar-circle {
    width: 60px;
    height: 60px;
  }

  .interactive-card-section .avatar-circle i {
    font-size: 24px;
  }

  .interactive-card-section .rotating-text-container {
    width: 100px;
    height: 100px;
  }

  .interactive-card-section .text-path {
    font-size: 9px;
    letter-spacing: 1.5px;
  }
}

@media (max-width: 480px) {
  .interactive-card-section .gradient-card {
    height: 320px;
    border-radius: 16px;
  }

  .interactive-card-section .card-title {
    font-size: clamp(24px, 7vw, 32px);
  }

  .interactive-card-section .card-description {
    font-size: clamp(13px, 3.5vw, 16px);
  }

  .interactive-card-section .floating-circle {
    width: 80px;
    height: 80px;
    bottom: -40px;
  }

  .interactive-card-section .avatar-circle {
    width: 50px;
    height: 50px;
  }

  .interactive-card-section .avatar-circle i {
    font-size: 20px;
  }

  .interactive-card-section .rotating-text-container {
    width: 80px;
    height: 80px;
  }

  .interactive-card-section .text-path {
    font-size: 8px;
    letter-spacing: 1px;
  }
}

/* ACCESSIBILITY - SCOPED */
@media (prefers-reduced-motion: reduce) {
  .interactive-card-section .gradient-bg {
    animation: none;
  }

  .interactive-card-section .rotating-text-container {
    animation: none;
  }

  .interactive-card-section .floating-circle {
    animation: none;
  }

  .interactive-card-section .gradient-card:hover {
    animation: none;
  }
}

/* PERFORMANCE OPTIMIZATIONS - SCOPED */
.interactive-card-section .gradient-card {
  will-change: transform, box-shadow;
}

.interactive-card-section .floating-circle {
  will-change: transform, filter;
}

.interactive-card-section .rotating-text-container {
  will-change: transform;
}

/* NEW TEAM SECTION - CAROUSEL DESIGN */
.team-section-new {
  background: linear-gradient(135deg, #0a0d1f 0%, #14172e 50%, #1a1d3a 100%);
  padding: 120px 0;
  margin: 60px 0;
  position: relative;
  overflow: hidden;
}

.team-section-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(94, 169, 119, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(220, 249, 134, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.team-container-new {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* Header */
.team-header-new {
  text-align: center;
  margin-bottom: 80px;
}

.team-subtitle {
  font-family: 'Gilroy', sans-serif;
  font-weight: 400;
  font-size: clamp(28px, 4vw, 48px);
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.team-subtitle-accent {
  font-family: 'Gilroy', sans-serif;
  font-weight: 400;
  font-size: clamp(28px, 4vw, 48px);
  background: linear-gradient(135deg, #8b9cff 0%, #b8a4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  line-height: 1.3;
  letter-spacing: -0.02em;
  font-style: italic;
}

/* Carousel Wrapper */
.team-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.team-carousel {
  flex: 1;
  overflow: hidden;
  border-radius: 24px;
  position: relative;
}

.team-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* Team Card */
.team-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 320px;
  aspect-ratio: 3/4;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.team-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.team-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2a3250 0%, #3d4570 100%);
  overflow: hidden;
}

.team-member-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.team-card:hover .team-member-img {
  transform: scale(1.1);
}

/* Overlay */
.team-member-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 24px;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 13, 31, 0.95) 100%);
  transform: translateY(0);
  transition: all 0.4s ease;
}

.team-card:hover .team-member-overlay {
  background: linear-gradient(180deg, rgba(10, 13, 31, 0.7) 0%, rgba(10, 13, 31, 0.98) 100%);
}

.team-member-name {
  font-family: 'Gilroy', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #ffffff;
  margin: 0 0 8px 0;
  letter-spacing: -0.01em;
}

.team-member-title {
  font-family: 'Gilroy', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #5EA977;
  text-transform: capitalize;
  margin: 0 0 12px 0;
  letter-spacing: 0.5px;
}

.team-member-bio {
  font-family: 'Gilroy', sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

.team-card:hover .team-member-bio {
  max-height: 200px;
  opacity: 1;
}

/* Navigation Buttons */
.carousel-nav {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  z-index: 10;
}

.carousel-nav:hover {
  background: #5EA977;
  border-color: #5EA977;
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(94, 169, 119, 0.4);
}

.carousel-nav i {
  font-size: 18px;
}

.carousel-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.carousel-nav:disabled:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1);
  box-shadow: none;
}

/* Progress Bar */
.carousel-progress {
  max-width: 600px;
  margin: 0 auto;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #5EA977 0%, #DCF986 100%);
  width: 33.333%;
  transition: width 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 2px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .team-card {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 968px) {
  .team-section-new {
    padding: 80px 0;
  }

  .team-carousel-wrapper {
    gap: 20px;
  }

  .carousel-nav {
    width: 48px;
    height: 48px;
  }

  .carousel-nav i {
    font-size: 16px;
  }
}

/* Tablets - 768px */
@media (max-width: 768px) {

  /* HERO SECTION */
  .hero {
    margin: 16px auto 40px;
    padding: 24px 16px 200px;
    /* Increased bottom padding for cards */
    position: relative;
  }

  /* Floating Cards - Better Mobile Layout */
  .card-left,
  .card-right {
    position: absolute;
    width: calc(100% - 32px);
    /* Full width minus padding */
    max-width: 320px;
    left: 50%;
    transform: translateX(-50%);
    padding: 16px;
  }

  .card-left {
    bottom: 60px;
    /* Stack on top */
  }

  .card-right {
    bottom: -20px;
    /* Stack below */
  }

  .card-title {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .muted {
    font-size: 11px;
  }

  .badge {
    font-size: 10px;
    padding: 5px 8px;
  }

  .bar {
    height: 8px;
    margin: 8px 0;
  }
}


/* Mobile Devices - 480px */
@media (max-width: 480px) {

  /* HEADER */
  .nav.container {
    padding: 14px 16px;
  }

  .logo {
    font-size: 16px;
  }

  /* HERO SECTION */
  .hero {
    padding: 20px 16px 220px;
    /* More space for cards */
    margin: 12px auto 30px;
    position: relative;
  }

  .hero h1 {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 12px;
  }

  .sub {
    font-size: 13px;
    margin: 10px auto 20px;
    max-width: 100%;
  }

  .btn {
    font-size: 13px;
    padding: 12px 18px;
  }

  /* Floating Cards - Mobile Optimized */
  .card {
    width: calc(100% - 24px);
    max-width: 100%;
    margin: 0 auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
  }

  .card-left {
    left: 50%;
    transform: translateX(-50%);
    bottom: 80px;
    width: 90%;
    max-width: 340px;
    padding: 14px 16px;
  }

  .card-right {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    bottom: -10px;
    width: 90%;
    max-width: 340px;
    padding: 14px 16px;
  }

  .card-title {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px;
  }

  .muted {
    font-size: 11px;
    margin-top: 8px;
  }

  .badges {
    gap: 6px;
    flex-wrap: wrap;
  }

  .badge {
    font-size: 10px;
    padding: 4px 8px;
    white-space: nowrap;
  }

  .bar {
    height: 8px;
    margin: 10px 0 6px;
  }

  .dot {
    width: 6px;
    height: 6px;
  }
}


/* Animation for cards */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.team-card {
  animation: fadeInUp 0.8s ease forwards;
}

.team-card:nth-child(1) {
  animation-delay: 0.1s;
}

.team-card:nth-child(2) {
  animation-delay: 0.2s;
}

.team-card:nth-child(3) {
  animation-delay: 0.3s;
}

.team-card:nth-child(4) {
  animation-delay: 0.4s;
}

/* MEETING BOOKING SECTION - COMPLETE CSS */
.meeting-booking-section {
  background: linear-gradient(135deg, #0d1117 0%, #1c2128 50%, #21262d 100%);
  padding: 120px 0;
  margin: 60px 0;
  position: relative;
  overflow: hidden;
  min-height: 80vh;
}

.booking-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 450px;
  gap: 80px;
  align-items: start;
}

/* LEFT SIDE - BOOKING INFO */
.booking-info {
  color: white;
  padding-top: 40px;
}

.availability-status {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #5EA977;
  border-radius: 50px;
  padding: 8px 16px;
  font-family: "Gilroy", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #ffffff;
}

.status-indicator span {
  color: #fff;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #5EA977;
  border-radius: 50%;
  animation: statusPulse 2s infinite;
}

@keyframes statusPulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.1);
  }
}

.quick-contact-btn {
  background: none;
  border: none;
  color: #DCF986;
  font-family: "Gilroy", sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.quick-contact-btn:hover {
  color: #5EA977;
}

.booking-title {
  font-family: "Gilroy", sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.1;
  margin: 0 0 24px 0;
  letter-spacing: -0.02em;
  color: white;
}

.title-highlight {
  background: linear-gradient(135deg, #5EA977 0%, #DCF986 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.booking-description {
  font-family: "Gilroy", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  max-width: 480px;
}

.booking-cta-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.btn-schedule,
.btn-touch {
  padding: 16px 28px;
  border-radius: 12px;
  font-family: "Gilroy", sans-serif;
  font-weight: 700;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  border: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-schedule {
  background: #5EA977;
  color: white;
  box-shadow: 0 4px 20px rgba(94, 169, 119, 0.3);
}

.btn-schedule:hover {
  background: #4a9960;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(94, 169, 119, 0.4);
}

.btn-schedule:hover i {
  transform: translateX(4px);
}

.btn-schedule i {
  transition: transform 0.3s ease;
}

.btn-touch {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-touch:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.trust-indicators {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Gilroy", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.trust-badge i {
  color: #5EA977;
  font-size: 16px;
}

/* RIGHT SIDE - FORM */
.booking-form-wrapper {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  position: relative;
  height: fit-content;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.input-group label {
  font-family: "Gilroy", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #1D1D1D;
  letter-spacing: 0.02em;
}

.input-group input,
.input-group select,
.input-group textarea {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 16px;
  color: #1D1D1D;
  font-family: "Gilroy", sans-serif;
  font-size: 16px;
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
  outline: none;
  border-color: #5EA977;
  box-shadow: 0 0 0 3px rgba(94, 169, 119, 0.1);

}

.input-group input::placeholder,
.input-group textarea::placeholder {
  color: #6c757d;
  opacity: 1;
}

/* SELECT DROPDOWN FIXES */
.input-group select {
  color: #1D1D1D;
  background: #f8f9fa;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
}

.input-group select:focus {
  color: #1D1D1D;
  background: #ffffff;
}

.input-group select option {
  color: #1D1D1D;
  background: #ffffff;
  font-family: "Gilroy", sans-serif;
  padding: 8px;
}

.input-group select option:hover,
.input-group select option:focus {
  background: #000000;
  color: #ffffff;
}

/* SUBMIT BUTTON */
.submit-enquiry-btn {
  background: #28a745;
  color: rgb(49, 47, 47);
  border: none;
  border-radius: 12px;
  padding: 18px 24px;
  font-family: "Gilroy", sans-serif;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
  width: 100%;
}

.submit-enquiry-btn:hover {
  background: #4a9960;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(94, 169, 119, 0.4);
}

.submit-enquiry-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.submit-loader {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid white;
  border-radius: 50%;
  animation: submitSpin 1s linear infinite;
}

@keyframes submitSpin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* ACTIVATION BADGE (Windows style) */
.activation-badge {
  position: absolute;
  bottom: -50px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.activation-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.activation-text {
  color: white;
  font-weight: 600;
  font-size: 13px;
}

.activation-info small {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}

.activation-action {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #5EA977;
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  font-size: 12px;
}

.activation-action:hover {
  background: #4a9960;
}

.activation-action i {
  font-size: 12px;
}

/* FORM VALIDATION STATES */
.input-group input.error,
.input-group select.error,
.input-group textarea.error {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.input-group input.success,
.input-group select.success,
.input-group textarea.success {
  border-color: #28a745;
  box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

/* RESPONSIVE DESIGN */
@media (max-width: 968px) {
  .booking-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .booking-form-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }

  .booking-info {
    padding-top: 0;
  }
}

@media (max-width: 768px) {
  .meeting-booking-section {
    padding: 80px 0;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .booking-form-wrapper {
    padding: 24px;
  }

  .trust-indicators {
    justify-content: center;
  }

  .booking-cta-buttons {
    justify-content: center;
  }

  .availability-status {
    justify-content: center;
  }

  .activation-badge {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 30px;
    align-self: center;
  }
}

@media (max-width: 480px) {
  .booking-title {
    font-size: 28px;
  }

  .booking-description {
    font-size: 16px;
  }

  .booking-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-schedule,
  .btn-touch {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .booking-form-wrapper {
    padding: 20px;
  }

  .form-grid {
    gap: 12px;
  }

  .input-group input,
  .input-group select,
  .input-group textarea {
    padding: 14px;
    font-size: 15px;
  }

  .submit-enquiry-btn {
    padding: 16px 20px;
    font-size: 15px;
  }

  .trust-indicators {
    gap: 16px;
  }

  .trust-badge {
    font-size: 13px;
  }
}

/* ACCESSIBILITY */
@media (prefers-reduced-motion: reduce) {
  .status-dot {
    animation: none;
  }

  .btn-schedule,
  .btn-touch,
  .submit-enquiry-btn {
    transition: none;
  }

  .submit-loader {
    animation: none;
  }
}

/* HIGH CONTRAST MODE */
@media (prefers-contrast: high) {
  .booking-form-wrapper {
    border: 2px solid #000;
  }

  .input-group input,
  .input-group select,
  .input-group textarea {
    border: 2px solid #000;
  }

  .submit-enquiry-btn {
    border: 2px solid #000;
  }
}

/* DARK MODE SUPPORT */
@media (prefers-color-scheme: dark) {
  .booking-form-wrapper {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .input-group label {
    color: rgba(255, 255, 255, 0.9);
  }

  .input-group input,
  .input-group select,
  .input-group textarea {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
  }

  .input-group input::placeholder,
  .input-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
  }
}

/* PRINT STYLES */
@media print {
  .meeting-booking-section {
    background: white !important;
    color: black !important;
  }

  .booking-form-wrapper {
    background: white !important;
    box-shadow: none !important;
    border: 1px solid #ccc !important;
  }

  .activation-badge {
    display: none;
  }

  .btn-schedule,
  .btn-touch,
  .submit-enquiry-btn {
    background: #5EA977 !important;
    -webkit-print-color-adjust: exact;
  }
}

/* SITE FOOTER - MATCHES YOUR THEME */
.site-footer {
  background: linear-gradient(135deg, #0f0f0f 0%, #1D1D1D 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #5EA977 50%, transparent 100%);
}

.footer-main {
  padding: 80px 0 40px;
}

.footer-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 150px 150px 150px 280px;
  gap: 60px;
  align-items: start;
}

/* FOOTER BRAND */
.footer-brand {
  max-width: 300px;
}

.footer-logo h3 {
  font-family: "Gilroy", sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: white;
  margin: 0 0 16px 0;
  letter-spacing: 1.5px;
}

.footer-description {
  font-family: "Gilroy", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(10px);
}

.social-icon:hover {
  background: #5EA977;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(94, 169, 119, 0.3);
  border-color: #5EA977;
}

.social-icon i {
  font-size: 18px;
}

/* FOOTER COLUMNS */
.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-title {
  font-family: "Gilroy", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: white;
  margin: 0 0 20px 0;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links li a {
  font-family: "Gilroy", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 4px 0;
  display: inline-block;
}

.footer-links li a:hover {
  color: #5EA977;
  transform: translateX(4px);
}



/* FOOTER BOTTOM */
.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer {
  background: linear-gradient(135deg, #0d1117 0%, #1D1D1D 100%);
  margin-top: 0;
  /* Crucial: no margin above */
  padding-top: 0;
  /* Reduce if needed */
}

/* Remove any extra spacing that could appear from other global styles */
section,
footer {
  margin-bottom: 0 !important;
  margin-top: 0 !important;
}

.copyright {
  font-family: "Gilroy", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.bottom-link {
  font-family: "Gilroy", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.bottom-link:hover {
  color: #5EA977;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: none;
    margin-bottom: 20px;
  }

  .footer-newsletter {
    grid-column: 1 / -1;
    margin-top: 20px;
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .footer-main {
    padding: 60px 0 30px;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-brand {
    text-align: center;
    margin-bottom: 30px;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-newsletter {
    text-align: center;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    margin-bottom: 40px;
  }

  .footer-column {
    margin-bottom: 30px;
  }

  .footer-links {
    align-items: center;
  }

  .newsletter-input-group {
    flex-direction: column;
    gap: 8px;
  }

  .newsletter-btn {
    width: 100%;
    height: 44px;
  }

  .footer-bottom-links {
    gap: 12px;
  }

  .social-icon {
    width: 48px;
    height: 48px;
  }

  .social-icon i {
    font-size: 20px;
  }
}

/* ANIMATIONS */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-brand,
.footer-column,
.footer-newsletter {
  animation: fadeInUp 0.8s ease forwards;
}

.footer-brand {
  animation-delay: 0.1s;
}

.footer-column:nth-child(2) {
  animation-delay: 0.2s;
}

.footer-column:nth-child(3) {
  animation-delay: 0.3s;
}

.footer-column:nth-child(4) {
  animation-delay: 0.4s;
}

.footer-newsletter {
  animation-delay: 0.5s;
}

/* ACCESSIBILITY */
@media (prefers-reduced-motion: reduce) {

  .social-icon,
  .footer-links li a,
  .newsletter-btn {
    transition: none;
  }

  .footer-brand,
  .footer-column,
  .footer-newsletter {
    animation: none;
  }
}

/* PRINT STYLES */
@media print {
  .site-footer {
    background: white !important;
    color: black !important;
  }

  .social-icon {
    display: none;
  }

  .newsletter-form {
    display: none;
  }
}

/* ========================================
   COMPLETE MOBILE RESPONSIVENESS
======================================== */

/* Tablets and Small Laptops - 1024px */
@media (max-width: 1024px) {

  .container,
  .nav.container {
    max-width: 90%;
    padding: 0 20px;
  }

  .hero {
    margin: 20px auto 50px;
    padding: 30px 20px 100px;
  }

  .card-left,
  .card-right {
    width: 220px;
  }
}

/* Tablets - 768px */
@media (max-width: 768px) {

  /* HERO SECTION */
  .hero {
    margin: 16px auto 40px;
    padding: 24px 16px 140px;
  }

  .hero h1 {
    font-size: clamp(24px, 5vw, 36px);
    line-height: 1.2;
  }

  .sub {
    font-size: clamp(13px, 2.5vw, 16px);
    margin: 12px auto 20px;
  }

  .cta-row {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
    padding: 12px 18px;
    font-size: 14px;
  }

  /* Floating Cards */
  .card-left {
    left: 10px;
    bottom: -20px;
    width: 180px;
    padding: 12px 14px;
  }

  .card-right {
    right: 10px;
    bottom: -18px;
    width: 200px;
    padding: 12px 14px;
  }

  .card-title {
    font-size: 12px;
  }

  .muted {
    font-size: 11px;
  }

  .badge {
    font-size: 10px;
    padding: 5px 8px;
  }

  /* SCROLLING BANNER */
  .scrolling-banner {
    padding: 18px 0;
  }

  .scroll-item {
    font-size: 14px;
    margin-right: 50px;
  }

  .scroll-item i {
    font-size: 20px;
  }

  /* STATS SECTION */
  .stats-section-redesign {
    padding: 60px 0;
    min-height: auto;
  }

  .stats-container-redesign {
    padding: 40px 20px;
  }

  .stats-heading-redesign {
    font-size: clamp(18px, 4vw, 26px);
    text-align: center;
  }

  .stats-text-redesign {
    text-align: center;
  }

  .stats-underline {
    margin: 0 auto;
  }

  .stats-bottom-section {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .stats-boxes-redesign {
    justify-content: center;
    gap: 16px;
  }

  .stat-card-box {
    min-width: 140px;
    padding: 20px 24px;
  }

  .stats-cta-redesign {
    width: 100%;
    justify-content: center;
  }

  /* SERVICES SECTION */
  .services-section {
    padding: 60px 0;
  }

  .services-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-right {
    display: none;
    /* Hide image on mobile */
  }

  .services-title {
    font-size: clamp(24px, 5vw, 36px);
    margin-bottom: 30px;
    text-align: center;
  }

  .service-item {
    padding: 18px 0;
  }

  .service-name {
    font-size: 18px;
  }

  .service-description {
    font-size: 14px;
  }

  /* INTERACTIVE GRADIENT CARD */
  .interactive-card-section {
    padding: 60px 0;
  }

  .interactive-card-section .gradient-card {
    height: 400px;
    border-radius: 20px;
    margin: 0 16px;
  }

  .interactive-card-section .card-content {
    padding: 40px 24px;
  }

  .interactive-card-section .card-title {
    font-size: clamp(28px, 6vw, 42px);
  }

  .interactive-card-section .card-description {
    font-size: clamp(14px, 3vw, 18px);
  }

  /* MEETING BOOKING SECTION */
  .meeting-booking-section {
    padding: 60px 0;
  }

  .booking-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
  }

  .booking-info {
    text-align: center;
    padding-top: 0;
  }

  .availability-status {
    justify-content: center;
  }

  .booking-title {
    font-size: clamp(26px, 5vw, 40px);
  }

  .booking-description {
    font-size: 16px;
  }

  .booking-cta-buttons {
    justify-content: center;
  }

  .trust-indicators {
    justify-content: center;
  }

  .booking-form-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }

  /* FOOTER */
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
}

/* Mobile Devices - 480px */
@media (max-width: 480px) {

  /* HEADER */
  .nav.container {
    padding: 14px 16px;
  }

  .logo {
    font-size: 16px;
  }

  /* HERO SECTION */
  .hero {
    padding: 20px 12px 160px;
    margin: 12px auto 30px;
  }

  .hero h1 {
    font-size: 22px;
    line-height: 1.3;
  }

  .sub {
    font-size: 13px;
    margin: 10px auto 18px;
  }

  .btn {
    font-size: 13px;
    padding: 11px 16px;
  }

  /* Floating Cards - Stack Better */
  .card-left {
    left: 50%;
    transform: translateX(-50%);
    bottom: -30px;
    width: 90%;
    max-width: 260px;
  }

  .card-right {
    right: 50%;
    transform: translateX(50%);
    bottom: -100px;
    width: 90%;
    max-width: 280px;
  }

  /* SCROLLING BANNER */
  .scroll-item {
    font-size: 13px;
    margin-right: 40px;
  }

  .scroll-item i {
    font-size: 18px;
  }

  /* STATS SECTION */
  .stats-container-redesign {
    padding: 30px 16px;
  }

  .stats-heading-redesign {
    font-size: 16px;
    line-height: 1.5;
  }

  .stats-underline {
    width: 100px;
    height: 2px;
  }

  .stats-boxes-redesign {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  .stat-card-box {
    width: 100%;
    max-width: 260px;
    padding: 18px 22px;
  }

  .stat-label-redesign {
    font-size: 8px;
  }

  .stat-icon-redesign {
    font-size: 32px;
  }

  .stat-number-redesign {
    font-size: 24px;
  }

  .btn-consult-redesign {
    width: 100%;
    max-width: 260px;
    justify-content: center;
  }

  /* SERVICES SECTION */
  .services-section {
    padding: 40px 0;
  }

  .services-title {
    font-size: 22px;
    margin-bottom: 24px;
  }

  .service-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 16px 0;
  }

  .service-content {
    padding-right: 0;
    width: 100%;
  }

  .service-name {
    font-size: 16px;
  }

  .service-description {
    font-size: 13px;
  }

  .service-arrow {
    align-self: flex-end;
    width: 36px;
    height: 36px;
  }

  /* INTERACTIVE GRADIENT CARD */
  .interactive-card-section {
    padding: 40px 0;
  }

  .interactive-card-section .gradient-card {
    height: 340px;
    border-radius: 16px;
    margin: 0 12px;
  }

  .interactive-card-section .card-content {
    padding: 32px 20px;
  }

  .interactive-card-section .card-title {
    font-size: 26px;
    margin-bottom: 16px;
  }

  .interactive-card-section .card-description {
    font-size: 13px;
  }

  .interactive-card-section .floating-circle {
    width: 80px;
    height: 80px;
    bottom: -40px;
  }

  .interactive-card-section .avatar-circle {
    width: 50px;
    height: 50px;
  }

  .interactive-card-section .avatar-circle i {
    font-size: 20px;
  }

  /* MEETING BOOKING SECTION */
  .meeting-booking-section {
    padding: 40px 0;
  }

  .booking-container {
    padding: 0 16px;
  }

  .booking-title {
    font-size: 24px;
  }

  .booking-description {
    font-size: 14px;
  }

  .booking-cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-schedule,
  .btn-touch {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .booking-form-wrapper {
    padding: 20px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .input-group input,
  .input-group select,
  .input-group textarea {
    padding: 14px;
    font-size: 14px;
  }

  .submit-enquiry-btn {
    padding: 15px 20px;
    font-size: 14px;
  }

  .trust-indicators {
    flex-direction: column;
    gap: 12px;
  }

  .activation-badge {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 20px;
    flex-direction: column;
    text-align: center;
  }

  /* FOOTER */
  .footer-main {
    padding: 50px 0 30px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-brand {
    margin-bottom: 30px;
  }

  .footer-column {
    margin-bottom: 20px;
  }

  .footer-links {
    align-items: center;
  }

  .footer-bottom-links {
    flex-direction: column;
    gap: 12px;
  }

  .social-icon {
    width: 44px;
    height: 44px;
  }
}

/* Extra Small Devices - 375px */
@media (max-width: 375px) {
  .hero h1 {
    font-size: 20px;
  }

  .sub {
    font-size: 12px;
  }

  .stats-heading-redesign {
    font-size: 15px;
  }

  .booking-title {
    font-size: 22px;
  }

  .interactive-card-section .card-title {
    font-size: 24px;
  }
}

/* Landscape Mode for Mobile */
@media (max-height: 600px) and (orientation: landscape) {
  .hero {
    padding: 20px 16px 80px;
  }

  .card-left,
  .card-right {
    display: none;
  }

  .stats-section-redesign {
    min-height: auto;
    padding: 40px 0;
  }
}

/* ========================================
   HIDE HERO CARDS ON MOBILE - SHOW ON DESKTOP ONLY
======================================== */

/* Hide cards on tablets and mobile devices */
@media (max-width: 768px) {

  .card-left,
  .card-right {
    display: none !important;
  }

  /* Reduce hero padding since cards are hidden */
  .hero {
    padding-bottom: 40px !important;
  }
}

/* Show cards only on desktop (769px and above) */
@media (min-width: 769px) {

  .card-left,
  .card-right {
    display: block !important;
  }
}

/* ========================================
   SERVICES SECTION - MOBILE RESPONSIVE
======================================== */

@media (max-width: 1024px) {
  .services-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-right {
    position: static;
    order: -1;
    /* Show image first on tablet */
  }

  .service-image {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 60px 0 !important;
    margin: 40px 0 !important;
  }

  .services-container {
    padding: 0 20px !important;
  }

  /* Hide image on mobile */
  .services-right {
    display: none !important;
  }

  .services-content {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }

  .services-left {
    padding-right: 0 !important;
    width: 100%;
  }

  .services-title {
    font-size: 26px !important;
    margin-bottom: 32px !important;
    text-align: center;
  }

  .services-list {
    gap: 0 !important;
  }

  .service-item {
    padding: 18px 0 !important;
    border-bottom: 1px solid #e8e8e8 !important;
  }

  .service-item:hover {
    padding-left: 8px !important;
  }

  .service-content {
    padding-right: 12px !important;
  }

  .service-name {
    font-size: 17px !important;
    margin-bottom: 6px !important;
  }

  .service-description {
    font-size: 14px !important;
    line-height: 1.5 !important;
  }

  .service-arrow {
    width: 40px !important;
    height: 40px !important;
    flex-shrink: 0;
  }

  .service-arrow i {
    font-size: 15px !important;
  }
}

@media (max-width: 480px) {
  .services-section {
    padding: 40px 0 !important;
    margin: 30px 0 !important;
  }

  .services-container {
    padding: 0 16px !important;
  }

  .services-title {
    font-size: 22px !important;
    margin-bottom: 24px !important;
  }

  .service-item {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
    padding: 16px 0 !important;
  }

  .service-item:hover {
    padding-left: 0 !important;
    padding-top: 16px !important;
  }

  .service-content {
    width: 100% !important;
    padding-right: 0 !important;
  }

  .service-name {
    font-size: 16px !important;
  }

  .service-description {
    font-size: 13px !important;
  }

  .service-arrow {
    align-self: flex-end !important;
    width: 36px !important;
    height: 36px !important;
  }

  .service-arrow i {
    font-size: 14px !important;
  }

  /* Adjust hover animation for mobile */
  .service-item::before {
    width: 0 !important;
  }

  .service-item:hover .service-arrow {
    transform: scale(1.05) !important;
  }
}

@media (max-width: 375px) {
  .services-title {
    font-size: 20px !important;
  }

  .service-name {
    font-size: 15px !important;
  }

  .service-description {
    font-size: 12px !important;
  }
}
