:root {
    --primary: #e1232d;
    --dark: #0f172a;
    --light: #ffffff;
    --soft-bg: #f8fafc;
    --text-main: #334155;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-main);
    background-color: var(--light);
    line-height: 1.7;
    overflow-x: hidden;
}

section {
    scroll-margin-top: 90px;
}
html {
    scroll-behavior: smooth;
}

/* --- Global Styles --- */
h1, h2, h3, .navbar-brand {
    color: var(--dark);
    font-weight: 700;
}

.btn-primary-custom {
    background-color: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    border: none;
    height: 100%;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(251, 2, 4, 0.25);
    color: white;
}

.btn-outline-custom {
    border: 2px solid var(--dark);
    color: var(--dark);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    height:100%;
}

.btn-outline-custom:hover {
    background-color: var(--dark);
    color: white;
}

/* --- Navbar --- */
.navbar {
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 12px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.nav-link {
    color: var(--dark) !important;
    font-weight: 600;
    margin: 0 12px;
}
a.nav-link.active {
    color: #e1232d !important;
}

/* --- Hero Section --- */
.hero {
    padding: 180px 0 100px;
    background: radial-gradient(circle at 90% 10%, #fff1f1 0%, #ffffff 40%);
}

.custom-bg-color {
    background-color: #ececec;
}

.custom-red-color {
    color: var(--primary) !important;
}
.custom-text-color {
    color: var(--text-main) !important;
}

/* --- Button --- */

.custom-buttons {
    color: var(--primary);
    background-color: transparent;
    border: 1px solid var(--primary);
    padding: 14px 32px;
    font-size: 15px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
}

.custom-buttons:hover {
    color: white;
    background-color: var(--primary);
    border: 1px solid var(--primary);
}

/* Starter Pack Button & Advanced Pack Button */
.btn-get-started {
    color: var(--primary);
    background-color: transparent;
    border: 1px solid var(--primary);
    padding: 14px 32px;
    font-size: 15px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
}

.btn-get-started:hover {
    color: white;
    background-color: var(--primary);
    border: 1px solid var(--primary);
}

/* Growth Pack Button */
.btn-get-started.growth {
    color: white;
    background-color: var(--primary);
    border: 1px solid var(--primary);
    font-size: 15px;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
}

.btn-get-started.growth:hover {
    color: white;
    background-color: var(--primary);
    border: 1px solid var(--primary);
}

/* Custom Pack Button */
.btn-get-started.custom {
    color: white;
    background-color: var(--primary);
    border: 1px solid var(--primary);
    font-size: 15px;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
}

.btn-get-started.custom:hover {
    color: white;
    background-color: var(--primary);
    border: 1px solid var(--primary);
}




section.hero-banner-data-section {
    height: 350px !important;
    text-align: center;
    background: #ececec;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pages-banner {
    padding: 180px 0 100px;
    margin: 75px 0;
}
.hero-label {
    color: var(--primary);
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    display: block;
}

.hero h1 {
    font-size: 50px;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-img-box {
    position: relative;
    background: #f1f5f9;
    border-radius: 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.founder-image-section {
    max-height: 550px;
    height: 100%;
}

.founder-image-section img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    object-position: top center;
}

/* --- Authority Strip --- */
.authority-strip {
    background: var(--dark);
    color: white;
    padding: 30px 0;
}

.auth-item {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    font-weight: 500;
}

.auth-item i {
    color: var(--primary);
    font-size: 1.5rem;
    margin-right: 12px;
}

/* --- System Section --- */
.system-card {
    padding: 40px;
    background: white;
    border-radius: 16px;
    border: 1px solid #f1f5f9;
    transition: var(--transition);
    height: 100%;
}

.system-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.system-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    display: block;
}

/* --- How it Works --- */
.step-card {
    position: relative;
    padding: 30px;
}

.step-number {
    font-size: 5rem;
    font-weight: 900;
    color: rgba(15, 23, 42, 0.05);
    position: absolute;
    top: -10px;
    left: 0;
    line-height: 1;
}

/* --- Pricing & Form --- */
.pricing-box {
    background: var(--soft-bg);
    border-radius: 24px;
    padding: 60px;
    border: 1px solid #e2e8f0;
}

.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.form-control {
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    margin-bottom: 15px;
}

/* --- Animations --- */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-form-submission .form-control {
    padding:5px 10px;
    margin-bottom:5px;
}

.whatsapp-float {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 25px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    /* transition: all 0.3s ease; */
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    color: #fff;
    transform: scale(1.1);
}

/* Pulse Effect */
.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #25d366;
    border-radius: 50%;
    z-index: -1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.6); opacity: 0; }
}

.pricing-section .border-danger {
    border: 1px solid #e1232d !important;
    border-radius: 10px;
    padding: 20px 10px;
}
.pricing-section span.badge.bg-danger {
    background: #e1232d !important;
}
.pricing-section a.select-plan.btn.btn-danger {
    background: #e1232d;
    color: #fff;
    font-weight: 600;
}
.pricing-section a.select-plan.btn.btn-outline-danger {
    color: #e1232d;
    border: 1px solid #e1232d !important;
    background: #fff;
}

/* ===============================
   PRICING – FULL RESPONSIVE FIX
   =============================== */

.pricing-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-card h2 {
    font-size: 2.4rem;
    margin: 18px 0;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.pricing-card ul li {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

/* Featured (₹24,999) */
.pricing-card.featured {
    border: 2px solid var(--primary);
    background: #fff5f5;
}

.pricing-card .badge {
    background: var(--primary);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    display: inline-block;
    margin-bottom: 10px;
}

.about-us-img {
    height: 750px !important;
    object-fit: cover;
    object-position: top;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}
.image-section img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.custon-text-left {
    text-align: left !important;
}

.who-i-work-with {
    padding: 80px 0 40px 0;
    background: #ffffff;
    text-align: center;
}


.section-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 50px;
}

.work-with-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.work-card {
    background: #f9fafc;
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    transition: var(--transition);
}

.work-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.work-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.custom-plan {
    background: #ffffff;
    border: 1px dashed #ccc;
}

.positioning-quote {
    margin: 20px 0;
    padding: 20px 28px;
    border-left: 4px solid #fb0204; /* premium red accent */
    background: #f9fafb; /* very light neutral */
    font-size: 1.1rem;
    line-height: 1.6;
    color: #0f172a; /* deep navy text */
    font-weight: 500;
}

.positioning-quote span {
    display: block;
    margin-top: 10px;
    font-weight: 600;
}

span.badge.bg-danger.mb-2.custom-badge {
    top: 5px;
    position: absolute;
    right: 5px;
}

.btn-loader {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,0.4);
    border-top: 2px solid #fff;
    border-radius: 50%;
    display: inline-block;
    animation: spin 0.6s linear infinite;
    margin-left: 8px;
    vertical-align: middle;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.custom-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.custom-buttons.active {
    color: white;
    background-color: var(--primary);
    border: 1px solid var(--primary);
}

/* ===============================
   MOBILE & TABLET RESPONSIVENESS
   =============================== */

/* Hover – desktop only */
@media (min-width: 992px) {
    .pricing-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    }
}

/* Medium devices (tablets) */
@media (min-width: 577px) and (max-width: 991px) {

    .hero {
        padding: 140px 30px 80px;
    }

    .pricing-box {
        padding: 40px;
    }

    .system-card {
        padding: 30px;
    }
}


@media (max-width: 768px) {
    .hero {
        text-align: center;
        padding-top: 120px;
    }
    .system-card {
        text-align: left !important;
    }
    .hero-img-box {
        margin-top: 50px;
    }
    .pricing-box {
        padding: 30px;
    }
    .pricing-card {
        padding: 25px;
        border-radius: 16px;
    }
    .pricing-card h2 {
        font-size: 2rem;
    }
    .pricing-card ul li {
        font-size: 0.9rem;
    }
    /* REMOVE scaling on mobile */
    .pricing-card.featured {
        transform: none;
    }
    .about-us-img {
        margin-bottom: 20px;
    }
}

/* Small devices (phones) */
@media (max-width: 576px) {
    body {
        font-size: 15px;
    }
    /* Navbar */
    .navbar {
        padding: 12px 0;
    }
    .nav-link {
        margin: 8px 0;
        text-align: center;
    }
    /* Hero */
    section.hero-banner-data-section {
        height: 200px !important;
    }
    .hero {
        padding: 100px 15px 60px;
        text-align: center;
    }
    .hero h1 {
        font-size: 2rem;
        line-height: 1.3;
    }
    .hero-img-box {
        /* height: 260px; */
        margin-top: 30px;
        border-radius: 14px;
    }
    /* Authority strip */
    .auth-item {
        justify-content: center;
        margin-bottom: 12px;
        font-size: 0.9rem;
    }
    /* Cards */
    .system-card {
        padding: 25px;
        margin-bottom: 20px;
    }
    .step-card {
        padding: 20px;
    }
    .step-number {
        font-size: 3.5rem;
        top: -5px;
    }
    /* Pricing */
    .pricing-box {
        padding: 25px;
        border-radius: 18px;
    }
    /* Forms */
    .contact-form-container {
        padding: 0px;
        box-shadow: none;
    }
    .form-control {
        padding: 12px;
    }
    /* Buttons */
    .btn-primary-custom,
    .btn-outline-custom {
        width: 100%;
        text-align: center;
        padding: 14px;
    }
    /* WhatsApp button */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
    .pricing-card {
        padding: 22px;
    }
    .pricing-card h2 {
        font-size: 1.9rem;
    }
    .pricing-card ul {
        margin: 20px 0;
    }
}



/* ===============================
   BACK TO TOP BUTTON
   =============================== */

.back-to-top {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 30px; /* ABOVE WhatsApp */
    right: 100px;
    background-color: var(--dark);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 22px;
    line-height: 48px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    display: none;
    text-decoration: none;
    transition: var(--transition);
}

.back-to-top:hover {
    background-color: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

/* Mobile adjustment */
@media (max-width: 576px) {
    .back-to-top {
        width: 45px;
        height: 45px;
        font-size: 20px;
        line-height: 44px;
        bottom: 90px;
        right: 20px;
    }
}
