
/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #f5f7fb;
  color: #222;
  line-height: 1.6;
}

/* ================= NAVBAR ================= */
.navbar {
  background: #0b5ed7;
  padding: 18px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.logo img {
  height: 100px;
  width: auto;
  object-fit: contain;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  align-items: center;
}

.nav-links a {
  color: #fff;
  margin-left: 22px;
  text-decoration: none;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.4px;
  padding: 10px 18px;
  border-radius: 10px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

/* ACTIVE PAGE */
.nav-links a.active {
  background: rgba(255, 255, 255, 0.3);
}

/* ================= HERO ================= */
.hero {
  background: linear-gradient(135deg, #0b5ed7, #6610f2);
  padding: 110px 20px;
  color: #fff;
}

.hero-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.hero-left {
  flex: 1;
}

.hero-left h1 {
  font-size: 46px;
  margin-bottom: 18px;
  line-height: 1.25;
}

.hero-sub {
  font-size: 18px;
  margin-bottom: 28px;
  opacity: 0.95;
}

.hero-points {
  list-style: none;
  margin-bottom: 32px;
}

.hero-points li {
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 600;
}

/* BUTTON */
.primary-btn {
  background: #ffc107;
  color: #000;
  padding: 14px 34px;
  font-size: 16px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* RIGHT IMAGE */
.hero-right {
  flex: 1;
  text-align: center;
}

.hero-right img {
  max-width: 440px;
  width: 100%;
}

/* ================= SERVICES ================= */
.services {
  padding: 80px 20px;
  text-align: center;
}

.services h2 {
  font-size: 34px;
  margin-bottom: 40px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
}

.card {
  background: #fff;
  padding: 28px;
  border-radius: 16px;
  font-weight: 600;
  color: #222;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

/* ================= SERVICE DETAIL PAGE ================= */
.service-page {
  max-width: 900px;
  margin: 130px auto 80px;   /* improved spacing */
  padding: 20px;
  text-align: center;
}

/* SERVICE IMAGE */
.service-image img {
  width: 100%;
  max-width: 520px;          /* ⬅ bigger & better */
  margin: 0 auto 45px;
  display: block;
  border-radius: 18px;
  box-shadow: 0 14px 35px rgba(0,0,0,0.18);
}

.service-page h2 {
  font-size: 28px;
  margin-bottom: 30px;
  font-weight: 700;
}

/* CUSTOM PACKAGE BOX */
.package-box {
  max-width: 420px;
  margin: 18px auto;
  text-align: left;
}

.package-box label {
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.package-box input {
  width: 100%;
  padding: 12px 14px;
  font-size: 16px;
  border-radius: 10px;
  border: 1px solid #ccc;
  outline: none;
}

/* INPUT FOCUS EFFECT */
.package-box input:focus {
  border-color: #0b5ed7;
  box-shadow: 0 0 0 2px rgba(11,94,215,0.15);
}

.full-btn {
  width: 100%;
  max-width: 420px;
  margin-top: 30px;
}

/* ================= HOW IT WORKS ================= */
.how {
  background: #fff;
  padding: 80px 20px;
  text-align: center;
}

.how h2 {
  font-size: 34px;
  margin-bottom: 40px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.step {
  background: #f1f4ff;
  padding: 24px;
  border-radius: 14px;
  font-weight: 600;
}

/* ================= PLANS ================= */
.plans {
  background: #eef1ff;
  padding: 80px 20px;
  text-align: center;
}

.plans h2 {
  font-size: 34px;
  margin-bottom: 40px;
}

.plan-box {
  background: #fff;
  margin: 22px auto;
  max-width: 440px;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* ================= CONTACT ================= */
.contact {
  background: linear-gradient(135deg, #6610f2, #0b5ed7);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.contact h2 {
  font-size: 34px;
  margin-bottom: 12px;
}

.contact p {
  font-size: 17px;
  margin-bottom: 26px;
}

/* ================= FOOTER ================= */

  .site-footer {
  background: linear-gradient(135deg, #0a3cff, #1e6bff);
  color: #fff;
  padding: 50px 0 20px;
}

.footer-container {
  width: 90%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-col h3,
.footer-col h4 {
  margin-bottom: 12px;
  color: #fff;
}

.footer-col p,
.footer-col ul li {
  font-size: 14px;
  color: #e6e6e6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-social a {
  margin-right: 12px;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
}

.footer-social a:hover {
  opacity: 0.8;
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.3);
  text-align: center;
  font-size: 13px;
  color: #fff;
}



/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-left h1 {
    font-size: 34px;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 16px;
    padding: 16px 20px;
  }

  .logo img {
    height: 80px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-links a {
    margin: 6px 10px;
    font-size: 15px;
  }

  .hero-left h1 {
    font-size: 28px;
  }

  .hero-sub {
    font-size: 16px;
  }

  /* Mobile service image fix */
  .service-image img {
    max-width: 100%;
  }
}
/* ================= SERVICE PAGE – PLATFORM BUDGET (ONLY ADDITION) ================= */

/* Platform Budget Box */
.service-page .budget-box {
  max-width: 420px;
  margin: 22px auto;
  padding: 18px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.12);
}

/* Platform Row */
.service-page .platform-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

/* Platform Logo (FB / Insta) */
.service-page .platform-logo {
  width: 52px;              /* ✅ controlled size */
  height: 52px;
  object-fit: contain;
  background: transparent;  /* ✅ removes ugly bg */
}

/* Budget Control */
.service-page .budget-control {
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-page .budget-control button {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: none;
  background: #0b5ed7;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

.service-page .budget-control input {
  width: 90px;
  padding: 8px;
  font-size: 15px;
  text-align: center;
  border-radius: 8px;
  border: 1px solid #ccc;
}

/* Responsive Fix */
@media (max-width: 768px) {
  .service-page .platform-row {
    flex-direction: column;
  }

  .service-page .platform-logo {
    width: 48px;
    height: 48px;
  }

  .service-page .budget-control input {
    width: 100%;
  }
}
/* ===============================
   BRANDING PAGE – ONLY ADDITION
   =============================== */

.branding-bg {
  background: #eaf2ff;
  padding: 40px 20px;
}

/* Left aligned layout */
.branding-bg {
  text-align: left;
}

/* Estimate box */
.estimate-box {
  max-width: 420px;
  margin: 28px 0;
  padding: 22px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.12);
}

.estimate-box h3 {
  margin-bottom: 14px;
  color: #0b5ed7;
}

/* Help box */
.help-box {
  max-width: 420px;
  margin: 22px 0;
  padding: 18px;
  background: #dbe9ff;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.help-box h4 {
  font-size: 15px;
}

.help-box p {
  font-size: 13px;
}

.help-btn {
  background: #0b5ed7;
  color: #fff;
  padding: 10px 16px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

/* Mobile */
@media (max-width: 768px) {
  .branding-bg {
    text-align: center;
  }

  .estimate-box,
  .help-box {
    margin-left: auto;
    margin-right: auto;
  }

  .help-box {
    flex-direction: column;
    gap: 10px;
  }
}

/* =========================
   BRANDING PAGE FINAL FIX
   ========================= */

/* Service page left alignment */
.service-page.branding-bg {
  text-align: left;
}

/* Heading same color as navbar/logo */
.service-page.branding-bg h2 {
  color: #0b5ed7;
}

/* Budget boxes left aligned */
.service-page.branding-bg .budget-box {
  margin-left: 0;
}

/* Campaign days input left */
.service-page.branding-bg .package-box {
  margin-left: 0;
}

/* Estimated Result box left aligned */
.estimate-box {
  margin-left: 0;
  border-left: 6px solid #0b5ed7;
}

/* Estimated Result heading color */
.estimate-box h3 {
  color: #0b5ed7;
}

/* Text spacing */
.estimate-box p {
  margin-bottom: 8px;
  font-size: 15px;
}

/* Help box left + same theme color */
.help-box {
  margin-left: 0;
  border-left: 6px solid #0b5ed7;
}

/* Mobile view – keep center */
@media (max-width: 768px) {
  .service-page.branding-bg {
    text-align: center;
  }

  .estimate-box,
  .help-box,
  .package-box,
  .budget-box {
    margin-left: auto;
    margin-right: auto;
  }
}

/* ======================================
   COMMON SERVICE PAGE LAYOUT (ALL PAGES)
====================================== */

/* Background for all service pages */
.service-page {
  background: linear-gradient(180deg, #e6efff, #f5f9ff);
  border-radius: 24px;
  padding: 45px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 55px;
  align-items: flex-start;
}

/* Service Image */
.service-image img {
  max-width: 100%;
  margin: 0;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
}

/* Headings left aligned */
.service-page h2 {
  text-align: left;
  color: #0b5ed7;
  font-size: 30px;
}

/* Budget boxes alignment */
.service-page .budget-box,
.service-page .package-box {
  margin-left: 0;
}

/* Estimated Result Box */
.estimate-box {
  margin-top: 32px;
  background: #ffffff;
  padding: 26px;
  border-radius: 18px;
  border-left: 6px solid #0b5ed7;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.estimate-box h3 {
  color: #0b5ed7;
  margin-bottom: 14px;
  font-size: 20px;
}

.estimate-box p {
  font-size: 15px;
  margin-bottom: 8px;
  font-weight: 600;
}

/* Button spacing */
.service-page .full-btn {
  margin-top: 35px;
}

/* ======================================
   RESPONSIVE (MOBILE / TAB)
====================================== */
@media (max-width: 900px) {
  .service-page {
    grid-template-columns: 1fr;
    padding: 26px;
    text-align: center;
  }

  .service-page h2 {
    text-align: center;
  }

  .estimate-box {
    text-align: left;
  }
}

/* ======================================
   MOBILE VIEW FIX (SERVICE PAGES ONLY)
====================================== */
@media (max-width: 768px) {

  /* Reduce outer spacing */
  .service-page {
    padding: 18px;
    gap: 22px;
    border-radius: 16px;
  }

  /* Image smaller & centered */
  .service-image img {
    max-width: 260px;
    margin: 0 auto 20px;
  }

  /* Heading center & smaller */
  .service-page h2 {
    text-align: center;
    font-size: 22px;
    margin-bottom: 18px;
  }

  /* Budget box compact */
  .service-page .budget-box {
    padding: 14px;
    margin: 12px 0;
  }

  /* Platform row compact */
  .service-page .platform-row {
    flex-direction: row;
    justify-content: space-between;
  }

  .service-page .platform-logo {
    width: 40px;
    height: 40px;
  }

  /* Budget input smaller */
  .service-page .budget-control input {
    width: 80px;
    font-size: 14px;
  }

  /* Days input */
  .package-box input {
    padding: 10px;
    font-size: 14px;
  }

  /* Estimated result full width & compact */
  .estimate-box {
    margin-top: 22px;
    padding: 18px;
    font-size: 14px;
  }

  .estimate-box h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  /* Help box full width */
  .help-box {
    width: 100%;
    margin-top: 20px;
    padding: 16px;
  }

  /* Next button fixed look */
  .service-page .full-btn {
    margin-top: 26px;
    font-size: 15px;
    padding: 13px;
  }
}

/* ===============================
   HEADER BOTTOM BACKGROUND FIX
   (NO layout change – ONLY color)
================================ */

/* Page background */
body {
  background-color: #f5f7fb;
}

/* Fill color just below navbar */
.navbar + * {
  background-color: #e9f1ff;
  padding-top: 30px;
}

/* =====================================
   HEADER KE NICHE BACKGROUND COLOR FIX
   (NO LAYOUT CHANGE – ONLY COLOR)
===================================== */

/* Remove default gap */
body {
  margin: 0;
  background-color: #f5f7fb;
}

/* Color strip below navbar */
.navbar {
  position: relative;
  z-index: 10;
}

.service-page {
  background: linear-gradient(
    to bottom,
    #e9f1ff 0%,
    #e9f1ff 120px,
    transparent 120px
  );
  padding-top: 40px;
}

/* ================= FIX HEADER GAP BACKGROUND ================= */

/* Header ke niche dark blue continuation */
body::before {
  content: "";
  position: absolute;
  top: 100px;              /* navbar height ke baad */
  left: 0;
  width: 100%;
  height: 160px;           /* gap cover karega */
  background: #0b5ed7;     /* SAME header blue */
  z-index: -1;
}

/* Safety: body position */
body {
  position: relative;
}

/* ===== LEAD GENERATION – SAME AS BRANDING ===== */

.lead-bg {
  background: #0d5bd8;
  padding: 40px 0;
}

.service-wrapper {
  max-width: 1200px;
  margin: auto;
  background: #f5f7fb;
  border-radius: 30px;
  padding: 60px;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 60px;
}

/* IMAGE */
.service-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* CONTENT */
.service-content h2 {
  color: #0d5bd8;
  margin-bottom: 30px;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .service-wrapper {
    grid-template-columns: 1fr;
    padding: 30px 20px;
  }

  .service-content {
    text-align: center;
  }
}

/* ===== REMOVE EXTRA BLUE BAR BELOW HEADER (LEAD GEN ONLY) ===== */

.service-page {
  margin-top: 0 !important;
}

/* kill extra background strip effect */
.service-page::before {
  display: none !important;
}

/* ensure only ONE blue area (navbar) */
body {
  background-color: #f5f7fb;
}

.estimate-box {
  background: #ffffff;
  padding: 25px;
  border-radius: 16px;
  margin-top: 30px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  position: relative;
}

.estimate-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: #0d6efd;
  border-radius: 16px 0 0 16px;
}

.estimate-box h3 {
  margin-bottom: 15px;
  color: #0d6efd;
}

.total-amount {
  margin-top: 15px;
  font-size: 16px;
  font-weight: 600;
}

/* ===== ESTIMATED RESULT BOX ===== */
.estimate-box {
  background: #ffffff;
  border-radius: 14px;
  padding: 20px 24px;
  margin-top: 30px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  max-width: 420px;
}

.estimate-box h3 {
  color: #0d5bd7;
  margin-bottom: 12px;
}

.estimate-box p {
  margin: 6px 0;
  font-size: 15px;
  color: #333;
}


/* ===== HELP BOX ===== */
.help-box {
  background: #eaf1ff;
  border-radius: 14px;
  padding: 18px 22px;
  margin: 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 520px;
}

.help-box h4 {
  margin: 0;
  font-size: 16px;
  color: #111;
}

.help-box p {
  margin: 4px 0 0;
  font-size: 14px;
  color: #555;
}

.help-btn {
  background: #0d5bd7;
  color: #fff;
  padding: 10px 16px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
}

/* ===== ESTIMATED RESULT BOX ===== */
.estimate-box {
  background: #ffffff;
  border-radius: 14px;
  padding: 20px;
  margin: 30px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  max-width: 420px;
}

.estimate-box h3 {
  margin-bottom: 10px;
  color: #0b5ed7;
}

.estimate-box p {
  margin: 6px 0;
  font-size: 15px;
}

/* ===== HELP BOX ===== */
.help-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #eaf2ff;
  border-radius: 14px;
  padding: 18px 22px;
  margin: 30px 0;
  max-width: 600px;
}

.help-box h4 {
  margin: 0;
  font-size: 16px;
}

.help-box p {
  margin: 4px 0 0;
  font-size: 14px;
}

.help-btn {
  background: #0b5ed7;
  color: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

.help-btn:hover {
  background: #084298;
}

/* =========================
   FIX GAP ABOVE HELP BOX
========================= */
.help-box {
  margin-top: 20px !important;   /* pehle bahut zyada tha */
}

/* Estimated result ke niche gap kam */
.estimate-box {
  margin-bottom: 20px !important;
}

/* Campaign days ke niche extra space remove */
.package-box {
  margin-bottom: 16px !important;
}

/* Overall service page vertical spacing tight */
.service-page {
  row-gap: 20px;
}

/* ======================================
   GLOBAL SERVICE PAGE SPACING RESET
   (Branding, Lead Gen, Meta, WhatsApp)
====================================== */

/* Main service container */
.service-page {
  padding-top: 30px !important;
  padding-bottom: 40px !important;
  row-gap: 18px !important;
}

/* Service image spacing */
.service-image {
  margin-bottom: 20px !important;
}

/* Page heading */
.service-page h2 {
  margin: 16px 0 20px !important;
}

/* Budget cards (FB / Insta) */
.budget-box {
  margin: 12px 0 !important;
}

/* Campaign days box */
.package-box {
  margin: 16px 0 !important;
}

/* Estimated result card */
.estimate-box {
  margin: 16px 0 !important;
  padding: 18px !important;
}

/* Help / Call box */
.help-box {
  margin: 18px 0 !important;
  padding: 16px 18px !important;
}

/* Next button */
.primary-btn,
.full-btn {
  margin-top: 20px !important;
}

/* Remove unnecessary large gaps */
.service-page > * {
  max-width: 100%;
}

/* Mobile spacing tighter */
@media (max-width: 768px) {
  .service-page {
    row-gap: 14px !important;
    padding-top: 20px !important;
  }

  .help-box,
  .estimate-box {
    margin: 12px 0 !important;
  }
}

/* ===============================
   CHOOSE DIGITAL PACKAGE
================================ */
.choose-package {
  padding: 80px 20px;
  background: #f6f8ff;
  text-align: center;
}

.choose-package h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: auto;
}

.package-card {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  text-decoration: none;
  color: #000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.package-card h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

.package-stats {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.package-stats small {
  display: block;
  font-size: 12px;
  color: #777;
}

.package-stats b {
  font-size: 18px;
}

.platforms {
  font-size: 14px;
  color: #555;
  margin: 12px 0;
}

.starting {
  font-size: 15px;
  margin-bottom: 18px;
}

.view-btn {
  font-weight: 600;
  color: #2563eb;
}

/* ================================
   DIGITAL PACKAGE SECTION
================================ */

.plans {
  background: #f5f7ff;
  padding: 60px 20px;
}

.plans h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}

/* GRID */
.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: auto;
}

/* BOX */
.package-box {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.package-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(0,0,0,0.12);
}

.package-box h3 {
  font-size: 22px;
  margin-bottom: 18px;
  color: #111;
}

/* METRICS (WhatsApp / Leads / Reach) */
.package-metrics {
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
}

.package-metrics div {
  background: #f1f4ff;
  border-radius: 12px;
  padding: 12px;
  width: 48%;
  text-align: center;
}

.package-metrics small {
  display: block;
  font-size: 12px;
  color: #555;
}

.package-metrics strong {
  font-size: 18px;
  color: #000;
}

/* PLATFORMS */
.package-platforms {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 15px 0;
}

.package-platforms span {
  font-size: 14px;
  color: #444;
}

/* 🔥 LOGO FIX (NO BACKGROUND) */
.package-platforms img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* START PRICE */
.start-price {
  font-weight: 600;
  margin-top: 10px;
  color: #222;
}

/* VIEW BUTTON */
.view-btn {
  display: inline-block;
  margin-top: 15px;
  font-weight: 600;
  color: #2563eb;
}

/* MOBILE */
@media (max-width: 600px) {
  .plans h2 {
    font-size: 26px;
  }

  .package-box {
    padding: 20px;
  }
}

/* PACKAGE SECTION */ 
.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.package-box {
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.package-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.package-metrics {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
}

.package-metrics small {
  font-size: 12px;
  color: #777;
}

.package-metrics strong {
  font-size: 20px;
  display: block;
}

.package-platforms {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
}

.package-platforms img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.start-price {
  font-weight: 600;
  margin-top: 8px;
}

.view-btn {
  color: #2563eb;
  font-weight: 600;
  margin-top: 6px;
  display: inline-block;
}


/* =================================================
   LEAD PLANS – ONLY REQUIRED FIXES (NO OTHER CHANGE)
   ================================================= */

/* 1️⃣ LEADS / REACH – VERTICAL LAYOUT */
.package-metrics {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px;
}

.package-metrics div {
  width: 100% !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* 2️⃣ PLATFORM LOGO – REMOVE BACKGROUND + FIX SIZE */
.package-platforms img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* 3️⃣ 3 PLANS – VERTICAL STACK (APP STYLE) */
.package-grid {
  display: flex !important;
  flex-direction: column !important;
  gap: 20px;
  align-items: center;
}

/* =========================================
   LEAD PLANS PAGE – FINAL FIX (ONLY CSS)
   ========================================= */

/* 1️⃣ FORCE LEADS / REACH TO VERTICAL */
.plans .package-metrics {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px;
}

.plans .package-metrics div {
  width: 100% !important;
  display: flex !important;
  justify-content: space-between;
  align-items: center;
}

/* 2️⃣ REMOVE GOOGLE ICON COMPLETELY */
.plans .package-platforms img[src*="google"],
.plans .package-platforms img[alt*="Google"] {
  display: none !important;
}

/* 3️⃣ FIX FB + INSTA ICON SIZE & NO BACKGROUND */
.plans .package-platforms img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* 4️⃣ FORCE 3 PLANS VERTICAL (APP STYLE) */
.plans .package-grid {
  display: flex !important;
  flex-direction: column !important;
  gap: 22px;
  align-items: center;
}

/* 5️⃣ CARD WIDTH CONSISTENT (MOBILE LOOK) */
.plans .package-box {
  width: 100%;
  max-width: 420px;
}

/* ===============================
   FIX INDEX PAGE (DO NOT TOUCH)
================================ */

/* Index page = boxes side by side */
#plans .package-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
}

/* ===============================
   INDEX PAGE FINAL FIX (ONLY)
   DO NOT AFFECT OTHER PAGES
================================ */

/* Fix plans section background bleed */
#plans {
  background: #eef1ff;
  padding-bottom: 80px;
  margin-bottom: 0;
}

/* Ensure plans grid ends cleanly */
#plans .package-grid {
  margin-bottom: 0;
}

/* Remove extra gradient / blue strip below plans */
#plans + section,
#plans + footer {
  margin-top: 0 !important;
}

/* Safety: body overflow fix */
body {
  overflow-x: hidden;
}

/* ===============================
   INDEX PAGE – CARD GAP FIX ONLY
================================ */

/* Ensure proper professional spacing between cards */
#plans .package-grid {
  gap: 40px !important;   /* 👈 clean professional gap */
}

/* Make sure cards don’t touch visually */
#plans .package-box {
  margin: 0 !important;
}


/* =====================================
   INDEX PAGE ONLY – FINAL FIX
   (Card gap + FB/INSTA logo size)
===================================== */

/* 1️⃣ Proper professional gap between the two cards */
#plans .package-grid {
  display: flex;
  justify-content: center;
  gap: 56px !important;   /* 👈 balanced & premium */
}

/* 2️⃣ Card width stable (no stretching) */
#plans .package-box {
  max-width: 460px;
}

/* 3️⃣ Increase FB & Insta logo size (index only) */
#plans .package-platforms img {
  width: 34px;     /* 👈 increased */
  height: 34px;
  object-fit: contain;
  background: transparent !important;
  box-shadow: none !important;
}

/* 4️⃣ Make sure ONLY FB & Insta show */
#plans .package-platforms img[src*="google"] {
  display: none !important;
}

/* 5️⃣ Mobile view – stack cleanly */
@media (max-width: 768px) {
  #plans .package-grid {
    flex-direction: column;
    gap: 26px !important;
  }
}

/* Make full card clickable */
.package-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.package-link .package-card {
  cursor: pointer;
}

/* =============================
   LEAD PLANS – 3 COLUMN FIX
============================= */

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 plans side by side */
  gap: 32px; /* professional gap */
  max-width: 1100px;
  margin: 0 auto;
}

/* Plan card look */
.plan-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}

.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* Platform logos size fix */
.plan-card .platforms img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  margin-right: 8px;
}

/* Button full width */
.plan-card .btn {
  width: 100%;
  margin-top: 18px;
  padding: 14px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
}

/* =============================
   RESPONSIVE
============================= */
@media (max-width: 992px) {
  .plan-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .plan-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== SUBTITLE HIGHLIGHT ===== */
.subtitle.highlight{
  background: linear-gradient(135deg, #e9f1ff, #f4f8ff);
  border-left: 5px solid #0b5ed7;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 15px;
  color: #222;
  line-height: 1.5;
  margin-bottom: 22px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

/* Facebook & Instagram highlight */
.subtitle.highlight span{
  color:#0b5ed7;
  font-weight:700;
}

/* =========================
   LOGOUT BUTTON – FIXED UI
========================= */

.logout-wrapper {
  margin-left: 18px;
  display: flex;
  align-items: center;
}

.logout-btn {
  background: #ffffff;
  color: #0b5ed7;
  border: 2px solid #0b5ed7;
  padding: 6px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.logout-btn span {
  display: inline-block;
}

.logout-btn:hover {
  background: #0b5ed7;
  color: #ffffff;
}

/* Mobile friendly */
@media (max-width: 768px) {
  .logout-wrapper {
    margin-top: 10px;
  }

  .logout-btn {
    width: 100%;
    text-align: center;
  }
}
/* TRIAL ADS HIGHLIGHT */
.trial-box{
  border:2px solid #ff9800;
  background:#fff7e6;
  position:relative;
}

.trial-badge{
  position:absolute;
  top:-12px;
  left:20px;
  background:#ff9800;
  color:#fff;
  padding:4px 10px;
  font-size:12px;
  font-weight:600;
  border-radius:6px;
}

/* 🔥 TRIAL ADS SPECIAL STYLING */
.trial-box{
  border:2px solid #ff6a00;
  position:relative;
  background:#fff7f0;
}

/* TOP BADGE */
.trial-badge{
  position:absolute;
  top:-12px;
  right:14px;
  background:#ff6a00;
  color:#fff;
  padding:4px 10px;
  font-size:12px;
  font-weight:700;
  border-radius:20px;
}

/* PRICE STYLING */
.trial-price{
  margin:14px 0;
}

.old-price{
  text-decoration:line-through;
  color:#999;
  font-size:15px;
  margin-right:8px;
}

.new-price{
  font-size:22px;
  font-weight:800;
  color:#ff6a00;
  background:#fff;
  padding:4px 10px;
  border-radius:6px;
  box-shadow:0 2px 8px rgba(0,0,0,0.12);
}


/* ===============================
   INDEX PAGE – 3 BOX ONE LINE FIX
   (ONLY THIS FIX – NOTHING ELSE)
================================ */

/* Force 3 boxes in one row on index page */
#plans .package-grid{
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 40px !important;
  align-items: stretch;
}

/* Prevent any card from wrapping */
#plans .package-box{
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* Mobile view – stack vertically */
@media (max-width: 900px){
  #plans .package-grid{
    grid-template-columns: 1fr !important;
  }
}

.cta-section {
  background: linear-gradient(135deg, #0b5cff, #0a3fa8);
  padding: 40px 20px;
}

.cta-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cta-text h2 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 8px;
}

.cta-text p {
  color: #e0e0e0;
  font-size: 15px;
  margin: 0;
}

.cta-whatsapp {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  padding: 12px 18px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}

.cta-whatsapp img {
  width: 22px;
}

@media (max-width: 768px) {
  .cta-container {
    flex-direction: column;
    text-align: center;
  }
}.cta-section {
  background: linear-gradient(135deg, #0b5cff, #0a3fa8);
  padding: 40px 20px;
}

.cta-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cta-text h2 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 8px;
}

.cta-text p {
  color: #e0e0e0;
  font-size: 15px;
  margin: 0;
}

.cta-whatsapp {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  padding: 12px 18px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}

.cta-whatsapp img {
  width: 22px;
}

@media (max-width: 768px) {
  .cta-container {
    flex-direction: column;
    text-align: center;
  }
}

.footer-social {
  margin-top: 20px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-right: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 15px;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-social a:hover {
  background: #fff;
  color: #1e3cff;
}

/* =========================
   FOOTER MOBILE RESPONSIVE
========================= */
@media (max-width: 768px) {

  .site-footer {
    padding: 30px 16px;
  }

  .footer-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    text-align: left;
  }

  .footer-box {
    width: 100%;
  }

  .footer-box h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .footer-box p,
  .footer-box a {
    font-size: 14px;
    line-height: 1.6;
  }

  /* Services / Company / Support list */
  .footer-box ul {
    padding-left: 0;
  }

  .footer-box ul li {
    margin-bottom: 6px;
  }

  /* Social icons fix */
  .footer-social {
    display: flex;
    gap: 12px;
    margin-top: 15px;
  }

  .footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
  }

  /* Bottom copyright */
  .footer-bottom {
    text-align: center;
    font-size: 13px;
    margin-top: 20px;
  }
}


.platforms {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Base size for all icons */
.platforms img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

/* Instagram looks bigger – fix it */
.platforms img[src*="instagram"] {
  width: 18px;
  height: 15px;
}

/* Facebook thoda bold lage */
.platforms img[src*="facebook"] {
  width: 22px;
  height: 22px;
}


.site-footer {
  background: #0f172a;
  padding: 20px;
  text-align: center;
  color: #ffffff;
}

.footer-links a {
  color: #38bdf8;
  text-decoration: none;
  margin: 0 6px;
  font-size: 14px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-text {
  margin-top: 10px;
  font-size: 13px;
  color: #cbd5e1;
}