/* ==========================
   GLOBAL
========================== */

:root {
    --primary: #032826;
    --primary-light: #0b4b46;
    --secondary: #f4b400;
    --white: #ffffff;
    --light: #f8fafc;
    --text: #1e293b;
    --gray: #64748b;
    --border: #e2e8f0;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    overflow-x: hidden;
    background: #fff;
    line-height: 1.7;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.section-padding {
    padding: 100px 0;
}

.bg-light {
    background: #f8fafc !important;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--primary);
}

.section-title p {
    max-width: 700px;
    margin: auto;
    color: var(--gray);
}

/* MENU */
#menu-header-menu>li>a.nav-link {
    position: relative;
    display: inline-block;
    width: auto;
    color: #032826;
    /* Brand Dark Green */
}

#menu-header-menu>li>a.nav-link::after {
    content: "";
    position: absolute;
    left: 5px;
    right: 5px;
    bottom: 0;
    height: 2px;
    background: currentColor;
    /* Same as text color */

    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}

#menu-header-menu>li>a.nav-link:hover::after,
#menu-header-menu>li.current-menu-item>a.nav-link::after {
    transform: scaleX(1);
}

#menu-header-menu>li {
    display: flex;
    justify-content: center;
}

#menu-header-menu>li>a.nav-link:hover,
#menu-header-menu>li.current-menu-item>a.nav-link {
    color: #032826;
}

#menu-header-menu>li.current-menu-item>a.nav-link {
    color: #032826;
    font-weight: 600;
}

/* ==========================
   BUTTONS
========================== */

.btn-primary-custom {
    background: var(--primary);
    color: #fff;
    padding: 14px 32px;
    border-radius: 12px;
    display: inline-block;
    font-weight: 600;
    transition: .3s;
}

.btn-primary-custom:hover {
    background: var(--primary-light);
    color: #fff;
    transform: translateY(-3px);
}

.btn-outline-custom {
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 12px 30px;
    border-radius: 12px;
    display: inline-block;
    font-weight: 600;
    transition: .3s;
}

.btn-outline-custom:hover {
    background: var(--primary);
    color: #fff;
}

.btn-light-custom {
    background: #fff;
    color: var(--primary);
    padding: 14px 32px;
    border-radius: 12px;
    display: inline-block;
    font-weight: 700;
    transition: .3s;
}

.btn-light-custom:hover {
    transform: translateY(-3px);
}

/* ==========================
   HERO
========================== */

.hero-section {
    padding: 120px 0;
    background:
        linear-gradient(180deg,
            #f8fafc 0%,
            #ffffff 100%);
}

.hero-badge {
    display: inline-block;
    background: #e7f5f4;
    color: var(--primary);
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
}

.hero-section h1 {
    font-size: 62px;
    font-weight: 900;
    line-height: 1.1;
    color: var(--primary);
    margin-bottom: 25px;
}

.hero-section p {
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-dashboard {
    animation: float 5s ease-in-out infinite;
    filter:
        drop-shadow(0 25px 50px rgba(0, 0, 0, .12));
}

.hero-stats {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.hero-stats h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    margin: 0;
}

.hero-stats span {
    color: var(--gray);
}

@keyframes float {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

/* ==========================
   FEATURES
========================== */

.feature-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 35px;
    transition: .3s;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, .08);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: #e7f5f4;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 25px;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--gray);
}

/* ==========================
   WHY US
========================== */

.small-title {
    color: var(--secondary);
    font-weight: 700;
    letter-spacing: 1px;
}

.benefits-list {
    margin-top: 30px;
    padding: 0;
    list-style: none;
}

.benefits-list li {
    padding: 12px 0;
    font-size: 18px;
    border-bottom: 1px solid #eee;
}

.benefits-list li:before {
    content: "✓";
    color: green;
    font-weight: bold;
    margin-right: 12px;
}

/* ==========================
   STEPS
========================== */

.step-box {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--border);
    height: 100%;
    transition: .3s;
}

.step-box:hover {
    transform: translateY(-8px);
}

.step-box span {
    width: 70px;
    height: 70px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto auto 25px;
    font-weight: 800;
    font-size: 22px;
}

.step-box h3 {
    font-weight: 700;
    margin-bottom: 15px;
}

/* ==========================
   PRICING
========================== */

.pricing-card {
    border: 1px solid var(--border);
    border-radius: 25px;
    padding: 50px 35px;
    text-align: center;
    transition: .3s;
    background: #fff;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card h3 {
    font-weight: 700;
}

.pricing-card h2 {
    font-size: 52px;
    font-weight: 900;
    color: var(--primary);
    margin: 25px 0;
}

.featured {
    background: var(--primary);
    color: #fff;
    transform: scale(1.05);
}

.featured h2 {
    color: #fff;
}

.featured .btn-primary-custom {
    background: #fff;
    color: var(--primary);
}

/* ==========================
   PRICING TOGGLE
========================== */

.pricing-switch {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.plan-btn {
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    background: #f1f5f9;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

.plan-btn.active {
    background: var(--primary);
    color: #fff;
}

.save-badge {
    background: #22c55e;
    color: #fff;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 20px;
    margin-left: 6px;
}

/* Price Text */

.price {
    font-size: 52px;
    font-weight: 900;
    color: var(--primary);
    margin: 25px 0;
}

.price span {
    font-size: 18px;
    font-weight: 500;
}

/* Features List */

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid #edf2f7;
}

/* Popular Badge */

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: #000;
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
}

.featured {
    background: linear-gradient(135deg,
            #032826,
            #0b4b46);
}

.featured .price {
    color: #fff;
}

/* Existing pricing-card me position add karni hai */

.pricing-card {
    position: relative;
}

/* ==========================
   FAQ
========================== */

.faq-accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .05);
}

.faq-accordion .accordion-button {
    padding: 22px 25px;
    font-weight: 700;
    font-size: 18px;
    color: var(--primary);
    background: #fff;
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: #e7f5f4;
    color: var(--primary);
}

.faq-accordion .accordion-body {
    padding: 25px;
    color: var(--gray);
    line-height: 1.8;
}

/* ==========================
   CTA
========================== */

.cta-section {
    padding: 120px 0;
    background: var(--primary);
    color: #fff;
}

.cta-section h2 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 20px;
    max-width: 700px;
    margin: auto auto 35px;
    opacity: .9;
}

/* ==========================
   FOOTER
========================== */

footer {
    background: #021d1b;
    color: #fff;
    padding: 80px 0 30px;
}

footer h5 {
    margin-bottom: 20px;
    font-weight: 700;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 10px;
}

footer a {
    color: #cbd5e1;
}

footer a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:991px) {

    .hero-section {
        padding: 80px 0;
        text-align: center;
    }

    .hero-section h1 {
        font-size: 44px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .section-title h2 {
        font-size: 34px;
    }

    .cta-section h2 {
        font-size: 38px;
    }

    .featured {
        transform: none;
        margin: 30px 0;
    }
}

@media(max-width:576px) {

    .hero-section h1 {
        font-size: 34px;
    }

    .hero-section p {
        font-size: 18px;
    }

    .section-padding {
        padding: 70px 0;
    }

    .pricing-card h2 {
        font-size: 40px;
    }

    .cta-section h2 {
        font-size: 30px;
    }
}


.footer {
    background: #021d1b;
    color: #fff;
    padding: 90px 0 30px;
}

.footer-logo {
    color: #fff;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer h5 {
    color: #fff;
    margin-bottom: 20px;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer a {
    color: #cbd5e1;
    transition: .3s;
}

.footer a:hover {
    color: #f4b400;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0b4b46;
    border-radius: 50%;
}

.footer-social a:hover {
    background: #f4b400;
    color: #000;
}

.footer-seo-links {
    margin-top: 40px;
}

.footer-seo-links h6 {
    margin-bottom: 20px;
}

.footer-seo-links a {
    display: inline-block;
    margin: 5px 10px 5px 0;
    padding: 6px 14px;
    background: #0b4b46;
    border-radius: 20px;
}

.footer-bottom {
    margin-top: 20px;
}

/* ===================================
   FEATURES PAGE EXTRA CSS
=================================== */

.feature-hero {
    background: linear-gradient(180deg,
            #f8fafc 0%,
            #ffffff 100%);
}

.feature-dashboard {
    animation: float 5s ease-in-out infinite;
    filter:
        drop-shadow(0 25px 50px rgba(0, 0, 0, .12));
}

/* ===================================
   INTEGRATIONS
=================================== */

.integration-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px 25px;
    text-align: center;
    transition: .3s;
    height: 100%;
}

.integration-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, .08);
}

.integration-icon {
    width: 80px;
    height: 80px;
    margin: auto;
    margin-bottom: 20px;
    border-radius: 20px;
    background: #e7f5f4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
}

.integration-card h4 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
}

/* ===================================
   STATS
=================================== */

.stats-box {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px 25px;
    transition: .3s;
    height: 100%;
}

.stats-box:hover {
    transform: translateY(-8px);
    box-shadow:
        0 15px 35px rgba(0, 0, 0, .08);
}

.stats-box h3 {
    font-size: 52px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 10px;
}

.stats-box p {
    margin: 0;
    color: var(--gray);
    font-size: 18px;
    font-weight: 600;
}

/* ===================================
   FAQ
=================================== */

.faq-accordion {
    max-width: 900px;
    margin: auto;
}

.faq-accordion .accordion-item {
    border: none;
    margin-bottom: 20px;
    border-radius: 16px !important;
    overflow: hidden;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, .06);
}

.faq-accordion .accordion-button {
    padding: 22px 25px;
    font-weight: 700;
    color: var(--primary);
    background: #fff;
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: #e7f5f4;
    color: var(--primary);
}

.faq-accordion .accordion-body {
    padding: 25px;
    color: var(--gray);
    line-height: 1.8;
}

/* ===================================
   CTA BUTTON
=================================== */

.btn-outline-light {
    border: 2px solid #fff;
    color: #fff;
    padding: 14px 32px;
    border-radius: 12px;
    display: inline-block;
    font-weight: 700;
    transition: .3s;
}

.btn-outline-light:hover {
    background: #fff;
    color: var(--primary);
}

/* ===================================
   IMAGE SECTIONS
=================================== */

.section-padding img.rounded-4 {
    transition: .4s;
}

.section-padding img.rounded-4:hover {
    transform: scale(1.02);
}

/* ===================================
   FEATURE PAGE HEADINGS
=================================== */

.section-padding h2 {
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
}

.section-padding p {
    color: var(--gray);
}

/* ===================================
   MOBILE
=================================== */

@media(max-width:991px) {

    .feature-hero {
        text-align: center;
    }

    .feature-dashboard {
        margin-top: 40px;
    }

    .integration-card,
    .stats-box {
        margin-bottom: 10px;
    }
}

@media(max-width:576px) {

    .stats-box h3 {
        font-size: 40px;
    }

    .integration-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

    .faq-accordion .accordion-button {
        font-size: 15px;
    }
}


/* CONTACT PAGE */

.contact-form-box {
    background: #fff;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
}

.contact-form-box .form-control {
    border: 1px solid var(--border);
    padding: 14px 18px;
    border-radius: 12px;
}

.contact-form-box .form-control:focus {
    box-shadow: none;
    border-color: var(--primary);
}

@media(max-width:576px) {

    .contact-form-box {
        padding: 30px 20px;
    }

}

/* ==========================
   BOOK DEMO MODAL
========================== */

#demoModal .modal-content {
    border: none;
    border-radius: 24px;
    overflow: hidden;
}

#demoModal .modal-header {
    background: #032826;
    color: #fff;
    border: none;
    padding: 20px 30px;
}

#demoModal .btn-close {
    filter: invert(1);
}

#demoModal iframe {
    display: block;
    width: 100%;
}

@media(max-width:768px) {

    #demoModal .modal-dialog {
        margin: 10px;
    }

    #demoModal iframe {
        height: 650px;
    }

}

/* ==========================
   CONTACT DEMO FORM
========================== */

.contact-form-wrapper {
    background: #ffffff;
    padding: 25px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
    border: 1px solid var(--border);
}

.contact-demo-form {
    width: 100%;
    height: 470px;
    border: none;
    display: block;
    border-radius: 16px;
}

.contact-form-wrapper:hover {
    box-shadow: 0 25px 60px rgba(3, 40, 38, .12);
}

/* Mobile */

@media(max-width:768px) {

    .contact-form-wrapper {
        padding: 15px;
    }

    .contact-demo-form {
        height: 470px;
    }

}