/*=========================================
    NAVBAR
=========================================*/

.main-header{
    position: sticky;
    top: 0;
    z-index: 1050;
    background: #fff;
    box-shadow: 0 8px 30px rgba(0,0,0,.05);
}

.navbar{
    padding: 8px 0;
}

.navbar-brand img{
    height: 42px;
}

.navbar-nav{
    gap: 18px;
}

.navbar-nav .nav-link{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 17px;
    font-weight: 500;
    color: #444;
    padding: 12px 10px;
    transition: .3s;
}

.navbar-nav .nav-link:hover{
    color: #2563eb;
}


/*=========================================
    BUTTONS
=========================================*/

.navbar-actions .btn{
    border-radius: 12px;
    padding: 11px 24px;
    font-weight: 600;
}

.btn-outline-primary{
    border:2px solid #2563eb;
    border-radius:12px;
    color:#2563eb;
}

.btn-outline-primary:hover{
    background:#2563eb;
    color:#fff;
}

.btn-primary{
    border:none;
    border-radius:12px;
    background:linear-gradient(135deg,#2563eb,#6d28d9);
}

.btn-primary:hover{
    transform:translateY(-2px);
    box-shadow:0 12px 25px rgba(37,99,235,.25);
}


/*=========================================
    DROPDOWN
=========================================*/

.dropdown-menu{
    border:none;
    border-radius:18px;
    padding:15px;
    min-width:240px;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.dropdown-item{
    padding:12px 18px;
    border-radius:10px;
    transition:.25s;
}

.dropdown-item:hover{
    background:#eef5ff;
    color:#2563eb;
}


/*=========================================
    MEGA MENU (Desktop)
=========================================*/

.mega-dropdown{
    position:static;
}

.mega-menu{
    display:none;
    position:absolute;
    left:50%;
    top:100%;
    transform:translateX(-50%);
    width:1080px;
    background:#fff;
    border-radius:22px;
    padding:35px;
    box-shadow:0 25px 70px rgba(0,0,0,.12);
    z-index:999;
}

.mega-border{
    border-left:1px solid #ececec;
}


/*=========================================
    FEATURE ITEM
=========================================*/

.feature-item{
    display:flex;
    gap:18px;
    padding:18px;
    text-decoration:none;
    color:#222;
    border-radius:14px;
    margin-bottom:12px;
    transition:.3s;
}

.feature-item:last-child{
    margin-bottom:0;
}

.feature-item:hover{
    background:#f5f9ff;
    transform:translateY(-2px);
}

.feature-item:hover h6{
    color:#2563eb;
}

.feature-item:hover .feature-icon{
    background:#2563eb;
    color:#fff;
    transform:scale(1.08);
}

.feature-icon{
    width:48px;
    height:48px;
    border-radius:14px;
    background:#eef5ff;
    color:#2563eb;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    flex-shrink:0;
    transition:.3s;
}

.feature-item h6{
    margin-bottom:8px;
    font-size:16px;
    font-weight:600;
}

.feature-item p{
    font-size:14px;
    margin:0;
    color:#666;
    line-height:1.7;
}


/*=========================================
    MOBILE FEATURE MENU
=========================================*/

.mobile-feature-menu{
    display:none;
    list-style:none;
    padding:0;
    margin:8px 0 0;
}

.mobile-feature-menu li{
    border-bottom:1px solid #eee;
}

.mobile-feature-menu li:last-child{
    border-bottom:none;
}

.mobile-feature-menu a{
    display:block;
    padding:12px 16px;
    color:#444;
    text-decoration:none;
    transition:.25s;
}

.mobile-feature-menu a:hover{
    background:#f8f9fa;
    color:#2563eb;
}


/*=========================================
    DROPDOWN ICON
=========================================*/

.mobile-dropdown-icon{
    display:none;
    font-size:13px;
    transition:.3s;
}


/*=========================================
    MOBILE
=========================================*/

@media (max-width:991px){

    .navbar-collapse{
        margin-top:20px;
    }

    .navbar-nav{
        gap:0;
    }

    .navbar-nav .nav-item{
        border-bottom:1px solid #eef2f7;
    }

    .navbar-nav .nav-item:last-child{
        border-bottom:none;
    }

    .navbar-actions{
        margin-top:20px;
        width:100%;
        display:flex;
        flex-direction:column;
        gap:12px;
    }

    .navbar-actions .btn{
        width:100%;
        margin:0 !important;
    }

    /* Hide desktop mega menu */

    .mega-menu{
        display:none !important;
    }

    /* Show simple feature list */

    .mega-dropdown.show .mobile-feature-menu{
        display:block;
    }

    .mega-border{
        border:none;
    }

    /* Mobile chevron */

    .mobile-dropdown-icon{
        display:block;
    }

    /* Expanded state */

    .mega-dropdown.show > .nav-link{
        color:#2563eb;
        font-weight:600;
    }

    .mega-dropdown.show > .nav-link .mobile-dropdown-icon{
        color:#2563eb;
        transform:rotate(180deg);
    }

}

.desktop-trial{
    display:inline-flex;
}

.mobile-trial{
    display:none;
}

@media (max-width:991px){

    .desktop-trial{
        display:none;
    }

    .mobile-trial{
        display:block;
        margin-top:20px;
        border-top:1px solid #eee;
        padding-top:20px;
    }
}

.avatar-menu img{
    width:40px;
    height:40px;
    border-radius:50%;
}

.user-avatar{
    width:44px;
    height:44px;
    border-radius:50%;
    object-fit:cover;
    border:2px solid #e2e8f0;
    transition:all .25s ease;

}

.user-dropdown{
    display:flex;
    align-items:center;
    gap:12px;
    padding:8px 14px;
    text-decoration:none !important;
    color:#334155 !important;
    font-size:15px;
    font-weight:600;
    border-radius:14px;
    transition:all .25s ease;
}

.user-dropdown:hover .user-avatar{
    border-color:#2563eb;
}

.user-name{
    max-width:160px;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
    color:#1e293b;
    font-weight:600;
    font-size:15px;
    line-height:1;
}

.user-arrow{
    font-size:13px;
    color:#64748b;
    transition:.3s;
}

.dropdown.show .user-arrow{
    transform:rotate(180deg);
}


:root {
    --primary: #2563eb;
    --secondary: #7c3aed;
    --dark: #0f172a;
}

body{
    font-family:Inter,Arial,sans-serif;
    background:#f8fafc;color:#111827
}

.section{padding:40px 0}

.hero-section {
    padding: 20px 0 30px;
    background: linear-gradient(
        135deg,
        #f8fafc,
        #eef4ff
    );
}

.hero-badge {
    display: inline-block;
    padding: 10px 18px;
    background: #e0edff;
    color: #2563eb;
    border-radius: 50px;
    font-weight: 600;
}

.hero-title {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.1;
    margin: 25px 0;
}

.hero-desc {
    font-size: 20px;
    color: #64748b;
}

.hero-buttons {
    margin-top: 35px;
}

.hero-buttons .btn {
    margin-right: 10px;
}

.dashboard-showcase {
    width: 100%;
    height: 500px; /* Same visual height as left content */
    display: flex;
    align-items: center;
    justify-content: center;
}

#dashboardCarousel,
.carousel-inner,
.carousel-item {
    width: 100%;
    height: 100%;
}

.dashboard-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ---------------- STATS ---------------- */

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.counter {
    text-align: center;
    background: #111827;
    border-radius: 25px;
    padding: 25px;
}

.counter h2 {
    color: #d4af37;
    font-size: 50px;
}

.counter p {
    color: #fff;
}

@media (max-width: 992px) {
    .counter-grid {
        grid-template-columns: 1fr;
    }
}

/*=========================================
    PRICING SECTION
=========================================*/

.pricing-section{
    padding:100px 0;
    /*background:linear-gradient(180deg,#f8fbff 0%,#ffffff 100%);*/
}

.pricing-title{
    font-size:36px;
    font-weight:600;
    line-height:1.1;
    color:#2b68c0;
    margin-bottom:15px;
}

.pricing-subtitle{
    font-size:16px;
    color:#64748b;
    margin-bottom:40px;
    max-width:500px;
}

.pricing-dv {
    width: 1174px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0px;
    margin-bottom: 0px;
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    background: radial-gradient(circle at left top, rgb(229, 241, 253) 0%, transparent 40%) center center / cover, radial-gradient(circle at right bottom, rgb(229, 241, 253) 0%, transparent 40%), rgb(247, 251, 255);
    background-position: center center;
}


/*=========================================
    PLAN SELECTOR
=========================================*/

.plan-selector{

    border:1px solid #dbeafe;

    border-radius:26px;

    padding:18px;

    background:#fff;

}

.plan-item{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

    padding:24px;

    border-radius:20px;

    background:#edf6ff;

    cursor:pointer;

    transition:.35s;

    margin-bottom:15px;

}

.plan-item:last-child{

    margin-bottom:0;

}

.plan-item:hover{

    transform:translateY(-3px);

}

.plan-item.active{

    background:linear-gradient(135deg,#1d8cf8,#0068ff);

    color:#fff;

    box-shadow:0 18px 35px rgba(37,99,235,.25);

}

.plan-item h5{
    font-size:18px;
    font-weight:600;
    margin-bottom:10px;
}

.plan-item p{
    margin:0;
    font-size:14px;
    line-height:1.5;
    opacity:.85;
}

.plan-item.active p{
    color:rgba(255,255,255,.9);
}

.plan-item span{

    width:56px;

    height:56px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    border:2px solid rgba(255,255,255,.4);

    font-size:22px;

    flex-shrink:0;

}

.plan-item:not(.active) span{

    border:2px solid #cbd5e1;

}


/*=========================================
    RIGHT CARD
=========================================*/

.pricing-card{
    border:1px solid #cfe2ff;
    border-radius:30px;
    background:#fff;
    padding:45px;
    min-height:600px;
    box-shadow:0 25px 70px rgba(15,23,42,.05);
}

.plan-details{

    display:none;

}

.plan-details.active{

    display:block;

}


/*=========================================
    PRICE
=========================================*/

.plan-badge{
    font-size:24px;
    font-weight:700;
    color:#3b6cd9;

}

.price-box{

    display:flex;

    align-items:flex-end;

    margin:15px 0 10px;

}

.currency{
    font-size:52px;
    font-weight:700;
    color:#0f3a89;

}

.price{
    font-size:52px;
    font-weight:800;
    color:#0f3a89;
}

.duration{

    font-size:30px;

    margin-left:10px;

    color:#334155;

    margin-bottom:12px;

}

.plan-desc{
    font-size:18px;
    color:#475569;
    line-height:1.8;
    max-width:520px;
    margin-bottom:25px;

}


/*=========================================
    BUTTONS
=========================================*/

.btn-gradient{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:15px 32px;

    border-radius:50px;

    background:linear-gradient(135deg,#2196f3,#0068ff);

    color:#fff;

    font-size:20px;

    font-weight:600;

    text-decoration:none;

    transition:.3s;

}

.btn-gradient:hover{
    color:#fff;
    transform:translateY(-2px);
    box-shadow:0 15px 30px rgba(37,99,235,.25);

}

.pricing-buttons{
    display:flex;
    gap:18px;
}

.pricing-buttons .btn{
    min-width:210px;
    border-radius:50px;
    padding:15px 28px;
    font-size:16px;
    font-weight:600;
}


/*=========================================
    FEATURES
=========================================*/

.feature-list{

    list-style:none;

    padding:0;

    margin:45px 0 0;

}

.feature-list li{
    display:flex;
    align-items:center;
    gap:15px;
    font-size:18px;
    margin-bottom:10px;
    color:#0f172a;
}

.feature-list li i{

    font-size:22px;

    color:#2563eb;

}


/*=========================================
    RESPONSIVE
=========================================*/

@media(max-width:991px){

    .pricing-section{

        padding:70px 0;

    }

    .pricing-title{
        font-size:22px;
    }

    .pricing-subtitle{

        font-size:17px;

    }

    .pricing-card{
        margin-top:40px;
        min-height:auto;
        padding:30px;
    }

    .plan-item{
        padding:18px;
    }

    .plan-item h5{

        font-size:22px;

    }

    .price{

        font-size:70px;

    }

    .currency{

        font-size:42px;

    }

    .duration{

        font-size:22px;

    }

    .plan-desc{

        font-size:18px;

    }

    .feature-list li{

        font-size:18px;

    }

    .pricing-buttons{

        flex-direction:column;

    }

    .pricing-buttons .btn{

        width:100%;

    }

}

@media(max-width:576px){

    .pricing-title{
        font-size:34px;
    }

    .plan-item{
        flex-direction:column;
        align-items:flex-start;
    }

    .plan-item span{
        width:48px;
        height:48px;
        font-size:18px;
    }

    .price{
        font-size:30px;
    }

    .plan-badge{
        font-size:22px;
    }

}


.feature-card,
.price-card,
.testimonial {
    background: #fff;
    border-radius: 24px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    transition: .3s;
}

.feature-card:hover,
.price-card:hover {
    transform: translateY(-8px);
}

.testimonial-card{

    background:#fff;

    border-radius:20px;

    padding:35px;

    border:1px solid #eef2f7;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

    transition:.3s;

}

.testimonial-card:hover{

    transform:translateY(-6px);

    box-shadow:0 18px 40px rgba(37,99,235,.12);

}

.testimonial-text{

    font-size:17px;

    color:#475569;

    line-height:1.8;

    margin-bottom:0;

}

.testimonial-avatar{

    width:55px;

    height:55px;

    border-radius:50%;

    background:linear-gradient(135deg,#2563eb,#4f46e5);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:22px;

    font-weight:700;

    flex-shrink:0;

}

.icon-box{
    width:65px;
    height:65px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#eef2ff;
    font-size:28px;
    color:#2563eb;
}

.gradient-btn{
    background:linear-gradient(135deg,#2563eb,#7c3aed);
    border:none;color:#fff;
}

.feature-showcase img {
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .15);
}

.cta {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: #fff;
    border-radius: 30px;
    padding: 80px 40px;
}

.footer {
    background: #0f172a;
    color: #fff;
}




/*==================================================
    PRICING
==================================================*/

.pricing-vsection{
    padding:10px 0 90px;
    background:#f8fbff;
}

.section-badge{
    display:inline-block;
    padding:8px 18px;
    background:#eaf2ff;
    color:#2563eb;
    border-radius:50px;
    font-weight:600;
    font-size:14px;
}

.section-title{
    font-size:30px;
    font-weight:700;
    color:#111827;
}

.section-subtitle{
    color:#64748b;
    font-size:16px;
    max-width:650px;
    margin:auto;
}


/*==================================================
    TOP
==================================================*/

.pricing-top{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
}

.pricing-toggle{
    display:flex;
    background:#eef4ff;
    border-radius:50px;
    padding:6px;
}

.toggle-btn{
    border:none;
    background:transparent;
    padding:12px 30px;
    border-radius:40px;
    font-weight:600;
    color:#64748b;
    transition:.3s;
    position:relative;
}

.toggle-btn.active{
    background:#2563eb;
    color:#fff;
}

.save-badge{
    position:absolute;
    top:-10px;
    right:-12px;
    background:#16a34a;
    color:#fff;
    padding:3px 8px;
    border-radius:20px;
    font-size:11px;
}

.compare-btn{
    border-radius:50px;
    padding:12px 28px;
    position:absolute;
    right:60px;
}

/*==================================================
    CARD
==================================================*/

.pricing-card{
    background:#fff;
    border-radius:22px;
    padding:35px;
    border:1px solid #e5e7eb;
    position:relative;
    height:100%;
    transition:.35s;
    overflow:hidden;
}

.pricing-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.pricing-card.popular{
    border:2px solid #2563eb;
    box-shadow:0 15px 45px rgba(37,99,235,.15);
}

.popular-badge{
    position:absolute;
    top:20px;
    right:-38px;
    transform:rotate(45deg);
    background:#2563eb;
    color:#fff;
    width:170px;
    text-align:center;
    padding:7px 0;
    font-size:13px;
    font-weight:700;
}


/*==================================================
    HEADER
==================================================*/

.pricing-header h3{
    font-size:24px;
    font-weight:700;
    margin-bottom:12px;
    color:#111827;
}

.pricing-header p{
    color:#64748b;
    margin-bottom:10px;
    min-height:55px;
}


/*==================================================
    PRICE
==================================================*/

.pricing-price{
    text-align:center;
    margin-bottom:20px;
}

.pln-currency{
    font-size:34px;
    color:#2563eb;
    font-weight:700;
}

.amount{
    font-size:40px;
    font-weight:800;
    color:#111827;
}

.duration{
    color:#64748b;
    font-size:18px;
}


/*==================================================
    BUTTON
==================================================*/

.pricing-action{
    margin-bottom:30px;
}

.pricing-action .btn{
    padding:14px;
    border-radius:12px;
    font-weight:600;
}


/*==================================================
    LIMITS
==================================================*/

.pricing-limits{
    background:#f8fbff;
    border-radius:16px;
    padding:18px 22px;
    margin-bottom:20px;
}

.pricing-limits div{
    display:flex;
    justify-content:space-between;
    margin-bottom:12px;
    color:#475569;
    font-size:15px;
}

.pricing-limits div:last-child{
    margin-bottom:0;
}

.pricing-limits strong{
    color:#111827;
}


/*==================================================
    FEATURES
==================================================*/

.pricing-features h5{
    font-size:20px;
    font-weight:700;
    margin-bottom:18px;
}

.pricing-features ul{
    list-style:none;
    padding:0;
    margin:0;
}

.pricing-features li{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:15px;
    color:#475569;
    line-height:1.6;
}

.pricing-features li i{
    color:#22c55e;
    font-size:18px;
    margin-top:2px;
}


/*==================================================
    RESPONSIVE
==================================================*/

@media(max-width:991px){

    .section-title{
        font-size:38px;
    }

    .pricing-card{
        padding:28px;
    }

    .amount{
        font-size:52px;
    }

}

@media(max-width:767px){

    .pricing-vsection{
        padding:20px 0;
    }

    .section-title{
        font-size:32px;
    }

    .pricing-top{
        display:flex;
        flex-direction:column;
        gap:20px;
    }

    .pricing-toggle{
        width:100%;
    }

    .toggle-btn{
        flex:1;
        padding:12px;
    }
    
    .compare-btn{
        position:static;
        transform:none;
        width:100%;
    }

    .pricing-header p{
        min-height:auto;
    }

    .pricing-card{
        padding:24px;
    }

    .amount{
        font-size:46px;
    }
}









/*==================================================
    WHY TECHNOSTAY
==================================================*/

.why-technostay{
    padding:90px 0;
    background:#fff;
}

.why-card{
    height:100%;
    background:#fff;
    border:1px solid #edf2f7;
    border-radius:20px;
    padding:35px 28px;
    text-align:center;
    transition:.35s ease;
}

.why-card:hover{
    transform:translateY(-8px);
    border-color:#2563eb;
    box-shadow:0 20px 45px rgba(37,99,235,.10);
}

.why-icon{
    width:75px;
    height:75px;
    margin:0 auto 25px;
    border-radius:18px;
    background:#eef5ff;
    color:#2563eb;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    transition:.35s;
}

.why-card:hover .why-icon{
    background:#2563eb;
    color:#fff;
    transform:rotate(-8deg) scale(1.05);
}

.why-card h5{
    font-size:22px;
    font-weight:700;
    color:#111827;
    margin-bottom:15px;
}

.why-card p{
    color:#64748b;
    line-height:1.8;
    margin:0;
    font-size:15px;
}


/*==================================================
    FAQ
==================================================*/

.faq-section{
    padding:90px 0;
    background:#f8fbff;
}

.faq-section .accordion{
    max-width:900px;
    margin:auto;
}

.faq-section .accordion-item{
    border:none;
    border-radius:18px !important;
    overflow:hidden;
    margin-bottom:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.faq-section .accordion-button{
    background:#fff;
    font-size:18px;
    font-weight:600;
    color:#1e293b;
    padding:22px 28px;
    box-shadow:none !important;
}

.faq-section .accordion-button:not(.collapsed){
    background:#2563eb;
    color:#fff;
}

.faq-section .accordion-button:focus{
    box-shadow:none;
}

.faq-section .accordion-body{
    padding:22px 28px;
    background:#fff;
    color:#64748b;
    line-height:1.8;
    font-size:15px;
}


/*==================================================
    CTA
==================================================*/

.pricing-cta{
    padding:90px 0;
    background:#fff;
}

.cta-box{
    background:linear-gradient(135deg,#2563eb,#4f46e5);
    color:#fff;
    border-radius:28px;
    padding:70px 40px;
    box-shadow:0 25px 60px rgba(37,99,235,.18);
}

.cta-box h2{
    font-size:42px;
    font-weight:800;
    margin-bottom:20px;
}

.cta-box p{
    max-width:700px;
    margin:0 auto 35px;
    font-size:18px;
    line-height:1.8;
    color:rgba(255,255,255,.92);
}

.cta-box .btn{
    min-width:200px;
    padding:14px 28px;
    font-size:17px;
    font-weight:600;
    border-radius:12px;
}

.cta-box .btn-primary{
    background:#fff;
    color:#2563eb;
    border:none;
}

.cta-box .btn-primary:hover{
    background:#f8fafc;
    transform:translateY(-2px);
}

.cta-box .btn-outline-primary{
    background:transparent;
    border:2px solid rgba(255,255,255,.5);
    color:#fff;
}

.cta-box .btn-outline-primary:hover{
    background:#fff;
    color:#2563eb;
    border-color:#fff;
}


/*==================================================
    RESPONSIVE
==================================================*/

@media(max-width:991px){

    .why-technostay,
    .faq-section,
    .pricing-cta{
        padding:70px 0;
    }

    .cta-box{
        padding:55px 30px;
    }

    .cta-box h2{
        font-size:34px;
    }

}

@media(max-width:767px){

    .why-card{
        padding:30px 22px;
    }

    .why-icon{
        width:65px;
        height:65px;
        font-size:28px;
    }

    .why-card h5{
        font-size:20px;
    }

    .faq-section .accordion-button{
        font-size:16px;
        padding:18px 20px;
    }

    .faq-section .accordion-body{
        padding:18px 20px;
    }

    .cta-box{
        padding:45px 20px;
    }

    .cta-box h2{
        font-size:28px;
    }

    .cta-box p{
        font-size:16px;
    }

    .cta-box .btn{
        width:100%;
        margin:8px 0 !important;
    }

}




/*=========================================
    FOOTER CTA
=========================================*/

.footer-cta{

    position:relative;

    margin-bottom:-90px;

    z-index:10;

}

.footer-cta-box{

    background:linear-gradient(135deg,#2563eb,#4f46e5);

    border-radius:28px;

    padding:55px 60px;

    color:#fff;

    box-shadow:0 35px 80px rgba(37,99,235,.25);

    overflow:hidden;

    position:relative;

}

.footer-cta-box::before{

    content:"";

    position:absolute;

    width:320px;

    height:320px;

    background:rgba(255,255,255,.08);

    border-radius:50%;

    top:-150px;

    right:-100px;

}

.footer-cta-box::after{

    content:"";

    position:absolute;

    width:220px;

    height:220px;

    background:rgba(255,255,255,.05);

    border-radius:50%;

    bottom:-100px;

    left:-80px;

}

.cta-badge{

    display:inline-block;

    background:rgba(255,255,255,.15);

    color:#fff;

    padding:8px 16px;

    border-radius:30px;

    margin-bottom:18px;

    font-weight:600;

    backdrop-filter:blur(8px);

}

.footer-cta-box h2{

    font-size:42px;

    font-weight:800;

    margin-bottom:18px;

}

.footer-cta-box p{

    color:rgba(255,255,255,.92);

    font-size:18px;

    line-height:1.8;

    max-width:700px;

    margin-bottom:0;

}

.footer-cta-box .btn{

    padding:15px 30px;

    border-radius:14px;

    font-weight:600;

}

.footer-cta-box .btn-light{

    color:#2563eb;

}

.footer-cta-box .btn-light:hover{

    transform:translateY(-3px);

}

.footer-cta-box .btn-outline-light:hover{

    background:#fff;

    color:#2563eb;

}


/* Responsive */

@media(max-width:991px){

    .footer-cta{

        margin-bottom:-70px;

    }

    .footer-cta-box{

        padding:40px 30px;

        text-align:center;

    }

    .footer-cta-box h2{

        font-size:32px;

    }

    .footer-cta-box .btn{

        width:100%;

        margin:8px 0 !important;

    }

}

/*=========================================
    FOOTER
=========================================*/

.footer{

    position:relative;

    background:linear-gradient(180deg,#0b1120 0%,#111827 100%);

    color:#cbd5e1;

    padding:170px 0 35px;

    overflow:hidden;

}

.footer::before{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    background:rgba(37,99,235,.08);

    border-radius:50%;

    filter:blur(100px);

    top:-180px;

    left:-120px;

}

.footer::after{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    background:rgba(99,102,241,.08);

    border-radius:50%;

    filter:blur(100px);

    right:-120px;

    bottom:-120px;

}

.footer .container{

    position:relative;

    z-index:2;

}


/*=========================================
    LOGO
=========================================*/

.footer-logo img{

    height:50px;

}

.footer-desc{

    margin:25px 0;

    color:#94a3b8;

    line-height:1.9;

    font-size:15px;

}

.footer-rating{

    display:flex;

    align-items:center;

    gap:12px;

    margin-top:20px;

}

.footer-rating .stars{

    color:#fbbf24;

    font-size:15px;

}

.footer-rating span{

    color:#cbd5e1;

    font-size:14px;

}


/*=========================================
    LINKS
=========================================*/

.footer h5{

    color:#fff;

    font-size:20px;

    font-weight:700;

    margin-bottom:25px;

}

.footer ul{

    margin:0;

    padding:0;

    list-style:none;

}

.footer ul li{

    margin-bottom:15px;

}

.footer ul li:last-child{

    margin-bottom:0;

}

.footer ul li a{

    color:#94a3b8;

    text-decoration:none;

    transition:.3s;

    position:relative;

}

.footer ul li a::before{

    content:"›";

    opacity:0;

    margin-right:0;

    transition:.3s;

}

.footer ul li a:hover{

    color:#fff;

    padding-left:8px;

}

.footer ul li a:hover::before{

    opacity:1;

    margin-right:6px;

}


/*=========================================
    CONTACT
=========================================*/

.footer-contact li{

    display:flex;

    gap:12px;

    color:#cbd5e1;

    line-height:1.7;

}

.footer-contact i{

    color:#3b82f6;

    font-size:18px;

    margin-top:2px;

}


/*=========================================
    STATS
=========================================*/

.footer-stats{

    margin:70px 0;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.stat-item{

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.06);

    backdrop-filter:blur(15px);

    border-radius:22px;

    padding:30px;

    text-align:center;

    transition:.35s;

}

.stat-item:hover{

    transform:translateY(-8px);

    border-color:#2563eb;

    background:rgba(37,99,235,.10);

}

.stat-item h3{

    color:#fff;

    font-size:38px;

    font-weight:800;

    margin-bottom:8px;

}

.stat-item p{

    margin:0;

    color:#94a3b8;

}


/*=========================================
    DIVIDER
=========================================*/

.footer hr{

    border-color:rgba(255,255,255,.08);

    margin:40px 0;

}


/*=========================================
    BOTTOM
=========================================*/

.footer-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

    color:#94a3b8;

    font-size:15px;

}


/*=========================================
    SOCIAL
=========================================*/

.footer-social{

    display:flex;

    gap:14px;

}

.footer-social a{

    width:44px;

    height:44px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.08);

    color:#fff;

    text-decoration:none;

    transition:.35s;

}

.footer-social a:hover{

    background:#2563eb;

    border-color:#2563eb;

    transform:translateY(-5px) rotate(8deg);

}


/*=========================================
    RESPONSIVE
=========================================*/

@media(max-width:991px){

    .footer{

        padding-top:150px;

        text-align:center;

    }

    .footer-rating{

        justify-content:center;

    }

    .footer-contact li{

        justify-content:center;

    }

    .footer-stats{

        grid-template-columns:repeat(2,1fr);

    }

    .footer-bottom{

        flex-direction:column;

    }

    .footer-social{

        justify-content:center;

    }

}

@media(max-width:576px){

    .footer{

        padding-top:130px;

    }

    .footer-stats{

        grid-template-columns:1fr;

    }

    .stat-item{

        padding:24px;

    }

    .stat-item h3{

        font-size:32px;

    }

    .footer-bottom{

        font-size:14px;

    }

}

.modal .btn-close{
    position: absolute;
    top: 25px;
    right: 30px;          /* move slightly left by increasing this value */
    
    width: 28px;
    height: 28px;
    padding: 0;

    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50%;

    background-color: rgba(0,0,0,.15);
    background-size: 10px;
    opacity: 1;

    transition: all .25s ease;
}

.modal .btn-close:hover{
    background-color: rgba(0,0,0,.3);
    transform: scale(1.05);
}

.modal .btn-close:focus{
    box-shadow: none;
}



/*=========================================
    CHECKOUT PAGE
=========================================*/

.checkout-section{

    background:#f8fafc;

    padding:80px 0;

}

.checkout-card{

    background:#fff;

    border-radius:22px;

    padding:35px;

    border:1px solid #e2e8f0;

    box-shadow:0 15px 45px rgba(15,23,42,.06);

    height:100%;

}

.checkout-badge{

    display:inline-block;

    background:#eff6ff;

    color:#2563eb;

    padding:8px 18px;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

}

.checkout-card h2{

    font-size:24px;

    font-weight:700;

    color:#0f172a;

    margin-bottom:10px;

}

.checkout-card h4{

    font-size:18px;

    font-weight:700;

    color:#0f172a;

}

.checkout-card h5{

    font-size:18px;

    font-weight:600;

    color:#0f172a;

}

.plan-price{

    font-size:30px;
    font-weight:800;
    color:#2563eb;
    margin:25px 0;
    line-height:1;
}

.plan-price small{

    font-size:18px;

    color:#64748b;

    font-weight:500;

}

.pln-feature-item{

    display:flex;

    align-items:center;

    gap:12px;

    background:#f8fafc;

    border:1px solid #e2e8f0;

    border-radius:12px;

    padding:14px 16px;

    transition:.3s;

    font-weight:500;

    color:#334155;

}

.pln-feature-item:hover{

    background:#eff6ff;

    border-color:#bfdbfe;

    transform:translateY(-2px);

}

.pln-feature-item i{

    color:#2563eb;

    font-size:18px;

}

.summary-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:8px;
    color:#475569;
    font-size:14px;
}

.summary-row strong{

    color:#0f172a;

}

.total-row{

    font-size:16px;

    font-weight:700;

}

.payment-option{

    display:flex;

    align-items:flex-start;

    gap:15px;

    border:2px solid #e2e8f0;

    border-radius:16px;

    padding:18px;

    cursor:pointer;

    transition:.3s;

    width:100%;

}

.payment-option:hover{

    border-color:#2563eb;

    background:#eff6ff;

}

.payment-option input{

    margin-top:5px;

    transform:scale(1.2);

}

.payment-option strong{

    display:block;

    color:#0f172a;

    font-size:16px;

}

.payment-option small{

    color:#64748b;

    display:block;

    margin-top:4px;

}

.checkout-card .btn{

    padding:15px;

    border-radius:14px;

    font-size:17px;

    font-weight:600;

}


/*=========================================
    RESPONSIVE
=========================================*/

@media(max-width:991px){

    .checkout-section{

        padding:50px 0;

    }

    .checkout-card{

        padding:25px;

    }

    .checkout-card h2{

        font-size:28px;

    }

    .plan-price{

        font-size:42px;

    }

}

@media(max-width:576px){

    .checkout-card{

        padding:20px;

    }

    .summary-row{

        font-size:15px;

    }

    .total-row{

        font-size:18px;

    }

    .payment-option{

        padding:15px;

    }

}


.wallet-box{

    display:flex;

    align-items:center;

    gap:18px;

    padding:20px;

    border:1px solid #e2e8f0;

    border-radius:16px;

    background:#f8fafc;

}

.wallet-icon{

    width:60px;

    height:60px;

    border-radius:50%;

    background:#eff6ff;

    color:#2563eb;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

}

.wallet-details h4{

    margin:0;

    font-size:28px;

    font-weight:700;

    color:#0f172a;

}

.wallet-details p{

    margin:4px 0 0;

    color:#64748b;

}

.alert{

    border-radius:14px;

}

.btn-lg{

    padding:15px 18px;

}

/*=========================================
    PAYMENT ASSURANCE
=========================================*/

.payment-assurance{

    padding:70px 0 120px;

    background:#f8fafc;

}

.assurance-item{

    background:#fff;

    border:1px solid #e2e8f0;

    border-radius:18px;

    padding:30px 25px;

    height:100%;

    transition:.3s;

}

.assurance-item:hover{

    transform:translateY(-6px);

    border-color:#2563eb;

    box-shadow:0 15px 35px rgba(37,99,235,.08);

}

.assurance-item i{

    font-size:42px;

    color:#2563eb;

    margin-bottom:18px;

}

.assurance-item h5{

    font-weight:700;

    margin-bottom:12px;

    color:#0f172a;

}

.assurance-item p{

    margin:0;

    color:#64748b;

    line-height:1.8;

}

@media(max-width:991px){

    .payment-assurance{

        padding:60px 0 100px;

    }

}

.or-divider{
    position: relative;
    text-align: center;
    margin: 5px 0;
}

.or-divider::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 42%;
    height: 1px;
    background: #dee2e6;
}

.or-divider::after{
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 42%;
    height: 1px;
    background: #dee2e6;
}

.or-divider span{
    display: inline-block;
    background: #fff;
    padding: 0 15px;
    color: #6c757d;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

/* ==========================================================
   CONTACT PAGE
========================================================== */

.contact-hero{
    padding:20px 0 20px;
    background:linear-gradient(135deg,#0d6efd,#4f8dfd);
    color:#fff;
}

.contact-hero h1{
    font-size:40px;
    font-weight:700;
    margin-bottom:10px;
}

.contact-hero p{
    max-width:700px;
    margin:auto;
    font-size:18px;
    opacity:.95;
    line-height:1.5;
}

.contact-section{
    padding:40px 0;
    background:#f8f9fc;
}

.contact-card,
.contact-info-card{
    background:#fff;
    border-radius:18px;
    padding:40px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    height:100%;
}

.contact-card h3,
.contact-info-card h3{
    font-weight:700;
    margin-bottom:30px;
}

.contact-card .form-control{
    height:42px;
    border-radius:10px;
    border:1px solid #dee2e6;
    transition:.3s;
}

.contact-card textarea.form-control{
    height:auto;
}

.contact-card .form-control:focus{
    border-color:#0d6efd;
    box-shadow:0 0 0 .2rem rgba(13,110,253,.15);
}

.contact-card label{
    font-weight:500;
    margin-bottom:6px;
}

.contact-card .btn{
    padding:14px 34px;
    border-radius:10px;
    font-weight:600;
}


/* ==========================================================
   CONTACT INFO
========================================================== */

.info-item{
    display:flex;
    align-items:flex-start;
    gap:18px;
    margin-bottom:30px;
}

.info-icon{
    width:55px;
    height:55px;
    border-radius:50%;
    background:#eef5ff;
    color:#0d6efd;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    flex-shrink:0;
}

.info-item h6{
    margin-bottom:6px;
    font-weight:700;
}

.info-item p{
    color:#6c757d;
    margin:0;
    line-height:1.7;
}

.social-links{
    display:flex;
    gap:12px;
}

.social-links a{
    width:46px;
    height:46px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#f5f7fa;
    color:#0d6efd;
    text-decoration:none;
    transition:.3s;
    font-size:20px;
}

.social-links a:hover{
    background:#0d6efd;
    color:#fff;
    transform:translateY(-3px);
}

/* ==========================================================
   MOBILE
========================================================== */

@media(max-width:991px){

    .contact-hero{
        padding:20px 0 20px;
    }

    .contact-hero h1{
        font-size:30px;
    }

    .contact-card,
    .contact-info-card{
        padding:30px;
    }
}