/* =========================
   GLOBAL STYLES
========================= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #0d6efd;
  --dark: #0b1c2d;
  --light: #f8f9fa;
  --gray: #6c757d;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #fff;
}

.section-title {
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}

/* =========================
   HERO SECTION
========================= */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: linear-gradient(
      rgba(11, 28, 45, 0.7),
      rgba(11, 28, 45, 0.7)
    ),
    url("https://images.unsplash.com/photo-1498050108023-c5249f4df085")
      center/cover no-repeat;
  color: #fff;
  text-align: center;
}

.hero-content {
  max-width: 750px;
}

.hero h1 {
  font-size: 3rem;
}

.hero p {
  font-size: 1.2rem;
  opacity: 0.95;
}

.hero .btn {
  border-radius: 50px;
  font-weight: 600;
}

/* =========================
   FEATURES
========================= */
.fa-3x {
  margin-bottom: 10px;
}

section.py-5 .col-md-4 {
  padding: 20px;
}

section.py-5 p {
  color: var(--gray);
}

/* =========================
   TEMPLATE CARDS
========================= */
.template-card {
  background: #fff;
  border-radius: 15px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.template-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
}

.template-card h5 {
  font-weight: 600;
}

.template-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* =========================
   PRICING
========================= */
.pricing-card {
  border-radius: 20px;
  border: none;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.pricing-card h5 {
  font-weight: 600;
}

.pricing-card h2 {
  font-weight: 700;
  margin: 15px 0;
}

.pricing-card p {
  color: var(--gray);
}

.pricing-card .btn {
  border-radius: 50px;
  font-weight: 600;
}

.pricing-card:hover {
  transform: translateY(-6px);
}

/* =========================
   TESTIMONIALS
========================= */
.testimonial-box {
  background: #fff;
  padding: 25px;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.testimonial-box p {
  font-style: italic;
  color: #444;
}

.testimonial-box strong {
  display: block;
  margin-top: 10px;
  color: var(--dark);
}

/* =========================
   CTA SECTION
========================= */
.cta {
  background: linear-gradient(135deg, var(--primary), #0047b3);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.cta h2 {
  font-size: 2.3rem;
}

.cta .btn {
  border-radius: 50px;
  font-weight: 600;
  padding: 12px 30px;
}

/* =========================
   FOOTER (if needed)
========================= */
footer {
  background: var(--dark);
  color: #bbb;
}

footer a {
  color: #bbb;
  text-decoration: none;
}

footer a:hover {
  color: #fff;
}

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

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

  .template-card img {
    height: 180px;
  }
}