/* ============================================
   Wakinsoftwares Bharat - Custom Styles
   ============================================ */

:root {
  --primary: #003399;
  --primary-dark: #001f5c;
  --primary-light: #0044cc;
  --accent: #0066ff;
  --text-dark: #0b2265;
  --text-muted: #5e6e96;
  --text-light: #8892a4;
  --bg-light: #f6f9fc;
  --bg-white: #ffffff;
  --border-color: #e2e8f0;
  --shadow-sm: 0 4px 12px rgba(0, 51, 153, 0.04);
  --shadow-md: 0 10px 30px rgba(0, 51, 153, 0.08);
  --shadow-lg: 0 20px 48px rgba(0, 51, 153, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  width: 100%;
}

html {
  scroll-behavior: smooth;
}

/* Custom wider containers for desktop viewports */
@media (min-width: 1200px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1240px;
  }
}

@media (min-width: 1400px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1440px;
  }
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.7;
}

/* ---- Typography ---- */
.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.section-title {
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 1.25rem;
}

.section-desc {
  color: var(--text-muted);
  font-size: 0.98rem;
  margin-bottom: 1.25rem;
}

.section-heading {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 800;
  color: var(--text-dark);
  white-space: nowrap;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.header-line {
  flex: 1;
  max-width: 120px;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--primary), transparent);
}

.section-padding {
  padding: 50px 0;
}

.bg-light {
  background-color: var(--bg-light) !important;
}

.highlight-blue {
  color: var(--primary);
}

/* ---- Buttons ---- */
.btn-primary {
  --bs-btn-bg: var(--primary);
  --bs-btn-border-color: var(--primary);
  --bs-btn-hover-bg: var(--primary-dark);
  --bs-btn-hover-border-color: var(--primary-dark);
  --bs-btn-active-bg: var(--primary-dark);
  --bs-btn-active-border-color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 51, 153, 0.25);
}

.btn-outline-primary {
  --bs-btn-color: var(--primary);
  --bs-btn-border-color: var(--primary);
  --bs-btn-hover-bg: var(--primary);
  --bs-btn-hover-border-color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  border-width: 2px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-outline-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 51, 153, 0.12);
}

.learn-more {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
}

.learn-more:hover {
  color: var(--primary-dark);
  gap: 0.7rem;
}

/* Navbar CSS moved to css/navbar.css */

/* ---- Hero ---- */
.hero-section {
  padding-top: 110px;
  padding-bottom: 50px;
  background: linear-gradient(135deg, #f5f8ff 0%, #ffffff 60%, #eff5ff 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 51, 153, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-tagline {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2.25rem;
  max-width: 540px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.hero-main-img {
  max-width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}

.floating-badge {
  position: absolute;
  background: var(--bg-white);
  padding: clamp(0.5rem, 1.2vw, 1.25rem) clamp(0.4rem, 1vw, 0.75rem);
  border-radius: clamp(10px, 1.5vw, 16px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(0.2rem, 0.5vw, 0.5rem);
  width: clamp(80px, 11vw, 135px);
  height: clamp(70px, 9.5vw, 115px);
  z-index: 3;
  border: 1.5px solid transparent;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  animation: floatCard 5s ease-in-out infinite;
}

.floating-badge:hover {
  transform: scale(1.06) translateY(-5px) !important;
  z-index: 10;
  animation-play-state: paused;
}

.floating-badge .badge-icon {
  font-size: clamp(1.1rem, 2vw, 2.2rem);
  line-height: 1;
  transition: var(--transition);
}

.floating-badge:hover .badge-icon {
  transform: scale(1.1);
}

.floating-badge .badge-text {
  font-size: clamp(0.55rem, 0.7vw, 0.78rem);
  font-weight: 700;
  line-height: 1.3;
}

/* Theme Colors for Floating Badges */
.fb-web {
  border-color: rgba(0, 51, 153, 0.18);
  box-shadow: 0 10px 25px rgba(0, 51, 153, 0.06);
}

.fb-web .badge-icon {
  color: #003399;
}

.fb-web .badge-text {
  color: #003399;
}

.fb-web:hover {
  border-color: rgba(0, 51, 153, 0.45);
  box-shadow: 0 15px 35px rgba(0, 51, 153, 0.15);
}

.fb-ai {
  border-color: rgba(114, 9, 183, 0.18);
  box-shadow: 0 10px 25px rgba(114, 9, 183, 0.06);
}

.fb-ai .badge-icon {
  color: #7209b7;
}

.fb-ai .badge-text {
  color: #7209b7;
}

.fb-ai:hover {
  border-color: rgba(114, 9, 183, 0.45);
  box-shadow: 0 15px 35px rgba(114, 9, 183, 0.15);
}

.fb-cloud {
  border-color: rgba(13, 148, 136, 0.18);
  box-shadow: 0 10px 25px rgba(13, 148, 136, 0.06);
}

.fb-cloud .badge-icon {
  color: #0d9488;
}

.fb-cloud .badge-text {
  color: #0d9488;
}

.fb-cloud:hover {
  border-color: rgba(13, 148, 136, 0.45);
  box-shadow: 0 15px 35px rgba(13, 148, 136, 0.15);
}

.fb-mobile {
  border-color: rgba(234, 88, 12, 0.18);
  box-shadow: 0 10px 25px rgba(234, 88, 12, 0.06);
}

.fb-mobile .badge-icon {
  color: #ea580c;
}

.fb-mobile .badge-text {
  color: #ea580c;
}

.fb-mobile:hover {
  border-color: rgba(234, 88, 12, 0.45);
  box-shadow: 0 15px 35px rgba(234, 88, 12, 0.15);
}

.fb-marketing {
  border-color: rgba(220, 38, 38, 0.18);
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.06);
}

.fb-marketing .badge-icon {
  color: #dc2626;
}

.fb-marketing .badge-text {
  color: #dc2626;
}

.fb-marketing:hover {
  border-color: rgba(220, 38, 38, 0.45);
  box-shadow: 0 15px 35px rgba(220, 38, 38, 0.15);
}

.fc-1 {
  top: 16%;
  left: -8%;
  animation-delay: 0s;
}

.fc-2 {
  top: -4%;
  left: 25%;
  animation-delay: -1s;
}

.fc-3 {
  top: 10%;
  right: -2%;
  animation-delay: -2s;
}

.fc-4 {
  bottom: 18%;
  left: -6%;
  animation-delay: -3s;
}

.fc-5 {
  bottom: 14%;
  right: -6%;
  animation-delay: -4s;
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* Stats Bar */
.stats-bar {
  margin-top: -30px;
  position: relative;
  z-index: 10;
}

.stats-bar-inner {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.5rem;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem;
  transition: var(--transition);
  height: 100%;
}

.stat-item:hover {
  transform: translateY(-2px);
}

.stat-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.stat-icon-1 {
  background: rgba(0, 51, 153, 0.1);
  color: var(--primary);
}

.stat-icon-2 {
  background: rgba(0, 200, 150, 0.1);
  color: #00c896;
}

.stat-icon-3 {
  background: rgba(156, 39, 176, 0.1);
  color: #9c27b0;
}

.stat-icon-4 {
  background: rgba(255, 152, 0, 0.1);
  color: #ff9800;
}

.stat-item strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.stat-item span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ---- About ---- */
.about-section {
  padding-top: 50px;
}

.about-video-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--primary);
  border: 4px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  padding-left: 4px;
}

.play-btn:hover {
  background: var(--primary-dark);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 8px 30px rgba(0, 51, 153, 0.4);
}

.feature-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(0, 200, 150, 0.1);
  color: #00c896;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.feature-item h6 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.feature-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* ---- Products ---- */
.product-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 51, 153, 0.03);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 51, 153, 0.08);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 36px rgba(0, 51, 153, 0.1);
  border-color: rgba(0, 51, 153, 0.15);
}

.product-img {
  height: 200px;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
}

.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.product-card:hover .product-card-img {
  transform: scale(1.05);
}

.product-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-body h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.product-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

/* ---- Services ---- */
.service-card {
  background: var(--bg-white);
  border: 1px solid rgba(0, 51, 153, 0.06);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: var(--transition);
  height: 100%;
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
}

.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.service-card-new {
  border: 1px solid rgba(0, 51, 153, 0.06);
}

.new-badge {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: var(--primary);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

.service-icon {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 10px rgba(0, 51, 153, 0.03);
}

.service-content {
  flex: 1;
}

.si-blue {
  background: #eff6ff;
  color: #2563eb;
}



.si-purple {
  background: #faf5ff;
  color: #9333ea;
}

.si-orange {
  background: #fff7ed;
  color: #ea580c;
}

.si-red {
  background: #fef2f2;
  color: #dc2626;
}

.si-teal,
.si-green {
  background: #f0fdf4;
  color: #16a34a;
}

.service-content h5 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.service-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

/* ---- Outsourcing ---- */
.outsource-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: var(--transition);
  height: 100%;
  border: 1px solid rgba(0, 51, 153, 0.06);
  text-align: center;
}

.outsource-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 51, 153, 0.1);
}

.outsource-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 1.25rem auto;
  box-shadow: 0 4px 12px rgba(0, 51, 153, 0.03);
}

.outsource-img-wrapper {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -1.25rem -1.25rem 1rem -1.25rem;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 51, 153, 0.05);
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
  overflow: hidden;
}

.outsource-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.oi-1 {
  background: #eff6ff;
  color: #2563eb;
}

.oi-2 {
  background: #f0fdf4;
  color: #16a34a;
}

.oi-3 {
  background: #fff7ed;
  color: #ea580c;
}

.oi-4 {
  background: #faf5ff;
  color: #9333ea;
}

.outsource-card h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-block;
  text-align: left;
}

.check-list li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 0.15rem 0;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  line-height: 1.3;
}

.check-list li i {
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ---- Why Choose Us ---- */
.why-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-list li {
  font-size: 0.98rem;
  color: var(--text-dark);
  font-weight: 600;
  padding: 0.75rem 0;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.why-list li i {
  color: var(--primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.why-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.why-img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0, 51, 153, 0.05);
  animation: floatWhyImage 3.5s ease-in-out infinite alternate;
}

@keyframes floatWhyImage {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 2.75rem 2.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
  min-height: 240px;
  box-shadow: 0 12px 36px rgba(0, 51, 153, 0.18);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h3 {
  color: #fff;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 800;
  margin-bottom: 0.85rem;
  line-height: 1.35;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.98rem;
  margin-bottom: 1.75rem;
}

.cta-content .btn-light {
  font-weight: 700;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
  color: var(--primary);
  border: none;
}

.cta-content .btn-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  background: #f8fafc;
}

.cta-bulb {
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.15);
  animation: bulbGlow 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes bulbGlow {

  0%,
  100% {
    color: rgba(255, 255, 255, 0.15);
  }

  50% {
    color: rgba(255, 220, 100, 0.45);
  }
}

/* ---- Contact Us Section ---- */
.contact-section {
  background: #f7f9fc;
}

.contact-info-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(0, 51, 153, 0.06);
  border: 1px solid #eaeaea;
}

.contact-info-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.75rem;
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.contact-info-list li:last-child {
  border-bottom: none;
}

.contact-info-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  background: #eef2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
  margin-top: 0.1rem;
}

.contact-info-body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-info-body strong {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
}

.contact-info-body span {
  font-size: 0.82rem;
  color: #666;
  line-height: 1.5;
}

.contact-map {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #eaeaea;
  margin-top: 0.5rem;
}

.contact-map iframe {
  display: block;
  border-radius: 12px;
}

/* Form Card */
.contact-form-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(0, 51, 153, 0.06);
  border: 1px solid #eaeaea;
}

.contact-form-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.75rem;
}

.contact-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #e5e9f0;
  border-radius: 10px;
  font-size: 0.88rem;
  font-family: var(--font);
  color: var(--text-dark);
  background: #fafbfd;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-input::placeholder {
  color: #adb5bd;
}

.contact-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 51, 153, 0.08);
  background: #fff;
}

.contact-textarea {
  resize: vertical;
  min-height: 130px;
}

.contact-submit-btn {
  padding: 0.8rem 2.5rem;
  font-size: 0.92rem;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* Footer CSS moved to css/footer.css */
/* Floating Action Buttons & Back to Top CSS moved to css/floating-buttons.css */

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
  .section-padding {
    padding: 35px 0;
  }

  .about-section {
    padding-top: 35px;
  }

  .hero-section {
    padding-top: 95px;
    padding-bottom: 30px;
    text-align: center;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-title br {
    display: none;
  }

  .stats-bar {
    position: relative;
    bottom: auto;
    margin-top: 3rem;
  }

  .hero-visual {
    margin-top: 2.5rem;
  }

  .fc-1 {
    top: 8%;
    left: 2%;
  }

  .fc-2 {
    top: -6%;
    left: 25%;
  }

  .fc-3 {
    top: 12%;
    right: 2%;
  }

  .fc-4 {
    bottom: 20%;
    left: 2%;
  }

  .fc-5 {
    bottom: 14%;
    right: 2%;
  }



  .cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 2.25rem 1.75rem;
  }

  .cta-bulb {
    font-size: 4rem;
  }

  .service-card {
    flex-direction: row;
  }


}

@media (max-width: 767.98px) {
  .hero-section {
    padding-top: 85px;
  }

  .hero-desc {
    font-size: 0.88rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .stat-item {
    padding: 0.75rem 0.5rem;
  }

  .stat-item strong {
    font-size: 1.15rem;
  }

  .about-img {
    height: 280px;
  }

  .header-line {
    max-width: 40px;
  }

  .section-heading {
    white-space: normal;
    text-align: center;
  }

  .service-card {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 575.98px) {
  /* Floating badges remain visible and scale responsively on mobile */

  .hero-visual {
    margin-top: 1.5rem;
  }

  .stats-bar-inner {
    padding: 1rem;
  }
}

/* ============================================
   Partners Section & Infinite Slider
   ============================================ */
.partners-section {
  background: var(--bg-white);
  padding: 40px 0;
  overflow: hidden;
}

/* Wrapper holds arrows + slider */
.partners-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.partners-slider-container {
  overflow: hidden;
  flex: 1;
  position: relative;
  padding: 0.75rem 0;
}

/* Fading gradient edges */
.partners-slider-container::before,
.partners-slider-container::after {
  background: linear-gradient(to right, var(--bg-white) 0%, rgba(255, 255, 255, 0) 100%);
  content: "";
  height: 100%;
  position: absolute;
  width: 80px;
  z-index: 2;
  top: 0;
  pointer-events: none;
}

.partners-slider-container::before {
  left: 0;
}

.partners-slider-container::after {
  right: 0;
  transform: rotateZ(180deg);
}

.partners-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: scroll-partners 30s linear infinite;
}

.partners-track.paused,
.partners-track:hover {
  animation-play-state: paused;
}

.partner-slide {
  height: 72px;
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0 24px;
}

.partner-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: none;
  opacity: 0.85;
  transition: var(--transition);
}

.partner-slide img:hover {
  opacity: 1;
  transform: scale(1.08);
}

/* Arrow Buttons */
.partners-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--border-color);
  background: var(--bg-white);
  color: var(--primary);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(0, 51, 153, 0.08);
  z-index: 3;
}

.partners-arrow:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 51, 153, 0.2);
}

.partners-arrow:active {
  transform: scale(0.95);
}

@keyframes scroll-partners {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Responsive adjustments for partners slider */
@media (max-width: 767.98px) {
  .partners-section {
    padding: 40px 0;
  }

  .partner-slide {
    width: 150px;
    padding: 0 16px;
    height: 54px;
  }

  .partners-arrow {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  .partners-slider-container::before,
  .partners-slider-container::after {
    width: 40px;
  }
}