/* --- CSS VARIABLES & RESET --- */
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap");

:root {
  /* User Requested Palette */
  --brand-primary: #00ff01;
  --brand-secondary: #00ff81;
  --brand-tertiary: #7fff00;

  /* Light Theme Colors */
  --bg-body: #ffffff;
  --bg-light: #f8f9fa;
  --text-dark: #121212;
  --text-grey: #555555;
  --white: #ffffff;

  /* Spacing & Layout */
  --container-width: 1200px;
  --border-radius: 12px;

  /* Modern Shadows */
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05); /* Soft, subtle shadow */
  --shadow-md:
    0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg:
    0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Outfit", "Segoe UI", sans-serif;
}

/* Icon Global Styles */
.benefit-icon, .trust-icon, .testimonial-icon, .badge-icon img {
  width: 24px;
  height: 24px;
  /* Brand Lime Filter */
  filter: invert(72%) sepia(85%) saturate(1455%) hue-rotate(43deg) brightness(101%) contrast(101%);
  display: inline-block;
  vertical-align: middle;
}


.icon-circle img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1) !important; /* Force to white on dark circle */
}


/* Adjusting for specific sections */
.badge-icon img {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}

/* Simplified Footer Call Link */
.footer-call-box {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 5px 0;
  border-bottom: 1px solid rgba(0, 255, 1, 0.1);
}

.footer-call-box:hover {
  border-bottom-color: var(--brand-primary);
  transform: translateX(5px);
}

.footer-call-box img {
  width: 18px;
  height: 18px;
  /* Fixed filter for bright lime visibility */
  filter: invert(72%) sepia(85%) saturate(1455%) hue-rotate(43deg) brightness(101%) contrast(101%);
  transition: transform 0.3s ease;
}



.footer-call-box:hover img {
  transform: rotate(15deg) scale(1.1);
}

.footer-call-number {
  color: #fff;
  font-weight: 600;
  font-size: 1.05rem;
  transition: color 0.3s ease;
}

.footer-call-box:hover .footer-call-number {
  color: var(--brand-primary);
}




html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-body);
  color: var(--text-dark);
  line-height: 1.7; /* Increased for better readability */
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased; /* Smoother fonts on Mac */
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block; /* Removes image bottom gap */
}

/* --- UTILITIES --- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 14px 30px; /* larger tap target */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px; /* spaced out for premium feel */
  border-radius: 50px;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  font-size: 0.9rem;
}

.brand-highlight {
  color: var(--brand-primary) !important;
}

.btn-primary {
  background: linear-gradient(
    90deg,
    var(--brand-primary),
    var(--brand-secondary)
  );
  color: #000;
  box-shadow: 0 4px 15px rgba(0, 255, 1, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Shine effect on hover */
.btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: 0.5s;
  z-index: -1;
}

.btn-primary:hover::after {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 255, 1, 0.4);
}

.section-heading {
  text-align: center;
  margin-bottom: 60px;
}

.section-heading h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  color: var(--text-dark);
}

.section-heading p {
  color: var(--text-grey);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Enhanced Underline */
.section-heading h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--brand-primary),
    var(--brand-secondary)
  );
  margin: 15px auto 0;
  border-radius: 2px;
}

/* --- HEADER --- */
header {
  background: rgba(255, 255, 255, 0.95); /* Slight transparency */
  backdrop-filter: blur(10px); /* Glassmorphism */
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0;
  height: 80px; /* Slightly taller for breathing room */
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.hamburger {
  display: none;
}

.mobile-only {
  display: none;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo img {
  height: 90px;
  width: auto;
  /* Cleaned up positioning */
  margin-top: 5px;
}

.logo a {
  display: flex;
  align-items: center;
}


.nav-links {
  display: flex;
  gap: 35px; /* More spacing between links */
}

.nav-links a {
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-dark);
  position: relative;
}

/* Underline hover effect for links */
.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--brand-primary);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--text-dark); /* Keep dark text, underline provides feedback */
}

/* --- HERO SECTION --- */
.hero {
  position: relative;
  padding: 120px 0; /* More vertical padding */
  overflow: hidden;
  min-height: 700px; /* Taller hero */
  display: flex;
  align-items: center;
}

/* Slideshow Container */
.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* Individual Slide */
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: slideShow 24s infinite;
}

/* Slide Delays */
.hero-slide:nth-child(1) {
  animation-delay: 0s;
}
.hero-slide:nth-child(2) {
  animation-delay: 6s;
}
.hero-slide:nth-child(3) {
  animation-delay: 12s;
}
.hero-slide:nth-child(4) {
  animation-delay: 18s;
}

/* Keyframes for Ken Burns Effect */
@keyframes slideShow {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  5% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  25% {
    opacity: 0;
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    transform: scale(1.1);
  }
}

/* Dark Overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.6) 100%
  ); /* Improved gradient overlay */
  z-index: 1;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* Align form and text to top */
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
  width: 100%;
}

.hero-text {
  flex: 1;
  padding-right: 60px;
  min-width: 300px;
  margin-top: 20px;
}

.hero-text h1 {
  font-size: 4rem; /* Larger, more impactful heading */
  line-height: 1.1;
  margin-bottom: 25px;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  font-weight: 700;
}

.hero-text h1 .brand-style {
  /* Premium Glassmorphism Effect */
  background: rgba(255, 255, 255, 0.08); /* More subtle glass */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 2px 18px;
  border-radius: 12px;
  display: inline-block;
  margin-top: 10px; /* Spacing for wrapping */
}

.hero-text p {
  font-size: 1.25rem;
  color: #f0f0f0;
  margin-bottom: 40px;
  max-width: 600px;
  font-weight: 300; /* Lighter weight for elegance */
  opacity: 0.9;
}

/* Hero Form Styling */
.hero-form-card {
  flex: 0 0 420px;
  background: rgba(255, 255, 255, 0.98); /* Less "plastic" white */
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2); /* Deep shadow */
  border-top: 4px solid var(--brand-primary);
  position: relative;
  top: 10px;
}

.hero-form-card h3 {
  margin-bottom: 25px;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #f8f9fa;
  font-size: 1rem;
  transition: all 0.2s;
}

.form-control:focus {
  outline: none;
  border-color: var(--brand-primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0, 255, 1, 0.1); /* Glow focus */
}

/* Custom Select Dropdown Styling */
select.form-control {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 0.8em auto;
  padding-right: 2.5rem;
  cursor: pointer;
  color: #333;
  font-weight: 500;
}

select.form-control option {
  color: #333;
  padding: 10px;
}

/* --- SERVICES GRID --- */
.services-section {
  padding: 100px 0; /* More breathing room */
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(280px, 1fr)
  ); /* Slightly wider cards */
  gap: 40px; /* More spacing */
}

.service-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05); /* Subtle border */
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  background: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-lg); /* Elevate on hover */
  transform: translateY(-8px);
}

.service-icon {
  font-size: 2.2rem;
  color: #00cc00;
  margin-bottom: 20px;
  background: rgba(0, 255, 1, 0.08); /* Softer background */
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--brand-primary);
  color: #000; /* Contrast on hover */
}

.service-card h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
  font-weight: 600;
}

.service-card p {
  color: var(--text-grey);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --- ABOUT & CLIENTS --- */
.about-section {
  padding: 100px 0;
  background-color: #f7fff7; /* Even lighter tint */
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; /* Big gap for clarity */
  align-items: center;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 25px;
  line-height: 1.2;
}

.about-text ul {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr; /* Two column list */
  gap: 15px;
}

.about-text li {
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
  font-weight: 500;
  color: var(--text-dark);
}

.about-text li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--brand-primary);
  font-weight: 900;
  background: rgba(0, 255, 1, 0.2);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 12px;
  display: flex; /* Centering checkmark */
  align-items: center;
  justify-content: center;
}

/* --- ABOUT SLIDESHOW --- */
.about-image {
  position: relative;
  width: 100%;
  height: 450px; /* Fixed height for consistency */
  overflow: hidden;
  border-radius: 24px; /* Rounder corners */
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white); /* White frame */
}

.about-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.about-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: panSlide 18s infinite;
}

/* Stagger Animations */
.about-slide:nth-child(1) {
  animation-delay: 0s;
}
.about-slide:nth-child(2) {
  animation-delay: 6s;
}
.about-slide:nth-child(3) {
  animation-delay: 12s;
}

/* Keyframes: Fade In/Out + Pan Right */
@keyframes panSlide {
  0% {
    opacity: 0;
    transform: scale(1.1) translateX(-20px);
  }
  5% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  35% {
    opacity: 0;
    transform: scale(1.1) translateX(0px);
  }
  100% {
    opacity: 0;
    transform: scale(1.1) translateX(0px);
  }
}

.clients-wrapper {
  margin-top: 80px;
  text-align: center;
}

.clients-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  align-items: center;
}

.clients-grid img {
  height: 45px;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
  cursor: pointer;
}

.clients-grid img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05); /* Gentle zoom */
}

/* --- FOOTER SOCIALS --- */
.footer-socials {
  margin-top: 25px;
  display: flex;
  gap: 15px;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.05); /* Premium Glass Effect */
  border: 1px solid rgba(255, 255, 255, 0.1); /* Subtle border */
  border-radius: 50%;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  color: #fff; /* Default Icon Color */
}

.footer-socials a:hover {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0, 255, 1, 0.4); /* Glow effect */
  color: #000; /* Icon becomes black on hover */
}

.footer-socials svg {
  width: 20px;
  height: 20px;
  transition: all 0.3s ease;
  fill: currentColor; /* Inherit color from parent */
}

.footer-socials a:hover svg {
  transform: scale(1.1);
}

/* --- FOOTER --- */
footer {
  background: #0a0a0a; /* Darker black */
  color: #fff;
  padding: 80px 0 30px;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 50px;
  margin-bottom: 60px;
}

.footer-col h4 {
  color: var(--white);
  margin-bottom: 25px;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #aaa;
  transition: 0.2s;
}

.footer-col ul li a:hover {
  color: var(--brand-primary);
  padding-left: 5px;
}

.copyright {
  border-top: 1px solid #222;
  padding-top: 30px;
  text-align: center;
  font-size: 0.85rem;
  color: #666;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 992px) {
  .container {
    padding: 0 30px;
  }

  .hero-text h1 {
    font-size: 3rem;
  }

  .about-grid {
    grid-template-columns: 1fr; /* Stack about section sooner */
    gap: 40px;
  }

  .about-image {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .nav-wrapper {
    position: relative;
  }

  .hamburger {
    display: block;
    cursor: pointer;
    z-index: 1002;
    margin-left: auto;
  }

  .hamburger span {
    display: block;
    width: 25px;
    height: 2px; /* Thinner lines */
    background: var(--text-dark);
    margin: 6px 0;
    transition: 0.4s;
  }

  .hamburger.toggle span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }
  .hamburger.toggle span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.toggle span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  .nav-links {
    position: absolute;
    top: 80px; /* Match new header height */
    left: 0;
    width: 100%;
    height: 0;
    overflow: hidden;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: height 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    gap: 25px;
  }

  .nav-links.active {
    height: calc(100vh - 80px);
    overflow-y: auto;
  }

  .nav-links li a {
    font-size: 1.4rem; /* Larger touch targets */
    font-weight: 600;
  }

  .nav-links li {
    opacity: 0;
    transform: translateY(20px);
    transition: 0.5s;
  }

  .nav-links.active li {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
  }

  .hero-content {
    flex-direction: column;
  }

  .hero-text {
    padding-right: 0;
    margin-bottom: 50px;
    text-align: center;
    margin-top: 0;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-form-card {
    width: 100%;
    flex: none;
    padding: 30px 20px;
  }

  .hero,
  .services-section,
  .about-section {
    padding: 60px 0;
  }

  .cta {
    display: none;
  }

  .mobile-only {
    display: block;
    margin-top: 20px;
    width: 100%;
    text-align: center;
  }

  .mobile-only .btn {
    width: 200px;
  }

  .about-text ul {
    grid-template-columns: 1fr; /* Single column list on mobile */
  }
}

/* --- WHATSAPP FLOATING BUTTON --- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  /* Removed background-color and border to show full image */
  border-radius: 50%; /* Keep circular shape */
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  overflow: hidden; /* Ensures zoomed image stays circular */
}

.whatsapp-float:hover {
  transform: translateY(-5px);
  box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.3);
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure image fills the button */
  display: block;
  transform: scale(1.5); /* Zoom in to remove whitespace */
  transition: transform 0.3s ease;
}

/* --- ORBITAL WHY CHOOSE US SECTION --- */
.orbital-section {
  padding: 100px 0;
  background-color: #fcfcfc;
  overflow: hidden;
  position: relative;
}

.section-heading.text-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.orbital-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}

/* --- COLUMNS --- */
.benefit-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  z-index: 2;
}

.center-column {
  flex: 0 0 400px;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* --- HEXAGON IMAGE --- */
.hex-image-wrapper {
  width: 380px; /* Slightly larger wrapper */
  height: 440px;
  position: relative;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
  transition: transform 0.3s ease;
}

.hex-clipped-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 30%; /* Shifted left to center better */
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background-color: var(--brand-primary); /* Fallback */
  transform: scale(1); /* Zoom in on the person */
}

/* Floating Animation */
.floating-hex {
  animation: floatHex 6s ease-in-out infinite;
}

@keyframes floatHex {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* --- BENEFIT BOXES --- */
.benefit-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.7); /* Glassmorphism Base */
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50px; /* Pill Shape */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 300px;
}

/* Text alignment based on side */
.left-curve .benefit-box {
  flex-direction: row-reverse;
  text-align: right;
  align-self: flex-end; /* Align to right side of column */
}

.right-curve .benefit-box {
  flex-direction: row;
  text-align: left;
  align-self: flex-start; /* Align to left side of column */
}

/* Typography */
.benefit-text h4 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  color: var(--text-dark);
}

.benefit-text p {
  font-size: 0.85rem;
  margin: 0;
  color: var(--text-grey);
}

/* Icons */
.icon-circle {
  width: 45px;
  height: 45px;
  background: var(--brand-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 255, 1, 0.3);
  transition: transform 0.3s ease;
}

/* --- ORBITAL CURVE LOGIC --- */
/* Left Column: Top/Bottom closer to center (negative margin-right), Middle further away */
.left-curve .benefit-box:nth-child(1),
.left-curve .benefit-box:nth-child(5) {
  margin-right: -40px;
}

.left-curve .benefit-box:nth-child(2),
.left-curve .benefit-box:nth-child(4) {
  margin-right: -10px;
}

.left-curve .benefit-box:nth-child(3) {
  margin-right: 20px; /* The "Equator" bulges out */
}

/* Right Column: Mirror Image */
.right-curve .benefit-box:nth-child(1),
.right-curve .benefit-box:nth-child(5) {
  margin-left: -40px;
}

.right-curve .benefit-box:nth-child(2),
.right-curve .benefit-box:nth-child(4) {
  margin-left: -10px;
}

.right-curve .benefit-box:nth-child(3) {
  margin-left: 20px;
}

/* --- INTERACTIONS --- */
.benefit-box:hover {
  transform: scale(1.05);
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 255, 1, 0.15);
}

.benefit-box:hover .icon-circle {
  transform: rotate(15deg) scale(1.1);
}

/* When hovering a box, pulse the center image */
.benefit-box:hover ~ .center-column .hex-image-wrapper, /* This sibling selector won't work across flexible columns. We need JS or simplistic hover. */
/* Using simple hover on the section to add life */
.orbital-grid:hover .hex-clipped-img {
  filter: brightness(1.05);
}

/* --- ANIMATIONS (slide in) --- */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.stagger-left {
  animation: slideInLeft 0.8s ease forwards;
  opacity: 0; /* Star hidden */
  animation-delay: var(--delay);
}

.stagger-right {
  animation: slideInRight 0.8s ease forwards;
  opacity: 0;
  animation-delay: var(--delay);
}

/* --- RESPONSIVE --- */
@media (max-width: 991px) {
  .orbital-grid {
    flex-direction: column;
    gap: 30px;
  }

  .center-column {
    order: -1; /* Image on top */
    flex: 0 0 auto;
  }

  .hex-image-wrapper {
    width: 250px;
    height: 280px;
  }

  .benefit-column {
    width: 100%;
    gap: 15px;
    align-items: center !important; /* Center items on mobile */
  }

  .left-curve .benefit-box,
  .right-curve .benefit-box {
    margin: 0 !important; /* Reset margins */
    align-self: center !important;
    text-align: left;
    flex-direction: row; /* Standard icon-left layout */
    max-width: 100%;
    width: 90%;
  }

  .left-curve .benefit-box {
    flex-direction: row; /* Reset reverse direction */
  }
}

/* --- TESTIMONIALS SECTION --- */
.testimonials-section {
  padding: 100px 0;
  background-color: var(--white);
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.testimonial-card {
  background: var(--bg-light);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-primary);
}

.testimonial-quote {
  font-size: 1.1rem;
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 25px;
  line-height: 1.6;
}

.client-info {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.client-details h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.client-details span {
  font-size: 0.85rem;
  color: var(--text-grey);
}

.client-stats {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  gap: 15px;
}

.stat-item {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand-primary);
  background: rgba(0, 255, 1, 0.05);
  padding: 5px 12px;
  border-radius: 4px;
}

/* Service Badge */
.service-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--brand-primary);
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

/* --- TRUST BADGES SECTION --- */
.trust-badges-section {
  padding: 60px 0;
  background-color: #f8f9fa;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.trust-badge:hover {
  opacity: 1;
  transform: translateY(-3px);
}

.badge-icon {
  font-size: 2.5rem;
  color: var(--text-dark);
}

.badge-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-grey);
}

/* --- COST CALCULATOR SECTION --- */
.cost-calculator-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #004d00 0%, #002200 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cost-calculator-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.calculator-wrapper {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 20px;
  max-width: 600px;
  margin: 40px auto 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  text-align: left;
}

.calc-label {
  font-size: 1.1rem;
  font-weight: 500;
  color: #ddd;
}

.calc-input-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}

.calc-slider {
  width: 150px;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--brand-primary);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 255, 1, 0.5);
}

.savings-display {
  background: rgba(0, 0, 0, 0.3);
  padding: 25px;
  border-radius: 12px;
  margin-top: 30px;
  border: 1px solid rgba(0, 255, 1, 0.3);
}

.savings-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #aaa;
  margin-bottom: 5px;
  display: block;
}

.savings-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--brand-primary);
  display: block;
  text-shadow: 0 0 20px rgba(0, 255, 1, 0.4);
}

/* --- UK STATS SECTION --- */
.uk-stats-section {
  padding: 80px 0;
  background: var(--bg-light);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.stat-card {
  text-align: center;
  padding: 30px;
  border-radius: 16px;
  background: var(--white);
  transition: transform 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-primary);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 10px;
  line-height: 1;
}

.stat-desc {
  font-size: 1rem;
  color: var(--text-grey);
  font-weight: 600;
}

/* --- PAGE HEADERS (Case Studies & Blogs) --- */
.page-header {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 160px 0 100px;
  text-align: center;
  color: white;
  margin-bottom: 60px;
  /* Default background if inline style fails */
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../images/berkeley-communications-WEDDt-u3q3o-unsplash.jpg");
}

.page-header.case-studies-header {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../images/berkeley-communications-WEDDt-u3q3o-unsplash.jpg");
}

.page-header.blogs-header {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../images/charanjeet-dhiman-mHusyBu4bxM-unsplash.jpg");
}

.page-header h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-header p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

/* --- CASE STUDIES GRID --- */
.case-study-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin: 50px 0;
}

.case-study-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.case-study-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.cs-image {
  height: 220px;
  background-color: #f0f0f0;
  position: relative;
  overflow: hidden;
}

.cs-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.case-study-card:hover .cs-image img {
  transform: scale(1.05);
}

.cs-content {
  padding: 30px;
}

.cs-tag {
  background: rgba(0, 255, 1, 0.1);
  color: #00aa00; /* Darker green for readability */
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cs-content h3 {
  margin-bottom: 15px;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.3;
}

.cs-content p {
  color: var(--text-grey);
  font-size: 1rem;
  margin-bottom: 20px;
}

.cs-stats {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
}

.cs-stat-item div {
  font-weight: 800;
  color: var(--brand-primary);
  font-size: 1.3rem;
}

.cs-stat-item span {
  font-size: 0.85rem;
  color: #888;
  font-weight: 500;
}

/* --- BLOG GRID --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin: 50px 0;
}

.blog-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 255, 1, 0.2);
}

.blog-image {
  height: 220px;
  background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
  position: relative;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-meta {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: rgba(255, 255, 255, 0.95);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.blog-content {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-category {
  background: rgba(0, 0, 0, 0.05);
  color: var(--text-dark);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  align-self: flex-start;
}

.blog-content h3 {
  margin-bottom: 15px;
  font-size: 1.35rem;
  line-height: 1.4;
  font-weight: 700;
}

.blog-content p {
  color: var(--text-grey);
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 0.95rem;
  flex: 1;
}

.read-more {
  color: var(--text-dark);
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    gap 0.3s ease,
    color 0.3s ease;
  font-size: 0.9rem;
}

.read-more:hover {
  gap: 12px;
  color: var(--brand-primary);
}

/* --- SERVICE DASHBOARD --- */
.dashboard-container {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-top: 40px;
}

.dashboard-left {
  flex: 0 0 40%;
  position: sticky;
  top: 120px; /* Adjusted for sticky header */
  z-index: 10;
}

.dashboard-right {
  flex: 0 0 60%;
}

.capability-card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid #e2e8f0;
}

.capability-card h3 {
  margin-bottom: 25px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
}

.chart-container {
  position: relative;
  width: 100%;
  height: 340px;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* Bento card styles */
.bento-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
  overflow: hidden;
}

/* Service cards 1, 4, 7 full width (using 3n+1 logic if we want, but explicit is safer for 9 cards) */
.bento-card:nth-child(1),
.bento-card:nth-child(4),
.bento-card:nth-child(7) {
  grid-column: span 2;
}

.bento-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: #84cc16;
}

.icon-box {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  border: 1px solid #e2e8f0;
}

.service-svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke-width: 1.5;
}

.svg-primary {
  stroke: #475569;
  transition: stroke 0.3s;
} /* Slate */
.svg-accent {
  stroke: #84cc16;
  transition: stroke 0.3s;
} /* Lime */

.bento-card:hover .svg-primary {
  stroke: #ffffff !important;
}
.bento-card:hover .svg-accent {
  stroke: #000000 !important;
}
.bento-card:hover .icon-box {
  background: #a3e635;
  border-color: #a3e635;
}

.bento-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
  transition: color 0.3s;
}

.bento-card p {
  color: var(--text-grey);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  background: #f1f5f9;
  padding: 4px 10px;
  border-radius: 20px;
  color: #64748b;
}

@media (max-width: 992px) {
  .dashboard-container {
    flex-direction: column;
  }
  .dashboard-left {
    flex: 0 0 100%;
    width: 100%;
    position: relative;
    top: 0;
    margin-bottom: 30px;
  }
  .dashboard-right {
    flex: 0 0 100%;
    width: 100%;
  }
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-card:nth-child(n) {
    grid-column: span 1;
  }
}
