 :root {
     --primary-1: #0b6efd;
     --primary-2: #6f8cff;
     --accent: #ffb703;
     --muted: #6c757d;
     --card-radius: 14px;
 }

 html {
     scroll-behavior: smooth;
 }

 body {
     font-family: "Segoe UI", Roboto, system-ui, -apple-system,
         "Helvetica Neue", Arial;
     background: #f6f8fb;
     color: #222;
 }

 /* Navbar */
 .navbar-gradient {
     background: linear-gradient(90deg, var(--primary-1), var(--primary-2));
 }

 .navbar .nav-link {
     color: #fff !important;
     font-weight: 600;
 }

 /* HERO */
 .hero {
     position: relative;
     height: 78vh;
     min-height: 520px;
     display: flex;
     align-items: center;
     justify-content: center;
     overflow: hidden;
     border-bottom-left-radius: 20px;
     border-bottom-right-radius: 20px;
 }

 .hero video {
     position: absolute;
     inset: 0;
     width: 100%;
     height: 100%;
     object-fit: cover;
     z-index: 0;
 }

 .hero .overlay {
     position: absolute;
     inset: 0;
     background: linear-gradient(180deg,
             rgba(0, 0, 0, 0.35),
             rgba(0, 0, 0, 0.5));
     z-index: 1;
 }

 .hero .content {
     position: relative;
     z-index: 2;
     color: #fff;
     text-align: center;
     padding: 1rem;
     max-width: 980px;
 }

 .hero .content h1 {
     font-weight: 700;
     letter-spacing: -0.5px;
 }

 .hero .content p.lead {
     color: #f1f5ff;
     font-size: 1.15rem;
 }

 /* Sections */
 .section {
     padding: 64px 0;
 }

 .section-title {
     font-size: 1.8rem;
     font-weight: 700;
     margin-bottom: 18px;
 }

 /* About */
 .about-card {
     border-radius: var(--card-radius);
     background: #fff;
     box-shadow: 0 8px 30px rgba(14, 20, 30, 0.06);
     padding: 28px;
 }

 /* Pricing */
 .pricing-grid .card {
     border-radius: var(--card-radius);
     padding: 22px;
     box-shadow: 0 10px 30px rgba(14, 20, 30, 0.06);
     transition: transform 0.25s ease, box-shadow 0.25s ease;
 }

 .pricing-grid .card:hover {
     transform: translateY(-6px);
 }

 .price-old {
     text-decoration: line-through;
     color: var(--muted);
     margin-right: 10px;
     font-size: 0.95rem;
 }

 .price-new {
     font-size: 1.9rem;
     font-weight: 800;
     color: #0f5132;
 }
.price-note {
    font-size: 0.95rem;
    /* Slightly smaller than price */
    font-weight: 500;
    /* Medium weight for clarity */
    color: #6c757d;
    /* Muted grey for subtle look */
    display: block;
    /* Puts it below price neatly */
    margin-top: 4px;
    /* Small space from price */
    font-style: italic;
    /* Gives a soft, elegant touch */
    letter-spacing: 0.3px;
    /* Improves readability */
}
 /* greenish */
 .badge-ribbon {
     position: absolute;
     top: 14px;
     left: 14px;
     background: var(--accent);
     color: #000;
     font-weight: 700;
     padding: 6px 10px;
     border-radius: 999px;
     font-size: 0.85rem;
     box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
 }

 .card-popular {
     border: 2px solid rgba(255, 183, 3, 0.18);
     box-shadow: 0 16px 40px rgba(255, 183, 3, 0.12);
     transform: scale(1.03);
 }

 .deal-banner {
     margin-top: 12px;
     padding: 8px 12px;
     background: #fff4e6;
     border-radius: 10px;
     color: #663c00;
     font-weight: 700;
     display: inline-block;
 }

 .countdown {
     font-weight: 800;
     color: #b02a37;
     margin-left: 8px;
 }

 /* Download Card */
 .download-card {
     border-radius: 12px;
     padding: 20px;
     background: #fff;
     box-shadow: 0 8px 26px rgba(14, 20, 30, 0.06);
 }

 .spinner-border-sm {
     vertical-align: middle;
     margin-left: 8px;
 }

/*Feature section*/


.features {
    background: #f9fafb;
    padding: 60px 20px;
    text-align: center;
}

.features-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 40px;
    color: #222;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.feature-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.feature-card h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #111;
}

.feature-card p {
    font-size: 0.95rem;
    color: #555;
}
    /*feature section ends*/

 /* Responsive tweaks */
 @media (max-width: 767px) {
     .hero {
         height: 62vh;
         min-height: 420px;
     }

     .hero .content h1 {
         font-size: 1.75rem;
     }

     .price-new {
         font-size: 1.5rem;
     }
 }
