
:root{
--primary:#ac3124;
--secondary:#3e0960;
--dark:#222;
--light:#ffffff;
}

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

html{scroll-behavior:smooth;}
body{background:#ffffff;color:#333;overflow-x:hidden;}

.container{
width:90%;
max-width:1400px;
margin:auto;
}

/* HEADER DONE */

header{
position: fixed;
top: 0;
left: 0;
width: 100%;
background: #ffffff;
z-index: 9999;
box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

/* Navbar */
.navbar{
display:flex;
justify-content:space-between;
align-items:center;
min-height:90px;
}

body{
    padding-top: 100px;
}

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
width:100%;
}

.logo img{
height:60px;
margin-left: -30px;
}

.nav-links{
display:flex;
align-items:center;
gap:35px;
list-style:none;
margin:0;
padding:0;
}

.nav-links a{
text-decoration:none;
color:#3e0960;
font-weight:600;
transition:.3s;
}

.nav-links a:hover{
color:#ac3124;
}

.nav-links li a.active {
    color: #ac3124;        /* Your primary blue */
    font-weight: 600;
}

.nav-links li a.active::after {
    width: 100%;
}
/* Navbar Buttons DONE */
.nav-buttons{
display:flex;
gap:20px;
align-items:center;
}

.nav-btn{
position:relative;
display:inline-block;
padding:8px 20px;
border-radius:50px;
text-decoration:none;
font-weight:450;
font-size:13px;
color:#fff;
overflow:hidden;
z-index:1;
transition:.4s ease;
}

/* Login Button */
.login-btn{
color:  #ac3124;;
background: #ffffff;
border:2px solid #ac3124;
}

.login-btn::before{
content:"";
position:absolute;
top:0;
left:-100%;
width:100%;
height:100%;
transition:.4s ease;
z-index:-1;
}  

.login-btn:hover::before{
left:0;
}

.login-btn:hover{
color:#ac3124;
transform:translateY(-3px);
box-shadow:0 10px 25px rgba(107,31,166,.25);
}
/* Get Started Button */
.start-btn{
background:#ac3124;
border:2px solid #ac3124;
}

/* Hover Fill Effect */

.start-btn::before{
content:"";
position:absolute;
top:0;
left:-100%;
width:100%;
height:100%;
transition:.4s ease;
z-index:-1;
}

.start-btn:hover::before{
left:0;
}

.start-btn:hover{
color:#fff;
transform:translateY(-3px);
box-shadow:0 10px 25px rgba(107,31,166,.25);
}

/*=========================================
        PRICING HERO
==========================================*/

.pricing-hero{
    padding:120px 0 100px;
    background:linear-gradient(180deg,#f8fbff 0%,#ffffff 100%);
}

.pricing-hero-content{
    max-width:900px;
    margin:auto;
    text-align:center;
}

.pricing-hero h1{
    font-size:38px;
    color:#3e0960;
    line-height:1.3;
    margin-bottom:25px;
}

.hero-description{
    font-size:15px;
    color:#5d6b7d;
    line-height:1.5;
    margin-bottom:25px;
}

.hero-features{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
    margin-bottom:40px;
}

.feature-item{
    display:flex;
    align-items:flex-start;
    gap:15px;
    background:#ffffff;
    padding:15px 20px;
    border-radius:14px;
    border:1px solid #e8eef6;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
    text-align:left;
    max-width:360px;
}

.feature-icon{
    width:26px;
    height:26px;
    border-radius:50%;
    background:#3e0960;
    color:#ffffff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:600;
    flex-shrink:0;
}

.feature-item h4{
    color:#3e0960;
    font-size:16px;
    margin-bottom:8px;
}

.feature-item p{
    color:#6b7788;
    line-height:1.6;
    font-size:15px;
}

.hero-bottom-title{
    font-size:30px;
    color:#ac3124;
    margin-bottom:26px;
}
.pricing-toggle{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:25px;
    margin:60px 0;
    flex-wrap:wrap;
}

.pricing-btn{
    width:250px;
    padding:16px 22px;
    border:2px solid #e6e6e6;
    border-radius:60px;
    background:#fff;
    cursor:pointer;
    transition:.35s ease;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    box-shadow:0 12px 30px rgba(229, 217, 217, 0.08);
}

.pricing-btn:hover{
    transform:translateY(-5px);
    box-shadow:0 20px 45px rgba(230, 225, 225, 0.12);
    border-color:#3e0960;
}

.pricing-btn.active{
    background:linear-gradient(135deg,#ac3124,#3e0960);
    color:#fff;
    border-color:transparent;
    box-shadow:0 20px 45px rgba(231, 229, 234, 0.35);
}

.btn-title{
    font-size:16px;
    font-weight:700;
    margin-bottom:6px;
}

.pricing-btn.active .btn-subtitle{
    opacity:.95;
}

@media(max-width:768px){

    .pricing-btn{
        width:100%;
        max-width:420px;
    }

}
/*=====================================
consulting
=======================================*/

/*=========================================================
    CONSULTING & PROFESSIONAL SERVICES
=========================================================*/

.consulting-section{
    padding:100px 0;
    background:#f8fbff;
}

.consulting-wrapper{
    display:grid;
    grid-template-columns:0.9fr 1.1fr;
    gap:50px;
    align-items:flex-start;
}

/*==========================
LEFT CONTENT
==========================*/

.consulting-content{
    position:sticky;
    top:120px;
}

.section-tag{
    display:inline-block;
    padding:8px 18px;
    background:#f3e9eb;
    color:#ac3124;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.consulting-content h2{
    font-size:40px;
    line-height:1.3;
    color:#3e0960;
    margin-bottom:18px;
}

.consulting-content h3{
    font-size:22px;
    color:#ac3124;
    margin-bottom:20px;
}

.consulting-content p{
    font-size:16px;
    line-height:1.8;
    color:#5b6575;
    margin-bottom:18px;
}

.quote-box{
    margin-top:35px;
    padding:30px;
    background:#ffffff;
    border-radius:16px;
    border-left:5px solid #ac3124;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
}

.quote-box h4{
    font-size:22px;
    color:#3e0960;
    margin-bottom:8px;
}

.quote-box span{
    color:#6c757d;
    font-size:15px;
}

/*==========================
FORM
==========================*/

.consulting-form{
    background:#ffffff;
    border-radius:20px;
    padding:40px;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
}

.consulting-form h3{
    font-size:30px;
    color:#3e0960;
    margin-bottom:35px;
}

/*==========================
FORM GRID
==========================*/

.form-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:22px;
    margin-bottom:35px;
}

.form-group{
    display:flex;
    flex-direction:column;
}

.form-group label{
    font-size:15px;
    color:#3e0960;
    margin-bottom:8px;
    font-weight:600;
}

.form-group input{
    width:100%;
    height:52px;
    border:1px solid #d7e3f4;
    border-radius:10px;
    padding:0 16px;
    font-size:15px;
    transition:.3s;
    background:#fff;
}

.form-group input:focus{
    border-color:#3e0960;
    outline:none;
}

/*==========================
SECTION SPACING
==========================*/

.form-section,
.checkbox-section{
    margin-top:40px;
}

.form-section h4,
.checkbox-section h4{
    font-size:22px;
    color:#3e0960;
    margin-bottom:8px;
}

.section-note{
    color:#6f7d90;
    margin-bottom:22px;
    font-size:15px;
}

/*==========================
CHECKBOX GRID
==========================*/

.checkbox-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px 28px;
}

.checkbox-item{
    display:flex;
    align-items:flex-start;
    gap:10px;
    cursor:pointer;
    font-size:15px;
    color:#4f5c6d;
    line-height:1.5;
}

.checkbox-item input{
    margin-top:4px;
    accent-color:#3e0960;
    transform:scale(1.1);
}

/*==========================
RADIO
==========================*/

.radio-group{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.radio-item{
    display:flex;
    justify-content:space-between;
    align-items:center;
    border:1px solid #e2ebf5;
    border-radius:12px;
    padding:18px 20px;
}

.radio-item label{
    font-weight:600;
    color:#3e0960;
}

.radio-options{
    display:flex;
    gap:25px;
}

.radio-options label{
    display:flex;
    align-items:center;
    gap:8px;
    font-weight:500;
    color:#5c6776;
}

.radio-options input{
    accent-color:#3e0960;
}

/*==========================
SUBMIT
==========================*/

.submit-area{
    margin-top:45px;
    text-align:center;
}

.submit-area p{
    color:#5f6d7f;
    line-height:1.7;
    margin-bottom:25px;
}

.quote-btn{
    background:#3e0960;
    color:#ffffff;
    border:none;
    padding:16px 40px;
    border-radius:10px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.quote-btn:hover{
    background:#3e0960;
    transform:translateY(-2px);
}

/*==========================
RESPONSIVE
==========================*/

@media(max-width:992px){

    .consulting-wrapper{
        grid-template-columns:1fr;
    }

    .consulting-content{
        position:relative;
        top:0;
    }

    .consulting-content h2{
        font-size:34px;
    }

    .consulting-form{
        padding:30px;
    }

}

@media(max-width:768px){

    .consulting-section{
        padding:70px 0;
    }

    .form-grid{
        grid-template-columns:1fr;
    }

    .checkbox-grid{
        grid-template-columns:1fr;
    }

    .radio-item{
        flex-direction:column;
        align-items:flex-start;
        gap:15px;
    }

    .consulting-content h2{
        font-size:30px;
    }

    .consulting-content h3{
        font-size:20px;
    }

    .consulting-form h3{
        font-size:26px;
    }

}

@media(max-width:576px){

    .consulting-form{
        padding:22px;
    }

    .quote-box{
        padding:22px;
    }

    .quote-btn{
        width:100%;
    }

}

/*=============================
subscription
===============================*/

/*=========================================================
    PV SOFTWARE SUBSCRIPTION
=========================================================*/

.software-pricing-section{
    padding:100px 0;
    background:#ffffff;
}

.software-heading{
    text-align:center;
    max-width:900px;
    margin:0 auto 60px;
}

.software-heading .section-tag{
    display:inline-block;
    padding:8px 18px;
    background:#f3e9eb;
    color:#ac3124;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:18px;
}

.software-heading h2{
    font-size:40px;
    color:#3e0960;
    margin-bottom:15px;
}

.software-heading h3{
    font-size:22px;
    color:#ac3124;
    margin-bottom:20px;
}

.software-heading p{
    color:#5f6d7f;
    font-size:16px;
    line-height:1.8;
}

/*=========================
TABLE
=========================*/

.pricing-table-wrapper{
    background:#fff;
    border-radius:18px;
    overflow-x:auto;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    border:1px solid #e8eef6;
}

.pricing-table{
    width:100%;
    min-width:1100px;
    border-collapse:collapse;
}

.pricing-table th,
.pricing-table td{
    padding:18px;
    border-bottom:1px solid #ffffff;
    text-align:center;
    font-size:15px;
}

.pricing-table th:first-child,
.pricing-table td:first-child{
    text-align:left;
    font-weight:600;
    color:#3e0960;
    width:270px;
}

.pricing-table thead th{
    background:#faf4fb;
    vertical-align:top;
    position: sticky;
    top: 0;
    z-index: 2;
}

.plan-name{
    font-size:24px;
    font-weight:700;
    color:#3e0960;
    margin-bottom:12px;
}

.pricing-table thead p{
    font-size:14px;
    color:#677688;
    line-height:1.6;
    font-weight:400;
}

.featured-plan{
    background:#faf4fb;
}

.pricing-table tbody tr:hover{
    background:#faf4fb;
}

/*=========================
BUTTONS
=========================*/

.quote-row td{
    padding:30px 18px;
    border-bottom:none;
}

.plan-btn{
    background:#3e0960;
    color:#fff;
    border:none;
    border-radius:8px;
    padding:12px 28px;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    transition:.2s;
}

.plan-btn:hover{
    background:#3e0960;
}

/*=========================================================
WHY OUR PRICING IS DIFFERENT
=========================================================*/

.pricing-benefits-section{
    padding:70px 0;
    background:#f8fbff;
}

.pricing-benefits-heading{
    text-align:center;
    margin-bottom:50px;
}

.pricing-benefits-heading h2{
    font-size:38px;
    color:#ac3124;
}

.pricing-benefits-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.benefit-card{
    background:#fff;
    border-radius:16px;
    padding:18px;
    border:1px solid #e8eef6;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.benefit-card h3{
    font-size:18px;
    color:#3e0960;
    margin-bottom:6px;
}

.benefit-card p{
    color:#667587;
    line-height:1.3;
    font-size:14px;
}

.full-width{
    grid-column:1/-1;
}

#consultingSection,
#softwareSection{

    display:none;

}
/*=========================================================
RESPONSIVE
=========================================================*/

@media(max-width:992px){

    .software-pricing-section{
        padding:80px 0;
    }

    .software-heading h2{
        font-size:34px;
    }

    .pricing-benefits-grid{
        grid-template-columns:1fr;
    }

    .full-width{
        grid-column:auto;
    }

}

@media(max-width:768px){

    .software-heading h2{
        font-size:30px;
    }

    .software-heading h3{
        font-size:20px;
    }

    .pricing-benefits-heading h2{
        font-size:30px;
    }

    .benefit-card{
        padding:24px;
    }

    .pricing-table th,
    .pricing-table td{
        padding:14px;
        font-size:14px;
    }

    .plan-name{
        font-size:20px;
    }

    .plan-btn{
        width:100%;
        padding:12px;
    }

}

@media(max-width:576px){

    .software-pricing-section,
    .pricing-benefits-section{
        padding:70px 0;
    }

    .software-heading{
        margin-bottom:40px;
    }

}

/*===========================
    FAQ
=============================*/
/*==================================================
                FAQ SECTION
==================================================*/

.faq-section{
    padding:80px 0;
    background:#f8f9fc;
}

.faq-heading{
    text-align:center;
    margin-bottom:35px;
}

.faq-heading h2{
    font-size:40px;
    font-weight:700;
    color:#3e0960;
    margin-bottom:10px;
    letter-spacing:-0.5px;
}

/*==================================================
                FAQ CONTAINER
==================================================*/

.faq-wrapper{

    background:#fff;
    border-radius:24px;
    overflow:hidden;
    border:1px solid #ececec;
    box-shadow: 0 15px 40px rgba(0,0,0,.05),
                0 30px 70px rgba(0,0,0,.04);
}


/*==================================================
                FAQ ITEM
==================================================*/

.faq-item{

    border-bottom:1px solid #ececec;

    transition:.35s;

    position:relative;

}

.faq-item:last-child{

    border-bottom:none;

}


/*==================================================
                QUESTION
==================================================*/

.faq-question{

    width:100%;

    border:none;

    background:transparent;

    cursor:pointer;

    padding:20px 30px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    text-align:left;

    transition:.35s;

}

.faq-question span:first-child{

    font-size:16px;

    font-weight:500;

    color:#1d1c1c;

    line-height:1.5;

}


/*==================================================
                HOVER
==================================================*/

.faq-item:hover{

    background:#faf7ff;

}

.faq-item:hover .faq-question{

    padding-left:50px;

}

.faq-item:hover .faq-question span:first-child{

    color:#aaa8b0;

}


/*==================================================
                ICON
==================================================*/

.faq-icon{

    width:25px;

    height:25px;

    border-radius:50%;

    border:2px solid #d9d2ef;

    position:relative;

    flex-shrink:0;

    transition:.35s;

}

.faq-icon span{

    position:absolute;

    background:#3e0960;

    border-radius:3px;

    transition:.35s;

}

.faq-icon span:first-child{

    width:10px;

    height:2px;

    top:50%;

    left:50%;

    transform:translate(-50%,-50%);

}

.faq-icon span:last-child{

    width:2px;

    height:10px;

    top:50%;

    left:50%;

    transform:translate(-50%,-50%);

}


/*==================================================
                ACTIVE STATE
==================================================*/

.faq-item.active{

    background:#faf7ff;

}

.faq-item.active .faq-icon{

    background:#3e0960;

    border-color:#3e0960;

}

.faq-item.active .faq-icon span{

    background:#fff;

}

.faq-item.active .faq-icon span:last-child{

    transform:translate(-50%,-50%) rotate(90deg);

    opacity:0;

}


/*==================================================
                ANSWER
==================================================*/

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:
        max-height .45s ease,
        padding .45s ease;

    padding:0 40px;

}

.faq-item.active .faq-answer{

    max-height:300px;

    padding:0 40px 30px 40px;

}

.faq-answer p{
color:#666;
font-size:14px;
line-height:1.5;
margin:0;
}


/*==================================================
            SUBTLE LEFT ACCENT
==================================================*/

.faq-item::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:0;

    height:100%;

    background:#3e0960;

    transition:.35s;

}

.faq-item:hover::before{

    width:5px;

}

.faq-item.active::before{

    width:5px;

}

/* =========================
   CTA SECTION
========================= */

.footer-cta{
    width:100%;
    background:linear-gradient(90deg, #ac3124,#3e0960);
    padding:60px 70px;

    clip-path: polygon(
        25px 0,
        calc(100% - 25px) 0,
        100% 25px,
        100% 100%,
        0 100%,
        0 25px
    );
}
.cta-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
}

.cta-text p{
    font-size:14px;
    letter-spacing:1px;
    font-weight:600;
    color:#ffffff;
}

.cta-text h2{
    margin-bottom: 8px;
    font-size:40px;
    line-height:1.2;
    max-width:700px;
    color:#ffffff;
    font-weight:700;
}
.cta-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#ffffff;
    color:#000;
    text-decoration:none;
    padding:10px 40px;
    border-radius:50px;
    font-size:18px;
    font-weight:700;
    white-space:nowrap;
    transition:all .3s ease;
}

.cta-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 30px rgba(0,0,0,.25);
}

.footer{
background:#111827;
color:#fff;
padding:100px 0 25px;
position:relative;
margin-top:0;
}

.footer::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:5px;
background:linear-gradient(90deg, #d43c2d, #6a1b9a);
}

.footer-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:50px;
}

.footer-logo{
width:220px;
margin-bottom:20px;
background:#ffffff;
padding:8px;
border-radius:10px;
}

.footer-col h3{
margin-bottom:20px;
font-size:22px;
color:#fff;
}

.footer-col p{
color:#cbd5e1;
line-height:1.8;
}

.footer-col ul{
list-style:none;
padding:0;
}

.footer-col ul li{
margin-bottom:12px;
}

.footer-col ul li a{
color:#cbd5e1;
text-decoration:none;
transition:.3s;
}

.footer-col ul li a:hover{
color:#fff;
padding-left:8px;
}

.footer-social{
display:flex;
gap:15px;
}

.footer-social a{
width:45px;
height:45px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
background:rgba(35, 31, 31, 0.08);
color:#fff;
text-decoration:none;
transition:.3s;
}

.footer-social a:hover{
background:linear-gradient(135deg,#ac3124,#3e0960);
transform:translateY(-5px);
}

.footer-bottom{
text-align:center;
border-top:1px solid rgba(255,255,255,.1);
margin-top:40px;
padding-top:25px;
}

.footer-bottom p{
color:#94a3b8;
}

.footer-bottom a{
    color:#ffffff;
    text-decoration:none;
    transition:.3s ease;
}

.footer-bottom a:hover{
    color:#430ed3;
}

/* ==================================================
                HYPER LINKS 
====================================================*/

.legal-page{
    padding:120px 0;
    background:#fff;
}

.legal-page .container{
    max-width:1000px;
}

.legal-page h1{
    font-size:48px;
    color:#3e0960;
    margin-bottom:30px;
}

.legal-page h2{
    font-size:24px;
    color:#3e0960;
    margin-top:35px;
    margin-bottom:15px;
}

.legal-page p{
    color:#555;
    line-height:1.9;
    margin-bottom:15px;
}