/* Style CSS for Honesty Parking */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --color-teal: #00b725c6;
  /* Brand Primary */
  --color-teal-dark: #00931db0;
  --color-red: #00b725c6;
  /* Accent Green */
  --color-red-dark: #00931db0;
  --color-bg-dark: #040d1a;
  /* Dark Navy Slate */
  --color-bg-card: #0c1a2c;
  /* Card Dark Navy Slate */
  --color-text-light: #f8fafc;
  --color-text-muted: #94a3b8;

  --color-light-bg: #f8fafc;
  --color-light-card: #ffffff;
  --color-light-border: #e2e8f0;
  --color-light-text: #040d1a;
  --color-light-muted: #64748b;

  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius: 8px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

body {
  font-family: var(--font-primary);
  background-color: var(--color-light-bg);
  color: var(--color-light-text);
  line-height: 1.6;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

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

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navbar */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.075);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.01);
  z-index: 1000;
  transition: var(--transition-normal);
}

/* Premium navbar font adjustments */
.logo-subtitle-new {
  font-size: 0.58rem !important;
  letter-spacing: 0.25em !important;
  margin-top: -1px !important;
}

.nav-dropdown-menu li a {
  font-size: 0.825rem;
}

.nav-sub-dropdown-menu li a {
  font-size: 0.8rem;
}

.header.scrolled {
  box-shadow: var(--shadow-md);
  padding: 10px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--color-teal), var(--color-teal-dark));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-family: var(--font-heading);
  font-size: 1.25rem;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-light-text);
}

.logo-subtitle {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-light-muted);
  font-weight: 600;
  display: block;
  margin-top: -4px;
}

.nav-menu {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-light-text);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-teal);
  transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-teal);
}

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

/* Button Component */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-normal);
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-teal), var(--color-teal-dark));
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-light-text);
  border: 1px solid var(--color-light-border);
}

.btn-secondary:hover {
  background-color: var(--color-light-bg);
  border-color: var(--color-light-muted);
}

.btn-red {
  background: linear-gradient(135deg, var(--color-red), var(--color-red-dark));
  color: white;
}

.btn-red:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

/* Hero Section */
.hero {
  padding-top: 180px;
  padding-bottom: 120px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.hero-bg-slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: none;
}

.hero-bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-bg-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(4, 13, 26, 0.6) 40%, rgba(4, 13, 26, 0.3) 70%, rgba(4, 13, 26, 0.1) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-video {
  filter: brightness(1);
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffffff;
  display: inline-block;
  opacity: 0.5;
  cursor: pointer;
  transition: var(--transition-fast);
}

.hero-dot.active {
  background: var(--color-teal);
  opacity: 1;
  transform: scale(1.25);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.75rem;
  color: rgb(255, 255, 255);
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero-content p {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  margin-bottom: 32px;
  max-width: 550px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

.hero-btn-outline {
  background: transparent !important;
  color: white !important;
  border: 1px solid white !important;
}

.hero-btn-outline:hover {
  background: white !important;
  color: var(--color-bg-dark) !important;
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-bg-dark {
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
}

.section-title {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}

.section-title h2 {
  font-size: 2.25rem;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--color-teal);
  border-radius: 2px;
}

.section-title p {
  color: var(--color-light-muted);
}

.section-bg-dark .section-title p {
  color: var(--color-text-muted);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.feature-card {
  background: var(--color-light-card);
  padding: 32px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-light-border);
  transition: var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-teal);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(14, 165, 233, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-teal);
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.feature-card p {
  color: var(--color-light-muted);
  font-size: 0.95rem;
}

/* Product Cards Section */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

/* Projects Grid - Single line and smaller cards */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.projects-grid .product-card-image {
  height: 260px;
}

@media (max-width: 1024px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.product-card {
  background: var(--color-light-card);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-light-border);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-teal);
}

.product-card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-normal);
}

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

.product-card-content {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-card-content h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.product-card-content p {
  color: var(--color-light-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Info Section */
.info-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}

.info-content h2 {
  font-size: 2.25rem;
  margin-bottom: 20px;
}

.info-content p {
  color: var(--color-light-muted);
  margin-bottom: 20px;
}

.info-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* Specs Table */
.specs-table-container {
  overflow-x: auto;
  background: var(--color-light-card);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-light-border);
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.specs-table th {
  background: var(--color-bg-dark);
  color: var(--color-text-light);
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 16px 24px;
}

.specs-table td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--color-light-border);
  font-size: 0.95rem;
}

.specs-table tr:last-child td {
  border-bottom: none;
}

.specs-table tr:nth-child(even) {
  background: var(--color-light-bg);
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.25);
  z-index: 999;
  transition: var(--transition-fast);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #20ba5a;
}

/* Contact form & maps */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
}

.contact-card {
  background: var(--color-light-card);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-light-border);
}

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

.contact-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-light-text);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid var(--color-light-border);
  background: var(--color-light-bg);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  color: var(--color-light-text);
  transition: var(--transition-fast);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--color-teal);
  outline: none;
  background: #fff;
}

.info-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-box {
  display: flex;
  gap: 16px;
  background: var(--color-light-card);
  padding: 24px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-light-border);
}

.info-box-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(14, 165, 233, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-teal);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.info-box-details h4 {
  margin-bottom: 4px;
}

.info-box-details p {
  color: var(--color-light-muted);
  font-size: 0.95rem;
}

/* Footer */
.footer {
  --color-text-muted: rgba(255, 255, 255, 0.85);
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
  padding: 80px 0 32px;
  border-top: 4px solid var(--color-teal);
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.5fr 1.2fr 1.2fr 1.1fr 2fr;
  gap: 20px;
  margin-bottom: 40px;
}

/* Premium Social Icons */
.footer-social-icons {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer-social-icons .social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-social-icons .social-icon:hover {
  background: var(--color-teal);
  color: #ffffff;
  border-color: var(--color-teal);
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 6px 16px rgba(33, 178, 0, 0.805);
}

.footer-social-icons .social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.footer-logo .logo-icon {
  width: 48px;
  height: 48px;
}

.footer-logo .logo-text {
  color: #fff;
}

.footer-logo .logo-subtitle {
  color: var(--color-text-muted);
}

.footer-col h3 {
  font-size: 1.125rem;
  margin-bottom: 24px;
  color: #fff;
  position: relative;
  padding-bottom: 8px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--color-teal);
}

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

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

.footer-links a {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--color-teal);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--color-bg-card);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image img {
    height: 350px;
  }

  .info-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

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

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: #ffffff;
    flex-direction: column;
    align-items: center;
    padding: 40px 0;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
    z-index: 999;
  }

  .nav-menu.active {
    left: 0;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

/* UI Overhaul Styles */
.nav-dropdown {
  position: relative;
}

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

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  border: 1px solid var(--color-light-border);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  list-style: none;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-normal);
  z-index: 1000;
}

.nav-dropdown-menu li a {
  display: block;
  padding: 8px 20px;
  font-size: 0.9rem;
  color: var(--color-light-text);
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-dropdown-menu li a:hover {
  background-color: var(--color-light-bg);
  color: var(--color-teal);
}

.nav-dropdown-menu li {
  position: relative;
}

.nav-sub-dropdown-menu {
  position: absolute;
  top: 0;
  left: 100%;
  background: #ffffff;
  border: 1px solid var(--color-light-border);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  list-style: none;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: var(--transition-normal);
  z-index: 1000;
}

.nav-sub-dropdown-menu li a {
  display: block;
  padding: 8px 20px;
}

.nav-dropdown-menu li:hover>.nav-sub-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Metric dark bar */
.dark-metric-bar {
  background: var(--color-bg-dark);
  padding: 24px 0;
  border-bottom: 3px solid var(--color-teal);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.metric-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--color-text-light);
}

.metric-item-icon {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--color-red);
}

.metric-item h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.metric-item p {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

@media (max-width: 1024px) {
  .metric-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .metric-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Solutions cards styling */
.solutions-pill {
  color: var(--color-teal);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 8px;
  text-align: center;
}

.solution-card-circle-icon {
  width: 48px;
  height: 48px;
  background: var(--color-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  position: absolute;
  bottom: -24px;
  left: 24px;
  box-shadow: var(--shadow-md);
  z-index: 10;
}

.project-card-info {
  padding: 16px 20px;
}

.project-card-info h4 {
  font-size: 0.85rem;
  color: var(--color-teal);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.project-card-info h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-light-text);
}

/* Stat counter under projects */
.stat-bar {
  background: #dcfaff;
  padding: 40px 0;
  border-top: 1px solid var(--color-light-border);
  border-bottom: 1px solid var(--color-light-border);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item h3 {
  font-size: 2.25rem;
  color: var(--color-teal-dark);
  margin-bottom: 4px;
  font-family: var(--font-heading);
}

.stat-item p {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-bg-dark);
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== Footer ===== */
.footer {
  --color-text-muted: rgba(255, 255, 255, 0.85);
  background-color: #030811;
  color: var(--color-text-muted);
  padding-top: 20px;
  padding-bottom: 0;
  border-top: none;
}

.footer-metrics-banner {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.05);
  margin-bottom: 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.5fr 1.2fr 1.2fr 1.1fr 2fr;
  gap: 20px;
  padding-bottom: 16px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-col h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #f1f5f9;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--color-teal);
  border-radius: 2px;
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  transition: color 0.25s ease, padding-left 0.25s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--color-teal);
  padding-left: 6px;
}

.footer-col .logo {
  margin-bottom: 20px;
}

.footer-col>p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 8px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.footer-contact-item .icon {
  flex-shrink: 0;
  width: 18px;
  text-align: center;
  color: var(--color-teal);
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.872);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: var(--color-teal);
}

/* Footer responsive */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 48px;
  }
}

@media (max-width: 600px) {
  .footer {
    padding-top: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

  .footer-bottom-links {
    justify-content: center;
  }
}

/* ===== Specs Table (Product Pages) ===== */
.specs-table-container {
  overflow-x: auto;
  border-radius: var(--border-radius);
  border: 1px solid var(--color-light-border);
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.specs-table thead {
  background: var(--color-bg-dark);
  color: #f1f5f9;
}

.specs-table th {
  padding: 14px 20px;
  text-align: left;
  font-weight: 600;
  font-family: var(--font-heading);
  letter-spacing: 0.02em;
}

.specs-table td {
  padding: 12px 20px;
  border-bottom: 1px solid var(--color-light-border);
  color: var(--color-light-muted);
}

.specs-table tbody tr:hover {
  background: #f8fafc;
}

.specs-table tbody tr:last-child td {
  border-bottom: none;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--color-light-card);
  border: 1px solid var(--color-light-border);
  border-radius: var(--border-radius);
  padding: 28px 24px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.feature-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

/* Footer Dropdown/Collapsible Styles */
.footer-links .nav-dropdown>a {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.footer-links .nav-sub-dropdown-menu {
  position: static;
  opacity: 1;
  visibility: visible;
  display: none;
  transform: none;
  box-shadow: none;
  border: none;
  padding: 8px 0 8px 15px;
  background: transparent;
  min-width: auto;
}

.footer-links .nav-dropdown:hover .nav-sub-dropdown-menu,
.footer-links .nav-dropdown.active .nav-sub-dropdown-menu {
  display: block;
}

.footer-links .nav-sub-dropdown-menu li {
  margin-bottom: 8px;
}

.footer-links .nav-sub-dropdown-menu li a {
  padding: 4px 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.footer-links .nav-sub-dropdown-menu li a:hover {
  color: var(--color-teal);
  background: transparent;
  padding-left: 4px;
}

/* --- NETWORK PROJECTS PAGE CSS --- */

.projects-hero {
  position: relative;
  background-color: var(--color-bg-dark);
  background-image: linear-gradient(rgba(35, 35, 35, 0.929), rgba(37, 38, 40, 0.189)), url('/images/carimage.jpg');
  background-size: cover;
  background-position: center;
  padding: 120px 0 160px;
  /* Extra bottom padding for floating stats */
  color: #fff;
}

.projects-hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.projects-hero h1 span {
  color: var(--color-teal);
}

.projects-hero p {
  font-size: 1.1rem;
  color: #cbd5e1;
  max-width: 600px;
  line-height: 1.6;
}

/* Floating Stats Bar */
.floating-stats-wrapper {
  position: relative;
  margin-top: -80px;
  z-index: 10;
  margin-bottom: 60px;
}

.floating-stats-bar {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: space-between;
  padding: 30px 40px;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.stat-box {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 200px;
}

.stat-box:not(:last-child) {
  border-right: 1px solid #e2e8f0;
  padding-right: 20px;
}

.stat-icon {
  width: 48px;
  height: 48px;
  color: var(--color-teal);
}

.stat-details h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-bg-dark);
  margin-bottom: 2px;
}

.stat-details p {
  font-size: 0.85rem;
  color: var(--color-light-muted);
  line-height: 1.4;
  margin: 0;
}

/* Domains Grid */
.domains-section {
  padding: 60px 0;
  background: var(--color-light-bg);
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 2.2rem;
  color: var(--color-bg-dark);
  margin-bottom: 12px;
}

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

.domain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.domain-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.domain-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.domain-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 20px;
  color: var(--color-teal);
}

.domain-card h3 {
  font-size: 1.1rem;
  color: var(--color-bg-dark);
  margin-bottom: 12px;
}

.domain-card p {
  font-size: 0.85rem;
  color: var(--color-light-muted);
  margin-bottom: 24px;
  flex-grow: 1;
}

.domain-card .project-count {
  font-weight: 700;
  color: var(--color-teal);
  font-size: 0.9rem;
}

/* Recent Projects */
.recent-projects-section {
  padding: 80px 0;
  background: #f1f5f9;
}

.recent-projects-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

@media (max-width: 1200px) {
  .recent-projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .recent-projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-box:not(:last-child) {
    border-right: none;
  }
}

@media (max-width: 500px) {
  .recent-projects-grid {
    grid-template-columns: 1fr;
  }
}

.recent-project-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.recent-project-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.recent-project-content {
  padding: 16px;
}

.recent-project-content h3 {
  font-size: 1rem;
  color: var(--color-bg-dark);
  margin-bottom: 8px;
}

.project-location {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--color-teal);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.project-location svg {
  width: 12px;
  height: 12px;
}

.recent-project-content p {
  font-size: 0.8rem;
  color: var(--color-light-muted);
  line-height: 1.4;
}

.btn-center {
  display: flex;
  justify-content: center;
}

/* Presence Section */
.presence-section {
  padding: 80px 0;
  background: #fff;
}

.presence-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.presence-text h2 {
  font-size: 2.2rem;
  color: var(--color-bg-dark);
  margin-bottom: 20px;
}

.presence-text>p {
  color: var(--color-light-muted);
  font-size: 1.05rem;
  margin-bottom: 40px;
  line-height: 1.7;
}

.presence-stats-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.presence-stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.presence-stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-teal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.presence-stat-details h4 {
  font-size: 1.1rem;
  color: var(--color-bg-dark);
  margin-bottom: 2px;
}

.presence-stat-details p {
  font-size: 0.9rem;
  color: var(--color-light-muted);
  margin: 0;
}

.presence-map {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

/* --- ABOUT PAGE CSS --- */

.about-hero {
  position: relative;
  background-color: var(--color-bg-dark);
  background-image: linear-gradient(rgba(4, 13, 26, 0.8), rgba(4, 13, 26, 0.9)), url('/images/carimage.jpg');
  background-size: cover;
  background-position: center;
  padding: 120px 0 160px;
  /* Space for floating stats */
  color: #fff;
}

.about-hero-content {
  max-width: 800px;
}

.about-hero-label {
  color: var(--color-teal);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  display: block;
}

.about-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 24px;
  line-height: 1.2;
}

.about-hero h1 span {
  color: var(--color-teal);
}

.about-hero p {
  font-size: 1.1rem;
  color: #cbd5e1;
  line-height: 1.6;
}

/* Our Company Section */
.about-company-section {
  padding: 80px 0;
  background: #fff;
}

.company-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.company-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.company-text-content {
  padding-right: 20px;
}

.section-label {
  color: var(--color-teal);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  display: block;
}

.company-text-content h2 {
  font-size: 2.2rem;
  color: var(--color-bg-dark);
  margin-bottom: 24px;
  line-height: 1.3;
}

.company-text-content p {
  font-size: 1.05rem;
  color: var(--color-light-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.company-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
  text-align: center;
}

.company-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.company-feature-icon {
  width: 50px;
  height: 50px;
  color: var(--color-teal);
}

.company-feature-item span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-bg-dark);
}

/* Values Section */
.values-section {
  padding: 80px 0;
  background: #f8fafc;
}

.values-header {
  text-align: center;
  margin-bottom: 50px;
}

.values-header h2 {
  font-size: 2.2rem;
  color: var(--color-bg-dark);
  margin-top: 8px;
}

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

@media (max-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.value-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.value-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  color: var(--color-teal);
}

.value-card h3 {
  font-size: 1.1rem;
  color: var(--color-bg-dark);
  margin-bottom: 12px;
}

.value-card p {
  font-size: 0.85rem;
  color: var(--color-light-muted);
  line-height: 1.5;
}

/* Timeline / Journey Section */
.journey-section {
  padding: 80px 0;
  background: #fff;
}

.timeline-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  margin-top: 50px;
  padding-bottom: 30px;
}

.timeline-container::before {
  content: '';
  position: absolute;
  top: 35px;
  left: 50px;
  right: 50px;
  height: 2px;
  background: #e2e8f0;
  z-index: 1;
}

.timeline-item {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 20%;
  padding: 0 10px;
}

.timeline-icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--color-teal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 0 0 8px #fff;
}

.timeline-icon-wrapper svg {
  width: 32px;
  height: 32px;
}

.timeline-item h3 {
  font-size: 1.25rem;
  color: var(--color-bg-dark);
  margin-bottom: 8px;
  font-weight: 800;
}

.timeline-item p {
  font-size: 0.9rem;
  color: var(--color-light-muted);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .timeline-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }

  .timeline-container::before {
    top: 0;
    left: 35px;
    bottom: 0;
    right: auto;
    width: 2px;
    height: 100%;
  }

  .timeline-item {
    width: 100%;
    flex-direction: row;
    text-align: left;
    gap: 20px;
  }

  .timeline-icon-wrapper {
    margin-bottom: 0;
  }
}

/* Our Strength Section */
.strength-section {
  padding: 60px 0 100px;
  background: #fff;
}

.strength-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

@media (max-width: 1024px) {
  .strength-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .strength-image {
    display: none;
  }
}

@media (max-width: 768px) {
  .strength-wrapper {
    grid-template-columns: 1fr;
  }
}

.strength-dark-box {
  background: var(--color-bg-dark);
  padding: 50px 40px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.strength-dark-box h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  margin-top: 10px;
  line-height: 1.2;
}

.strength-dark-box p {
  color: #cbd5e1;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.strength-features {
  background: #f8fafc;
  padding: 50px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

@media (max-width: 500px) {
  .strength-features {
    grid-template-columns: 1fr;
  }
}

.strength-feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.strength-feature-icon {
  width: 28px;
  height: 28px;
  color: var(--color-teal);
  flex-shrink: 0;
  margin-top: 2px;
}

.strength-feature-item h4 {
  font-size: 1rem;
  color: var(--color-bg-dark);
  margin-bottom: 4px;
}

.strength-feature-item p {
  font-size: 0.85rem;
  color: var(--color-light-muted);
  line-height: 1.4;
}

.strength-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- SMART QUOTE PAGE CSS --- */

.quote-page-section {
  padding: 100px 0 80px;
  background-color: #f4f7f6;
  /* light gray/blue background */
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  background: var(--color-bg-dark);
}

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

.quote-image-side {
  position: relative;
  background-image: linear-gradient(rgba(4, 13, 26, 0.4), rgba(4, 13, 26, 0.8)), url('/images/tower parking.png');
  background-size: cover;
  background-position: center;
  padding: 60px 40px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 400px;
}

.quote-image-side h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  line-height: 1.2;
}

.quote-image-side p {
  font-size: 1.1rem;
  color: #e2e8f0;
  max-width: 90%;
  margin-bottom: 40px;
}

.quote-trust-badges {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quote-trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  padding: 12px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: fit-content;
}

.quote-trust-badge svg {
  color: var(--color-teal);
  width: 24px;
  height: 24px;
}

.quote-trust-badge span {
  font-weight: 600;
  font-size: 0.95rem;
}

.quote-form-side {
  padding: 50px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .quote-form-side {
    padding: 30px 20px;
  }

  .quote-image-side {
    padding: 40px 20px;
  }
}

.glass-form-card {
  width: 100%;
}

.quote-form-title {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.quote-form-subtitle {
  color: #94a3b8;
  font-size: 0.95rem;
  margin-bottom: 30px;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 20px;
  }
}

.input-group {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.input-group label {
  color: #e2e8f0;
  font-size: 0.85rem;
  font-weight: 600;
}

.input-icon-wrapper {
  position: relative;
}

.input-icon-wrapper svg {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  width: 20px;
  height: 20px;
  pointer-events: none;
  transition: color 0.3s ease;
}

.quote-input {
  width: 100%;
  padding: 14px 16px 14px 48px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #fff;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.quote-input:focus {
  outline: none;
  border-color: var(--color-teal);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

.quote-input:focus+svg,
.quote-input:focus~svg {
  color: var(--color-teal);
}

.quote-input::placeholder {
  color: #64748b;
}

select.quote-input {
  appearance: none;
  cursor: pointer;
}

select.quote-input option {
  background: #fff;
  color: #1e293b;
  padding: 10px;
  font-size: 0.95rem;
}

select.quote-input option:disabled {
  color: #94a3b8;
}

.select-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  pointer-events: none;
  width: 16px;
  height: 16px;
}

textarea.quote-input {
  resize: vertical;
  min-height: 100px;
  padding-left: 16px;
  /* No icon for textarea */
}

.quote-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 30px;
}

.btn-quote-primary {
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
  text-align: center;
  text-decoration: none;
}

.btn-quote-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.btn-quote-whatsapp {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}

.btn-quote-whatsapp:hover {
  background: rgba(37, 211, 102, 0.1);
  border-color: #25d366;
  color: #25d366;
}

.quote-bottom-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 24px;
  justify-content: center;
}

.bottom-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #94a3b8;
  font-size: 0.85rem;
}

.bottom-badge svg {
  color: var(--color-teal);
  width: 14px;
  height: 14px;
}

/* Mobile Responsive Navigation and Layout Overrides */
@media (max-width: 768px) {

  /* Navbar dropdown styling for mobile menu */
  .nav-menu {
    overflow-y: auto !important;
    align-items: stretch !important;
    padding: 20px 24px !important;
  }

  .nav-menu li {
    width: 100% !important;
    margin-bottom: 10px !important;
    text-align: left !important;
  }

  .nav-menu li a {
    display: block !important;
    width: 100% !important;
    padding: 10px 0 !important;
  }

  .nav-dropdown-menu,
  .nav-sub-dropdown-menu {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    background: #f8fafc !important;
    width: 100% !important;
    padding: 4px 0 4px 15px !important;
    margin-top: 5px !important;
    display: block !important;
  }

  .nav-dropdown-menu li a,
  .nav-sub-dropdown-menu li a {
    padding: 8px 12px !important;
    font-size: 0.85rem !important;
    justify-content: flex-start !important;
    border-bottom: 1px dashed #e2e8f0 !important;
  }

  .nav-dropdown-menu li:last-child a,
  .nav-sub-dropdown-menu li:last-child a {
    border-bottom: none !important;
  }

  .nav-dropdown-menu li a::after,
  .nav-sub-dropdown-menu li a::after {
    display: none !important;
  }

  /* Floating stats bar mobile view adjustments */
  .floating-stats-wrapper {
    margin-top: -30px !important;
    margin-bottom: 40px !important;
  }

  .floating-stats-bar {
    padding: 20px !important;
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .stat-box {
    border-right: none !important;
    border-bottom: 1px solid #e2e8f0 !important;
    padding-bottom: 15px !important;
    padding-right: 0 !important;
    justify-content: flex-start !important;
  }

  .stat-box:last-child {
    border-bottom: none !important;
    padding-bottom: 0 !important;
  }

  /* Hero typography on mobile */
  .hero h1,
  .about-hero h1,
  .quality-hero h1,
  .milestones-hero h1,
  .vision-hero h1 {
    font-size: 2.2rem !important;
    line-height: 1.2 !important;
  }

  .about-hero,
  .quality-hero,
  .milestones-hero,
  .vision-hero {
    padding: 120px 0 60px !important;
  }

  /* Timeline adjustments */
  .timeline-container {
    flex-direction: column !important;
    gap: 30px !important;
  }

  .timeline-item::after {
    display: none !important;
  }
}

/* Typing animation cursor styling */
.typing-cursor {
  color: #10b981;
  /* Green color matching --color-red */
  font-weight: 300;
  display: inline-block;
  animation: blink 0.7s infinite;
  margin-left: 4px;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .hero-typing-heading {
    min-height: 120px !important;
  }
}

/* Infinite Marquee Styling */
.marquee-section {
  width: 100%;
  background-color: #15587e;
  /* Teal brand background color */
  overflow: hidden;
  padding: 8px 0;
  border-top: 2px solid rgba(255, 255, 255, 0.15);
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
  position: relative;
  z-index: 10;
}

.marquee-wrapper {
  display: flex;
  width: max-content;
}

.marquee-content {
  display: flex;
  align-items: center;
  justify-content: space-around;
  animation: marquee-scroll 35s linear infinite;
  white-space: nowrap;
}


.marquee-item {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0 40px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.marquee-icon {
  color: #00C853;
  /* Bright Green highlight */
  font-weight: 800;
  font-size: 2rem;
}

/* Keyframes for Infinite Smooth Loop without gaps */
@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* Responsive adjustment */
@media (max-width: 768px) {
  .marquee-section {
    padding: 16px 0;
  }

  .marquee-item {
    font-size: 1rem;
    padding: 0 24px;
    gap: 8px;
  }

  .marquee-icon {
    font-size: 1.15rem;
  }
}

/* Why Choose Us Section Carousel */
.wcu-carousel-track-wrapper {
  overflow: hidden;
  width: 100%;
}

.wcu-carousel-track {
  display: flex;
  gap: 30px;
}

.wcu-infinite-scroll {
  width: max-content;
  animation: wcu-scroll 30s linear infinite;
}

.wcu-infinite-scroll:hover {
  animation-play-state: paused;
}

@keyframes wcu-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 15px)); }
}

.wcu-card {
  width: 320px;
  flex: 0 0 auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: flex-start;
  min-height: 320px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #f1f5f9;
}

.wcu-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.wcu-card-icon {
  font-size: 2.8rem;
  margin-bottom: 20px;
  width: 70px;
  height: 70px;
  background-color: rgba(16, 185, 129, 0.1);
  /* Light green tint */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wcu-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
  font-family: var(--font-heading);
}

.wcu-card-desc {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
}

/* Arrow controls */
.wcu-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  color: #0f172a;
  font-weight: bold;
  font-size: 1.2rem;
  transition: all 0.2s ease;
}

.wcu-arrow:hover {
  background: var(--color-teal);
  color: #ffffff;
  border-color: var(--color-teal);
  box-shadow: 0 4px 20px rgba(10, 124, 70, 0.4);
}

.wcu-arrow-left {
  left: -10px;
}

.wcu-arrow-right {
  right: -10px;
}

.wcu-arrow:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: #f1f5f9;
  color: #94a3b8;
  border-color: #e2e8f0;
  box-shadow: none;
}

/* Green cursor animation blinking */
@keyframes wcu-cursor-blink {
  50% {
    opacity: 0;
  }
}

.wcu-cursor-blink {
  animation: wcu-cursor-blink 1s steps(2, start) infinite;
}

/* Responsive Grid columns for Carousel */
@media (max-width: 1024px) {
  .wcu-card {
    width: 300px;
  }
}

@media (max-width: 768px) {
  .wcu-card {
    width: 280px;
  }

  .wcu-banner {
    padding: 40px 20px !important;
  }

  .wcu-carousel-container {
    padding: 0 30px !important;
  }

  .wcu-arrow-left {
    left: -15px;
  }

  .wcu-arrow-right {
    right: -15px;
  }
}

/* Our Complete Solution Section */
.complete-solution-section {
  position: relative;
}

.solution-marquee-container {
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.solution-row-wrapper {
  margin-top: 30px;
}

.solution-row-title {
  font-size: 1.3rem;
  color: var(--color-teal);
  margin-bottom: 20px;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.solution-track {
  display: flex;
  width: max-content;
  gap: 24px;
  padding: 10px 0;
}

/* Infinite Marquee Animations */
.solution-track-left {
  animation: scroll-left 40s linear infinite;
}

.solution-track-right {
  animation: scroll-right 40s linear infinite;
}

.solution-track:hover {
  animation-play-state: paused;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 12px)); } /* Half track width minus half gap */
}

@keyframes scroll-right {
  0% { transform: translateX(calc(-50% - 12px)); }
  100% { transform: translateX(0); }
}

/* Complete Solution Card styling */
.solution-card {
  background: #ffffff;
  border-radius: 12px;
  width: 200px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #eaeaea;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  flex-shrink: 0;
  padding: 0; /* Override previous padding */
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
  border-color: #d1d5db;
}

.solution-img-wrapper {
  width: 100%;
  height: 140px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #eaeaea;
  padding: 10px;
}

.solution-img-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.solution-card:hover .solution-img-wrapper img {
  transform: scale(1.05);
}

.solution-text-content {
  padding: 20px 15px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
}

.solution-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-bg-dark);
  margin: 0;
  font-family: var(--font-heading);
  line-height: 1.3;
}

/* Responsive Overrides */
@media (max-width: 768px) {
  .solution-card {
    width: 180px;
  }
  .solution-img-wrapper {
    height: 120px;
  }
}

/* Client Logo Marquee */
.client-marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.client-marquee-track {
  display: flex;
  align-items: center;
  gap: 50px;
  width: max-content;
  animation: marqueeScroll 35s linear infinite;
}

.client-marquee-wrapper:hover .client-marquee-track {
  animation-play-state: paused;
}

.client-logo-img {
  height: 90px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  filter: none;
  opacity: 0.85;
  transition: all 0.4s ease;
  flex-shrink: 0;
  padding: 10px 15px;
  background: white;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  cursor: pointer;
}

.client-logo-img:hover {
  filter: none;
  opacity: 1;
  transform: scale(1.12) translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  border-color: var(--color-teal);
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .client-logo-img {
    height: 55px;
    max-width: 130px;
    padding: 8px 12px;
  }

  .client-marquee-track {
    gap: 30px;
    animation-duration: 25s;
  }
}

/* Brochure CTA Section (Product Pages) */
.brochure-cta-section {
  padding: 30px 0;
  background-color: #f8fafc;
  border-top: 1px solid #e2e8f0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.brochure-cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(0, 183, 37, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.brochure-cta-section .container {
  position: relative;
  z-index: 1;
}

.brochure-cta-h2 {
  color: #1e293b;
  margin-bottom: 10px;
  font-size: 1.6rem;
  font-weight: 700;
  font-family: var(--font-heading);
}

.brochure-cta-p {
  color: #64748b;
  font-size: 0.95rem;
  margin-bottom: 25px;
  max-width: 600px;
  margin-inline: auto;
  line-height: 1.6;
}

.brochure-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #00b725c6, #008a1c);
  color: white;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 20px -5px rgba(0, 183, 37, 0.3);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.brochure-cta-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 25px -8px rgba(0, 183, 37, 0.5);
  color: white;
}

/* Brochure Modal Styles */
.brochure-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.brochure-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.brochure-modal {
  background: #fff;
  border-radius: 12px;
  width: 90%;
  max-width: 450px;
  padding: 30px;
  position: relative;
  transform: translateY(-20px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  font-family: var(--font-body);
}

.brochure-modal-overlay.active .brochure-modal {
  transform: translateY(0);
}

.brochure-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #666;
  cursor: pointer;
  line-height: 1;
}

.brochure-modal-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.brochure-modal-header svg {
  color: var(--color-teal);
}

.brochure-modal-header h2 {
  font-size: 1.4rem;
  color: #333;
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
}

.brochure-modal p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 25px;
  line-height: 1.5;
}

.brochure-form-group {
  margin-bottom: 20px;
  text-align: left;
}

.brochure-form-group label {
  display: block;
  font-size: 0.9rem;
  color: #334155;
  margin-bottom: 8px;
  font-weight: 600;
}

.brochure-form-group label span {
  color: #e74c3c;
}

.brochure-form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 0.95rem;
  color: #333;
  outline: none;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
  font-family: var(--font-body);
}

.brochure-form-control:focus {
  border-color: var(--color-teal);
}

.brochure-submit-btn {
  width: 100%;
  background: var(--color-teal);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.3s ease;
  font-family: var(--font-body);
}

.brochure-submit-btn:hover {
  background: var(--color-teal-dark);
}

/* --- GLOBAL MOBILE RESPONSIVENESS --- */
@media (max-width: 992px) {
  .new-footer-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  /* Hero Section */
  .hero-typing-heading {
    font-size: 2rem !important;
    min-height: 100px !important;
  }
  .hero-content p {
    font-size: 1rem !important;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  .hero-buttons .btn {
    width: 100%;
  }

  /* Navbar Mobile Menu */
  .mobile-menu-btn {
    display: block !important;
  }
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: #ffffff;
    flex-direction: column;
    padding: 20px 24px;
    overflow-y: auto;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    gap: 0 !important; /* Remove desktop gap */
  }
  .nav-menu.active {
    left: 0;
  }
  
  .nav-menu > li {
    border-bottom: 1px solid #f1f5f9;
    width: 100%;
  }
  .nav-menu > li:last-child {
    border-bottom: none;
    margin-top: 24px;
    margin-left: 0 !important;
  }
  
  .nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0 !important;
    width: 100%;
    font-size: 1rem !important;
  }
  
  /* Disable the bottom underline effect on mobile */
  .nav-link::after {
    display: none !important;
  }
  .nav-link.active {
    color: var(--color-teal) !important;
    font-weight: 700;
  }
  
  /* Stylish Mobile Button */
  .nav-menu .btn {
    width: 100%;
    display: flex !important;
    justify-content: center;
    padding: 14px 20px !important;
    font-size: 1rem !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 12px rgba(0, 183, 37, 0.25) !important;
    margin-left: 0 !important;
  }

  .nav-dropdown-menu, .nav-sub-dropdown-menu {
    position: static !important;
    box-shadow: none !important;
    display: none !important; /* Force hide by default on mobile */
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    padding-left: 15px !important;
    background: #f8fafc;
    border-left: 2px solid #e2e8f0;
    margin-left: 10px;
    margin-bottom: 10px;
    border-radius: 4px;
  }
  .nav-dropdown-menu li, .nav-sub-dropdown-menu li {
    border-bottom: none !important;
  }
  .nav-dropdown-menu .nav-link, .nav-sub-dropdown-menu .nav-link {
    padding: 12px 10px !important;
    font-size: 0.95rem !important;
  }
  
  .nav-dropdown.active > ul {
    display: block !important;
  }
  
  /* Disable hover effects on mobile to prevent conflicts with click */
  .nav-dropdown:hover > .nav-dropdown-menu,
  .nav-dropdown:hover > .nav-sub-dropdown-menu {
    display: none !important; /* only show if .active */
  }
  .nav-dropdown.active > .nav-dropdown-menu,
  .nav-dropdown.active > .nav-sub-dropdown-menu {
    display: block !important;
  }

  /* Stats Grid */
  .stat-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
  }
  .stat-item {
    padding: 15px !important;
  }

  /* Info & Contact Rows */
  .info-row, .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  /* Footer Grid */
  .new-footer-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
  
  .mid-footer-stats {
    flex-direction: column;
    align-items: flex-start !important;
  }

  /* Products Grid */
  .projects-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 480px) {
  .stat-grid {
    grid-template-columns: 1fr !important;
  }
}

/* =========================================
   PREMIUM CASE STUDIES PAGE CSS
   ========================================= */

/* Section Headers */
.case-studies-section, .testimonial-section, .faq-section {
  padding: 80px 0;
  background-color: #f8fafc;
}
.testimonial-section {
  background-color: #ffffff;
}

/* Video Grid */
.cs-video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.cs-video-card {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.cs-video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}
.cs-video-thumb {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #0f172a;
}
.cs-video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: opacity 0.3s ease, transform 0.5s ease;
}
.cs-video-card:hover .cs-video-bg {
  opacity: 1;
  transform: scale(1.05);
}
.cs-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-teal);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, background 0.3s;
  z-index: 2;
}
.cs-video-card:hover .cs-play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  background: #ffffff;
}
.cs-play-btn svg {
  width: 24px;
  height: 24px;
  margin-left: 4px;
}
.cs-hover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
  z-index: 1;
}
.cs-video-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.cs-tag {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(0, 183, 37, 0.1);
  color: var(--color-teal);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
  margin-bottom: 12px;
  align-self: flex-start;
}
.cs-video-title {
  font-size: 1.25rem;
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
}
.cs-meta {
  display: flex;
  gap: 15px;
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 15px;
  font-weight: 600;
}
.cs-video-desc {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
  margin-top: auto;
}

/* Testimonial */
.testimonial-card {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
  border: 1px solid #f1f5f9;
  text-align: center;
}
.testimonial-card .stars {
  color: #fbbf24;
  font-size: 1.5rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.testimonial-card blockquote {
  font-size: 1.35rem;
  font-style: italic;
  color: #1e293b;
  line-height: 1.6;
  margin: 0 0 30px 0;
  font-family: var(--font-heading);
}
.client-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.client-avatar {
  width: 50px;
  height: 50px;
  background: var(--color-teal);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.1rem;
}
.client-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 2px 0;
  text-align: left;
}
.client-company {
  font-size: 0.85rem;
  color: #64748b;
  margin: 0;
  text-align: left;
}

/* Premium FAQ Accordion */
.premium-faq-list {
  margin-top: 40px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
  overflow: hidden;
}
.premium-faq-item {
  border-bottom: 1px solid #f1f5f9;
}
.premium-faq-item:last-child {
  border-bottom: none;
}
.premium-faq-header {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  transition: background 0.3s;
}
.premium-faq-header:hover {
  background: #f8fafc;
}
.premium-faq-header .icon {
  font-size: 1.4rem;
  color: var(--color-teal);
  font-weight: 400;
  transition: transform 0.3s ease;
}
.premium-faq-body {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  color: #475569;
  line-height: 1.7;
  font-size: 0.95rem;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.premium-faq-item.active .premium-faq-header .icon {
  transform: rotate(45deg);
}
.premium-faq-item.active .premium-faq-body {
  max-height: 200px; /* arbitrary large height */
  padding: 0 24px 24px 24px;
}

/* Case Study Modal */
.cs-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(5px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.cs-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.cs-modal-container {
  background: #ffffff;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  border-radius: 16px;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
}
.cs-modal-overlay.active .cs-modal-container {
  transform: translateY(0);
  opacity: 1;
}
.cs-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.cs-modal-close:hover {
  background: var(--color-teal);
}
.cs-modal-hero {
  position: relative;
  height: 250px;
}
.cs-modal-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cs-modal-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.9) 0%, rgba(15,23,42,0.2) 100%);
}
.cs-modal-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 30px;
  z-index: 2;
  color: white;
}
.cs-modal-hero-content h2 {
  font-size: 2rem;
  margin: 5px 0;
}
.cs-modal-hero-content p {
  color: #cbd5e1;
  margin: 0;
}
.cs-modal-content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  padding: 40px 30px;
}
.cs-modal-main h3 {
  font-size: 1.4rem;
  color: #0f172a;
  margin-top: 0;
  margin-bottom: 15px;
}
.cs-modal-main p {
  color: #475569;
  line-height: 1.7;
  margin-bottom: 25px;
}
.cs-solution-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cs-solution-features li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 10px;
  color: #0f172a;
  font-weight: 500;
}
.cs-solution-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-teal);
  font-weight: bold;
}
.cs-challenge-box {
  background: #f8fafc;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}
.cs-challenge-box h4 {
  margin: 0 0 15px 0;
  color: #0f172a;
}
.cs-challenge-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cs-challenge-box li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: #475569;
  font-size: 0.95rem;
}
.cs-challenge-box svg {
  color: #ef4444;
}
.cs-gallery-section {
  padding: 0 30px 40px 30px;
}
.cs-gallery-section h3 {
  font-size: 1.4rem;
  color: #0f172a;
  margin-bottom: 20px;
}
.cs-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.cs-gallery-grid img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.3s;
}
.cs-gallery-grid img:hover {
  opacity: 0.8;
}

/* Lightbox */
.cs-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
}
.cs-lightbox.active {
  opacity: 1;
  visibility: visible;
}
.cs-lightbox img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 0 30px rgba(0,0,0,0.5);
  transform: scale(0.95);
  transition: transform 0.3s;
}
.cs-lightbox.active img {
  transform: scale(1);
}
.cs-lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .cs-modal-content-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .cs-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonial-card {
    padding: 30px 20px;
  } 
}