/* Complete stylesheet with Bootstrap and custom styles */
:root {
  --primary: #fec63d;
  --secondary: #1da1a0;
  --accent: #c64946;
  --dark: #1a1f2e;
  --light: #f8f9fa;
}

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

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #1a1f2e;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

/* Header */
.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  /* margin-bottom: 20px !important; */
  /* padding-left: 20px;
  padding-right: 20px; */
  
  
}

.navbar-custom {
  background: transparent;
  backdrop-filter: blur(20px);
  border-radius: 30px;
  padding: 0.75rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 55px !important;

}

.logo {
  height: 36px;
}

.navbar-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

/* Sirf HEADER ke andar ke ghost button ko small kar do */
.header-fixed .btn-ghost {
  height: 36px;
  padding: 0 14px;
  font-size: 14px;
  border-radius: 30px;
}

/* Sirf HEADER ke andar ke primary button ko small kar do */
.header-fixed .btn-primary.btn-sm {
  height: 36px;      /* height kam */
  padding: 0 17px;   /* width kam */
  font-size: 14px;   /* text thoda chhota */
  border-radius: 30px;
}


.btn-ghost {
  background: transparent;
  border: none;
  color: #fdb017;
  padding: 0.5rem 1rem;
  transition: all 0.3s;
  font-size: 800;
}
.btn-ghost i{
  font-size: 800;
}

.btn-ghost:hover {
  color: #fdb017;
}

/* .btn-primary {
  background: #fdb017;
  color: #1a1f2e;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: #fdb017;
  color: #1a1f2e;

  transform: translateY(-2px);
} */
/* Style applied to your existing Bootstrap button */
.btn-primary {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px; /* spacing between text & spinner */
  height: 56px; /* h-14 */
  padding: 0 40px; /* px-10 */
  border-radius: 9999px; /* rounded-full */
  font-size: 1rem;
  font-weight: 600;
  background: #fdb017 !important; /* your primary color */
  color: #1a1f2e !important; 
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(253, 176, 23, 0.4);
}

/* Hover effect */
.btn-primary:hover {
  transform: scale(1.02);
  box-shadow: 0 0 80px -15px hsl(40 98% 54% / 0.6);
  background: #fdb017 !important;
  color: #1a1f2e !important;
}

/* Active click */
.btn-primary:active {
  transform: scale(0.98) !important;
  background: #fdb017 !important;
  color: #1a1f2e !important;
  border: none !important;
  box-shadow: none !important;
}

/* Focus outline */
.btn-primary:focus-visible {
  outline: 2px solid #fdb017;
  outline-offset: 3px;
}

/* Disabled state */
.btn-primary:disabled {
  opacity: 0.6;
  pointer-events: none;
}

/* Spinner alignment */
#submitSpinner {
  width: 1rem;
  height: 1rem;
}


/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 6rem;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
  /* padding-left:20px;
  padding-right:20px; */
}

.hero-background {
  position: absolute;
  inset: 0;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26, 31, 46, 0.95), rgba(26, 31, 46, 0.8), transparent);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}

.hero-glow-1 {
  top: 25%;
  right: 25%;
  width: 400px;
  height: 400px;
  background: rgba(254, 198, 61, 0.2);
}

.hero-glow-2 {
  bottom: 25%;
  right: 33%;
  width: 300px;
  height: 300px;
  background: rgba(29, 161, 160, 0.15);
}

.badge-custom {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  background: rgba(254, 198, 61, 0.2);
  border: 1px solid rgba(254, 198, 61, 0.3);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.badge-text {
  color: #fdb017;
  font-size: 0.875rem;
  font-weight: 600;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}

.text-primary {
  color: #fdb017 !important;
  
}

.hero-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  line-height: 1.6;
}

.btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  background: transparent;
  border-radius: 50px;
  font-weight: 700;
  
}

.btn-outline-light:hover {
  background: #fff;
  color: #1a1f2e;
  font-weight: 700;
  border-radius: 50px;
}

.text-light {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

.stats-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 30px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.stats-footer {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  /* color: #FFFFFFB3; */
}


/* Animations */
.animate-slide-up {
  animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-slide-up-delay {
  animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
  opacity: 0;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Sections */
.section-padding {
  padding: 6rem 0;
  /* padding-right:25px; */
  /* padding-left:30px; */
  /* margin-right:30px; */
}

.mesh-gradient {
  background: radial-gradient(at 40% 20%, rgba(254, 198, 61, 0.15) 0px, transparent 50%),
    radial-gradient(at 80% 0%, rgba(29, 161, 160, 0.1) 0px, transparent 50%),
    radial-gradient(at 0% 50%, rgba(198, 73, 70, 0.08) 0px, transparent 50%);
}

.section-header {
  max-width: 800px;
}

.section-tag {
  display: inline-block;
  font-size: 14px ;
  font-weight: 600;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.125rem;
  color: #6c757d;
}

/* Category Cards */
.category-card {
  position: relative;
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid #dee2e6;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.category-card:hover {
  border-color: rgba(254, 198, 61, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.category-icon {
  width: 56px;
  height: 56px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}


.category-icon i {
  font-size: 1.75rem;
}

.bg-primary-subtle {
  background: rgba(254, 198, 61, 0.1);
}

.bg-secondary-subtle {
  background: rgba(29, 161, 160, 0.1);
}

.bg-accent-subtle {
  background: rgba(198, 73, 70, 0.1);
}

.text-secondary {
  color: var(--secondary) !important;
}

.text-accent {
  color: var(--accent) !important;
}

.category-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.category-description {
  color: #6c757d;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.category-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a1f2e;
  text-decoration: none;
  transition: color 0.3s;
}

.category-link:hover {
  color: var(--primary);
}

.category-corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  border-bottom-left-radius: 100px;
  opacity: 0;
  transition: opacity 0.3s;
}

.category-card:hover .category-corner {
  opacity: 1;
}

/* Highlights Section */
.bg-decoration {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}

.bg-decoration-1 {
  top: 5rem;
  left: 2.5rem;
  width: 300px;
  height: 300px;
  background: rgba(254, 198, 61, 0.2);
}

.bg-decoration-2 {
  bottom: 5rem;
  right: 2.5rem;
  width: 400px;
  height: 400px;
  background: rgba(29, 161, 160, 0.2);
}

.highlight-card {
  background: #fff;
  border: 1px solid #dee2e6;
  border-radius: 1rem;
  padding: 1.25rem;
  text-align: center;
  transition: all 0.3s;
}

.highlight-card:hover {
  border-color: rgba(254, 198, 61, 0.5);
  box-shadow: 0 8px 24px rgba(254, 198, 61, 0.1);
  transform: translateY(-4px);
}

.highlight-icon {
  width: 56px;
  height: 56px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: transform 0.3s;
}

.highlight-card:hover .highlight-icon {
  transform: scale(1.1);
}

.highlight-icon i {
  font-size: 1.75rem;
  color: #fff;
}

.gradient-emerald {
  background: linear-gradient(135deg, #10b981, #059669);
  box-shadow: 0 8px 16px rgba(16, 185, 129, 0.3);
}

.gradient-blue {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  box-shadow: 0 8px 16px rgba(59, 130, 246, 0.3);
}

.gradient-amber {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  box-shadow: 0 8px 16px rgba(245, 158, 11, 0.3);
}

.gradient-purple {
  background: linear-gradient(135deg, #a855f7, #9333ea);
  box-shadow: 0 8px 16px rgba(168, 85, 247, 0.3);
}

.gradient-rose {
  background: linear-gradient(135deg, #f43f5e, #e11d48);
  box-shadow: 0 8px 16px rgba(244, 63, 94, 0.3);
}

.gradient-cyan {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  box-shadow: 0 8px 16px rgba(6, 182, 212, 0.3);
}

.highlight-title {
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.highlight-desc {
  font-size: 0.75rem;
  color: #6c757d;
  margin: 0;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #fdb017 100%);
  border-radius: 1.5rem;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}

.cta-decoration {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.cta-decoration-1 {
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  transform: translate(50%, -50%);
}

.cta-decoration-2 {
  bottom: 0;
  left: 0;
  width: 150px;
  height: 150px;
  transform: translate(-50%, 50%);
}

/* CTA BUTTONS — EXACT LOVABLE STYLE */

/* Black Filled Button */
.cta-banner .btn-light {
  background: #000 !important;   /* deep black */
  color: #fff !important;
  font-weight: 600;
  border-radius: 40px;
  padding: 14px 32px;
  font-size: 16px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0px 8px 30px rgba(0,0,0,0.25);
  transition: 0.3s ease;
}

.cta-banner .btn-light:hover {
  background: #1a1f2e !important;
  /* transform: translateY(-2px); */
}

/* CTA Button Arrow — Lovable Style */
.cta-banner .cta-arrow {
    font-weight: 700;
    font-size: 18px;
    display: inline-block;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

/* Hover par aage slide hoga — exactly like screenshot */
.cta-banner .btn-light:hover .cta-arrow {
    transform: translateX(5px);
}

/* Yellow Outline WhatsApp Button */
.cta-banner .btn-outline-dark {
  background: rgba(255,255,255,0.3);
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 40px;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s ease;
  backdrop-filter: blur(10px);
}

.cta-banner .btn-outline-dark:hover {
  background: #fff;
  /* transform: translateY(-2px); */
}

/* WhatsApp icon adjustment */
.cta-banner .btn-outline-dark i {
  font-size: 18px;
}


/* Benefits & Features */
.benefit-card {
  display: flex;
  align-items: start;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 0.75rem;
  background: rgba(108, 117, 125, 0.05);
}

.benefit-card i {
  font-size: 1.25rem;
  margin-top: 0.125rem;
}

.feature-card {
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid #dee2e6;
  background: #fff;
  transition: all 0.3s;
}

.feature-card:hover {
  border-color: rgba(254, 198, 61, 0.3);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(254, 198, 61, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: transform 0.3s;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-icon i {
  font-size: 1.5rem;
}

/* Device Cards */
.device-card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #dee2e6;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.device-card:hover {
  border-color: rgba(254, 198, 61, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.device-image {
  height: 180px;
  overflow: hidden;
  background: #f8f9fa;
  position: relative;
}

.device-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.device-card:hover .device-image img {
  transform: scale(1.1);
}

.device-content {
  padding: 1.25rem;
}

.device-series {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 0.25rem;
}

.device-name {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.device-specs {
  font-size: 0.875rem;
  color: #6c757d;
  margin-bottom: 1rem;
}

.device-cta {
  background: none;
  border: none;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a1f2e;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0;
  transition: color 0.3s;
}

.device-cta:hover {
  color: var(--primary);
}

/* Steps / Timeline */
.timeline-line {
  position: absolute;
  top: 4rem;
  left: 0;
  right: 0;
  height: 1px;
  background: #dee2e6;
}

.step-card {
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: #1a1f2e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 10;
}

.step-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step-description {
  font-size: 0.875rem;
  color: #6c757d;
  line-height: 1.6;
}

/* CTA Strip */
.cta-strip {
  background: #fdb017;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  /* padding-right: 10px;
  padding-left: 20px; */
}

.cta-strip-decoration {
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: rgba(198, 73, 70, 0.3);
  border-radius: 50%;
  filter: blur(100px);
}

/* Forms */
.form-control,
.form-control-lg {
  border-radius: 0.75rem;
  border: 1px solid #dee2e6;
  padding: 0.75rem 1rem;
  font-size: 14px;
}

.form-control:focus,
.form-control-lg:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(254, 198, 61, 0.15);
}

.form-label {
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 14px;
}

/* Trust Card */
.trust-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid #dee2e6;
  margin-top: 70px;
}

.trust-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(254, 198, 61, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-icon i {
  font-size: 1.5rem;
  color: #fdb017;
}

/* Footer */

footer.bg-dark {
  background: #0d1117 !important; /* deep navy */
  position: relative;
  
}

footer.bg-dark::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 80px;
  background: radial-gradient(ellipse at top, rgba(255,255,255,0.25), transparent 70%);
  pointer-events: none;
}

.footer-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: 0.3s;
}

.footer-link:hover {
  color: #fdb017; /* Bootstrap primary color */
}
footer h5 {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 1.2rem;
  font-size:16px;
}
footer p {
  color: rgba(255, 255, 255, 0.6) !important;
  line-height: 1.8;
}

footer .bi.bi-telephone,
footer .bi.bi-envelope,
footer .bi.bi-geo-alt {
    color: #fdb017 !important;
    font-size: 1.1rem;
}

footer .small.text-white-50 {
  color: rgba(255, 255, 255, 0.4) !important;
}

footer .d-flex.gap-4 a {
  color: rgba(255, 255, 255, 0.5);
}

footer .d-flex.gap-4 a:hover {
  color: #fdb017 !important;
}

footer ul.list-unstyled li {
  margin-bottom: 14px;
  line-height: 1.4;
  font-size:14px;
}

/* footer .container-fluid {
  padding-left: 40px !important;
  padding-right: 50px !important;
} */

footer .col-lg-3 p.small {
  
    line-height: 1.65; /* leading-relaxed */
    max-width: 260px; /* screenshot jaisa tight column */
    margin-bottom: 1.5rem; /* spacing same as image */
}



/* WhatsApp Button */
.whatsapp-button {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  transition: all 0.3s;
  z-index: 1000;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
  position: absolute;
  right: 100%;
  margin-right: 0.75rem;
  padding: 0.5rem 0.75rem;
  background: #fff;
  color: #1a1f2e;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid #dee2e6;
}

.whatsapp-button:hover .whatsapp-tooltip {
  opacity: 1;
}

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

  .hero-section {
    padding-top: 5rem;
  }

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

  .stats-card {
    margin-top: 2rem;
  }
}

/* Button Variants */
.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

.btn-dark {
  background: #1a1f2e;
  color: #fff;
  border: none;
  border-radius: 35px;
}

.btn-dark:hover {
  background: #2a3142;
  color: #fff;
}

.btn-outline-dark {
  border: 1px solid #fff;
  color: #1a1f2e;
  background: transparent;
}

.btn-outline-dark:hover {
  background: #fff;
  color: #1a1f2e;


}


/* use cases */
.usecase-sec {
  padding: 100px 0;
  background: linear-gradient(135deg, #f6f9fc, #fafcff);
}

.usecase-sec .usecase-container {
  width: 90%;
  max-width: 1250px;
  margin: auto;
  display: flex;
  gap: 40px;
}

@media (min-width: 992px) {
  .usecase-sec .usecase-container {
      grid-template-columns: 1fr 1fr;
      align-items: center;
  }
}

/* GRID LEFT */
.usecase-sec .usecase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

@media (max-width: 576px) {
  .usecase-sec .usecase-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      
  }
}

/* CARD */
.usecase-sec .usecase-card {
  background: #ffffff;
  border: 1px solid #dadada;
  border-radius: 30px;
  padding: 28px 20px;
  text-align: center;
  transition: 0.3s ease;
  line-height: 15px;
  width: 100%;
  max-width: 12rem;
}

.usecase-sec .usecase-card:hover {
  border-color: #009CA6;
}

/* ICON */
.usecase-sec .uc-icon {
  margin-bottom: 12px;
  
}

/* TEXT INSIDE CARD */
.usecase-sec .uc-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #222;
}

.usecase-sec .uc-sub {
  font-size: 12px;
  color: #666;
}

/* TEXT SIDE */
.usecase-sec .usecase-tag {
  color: #009CA6;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.usecase-sec .usecase-heading {
  font-size: 38px;
  font-weight: 800;
  margin: 12px 0 16px;
}

.usecase-sec .usecase-desc {
  font-size: 17px;
  color: #555;
  margin-bottom: 12px;
  line-height: 1.6;
}

/* indutries */

.industries-sec {
  padding: 80px 0;
  background: #ffffff;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.industries-sec .ind-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.industries-sec .ind-title h2 {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
}

/* Wrapper */
.industries-sec .ind-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

/* Pills */
.industries-sec .ind-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  background: #fafafa;
  border: 1px solid #dcdcdc;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.25s;
}

.industries-sec .ind-item:hover {
  border-color: #009CA6;
}

/* Icons */
.industries-sec .ind-item svg {
  width: 22px;
  height: 22px;
  display: block;
  overflow: visible;
}

/* Text */
.industries-sec .ind-item span {
  font-size: 14px;
  font-weight: 500;
  color: #222;
}


/* testimonials */
.client-stories-sec {
  padding: 90px 0;
  background: #fff;
  padding-left: 20px;
  /* padding-right: 12px; */
}

/* .client-stories-sec .cs-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
} */

/* Heading */
.client-stories-sec .cs-heading {
  text-align: center;
  margin-bottom: 40px;
}

.client-stories-sec .cs-tag {
  font-size: 14px;
  color: #009CA6;
  font-weight: 600;
  letter-spacing: 1px;
}

.client-stories-sec .cs-title {
  font-size: 34px;
  font-weight: 800;
  color: #222;
}

/* Grid */
.client-stories-sec .cs-grid {
  display: grid;
  gap: 25px;
  padding-right: 1rem;
}

@media (min-width: 768px) {
  .client-stories-sec .cs-grid {
      grid-template-columns: repeat(3, 1fr);
  }
}


/* Cards */
.client-stories-sec .cs-card {
  background: #fafafa;
  border: 1px solid #ddd;
  padding: 32px;
  border-radius: 18px;
}

/* Quote Icon */
.client-stories-sec .cs-quote {
  width: 35px;
  height: 35px;
  stroke: #fdb017;
  opacity: 0.25;
  margin-bottom: 15px;
}

/* Stars */
.client-stories-sec .cs-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
}

.client-stories-sec .cs-star {
  width: 18px;
  height: 18px;
  fill: #fdb017;
  stroke: #fdb017;
}

/* Text */
.client-stories-sec .cs-text {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 20px;
}

/* Footer */
.client-stories-sec .cs-footer {
  border-top: 1px solid #ddd;
  padding-top: 14px;
}

.client-stories-sec .cs-name {
  font-weight: 700;
  color: #222;
}

.client-stories-sec .cs-role {
  font-size: 14px;
  color: #666;
}


footer .d-inline-flex.align-items-center.gap-2.px-3.py-2.rounded-pill.border.border-secondary {
  background: rgba(0, 120, 150, 0.12); /* teal-ish like screenshot */
  border-color: rgba(0, 120, 150, 0.25) !important;
  border-radius: 9999px;
  padding: 8px 14px;
}

footer .d-inline-flex i {
  color: #3ecf8e !important; /* teal green icon */
}

footer .d-inline-flex span {
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  font-size:12px;
}



.whatsapp-btn {
  background: rgba(255,255,255,0.3); /* light transparent white */
  color: #000;
  border: 1px solid rgba(0,0,0,0.2);
  padding: 14px 28px; /* same as Tailwind h-14 px-10 */
  border-radius: 50px; /* rounded-pill */
  font-size: 1rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  transition: 0.3s ease;
}

.whatsapp-btn:hover {
  background: #fff;
  border-color: #fff;
  color: #000;
}

