:root {
  --primary: #0d6efd;
  --dark: #0f172a;
  --bg: #f8fafc;
  --soft: #eef4ff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: #1e293b;
  line-height: 1.7;
}

/* ================= GLOBAL SPACING FIX ================= */
section {
  padding: 80px 0;
}

.container {
  max-width: 1140px;
}

/* ================= NAVBAR ================= */
.site-header {
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.3rem;
}

.nav-link {
  color: #475569;
  margin-left: 1rem;
  font-weight: 500;
}

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

/* ================= HERO ================= */
.hero-section,
.page-hero {
  background: linear-gradient(135deg, #eef4ff, #ffffff);
  padding: 100px 0;
}

.hero-section h1,
.page-hero h1 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-section p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.hero-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.05);
}

/* ================= BADGE ================= */
.badge-soft-primary {
  background: rgba(13,110,253,0.1);
  color: var(--primary);
  padding: 8px 14px;
  border-radius: 50px;
  font-weight: 600;
}

/* ================= CARDS (GLOBAL UPGRADE) ================= */
.feature-box,
.info-card,
.step-card,
.testimonial-card,
.service-card,
.service-image {
  background: #ffffff;
  border-radius: 18px;
  padding: 30px;
  border: none;
  box-shadow: 0 10px 35px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}

.feature-box:hover,
.info-card:hover,
.step-card:hover,
.testimonial-card:hover,
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

/* ================= SERVICES ================= */
.services-preview .service-card {
  height: 100%;
}

.service-card h3 {
  margin-bottom: 15px;
}

/* ================= HOW IT WORKS ================= */
.step-card {
  text-align: center;
}

/* ================= TESTIMONIALS ================= */
.testimonial-card {
  font-style: italic;
}

/* ================= SECTION HEADINGS ================= */
h2 {
  font-weight: 700;
  margin-bottom: 15px;
}

.text-muted {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ================= CONVERSION BANNER ================= */
.conversion-banner {
  background: linear-gradient(135deg, #0d6efd, #1e3a8a);
  padding: 80px 0;
}

.conversion-banner h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

/* ================= BUTTONS ================= */
.btn-primary {
  background: var(--primary);
  border: none;
  border-radius: 50px;
  padding: 14px 28px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(13,110,253,0.25);
}

.btn-primary:hover {
  background: #0b5ed7;
  transform: translateY(-2px);
}

.btn-outline-primary {
  border-radius: 50px;
  padding: 14px 28px;
  border: 2px solid var(--primary);
}

/* ================= CONTACT ================= */
.contact-section .card {
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.05);
}

/* ================= FOOTER ================= */
.site-footer {
  background: #0f172a;
}

.footer-link {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}

.footer-link:hover {
  color: #ffffff;
}

/* ================= WHATSAPP FLOAT ================= */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1100;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: white;
  padding: 12px 18px;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.05);
}

/* ================= MOBILE FIXES ================= */
@media (max-width: 991px) {
  section {
    padding: 60px 0;
  }

  .hero-section h1 {
    font-size: 2.2rem;
  }

  .hero-card {
    margin-top: 20px;
  }
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 9999;
}

.hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
              url('images/ChatGPT Image Apr 23, 2026, 12_33_40 PM.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.modern-img {
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}