@import 'responsive.css';

:root {
  --primary: #0B1120;
  --primary-light: #1e293b;
  --secondary: #0891b2;
  --secondary-hover: #06b6d4;
  --accent: #f59e0b;
  --text-main: #334155;
  --text-light: #64748b;
  --bg-light: #f8fafc;
  --white: #ffffff;
  --surface: #ffffff;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 10px 10px -5px rgb(0 0 0 / 0.04);
  --font-sans: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;
  --gradient-primary: linear-gradient(135deg, #0891b2 0%, #06b6d4 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--text-main);
  background-color: var(--bg-light);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--primary);
  line-height: 1.2;
  font-weight: 700;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Utilities */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  letter-spacing: 0.025em;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 4px 14px 0 rgba(8, 145, 178, 0.39);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(8, 145, 178, 0.23);
  filter: brightness(1.1);
}

.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
}

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

.section-padding {
  padding: 6rem 0;
}

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

.grid {
  display: grid;
  gap: 2.5rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.header-container {
  width: 100%;
  max-width: 100%;
  padding: 0 3rem;
  margin: 0 auto;
  transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

header.header-scrolled .header-container {
  max-width: 1280px;
  padding: 0 1.5rem;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  z-index: 1000;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  border-bottom: none;
}

header.home-header {
  opacity: 1;
  /* Always visible */
  transform: translateY(0);
  pointer-events: all;
  background: transparent;
}

/* Header - Scrolled State (Persistent & Smooth) */
header.header-scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 110px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

header.header-scrolled nav {
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo-img {
  height: 110px;
  width: auto;
  object-fit: contain;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  filter: brightness(0) invert(1);
  /* Pure white logo */
}

header.header-scrolled .logo-img {
  height: 60px;
  filter: none;
}

.nav-links {
  display: flex;
  gap: 3rem;
}

.nav-links a {
  font-weight: 500;
  color: var(--white);
  position: relative;
}

header.header-scrolled .nav-links a {
  color: var(--primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: var(--secondary);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--secondary);
}

header.header-scrolled .nav-links a:hover {
  color: var(--secondary);
}

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

/* Dropdown Menu Styles */
.nav-dropdown {
  position: relative;
}

.nav-dropdown .dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
}

.nav-dropdown .dropdown-arrow {
  width: 14px;
  height: 14px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 6px;
  background: transparent;
  border: none;
}

.nav-dropdown .dropdown-arrow::before,
.nav-dropdown .dropdown-arrow::after {
  content: '';
  position: absolute;
  width: 7px;
  height: 1.5px;
  background-color: currentColor;
  border-radius: 2px;
  top: 50%;
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1), background-color 0.3s ease;
}

.nav-dropdown .dropdown-arrow::before {
  left: 0.5px;
  transform-origin: calc(100% - 0.5px) 50%;
  transform: translateY(-50%) rotate(40deg);
}

.nav-dropdown .dropdown-arrow::after {
  right: 0.5px;
  transform-origin: 0.5px 50%;
  transform: translateY(-50%) rotate(-40deg);
}

.nav-dropdown:hover .dropdown-arrow::before {
  transform: translateY(-50%) rotate(-40deg);
  background-color: var(--secondary);
}

.nav-dropdown:hover .dropdown-arrow::after {
  transform: translateY(-50%) rotate(40deg);
  background-color: var(--secondary);
}

.nav-dropdown .dropdown-menu {
  position: absolute;
  top: calc(100% + 15px);
  left: -24px;
  min-width: 250px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 40px -10px rgba(11, 17, 32, 0.12), 0 4px 12px -5px rgba(11, 17, 32, 0.05);
  padding: 1.25rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 100;
  border: 1px solid rgba(11, 17, 32, 0.06);
}

/* Subtle connecting bridge so hover doesn't break */
.nav-dropdown .dropdown-menu::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 0;
  width: 100%;
  height: 15px;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown .dropdown-menu a {
  display: block;
  padding: 1rem 2.25rem;
  color: var(--primary) !important;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  line-height: 1.4;
}

.nav-dropdown .dropdown-menu a::after {
  display: none;
}

.nav-dropdown .dropdown-menu a:hover {
  background: rgba(8, 145, 178, 0.04);
  color: var(--secondary) !important;
  padding-left: 2.6rem;
}

/* Home header dropdown (before scroll) */
header.home-header:not(.header-scrolled) .dropdown-menu {
  background: rgba(11, 17, 32, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

header.home-header:not(.header-scrolled) .dropdown-menu a {
  color: rgba(255, 255, 255, 0.95) !important;
}

header.home-header:not(.header-scrolled) .dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--secondary) !important;
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
}

header.header-scrolled .mobile-menu-btn {
  color: var(--primary);
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--white);
  margin: 5px auto;
  transition: all 0.3s ease-in-out;
}

header.header-scrolled .mobile-menu-btn span {
  background-color: var(--primary);
}

/* Active State Animation */
.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Page Hero (Blue Gradient) */
.page-hero {
  min-height: 50vh;
  background: linear-gradient(135deg, var(--primary) 0%, #1a2542 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: url('assets/images/hero-bg.png') center/cover no-repeat; */
  opacity: 0.1;
  z-index: 0;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 2rem;
}

.page-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: var(--white);
}

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

@media (max-width: 768px) {
  .page-hero h1 {
    font-size: 2.5rem;
  }
}

/* Hero */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--white);
  padding-top: 80px;
  overflow: hidden;
}

/* AI-Style Gradient Border Overlay - Static (Lowest Light) */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 10;
  /* Static Low Light State */
  box-shadow: inset 0 0 40px 5px rgba(34, 211, 238, 0.6), inset 0 0 100px 20px rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.5);
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(11, 17, 32, 0.7) 0%, rgba(11, 17, 32, 0.4) 50%, rgba(11, 17, 32, 0.9) 100%);
  z-index: -1;
}

.hero-content {
  max-width: 900px;
  /* Slightly wider for modern look */
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 5rem;
  margin-bottom: 1.5rem;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.025em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  font-weight: 800;
}

.hero p {
  font-size: 1.35rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  max-width: 600px;
  font-weight: 300;
}


/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.8;
}

.mouse {
  width: 30px;
  height: 50px;
  border: 2px solid var(--white);
  border-radius: 20px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 8px;
  background: var(--white);
  border-radius: 2px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 1.5s infinite;
}

.arrow span {
  display: block;
  width: 15px;
  height: 15px;
  border-bottom: 2px solid var(--white);
  border-right: 2px solid var(--white);
  transform: rotate(45deg);
  margin: -5px;
  animation: scrollArrow 1.5s infinite;
}

.arrow span:nth-child(2) {
  animation-delay: 0.2s;
}

.arrow span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes scrollWheel {
  0% {
    top: 10px;
    opacity: 1;
  }

  100% {
    top: 30px;
    opacity: 0;
  }
}

@keyframes scrollArrow {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(-5px, -5px);
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: rotate(45deg) translate(5px, 5px);
  }
}

/* ============================================
   MODERN ABOUT SECTION - ENTERPRISE TECH THEME ($100M Look)
   ============================================ */

.about-modern {
  position: relative;
  padding: 8rem 0;
  background: linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 100%);
  overflow: hidden;
}

/* Precision Blueprint Grid Background Pattern */
.about-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.02) 1px, transparent 1px);
  background-size: 32px 32px;
  background-position: center top;
  opacity: 1;
  pointer-events: none;
}

/* Structural Axis Lines for Enterprise Feel */
.about-float-circle {
  display: none;
}

/* Disable old bubbles */

.about-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0), rgba(15, 23, 42, 0.04) 50%, rgba(15, 23, 42, 0));
  pointer-events: none;
  z-index: 0;
}

.about-container {
  position: relative;
  z-index: 1;
}

/* Section Badge */
.about-badge-wrapper {
  text-align: left;
  margin-bottom: 2rem;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(8, 145, 178, 0.05);
  border: 1px solid rgba(8, 145, 178, 0.15);
  border-radius: 4px;
  color: #0e7490;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-badge-dot {
  width: 6px;
  height: 6px;
  background: #0891b2;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(8, 145, 178, 0.4);
}

/* About Grid Layout */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}

/* Left Content */
.about-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-year-tag {
  display: none;
}

.about-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: #0F172A;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.title-gradient {
  color: #0891b2;
}

.about-description {
  font-size: 1.125rem;
  color: #475569;
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 90%;
  text-align: justify;
  text-justify: inter-word;
}

.about-description strong {
  color: #0F172A;
  font-weight: 600;
}

/* Feature Pills */
.about-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  padding-left: 0;
}

.feature-pill {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 6px;
  color: #334155;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.02);
  z-index: 1;
}

.feature-pill::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #0891b2;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
}

.feature-pill svg {
  color: #0891b2;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-pill:hover {
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 15px -3px rgba(8, 145, 178, 0.2);
}

.feature-pill:hover::before {
  transform: scaleX(1);
}

.feature-pill:hover svg {
  color: #ffffff;
  transform: scale(1.1);
}

/* Enterprise CTA Button */
.about-cta {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: #0891b2;
  border-radius: 4px;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.about-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #22d3ee, #c084fc, #22d3ee);
  background-size: 200% auto;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
}

.about-cta:hover::before {
  opacity: 1;
  animation: shineGradient 3s linear infinite;
}

.about-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px -5px rgba(192, 132, 252, 0.4);
}

.cta-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 2;
}

.about-cta:hover .cta-arrow {
  transform: translateX(6px) scale(1.1);
}

/* Stats Wrapper */
.about-stats-wrapper {
  position: relative;
  width: 100%;
}

/* Stats Grid */
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  /* 24px spacing */
}

/* Enterprise Stat Card */
.stat-card {
  position: relative;
  padding: 2rem 1.5rem;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 8px;
  text-align: left;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  box-shadow:
    0 10px 25px -5px rgba(15, 23, 42, 0.02),
    0 4px 6px -4px rgba(15, 23, 42, 0.02);
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: #0891b2;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-card:hover::before {
  transform: scaleY(1);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 20px 25px -5px rgba(15, 23, 42, 0.05),
    0 8px 10px -6px rgba(15, 23, 42, 0.05);
  border-color: rgba(15, 23, 42, 0.15);
}

/* Stat Glow Removed */
.stat-glow {
  display: none;
}

/* Stat Icon */
.stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
  background: rgba(8, 145, 178, 0.05);
  border: 1px solid rgba(8, 145, 178, 0.1);
  border-radius: 6px;
  color: #0891b2;
  transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
  background: #0891b2;
  color: #ffffff;
}

/* Stat Number */
.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: #0F172A;
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

/* Stat Label */
.stat-label {
  color: #64748b;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
}

/* Corner Accent - replaced with a precision crosshair */
.stats-corner-accent {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 30px;
  height: 30px;
  border-right: 1px solid rgba(15, 23, 42, 0.1);
  border-top: 1px solid rgba(15, 23, 42, 0.1);
  pointer-events: none;
}

.stats-corner-accent::after {
  content: '';
  position: absolute;
  top: -4px;
  right: -4px;
  width: 8px;
  height: 8px;
  background: #0891b2;
  border-radius: 50%;
}

/* Staggered card animations */
.stat-card-1 {
  animation-delay: 0s;
}

.stat-card-2 {
  animation-delay: 0.1s;
}

.stat-card-3 {
  animation-delay: 0.2s;
}

.stat-card-4 {
  animation-delay: 0.3s;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .about-title {
    font-size: 2.5rem;
  }

  .about-stats-wrapper {
    max-width: 520px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .about-modern {
    padding: 5rem 0;
  }

  .about-title {
    font-size: 2rem;
  }

  .about-stats-grid {
    gap: 1rem;
  }

  .stat-card {
    padding: 1.75rem 1.25rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .stat-icon {
    width: 48px;
    height: 48px;
  }

  .about-features {
    gap: 0.5rem;
  }

  .feature-pill {
    font-size: 0.8rem;
    padding: 0.55rem 0.9rem;
  }
}

/* ============================================
   CLIENTS SHOWCASE SECTION - HOMEPAGE (Modern Grid)
   ============================================ */

.clients-showcase {
  padding: 6rem 0 5rem;
  background-color: #fafbfc;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.clients-showcase::before,
.clients-showcase::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
  pointer-events: none;
}

.clients-showcase::before {
  top: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(8, 145, 178, 0.09);
  animation: float-slow 8s ease-in-out infinite alternate;
}

.clients-showcase::after {
  bottom: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: rgba(37, 99, 235, 0.06);
  animation: float-slow 10s ease-in-out infinite alternate-reverse;
}

@keyframes float-slow {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(30px, 20px) scale(1.05);
  }
}

.clients-header {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 1;
}

.clients-badge {
  display: inline-block;
  padding: 0.65rem 1.5rem;
  background: #eef9fa;
  border: 1px solid rgba(8, 145, 178, 0.1);
  border-radius: 50px;
  color: #0891b2;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.clients-title {
  font-size: 2.75rem;
  color: #0B1120;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.clients-subtitle {
  font-size: 1.15rem;
  color: #64748b;
  max-width: 500px;
  margin: 0 auto;
}

/* Grid Layout container */
.logo-grid-layout {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Logo Item Card */
.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  padding: 1rem;
  background: #ffffff;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.03);
  position: relative;
  cursor: default;
}

/* Hover Animation - specifically matching the requested design */
.logo-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 3px;
  background-color: #0891b2;
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(15, 23, 42, 0.06);
}

.logo-item:hover::after {
  transform: scaleX(1);
}

/* Logo Images */
.logo-item img {
  display: block;
  max-width: 100%;
  max-height: 45px;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  margin: auto;
  filter: grayscale(100%) opacity(0.6);
  transition: all 0.4s ease;
}

.logo-item:hover img {
  filter: grayscale(0%) opacity(1);
}

.logo-item-large {
  padding: 0.25rem !important;
  /* Minimal padding to allow the logo to be as big as possible */
}

.logo-item img.logo-target-reckitt,
.logo-item img.logo-target-emami,
.logo-item img.logo-target-jindal,
.logo-item img.logo-target-growel {
  max-height: 95%;
  /* Maximized size while staying strictly within the 90px container */
  width: auto;
  transform: none !important;
}

.logo-creambell-wrapper {
  padding: 0 !important; /* Overriding default padding for centering precision */
}

.logo-item img.logo-target-creambell {
  max-height: 75%;
  /* Size balanced to be large but fit perfectly in the center */
  width: auto;
  transform: translateY(-2px);
  /* Micro-adjustment to visually center the logo based on the bell's weight */
}

.logo-item img.white-logo {
  filter: invert(1) opacity(0.5);
}

.logo-item:hover img.white-logo {
  filter: invert(1) opacity(1);
}

/* Text inside logos */
.logo-item span {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #475569;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.4s ease;
}

.logo-item:hover span {
  color: #0891b2;
}

/* Stacked Text Utility */
.stacked-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
}

.stacked-text.small span {
  font-size: 0.8em;
}

/* Text Fallback */
.logo-item .logo-text-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CTA Button */
.clients-cta {
  text-align: center;
  margin-top: 3.5rem;
  position: relative;
  z-index: 1;
}

.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 2.2rem;
  background: #1e293b;
  border-radius: 50px;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.view-all-btn:hover {
  background: #0f172a;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.15);
}

.view-all-btn svg {
  transition: transform 0.3s ease;
}

.view-all-btn:hover svg {
  transform: translateX(4px);
}

/* Responsive Design for Clients Showcase */
@media (max-width: 1024px) {
  .logo-grid-layout {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .clients-title {
    font-size: 2.25rem;
  }

  .logo-grid-layout {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .logo-item {
    height: 80px;
    padding: 0.75rem;
  }

  .logo-item span {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .clients-showcase {
    padding: 4rem 0;
  }

  .clients-title {
    font-size: 1.85rem;
  }

  .clients-subtitle {
    font-size: 1rem;
  }

  .logo-grid-layout {
    grid-template-columns: repeat(2, 1fr);
  }

  .logo-item {
    height: 70px;
  }

  .logo-item img {
    max-height: 35px;
  }
}

/* ============================================
   INDUSTRIES SERVED SECTION - HOMEPAGE
   ============================================ */

.industries-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #0B1120 0%, #1e293b 50%, #0f172a 100%);
  position: relative;
  overflow: hidden;
}

.industries-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(8, 145, 178, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(168, 85, 247, 0.12) 0%, transparent 40%);
  pointer-events: none;
}

.industries-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.industries-badge {
  display: inline-block;
  padding: 0.65rem 1.5rem;
  background: rgba(8, 145, 178, 0.15);
  border: 1px solid rgba(8, 145, 178, 0.3);
  border-radius: 50px;
  color: #22d3ee;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.industries-title {
  font-size: 2.75rem;
  color: #ffffff;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.industries-subtitle {
  font-size: 1.15rem;
  color: #94a3b8;
  max-width: 550px;
  margin: 0 auto;
}

/* Industries Grid */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

/* Industry Card */
.industry-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1.25rem;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.industry-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8, 145, 178, 0.1) 0%, rgba(168, 85, 247, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.industry-card:hover {
  transform: translateY(-8px);
  border-color: rgba(8, 145, 178, 0.4);
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.3),
    0 0 40px rgba(8, 145, 178, 0.15);
}

.industry-card:hover::before {
  opacity: 1;
}

/* Icon Wrapper */
.industry-icon-wrapper {
  position: relative;
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
}

.industry-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(8, 145, 178, 0.2) 0%, rgba(168, 85, 247, 0.15) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

.industry-glow {
  position: absolute;
  inset: -5px;
  background: radial-gradient(circle, rgba(8, 145, 178, 0.4) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.industry-card:hover .industry-glow {
  opacity: 1;
}

.industry-card:hover .industry-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, rgba(8, 145, 178, 0.4) 0%, rgba(168, 85, 247, 0.3) 100%);
}

/* Card Text */
.industry-card h3 {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 0.75rem;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.industry-card p {
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

/* Bottom Line Accent */
.industry-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0891b2, #a855f7);
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.industry-card:hover .industry-line {
  transform: scaleX(1);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .industries-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 900px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .industries-title {
    font-size: 2.25rem;
  }
}

@media (max-width: 640px) {
  .industries-section {
    padding: 4rem 0;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .industry-card {
    padding: 1.5rem 1rem;
  }

  .industry-icon-wrapper {
    width: 55px;
    height: 55px;
  }

  .industry-icon {
    width: 55px;
    height: 55px;
    font-size: 1.5rem;
  }

  .industries-title {
    font-size: 1.85rem;
  }

  .industry-card h3 {
    font-size: 1rem;
  }

  .industry-card p {
    font-size: 0.8rem;
  }
}

/* Products */
.products {
  background-color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}

.section-header p {
  font-size: 1.2rem;
  color: var(--text-light);
}



/* Modern 3D Carousel */
.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 550px;
  perspective: 1000px;
}

.carousel-container {
  width: 100%;
  height: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  display: flex;
  align-items: center;
  padding: 0 calc(50% - 150px);
  /* Center the first item (300px / 2) */
}

.carousel-container::-webkit-scrollbar {
  display: none;
}

.carousel-track {
  display: flex;
  gap: 2rem;
  padding: 0 2rem;
  transform-style: preserve-3d;
}

.carousel-card {
  flex: 0 0 300px;
  height: 460px;
  scroll-snap-align: center;
  position: relative;
  transform-style: preserve-3d;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0.5;
  transform: scale(0.85);
}

/* Active State */
.carousel-card.active {
  opacity: 1;
  transform: scale(1);
  z-index: 10;
}

.card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.carousel-card.active .card-inner {
  box-shadow: 0 20px 40px rgba(8, 145, 178, 0.15);
  border-color: rgba(8, 145, 178, 0.2);
}

.card-front {
  width: 100%;
  height: 55%;
  position: relative;
  overflow: hidden;
}

.card-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.carousel-card.active:hover .card-front img {
  transform: scale(1.05);
}

.card-content {
  flex-grow: 1;
  padding: 1.5rem;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}

.card-content h3 {
  color: var(--primary);
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.card-content p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1.2rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  /* Standard property */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: left;
}

.style-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--secondary);
  color: var(--white);
  font-weight: 600;
  border-radius: 2rem;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: center;
  box-shadow: 0 4px 12px rgba(8, 145, 178, 0.2);
}

.style-btn:hover {
  background: #0e7490;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(8, 145, 178, 0.3);
}

/* Navigation Buttons */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  border: none;
  color: var(--primary);
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nav-btn:hover {
  background: var(--secondary);
  color: var(--white);
  transform: translateY(-50%) scale(1.1);
}

.prev-btn {
  left: 2rem;
}

.next-btn {
  right: 2rem;
}

@media (max-width: 768px) {
  .carousel-card {
    flex: 0 0 260px;
    height: 400px;
  }

  .nav-btn {
    display: none;
  }
}

/* Home Hero 2025 (Ethereal Precision) */
.hero-2025 {
  text-align: center;
  position: relative;
  z-index: 10;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.line-build {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 2.5rem;
  font-weight: 300;
  /* Thinner for modern look */
  color: #e2e8f0;
  /* Lighter/Cleaner */
  margin: 0;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards 0.2s;
  letter-spacing: 0.05em;
  /* Slight spacing */
}

.line-vision {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 5rem;
  /* Larger */
  font-weight: 700;
  margin: 0;
  background: linear-gradient(135deg, #fff 0%, #22d3ee 50%, #c084fc 100%);
  /* Brighter gradient */
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 25px rgba(34, 211, 238, 0.4));
  opacity: 0;
  transform: scale(0.95);
  animation: scaleReveal 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards 0.4s;
  letter-spacing: -0.02em;
}

.line-action {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
  opacity: 0;
  animation: fadeIn 1s ease forwards 0.8s;
}

.action-text {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 1.2rem;
  /* Larger */
  text-transform: uppercase;
  letter-spacing: 0.4em;
  /* Wider spacing for tech look */
  color: #94a3b8;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.gppl-brand {
  color: #fff;
  font-weight: 900;
  font-size: 1.8rem;
  /* Even Larger */
  letter-spacing: 0.15em;
  background: linear-gradient(135deg, #fff 0%, #22d3ee 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 15px rgba(34, 211, 238, 0.6));
  position: relative;
}

/* Creative underline for GPPL */
.gppl-brand::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #22d3ee;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s ease;
  box-shadow: 0 0 5px #22d3ee;
  animation: expandLine 1s ease forwards 1.2s;
}

@keyframes expandLine {
  to {
    transform: scaleX(1);
    transform-origin: left;
  }
}

.action-line {
  width: 60px;
  /* Longer lines */
  height: 1px;
  background: linear-gradient(90deg, transparent, #22d3ee, transparent);
  /* Faded ends */
  opacity: 0.7;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleReveal {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .line-build {
    font-size: 1.8rem;
  }

  .line-vision {
    font-size: 2.8rem;
  }

  .action-text {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
  }
}

/* Option 2: Focus Reveal */
.hero-focus {
  text-align: center;
  position: relative;
  z-index: 10;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.focus-build {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 2.5rem;
  font-weight: 600;
  color: #f8fafc;
  margin: 0;
  opacity: 0;
  filter: blur(10px);
  transform: scale(1.1);
  animation: focusIn 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards 0.2s;
}

.focus-vision {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 4rem;
  font-weight: 800;
  margin: 0;
  background: linear-gradient(135deg, #22d3ee 0%, #818cf8 50%, #c084fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  filter: blur(15px);
  transform: scale(1.2);
  animation: focusIn 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards 0.4s;
}

.focus-action {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  opacity: 0;
  animation: fadeIn 1s ease forwards 1s;
}

.focus-text {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 1.5rem;
  /* Increased from 1rem */
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: #cbd5e1;
  font-weight: 600;
  /* Increased weight */
  display: flex;
  align-items: center;
  gap: 0.8rem;
  /* Increased gap */
}

.gppl-brand-creative {
  font-weight: 800;
  font-size: 2rem;
  /* Increased from 1.3rem */
  letter-spacing: 0.1em;
  background: linear-gradient(90deg, #22d3ee, #c084fc, #22d3ee);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  animation: shineGradient 3s linear infinite;
  filter: drop-shadow(0 0 10px rgba(34, 211, 238, 0.6));
  /* Stronger glow */
}

@keyframes shineGradient {
  to {
    background-position: 200% center;
  }
}

.focus-line {
  width: 80px;
  /* Longer for elegance */
  height: 2px;
  background: #22d3ee;
  transform: scaleX(0);
  animation: expandLineCenter 0.8s ease forwards 1.2s;
  box-shadow: 0 0 10px rgba(34, 211, 238, 0.5);
  border-radius: 2px;
  opacity: 0.8;
}

/* Left Line: Fade from transparent (left) to color (right) */
.focus-action .focus-line:first-child {
  background: linear-gradient(90deg, transparent 0%, #22d3ee 100%);
  transform-origin: right;
}

/* Right Line: Fade from color (left) to transparent (right) */
.focus-action .focus-line:last-child {
  background: linear-gradient(90deg, #22d3ee 0%, transparent 100%);
  transform-origin: left;
}

@keyframes focusIn {
  to {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}

@keyframes expandLineCenter {
  to {
    transform: scaleX(1);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .focus-build {
    font-size: 1.8rem;
  }

  .focus-vision {
    font-size: 2.8rem;
  }
}

/* Footer */
footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 5rem 0 2rem;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  margin-top: 1.5rem;
  line-height: 1.6;
  color: #94a3b8;
  max-width: 300px;
}

.footer-logo img {
  height: 90px;
  /* Increased from 50px */
  width: auto;
  filter: brightness(0) invert(1);
  /* Make logo white */
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.footer-logo:hover img {
  opacity: 1;
}

.footer-links h4 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.footer-links h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--secondary);
  transform: translateX(5px);
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.contact-icon-svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--secondary);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-info span {
  display: none;
  /* Hide old spans if any remain */
}

.bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  text-align: center;
  color: #64748b;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-brand {
    grid-column: span 1;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.75rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }



  .nav-links {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

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

  .mobile-menu-btn {
    display: block;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .section-padding {
    padding: 4rem 0;
  }
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Timeline Section */
.journey-section {
  background-color: var(--bg-light);
  position: relative;
  background-image: radial-gradient(circle at 10% 20%, rgba(8, 145, 178, 0.05) 0%, transparent 20%),
    radial-gradient(circle at 90% 80%, rgba(11, 17, 32, 0.05) 0%, transparent 20%);
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 0;
}

/* Vertical Line */
.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background: linear-gradient(to bottom, var(--secondary), var(--primary));
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(8, 145, 178, 0.3);
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
  box-sizing: border-box;
}

.timeline-item.left {
  left: 0;
}

.timeline-item.right {
  left: 50%;
}

/* Timeline Dots */
.timeline-item::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  right: -12px;
  background-color: var(--white);
  border: 4px solid var(--secondary);
  top: 25px;
  border-radius: 50%;
  z-index: 1;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 4px rgba(8, 145, 178, 0.2);
}

.timeline-item.right::after {
  left: -12px;
}

.timeline-item:hover::after {
  background-color: var(--secondary);
  transform: scale(1.2);
  box-shadow: 0 0 15px var(--secondary);
}

.timeline-content {
  padding: 0;
  background: rgba(255, 255, 255, 0.9);
  position: relative;
  border-radius: 1rem;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.5);
  overflow: hidden;
}

.timeline-content.glass-effect {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.timeline-content:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.2);
}

.timeline-content p {
  text-align: justify;
}

.timeline-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

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

.timeline-content:hover .timeline-img img {
  transform: scale(1.1);
}

.timeline-content .year {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  background: var(--secondary);
  padding: 0.5rem 1.2rem;
  border-radius: 2rem;
  position: absolute;
  top: 20px;
  right: 20px;
  line-height: 1;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  letter-spacing: 1px;
}

.timeline-content h3 {
  margin: 1.5rem 2rem 0.5rem;
  font-size: 1.5rem;
  color: var(--primary);
  position: relative;
  z-index: 1;
}

.timeline-content p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
  margin: 0 2rem 2rem;
}

.mt-2 {
  margin-top: 1rem;
}

/* Download Button */
.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.download-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.3);
}

.download-btn::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: 0.5s;
}

.download-btn:hover::before {
  left: 100%;
}

.download-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Quote Box */
.timeline-quote {
  position: relative;
  z-index: 2;
  text-align: center;
  margin: 6rem 0;
  padding: 0 1rem;
}

.quote-box {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  padding: 4rem;
  border-radius: 2rem;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 20px 50px rgba(8, 145, 178, 0.3);
  position: relative;
  overflow: hidden;
}

.quote-box::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 15rem;
  color: rgba(255, 255, 255, 0.1);
  font-family: serif;
  line-height: 1;
}

.quote-box h3 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.quote-box p {
  font-size: 1.35rem;
  font-style: italic;
  opacity: 0.95;
  margin-bottom: 2rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.quote-box cite {
  font-weight: 700;
  font-size: 1.2rem;
  display: block;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

/* Responsive Timeline */
@media (max-width: 768px) {
  .timeline::after {
    left: 31px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }

  .timeline-item.right {
    left: 0;
  }

  .timeline-item.left::after,
  .timeline-item.right::after {
    left: 21px;
  }
}

/* Contact Page Redesign */
.contact-page-section {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, #f6f9fc 0%, #eef2f7 100%);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.contact-page-section::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(8, 145, 178, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.contact-page-section::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2rem;
  position: relative;
  z-index: 1;
  margin-top: 3rem;
}

.contact-info-wrapper,
.contact-form-wrapper {
  height: 100%;
}

.contact-info-box,
.contact-form-box {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 3rem;
  height: 100%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-box:hover,
.contact-form-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.contact-info-item:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(8, 145, 178, 0.2);
  transform: translateX(10px);
}

.contact-icon {
  font-size: 1.75rem;
  line-height: 1;
  margin-top: -2px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 6px rgba(8, 145, 178, 0.2));
}

.contact-info-item h4 {
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

#p-desc {
  text-align: justify;
}

.contact-form-box form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(8, 145, 178, 0.1);
  transform: translateY(-2px);
}

/* Product Page Redesign */
.product-page-section {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, #f6f9fc 0%, #eef2f7 100%);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.product-page-section::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(8, 145, 178, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.product-page-section::after {
  content: '';
  position: absolute;
  bottom: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.product-details-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 30px;
  padding: 3rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1;
  margin-top: 2rem;
}

.product-details-card .about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.product-details-card .product-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-details-card .product-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.15);
}

.product-details-card .product-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

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

.product-details-card .about-text h1 {
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem !important;
}

.product-details-card .about-text h3 {
  color: var(--primary);
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1.5rem !important;
  position: relative;
  display: inline-block;
}

.product-details-card .about-text h3::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--secondary);
  border-radius: 2px;
}

/* Modern Specs List */
#p-specs {
  list-style: none !important;
  padding: 0 !important;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

#p-specs li {
  background: rgba(8, 145, 178, 0.08);
  color: var(--primary) !important;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid rgba(8, 145, 178, 0.1);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

#p-specs li::before {
  content: '✓';
  font-weight: 800;
  color: var(--secondary);
}

#p-specs li:hover {
  background: var(--primary);
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(8, 145, 178, 0.2);
}

#p-specs li:hover::before {
  color: white;
}

@media (max-width: 992px) {
  .product-details-card .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .product-details-card {
    padding: 2rem;
  }

  .product-details-card .about-text h1 {
    font-size: 2rem;
  }
}

.map-container {
  margin-top: 3rem;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 8px solid rgba(255, 255, 255, 0.8);
}



@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}

/* Why Choose Us - Brand Integration */
.why-us-section {
  position: relative;
  padding: 8rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 100%);
  /* Mint-Frost Flow */
  overflow: hidden;
}

/* Subtle Brand Watermark */
.why-us-section::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%2376bc21" opacity="0.03"><path d="M17,8C8,10,5.9,16.17,3.82,21.34L5.71,22L21,11V8H17M12,2L10,2L3,4L15,14L18,14L12,2Z"/></svg>') no-repeat center;
  background-size: contain;
  transform: translateY(-50%) rotate(-15deg);
  z-index: 0;
  pointer-events: none;
}

.why-us-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem;
  align-items: center;
}

@media (max-width: 992px) {
  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.feature-icon-wrapper {
  flex-shrink: 0;
  margin-right: 1.5rem;
  width: 56px;
  height: 56px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 10px 20px rgba(118, 188, 33, 0.08);
  border: 1px solid rgba(118, 188, 33, 0.1);
  transition: all 0.4s ease;
}

.feature-item:hover .feature-icon-wrapper {
  transform: translateY(-5px) rotate(5deg);
  background: #76bc21;
  /* Brand Leaf Green */
  color: white;
  box-shadow: 0 15px 30px rgba(118, 188, 33, 0.25);
}

.feature-content h3 {
  margin-bottom: 0.5rem;
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: 700;
}

.feature-content p {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 1rem;
}

/* Impact Box Refinement */
.impact-box {
  background: linear-gradient(135deg, var(--primary) 0%, #1e293b 100%);
  border-radius: 2.5rem;
  padding: 3.5rem;
  color: white;
  box-shadow: 0 40px 100px -20px rgba(11, 17, 32, 0.3), 0 0 50px rgba(118, 188, 33, 0.1);
  transform: rotate(1deg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.impact-box::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -20%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(118, 188, 33, 0.15), transparent 70%);
  pointer-events: none;
}

.impact-box h3 {
  font-size: 2.25rem;
  color: white;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.stats-column {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.stat-item {
  text-align: left;
}

.stat-val {
  font-size: 3.5rem;
  font-family: var(--font-heading);
  font-weight: 800;
  color: white;
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-val span {
  color: #76bc21;
  /* Brand Green Accent on Numbers */
}

.stat-desc {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}