@import url('variables.css');
@import url('components.css');

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:var(--font-family);

    background:var(--background);

    color:var(--navy);

    overflow-x:hidden;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

    color:inherit;

}

ul{

    list-style:none;

}

/*==========================================
            HEADER
==========================================*/

.header{
    position:sticky;
    top:0;
    z-index:999;
    background:#fff;
    box-shadow:0 2px 12px rgba(0,0,0,.05);
}

.navbar{

    display:flex;
    align-items:center;
    justify-content:space-between;

    height:82px;

    gap:30px;

}

/*================ LOGO ================*/

.logo{

    display:flex;
    align-items:center;
    flex-shrink:0;

}

.logo img{
    height:62px;
    width:auto;
    display:block;
    object-fit:contain;
}

/*================ NAVIGATION ================*/

.nav{

    flex:1;

    display:flex;
    justify-content:center;

}

.nav ul{

    display:flex;
    align-items:center;

    gap:34px;

}

.nav ul li{

    position:relative;
    list-style:none;

}

.nav a{

    text-decoration:none;

    color:var(--navy);

    font-size:15px;

    font-weight:500;

    white-space:nowrap;

    transition:.25s;

}

.nav a:hover{

    color:var(--primary);

}

.active{

    color:var(--primary);

}

/*================ DROPDOWN BUTTON ================*/

.dropdown-btn{

    display:flex;

    align-items:center;

    gap:8px;

    background:none;

    border:none;

    cursor:pointer;

    font-family:inherit;

    font-size:15px;

    font-weight:500;

    color:var(--navy);

    white-space:nowrap;

}

.dropdown-btn:hover{

    color:var(--primary);

}

.arrow{

    font-size:11px;

}

/*================ DROPDOWN ================*/

.dropdown-menu{

    position:absolute;

    top:58px;

    left:0;

    width:230px;

    background:#fff;

    border-radius:16px;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    overflow:hidden;

    display:none;

}

.dropdown-menu.show{

    display:block;

}

.dropdown-menu li{

    display:block;

}

.dropdown-menu li a{

    display:block;

    padding:16px 20px;

    font-size:15px;

}

.dropdown-menu li a:hover{

    background:#F8FAFC;

    color:var(--primary);

}

/*================ RIGHT SIDE ================*/

.header-right{

    display:flex;

    align-items:center;

    gap:12px;

    flex-shrink:0;

}

/*================ OUTLINE BUTTONS ================*/

.btn-outline{

    border:2px solid var(--green);

    color:var(--green);

    padding:10px 18px;

    border-radius:12px;

    font-size:15px;

    font-weight:600;

    transition:.25s;

    white-space:nowrap;

}

.btn-outline:hover{

    background:var(--green);

    color:#fff;

}

/*================ Log In ================*/

.LogIn{

    font-size:15px;

    font-weight:600;

    white-space:nowrap;

}

.LogIn:hover{

    color:var(--primary);

}

/*================ GET STARTED ================*/

.header-right .btn-primary{

    padding:11px 22px;

    font-size:15px;

    border-radius:12px;

}

/*==========================================
        DROPDOWN ANIMATION
==========================================*/

.arrow{

    transition:.3s;

}

.arrow.rotate{

    transform:rotate(180deg);

}

.dropdown-menu{

    opacity:0;

    visibility:hidden;

    transform:translateY(12px);

    transition:.25s ease;

    display:block;

}

.dropdown-menu.show{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

/*==================================================
                    HERO
==================================================*/

.hero{

    padding:70px 0;

    background:linear-gradient(to bottom,#f8fbff,#ffffff);

}

.hero-container{

    display:grid;

    grid-template-columns:1.1fr .9fr;

    gap:80px;

    align-items:center;

}

/*================ BADGE ================*/

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 22px;

    background:#F1F9F4;

    border:1px solid #D8F0DF;

    border-radius:50px;

    font-size:15px;

    font-weight:600;

    color:var(--navy);

    margin-bottom:28px;

}

.hero-badge span{

    color:var(--green);

    font-size:18px;

}

/*================ HEADING ================*/

.hero-content h1{

    font-size:52px;

    line-height:1.15;

    font-weight:800;

    color:var(--navy);

    margin-bottom:20px;

    max-width:650px;

}

.hero-content h1 span{

    display:block;

    color:var(--primary);

    font-size:0.95em;

}

/*================ DESCRIPTION ================*/

.hero-text{

    max-width:600px;

    font-size:17px;

    line-height:1.7;

    color:#5E6B82;

    margin-bottom:30px;

}

/*================ EXAM TAGS ================*/

.exam-tags{

    display:flex;

    flex-wrap:wrap;

    gap:14px;

    margin-bottom:40px;

}

.exam-tags span{

    padding:12px 18px;

    border:1px solid #E6EBF3;

    border-radius:40px;

    background:#fff;

    font-size:14px;

    font-weight:600;

    transition:.3s;

    cursor:pointer;

}

.exam-tags span:hover{

    background:var(--primary);

    color:#fff;

}

/*================ FEATURE CARDS ================*/

.hero-features{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:20px;

    margin-bottom:40px;

}

.feature-card{

    background:#fff;

    border-radius:20px;

    padding:28px;

    text-align:center;

    box-shadow:0 8px 25px rgba(0,0,0,.06);

    transition:.3s;

}

.feature-card:hover{

    transform:translateY(-8px);

}

.feature-icon{

    font-size:38px;

    margin-bottom:18px;

}

.feature-card h3{

    margin-bottom:10px;

    color:var(--navy);

    font-size:20px;

}

.feature-card p{

    color:#6A7285;

    font-size:15px;

    line-height:1.6;

}

/*================ BUTTONS ================*/

.hero-buttons{

    display:flex;

    gap:20px;

    margin-bottom:28px;

}

.hero-buttons .btn{

    min-width:190px;

    text-align:center;

    padding:15px 26px;

}

/*================ TRUST ROW ================*/

.trust-row{

    display:flex;

    gap:30px;

    flex-wrap:wrap;

    color:#5E6B82;

    font-size:15px;

    font-weight:500;

}

/*================ RIGHT CARD ================*/

.preview-card{

    background:#fff;

    border-radius:28px;

    padding:30px;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.preview-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:30px;

}

.preview-header h3{

    color:var(--primary);

    font-size:24px;

}

.preview-header select{

    padding:12px 18px;

    border-radius:12px;

    border:1px solid #DCE4F0;

    font-size:15px;

    cursor:pointer;

}

.question-progress{

    margin-bottom:18px;

    color:#6A7285;

    font-weight:600;

}

.question-box{

    background:#F7FAFF;

    border-radius:20px;

    padding:25px;

}

.question-box h4{

    margin-bottom:25px;

    color:var(--navy);

    font-size:20px;

    line-height:1.7;

}

.answers{

    display:grid;

    gap:15px;

}

.answer-btn{

    padding:16px 20px;

    background:#fff;

    border:1px solid #DCE4F0;

    border-radius:14px;

    text-align:left;

    cursor:pointer;

    transition:.3s;

    font-size:15px;

}

.answer-btn:hover{

    border-color:var(--primary);

    background:#F5F9FF;

}

.preview-actions{

    display:flex;

    gap:15px;

    margin-top:25px;

}

.preview-actions .btn{

    flex:1;

}

#rationaleBox{

    margin-top:25px;

    padding:20px;

    border-radius:16px;

    background:#EEF9F2;

    display:none;

}

/*================ RESPONSIVE ================*/

@media(max-width:1100px){

.hero-container{

grid-template-columns:1fr;

}

.hero-content{

text-align:center;

}

.hero-text{

margin:auto auto 35px;

}

.hero-buttons{

justify-content:center;

}

.exam-tags{

justify-content:center;

}

.trust-row{

justify-content:center;

}

.hero-features{

grid-template-columns:1fr;

}

}

#nextQuestion{

    display:none;

}

.answer-btn{

    width:100%;

}

.answer-btn:disabled{

    cursor:not-allowed;

}

/*==========================================
            PROGRESS BAR
==========================================*/

.progress-track{

    width:100%;

    height:8px;

    background:#E5E7EB;

    border-radius:50px;

    overflow:hidden;

    margin:15px 0 25px;

}

.progress-fill{

    width:33.33%;

    height:100%;

    background:linear-gradient(90deg,var(--primary),var(--green));

    border-radius:50px;

    transition:width .4s ease;

}

.hero-message{

    display:none;

    margin-top:15px;

    padding:12px 16px;

    border-radius:8px;

    background:#FEF3C7;

    color:#92400E;

    font-weight:600;

    border:1px solid #FCD34D;

}

/*==========================================
            EXAM CATEGORIES
==========================================*/

.exam-categories{

    padding:40px 0 100px;

}

.section-heading{

    text-align:center;

    max-width:700px;

    margin:0 auto 60px;

}

.section-tag{

    display:inline-block;

    padding:8px 18px;

    border-radius:50px;

    background:#E8F1FF;

    color:var(--primary);

    font-weight:600;

    margin-bottom:20px;

}

.section-heading h2{

    font-size:48px;

    font-weight:800;

    color:var(--navy);

    margin-bottom:20px;

}

.section-heading h2 span{

    color:var(--primary);

}

.section-heading p{

    font-size:18px;

    color:#64748B;

    line-height:1.7;

}

.exam-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.exam-card{

    background:#fff;

    border-radius:20px;

    padding:35px;

    border:1px solid #E5E7EB;

    transition:.3s;

    display:flex;

    flex-direction:column;

}

.exam-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(0,0,0,.08);

}

.exam-icon{

    width:70px;

    height:70px;

    border-radius:18px;

    background:var(--primary);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    margin-bottom:25px;

}

.exam-card h3{

    font-size:28px;

    margin-bottom:15px;

    color:var(--navy);

}

.exam-card p{

    color:#64748B;

    line-height:1.7;

    margin-bottom:25px;

}

.exam-card ul{

    list-style:none;

    margin-bottom:30px;

}

.exam-card ul li{

    padding:8px 0;

    color:#334155;

}

.exam-card .btn{

    margin-top:auto;

    width:100%;

    text-align:center;

}

/*==========================================
            HOW IT WORKS
==========================================*/

.how-it-works{

    padding:80px 0;

    background:#FFFFFF;

}

.steps-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:25px;

    margin-top:60px;

    margin-bottom:70px;

}

.step-card{

    background:#fff;

    border:1px solid #E5E7EB;

    border-radius:20px;

    padding:35px 25px;

    text-align:center;

    transition:.3s;

    position:relative;

    box-shadow:0 10px 30px rgba(15,23,42,.05);

}

.step-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(37,99,235,.12);

}

.step-number{

    width:55px;

    height:55px;

    border-radius:15px;

    background:var(--primary);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:24px;

    font-weight:700;

    margin:0 auto 20px;

}

.step-icon{

    width:70px;

    height:70px;

    border-radius:18px;

    background:#EEF4FF;

    color:var(--primary);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

    margin:0 auto 25px;

}

.step-card h3{

    font-size:24px;

    color:var(--navy);

    margin-bottom:15px;

}

.step-card p{

    color:#64748B;

    line-height:1.8;

    font-size:16px;

}

.stats-row{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-bottom:50px;

}

.stat-box{

    text-align:center;

}

.stat-box h3{

    font-size:48px;

    color:var(--primary);

    font-weight:800;

    margin-bottom:10px;

}

.stat-box p{

    color:#64748B;

    font-size:17px;

}

.section-button{

    text-align:center;

}

.section-button .btn{

    padding:16px 40px;

}

/*=========================================
            PRICING SECTION
=========================================*/

.pricing{

    padding:70px 0;

    background:#f8fbff;

}

.pricing .section-title{

    text-align:center;

    margin-bottom:50px;

}

.pricing .section-title h2{

    font-size:40px;

    color:var(--navy);

    margin:12px 0;

}

.pricing .section-title p{

    max-width:650px;

    margin:auto;

    color:#64748B;

    font-size:17px;

    line-height:1.7;

}

/*================ GRID ================*/

.pricing-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:28px;

    align-items:stretch;

}

/*================ CARD ================*/

.pricing-card{

    background:#fff;

    border-radius:20px;

    padding:30px 28px;

    border:1px solid #E5E7EB;

    box-shadow:0 8px 25px rgba(0,0,0,.06);

    transition:.35s;

    position:relative;

    display:flex;

    flex-direction:column;

}

.pricing-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 40px rgba(37,99,235,.15);

}

/*================ FEATURED ================*/

.featured{

    border:2px solid var(--primary);

    transform:scale(1.03);

}

.featured:hover{

    transform:scale(1.05);

}

.popular{

    border:2px solid var(--green);

}

/*================ LABELS ================*/

.pricing-label{

    position:absolute;

    top:-14px;

    left:50%;

    transform:translateX(-50%);

    background:var(--green);

    color:#fff;

    padding:7px 18px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

}

.pricing-label.purple{

    background:#9333EA;

}

.pricing-label.blue{

    background:var(--primary);

}

/*================ TITLE ================*/

.pricing-card h3{

    margin-top:18px;

    text-align:center;

    font-size:27px;

    color:var(--navy);

}

/*================ PRICE ================*/

.price{

    margin:20px 0 10px;

    text-align:center;

    font-size:50px;

    font-weight:800;

    color:var(--navy);

}

.currency{

    font-size:24px;

    vertical-align:top;

}

.duration{

    font-size:18px;

    color:#64748B;

    font-weight:500;

}

/*================ DESCRIPTION ================*/

.save-text{

    text-align:center;

    color:#64748B;

    font-size:14px;

    margin-bottom:20px;

}

/*================ FEATURES ================*/

.pricing-card ul{

    list-style:none;

    padding:0;

    margin:0 0 28px;

}

.pricing-card ul li{

    padding:8px 0;

    border-bottom:1px solid #F1F5F9;

    color:#475569;

    font-size:14px;

    line-height:1.5;

}

/*================ BUTTON ================*/

.pricing-btn{

    margin-top:auto;

    width:100%;

    padding:14px;

    font-size:16px;

    border-radius:12px;

}

/*================ RESPONSIVE ================*/

@media(max-width:992px){

    .pricing-grid{

        grid-template-columns:1fr;

    }

    .featured{

        transform:none;

    }

    .featured:hover{

        transform:translateY(-8px);

    }

}

@media(max-width:768px){

    .pricing{

        padding:60px 0;

    }

    .pricing .section-title h2{

        font-size:34px;

    }

    .pricing-card{

        padding:25px;

    }

    .price{

        font-size:44px;

    }

    .pricing-card h3{

        font-size:24px;

    }

    .pricing-card ul li{

        font-size:13px;

    }

}

/*=========================================
TESTIMONIALS
=========================================*/

.testimonials{
    padding:80px 0;
    background:#fff;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(270px,1fr));
    gap:30px;
    margin-top:50px;
}

.testimonial-card{
    background:#fff;
    border:1px solid #edf1f7;
    border-radius:20px;
    padding:30px;
    transition:.3s;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.testimonial-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.student-header{
    display:flex;
    align-items:center;
    gap:16px;
    margin-bottom:20px;
}

.student-avatar{
    width:65px;
    height:65px;
    border-radius:50%;
    background:linear-gradient(135deg,#2563eb,#7c3aed);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    font-weight:700;
    flex-shrink:0;
}

.student-header h4{
    margin:0;
    font-size:22px;
    font-weight:700;
    color:#111827;
}

.student-header span{
    display:block;
    margin-top:4px;
    color:#6b7280;
    font-size:14px;
}

.stars{
    color:#fbbf24;
    font-size:20px;
    letter-spacing:2px;
    margin-bottom:18px;
}

.testimonial-text{
    color:#4b5563;
    font-size:16px;
    line-height:1.8;
    margin-bottom:25px;
    font-style:italic;
    min-height:120px;
}

.verified{
    display:inline-block;
    padding:8px 16px;
    border-radius:30px;
    background:#ecfdf5;
    color:#16a34a;
    font-size:14px;
    font-weight:600;
}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:768px){

    .testimonials{
        padding:60px 0;
    }

    .testimonial-card{
        padding:25px;
    }

    .student-avatar{
        width:55px;
        height:55px;
        font-size:18px;
    }

    .student-header h4{
        font-size:19px;
    }

    .testimonial-text{
        font-size:15px;
        min-height:auto;
    }

}

/*=========================================
            FAQ & CONTACT
=========================================*/

.faq-contact{
    padding:70px 0;
    background:#f8fbff;
}

.faq-grid{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:40px;
    margin-top:50px;
    align-items:start;
}

/* FAQ */

.faq-column{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.faq-item{
    background:#fff;
    border:1px solid #e6edf7;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.faq-question{
    width:100%;
    background:none;
    border:none;
    padding:20px 25px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:17px;
    font-weight:600;
    color:#14213d;
    cursor:pointer;
    transition:.3s;
}

.faq-question:hover{
    background:#f5f9ff;
}

.faq-question span{
    font-size:24px;
    color:#2563eb;
    transition:.3s;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .35s ease;
    padding:0 25px;
    color:#5d6678;
    line-height:1.8;
    font-size:15px;
}

.faq-answer p{
    padding-bottom:20px;
}

.faq-question.active{
    color:#2563eb;
}

/* CONTACT CARD */

.contact-card{
    background:#fff;
    border-radius:18px;
    padding:35px;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
    border:1px solid #e8eef7;
    position:sticky;
    top:110px;
}

.contact-card h3{
    font-size:28px;
    margin-bottom:15px;
    color:#14213d;
}

.contact-card p{
    color:#5d6678;
    line-height:1.7;
    margin-bottom:25px;
}

.contact-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    width:100%;
    text-decoration:none;
    padding:15px;
    border-radius:12px;
    font-weight:600;
    margin-bottom:15px;
    transition:.3s;
}

/* Email */

.email-btn{
    background:#2563eb;
    color:#fff;
}

.email-btn:hover{
    background:#1d4ed8;
    transform:translateY(-3px);
}

/* Call */

.call-btn{
    background:#16a34a;
    color:#fff;
}

.call-btn:hover{
    background:#15803d;
    transform:translateY(-3px);
}

/* WhatsApp */

.whatsapp-btn{
    background:#25d366;
    color:#fff;
}

.whatsapp-btn:hover{
    background:#1ebe5d;
    transform:translateY(-3px);
}

/* TikTok */

.tiktok-btn{
    background:#111827;
    color:#fff;
}

.tiktok-btn:hover{
    background:#000;
    transform:translateY(-3px);
}

/*=========================================
            RESPONSIVE
=========================================*/

@media(max-width:991px){

    .faq-grid{
        grid-template-columns:1fr;
    }

    .contact-card{
        position:static;
    }

}

@media(max-width:768px){

    .faq-contact{
        padding:60px 0;
    }

    .faq-question{
        font-size:16px;
        padding:18px;
    }

    .faq-answer{
        padding:0 18px;
        font-size:14px;
    }

    .contact-card{
        padding:25px;
    }

    .contact-card h3{
        font-size:24px;
    }

}

/*=========================================
                FOOTER
=========================================*/

.footer{

    background:#0f172a;
    color:#cbd5e1;
    padding:70px 0 25px;

}

.footer-grid{

    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:50px;
    margin-bottom:40px;

}

.footer-logo{

    width:90px;
    margin-bottom:20px;

}

.footer-text{

    line-height:1.8;
    margin-bottom:25px;
    max-width:320px;

}

.footer-social{

    display:flex;
    gap:15px;

}

.footer-social a{

    width:45px;
    height:45px;
    border-radius:50%;
    background:#1e293b;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    transition:.3s;

}

.footer-social a:hover{

    background:#2563eb;
    transform:translateY(-3px);

}

.footer-col h4{

    color:#fff;
    margin-bottom:20px;
    font-size:20px;

}

.footer-col ul{

    list-style:none;
    padding:0;

}

.footer-col ul li{

    margin-bottom:14px;

}

.footer-col ul li a{

    color:#cbd5e1;
    text-decoration:none;
    transition:.3s;

}

.footer-col ul li a:hover{

    color:#3b82f6;

}

.footer hr{

    border:none;
    border-top:1px solid rgba(255,255,255,.1);
    margin:25px 0;

}

.footer-bottom{

    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;

}

.footer-bottom p{

    margin:0;

}

.footer-links{

    display:flex;
    gap:25px;
    flex-wrap:wrap;

}

.footer-links a{

    color:#cbd5e1;
    text-decoration:none;
    transition:.3s;

}

.footer-links a:hover{

    color:#3b82f6;

}

/*=========================================
            RESPONSIVE
=========================================*/

@media(max-width:991px){

.footer-grid{

grid-template-columns:1fr 1fr;

}

}

@media(max-width:768px){

.footer{

padding:60px 0 25px;

}

.footer-grid{

grid-template-columns:1fr;
text-align:center;

}

.footer-logo{

margin:auto;
margin-bottom:20px;

}

.footer-text{

margin:auto;
margin-bottom:25px;

}

.footer-social{

justify-content:center;

}

.footer-bottom{

flex-direction:column;
text-align:center;

}

.footer-links{

justify-content:center;

}

}

/*=========================================
            CONTACT PAGE
=========================================*/

.contact-page{
    padding:70px 0;
    background:#f8fbff;
    min-height:100vh;
}

/* Back Button */

.back-home{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:12px 22px;
    background:#2563eb;
    color:#fff;
    text-decoration:none;
    border-radius:10px;
    font-weight:600;
    margin-bottom:40px;
    transition:.3s;
}

.back-home:hover{
    background:#1d4ed8;
    transform:translateY(-3px);
}

/* Layout */

.contact-wrapper{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:40px;
    margin-top:40px;
}

/*=========================================
            FORM CARD
=========================================*/

.contact-form-card{
    background:#fff;
    padding:40px;
    border-radius:18px;
    border:1px solid #e6edf7;
    box-shadow:0 12px 35px rgba(0,0,0,.06);
}

.contact-form-card h3{
    margin-bottom:10px;
    color:#14213d;
    font-size:30px;
}

.form-group{
    margin-top:20px;
}

.form-group label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
    color:#14213d;
}

.form-group input,
.form-group textarea{
    width:100%;
    padding:15px;
    border:1px solid #d7dfeb;
    border-radius:10px;
    font-size:15px;
    outline:none;
    transition:.3s;
    font-family:inherit;
    background:#fff;
}

.form-group textarea{
    resize:vertical;
}

.form-group input:focus,
.form-group textarea:focus{
    border-color:#2563eb;
    box-shadow:0 0 0 3px rgba(37,99,235,.12);
}

.contact-submit{
    width:100%;
    margin-top:25px;
}

/*=========================================
        CONTACT INFO CARD
=========================================*/

.contact-info-card{
    background:#fff;
    padding:35px;
    border-radius:18px;
    border:1px solid #e6edf7;
    box-shadow:0 12px 35px rgba(0,0,0,.06);
    height:fit-content;
}

.contact-info-card h3{
    margin-bottom:10px;
    color:#14213d;
}

.contact-info-card p{
    color:#6b7280;
    line-height:1.7;
}

.contact-item{
    display:flex;
    align-items:flex-start;
    gap:15px;
    margin-top:28px;
}

.contact-item i{
    width:50px;
    height:50px;
    background:#2563eb;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    flex-shrink:0;
}

.contact-item h4{
    margin-bottom:6px;
    color:#14213d;
}

.contact-item a{
    color:#2563eb;
    text-decoration:none;
    font-weight:600;
}

.contact-item a:hover{
    text-decoration:underline;
}

.contact-item p{
    margin:0;
}

/*=========================================
        SECTION HEADER
=========================================*/

.contact-page .section-header{
    text-align:center;
    margin-bottom:20px;
}

.contact-page .section-header h2{
    font-size:42px;
    margin:15px 0;
    color:#14213d;
}

.contact-page .section-header p{
    max-width:700px;
    margin:auto;
    color:#6b7280;
    line-height:1.8;
}

/*=========================================
            RESPONSIVE
=========================================*/

@media(max-width:992px){

.contact-wrapper{
    grid-template-columns:1fr;
}

}

@media(max-width:768px){

.contact-page{
    padding:60px 0;
}

.contact-form-card,
.contact-info-card{
    padding:25px;
}

.contact-page .section-header h2{
    font-size:32px;
}

.back-home{
    margin-bottom:30px;
}

}

/*=========================================
            THANK YOU PAGE
=========================================*/

.thank-you-page{

min-height:100vh;
display:flex;
align-items:center;
justify-content:center;
background:#f8fbff;
padding:80px 20px;

}

.thank-you-card{

max-width:720px;
margin:auto;
background:#fff;
padding:60px 50px;
border-radius:20px;
text-align:center;
box-shadow:0 15px 45px rgba(0,0,0,.08);
border:1px solid #e6edf7;

}

.thank-icon{

width:110px;
height:110px;
margin:0 auto 30px;
background:#22c55e;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;

}

.thank-icon i{

font-size:52px;
color:#fff;

}

.thank-you-card h1{

font-size:42px;
color:#14213d;
margin-bottom:20px;

}

.thank-you-card p{

font-size:17px;
line-height:1.8;
color:#6b7280;
margin-bottom:35px;

}

.thank-actions{

display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
margin-bottom:40px;

}

.thank-contact{

border-top:1px solid #e5e7eb;
padding-top:30px;

}

.thank-contact p{

margin-bottom:18px;
font-weight:600;
color:#14213d;

}

.thank-contact a{

display:inline-block;
margin:8px 12px;
text-decoration:none;
font-weight:600;
color:#2563eb;

}

.thank-contact a:hover{

text-decoration:underline;

}

/*=========================================
            RESPONSIVE
=========================================*/

@media(max-width:768px){

.thank-you-card{

padding:40px 25px;

}

.thank-you-card h1{

font-size:32px;

}

.thank-icon{

width:90px;
height:90px;

}

.thank-icon i{

font-size:42px;

}

.thank-actions{

flex-direction:column;

}

.thank-actions .btn{

width:100%;

}

}

/*=========================================
            PRICING HERO
=========================================*/

.pricing-hero{

    padding:80px 0 40px;
    background:#f8fbff;
    text-align:center;

}

.pricing-hero-content{

    max-width:800px;
    margin:auto;

}

.pricing-hero h1{

    font-size:52px;
    line-height:1.2;
    color:#14213d;
    margin:20px 0;

}

.pricing-hero p{

    color:#6b7280;
    line-height:1.9;
    font-size:17px;
    max-width:700px;
    margin:auto;

}

@media(max-width:768px){

.pricing-hero{

padding:60px 0 30px;

}

.pricing-hero h1{

font-size:34px;

}

.pricing-hero p{

font-size:15px;

}

}

/*=========================================
        PLAN COMPARISON
=========================================*/

.plan-comparison{

padding:70px 0;

}

.comparison-table{

overflow-x:auto;
margin-top:40px;

}

.comparison-table table{

width:100%;
border-collapse:collapse;
background:#fff;
border-radius:18px;
overflow:hidden;
box-shadow:0 12px 35px rgba(0,0,0,.06);

}

.comparison-table th{

background:#2563eb;
color:#fff;
padding:18px;
font-size:16px;
font-weight:600;
text-align:center;

}

.comparison-table td{

padding:18px;
border-bottom:1px solid #edf2f7;
text-align:center;
font-size:15px;

}

.comparison-table td:first-child{

text-align:left;
font-weight:600;
color:#14213d;

}

.comparison-table tr:hover{

background:#f8fbff;

}

/*=========================================
            PRICING FAQ
=========================================*/

.pricing-faq{

padding:80px 0;
background:#f8fbff;

}

.faq-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:25px;
margin-top:40px;

}

.faq-card{

background:#fff;
padding:30px;
border-radius:16px;
border:1px solid #e6edf7;
box-shadow:0 10px 30px rgba(0,0,0,.05);
transition:.3s;

}

.faq-card:hover{

transform:translateY(-6px);

}

.faq-card h3{

font-size:20px;
color:#14213d;
margin-bottom:15px;

}

.faq-card p{

color:#6b7280;
line-height:1.8;

}

/*=========================================
                FOOTER
=========================================*/

.footer{

padding:30px 0;
background:#14213d;
text-align:center;

}

.footer p{

color:#fff;
font-size:15px;

}

/*=========================================
        SUCCESS HERO
=========================================*/

.success-hero{

padding:80px 0 40px;
background:#f8fbff;
text-align:center;

}

.success-hero-content{

max-width:820px;
margin:auto;

}

.success-hero h1{

font-size:52px;
line-height:1.2;
margin:20px 0;
color:#14213d;

}

.success-hero p{

max-width:720px;
margin:auto;
font-size:17px;
line-height:1.8;
color:#6b7280;

}

@media(max-width:768px){

.success-hero{

padding:60px 0 30px;

}

.success-hero h1{

font-size:34px;

}

}

/*=========================================
        SUCCESS STORIES
=========================================*/

.success-stories{

    padding:80px 0;
    background:#ffffff;

}

.stories-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));
    gap:30px;

}

.story-card{

    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:18px;
    padding:30px;
    box-shadow:0 12px 35px rgba(0,0,0,.06);
    transition:.35s;

}

.story-card:hover{

    transform:translateY(-8px);
    box-shadow:0 18px 45px rgba(37,99,235,.15);

}

.story-top{

    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:18px;

}

.student-avatar{

    width:60px;
    height:60px;
    border-radius:50%;
    background:#2563eb;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    font-size:20px;

}

.story-top h3{

    margin:0;
    color:#14213d;
    font-size:20px;

}

.story-top span{

    color:#6b7280;
    font-size:14px;

}

.story-stars{

    color:#fbbf24;
    font-size:20px;
    margin-bottom:18px;
    letter-spacing:2px;

}

.story-card p{

    color:#4b5563;
    line-height:1.8;
    font-size:15px;
    margin-bottom:25px;
    font-style:italic;

}

.story-footer{

    display:flex;
    justify-content:space-between;
    align-items:center;
    padding-top:18px;
    border-top:1px solid #edf2f7;
    gap:10px;

}

.story-footer span{

    background:#eff6ff;
    color:#2563eb;
    padding:8px 14px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;

}

.story-footer strong{

    color:#16a34a;
    font-size:14px;

}

/*=========================================
            RESPONSIVE
=========================================*/

@media(max-width:768px){

.stories-grid{

grid-template-columns:1fr;

}

.story-card{

padding:25px;

}

.story-footer{

flex-direction:column;
align-items:flex-start;

}

}

/*=========================================
            CTA SECTION
=========================================*/

.cta-section{

padding:80px 0;
background:linear-gradient(135deg,#2563eb,#1d4ed8);
text-align:center;
color:#fff;

}

.cta-section h2{

font-size:42px;
margin-bottom:20px;

}

.cta-section p{

max-width:700px;
margin:0 auto 35px;
line-height:1.8;
font-size:17px;

}

.cta-section .btn{

background:#fff;
color:#2563eb;
font-weight:700;

}

.cta-section .btn:hover{

background:#f3f4f6;

}

/*=========================================
            REGISTER PAGE
=========================================*/

.register-page{

    background:#f8fbff;
    min-height:100vh;
    padding:70px 20px;

}

.register-card{

    max-width:560px;
    margin:35px auto;
    background:#fff;
    border-radius:24px;
    padding:45px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    border:1px solid #e8edf5;

}

.register-header{

    text-align:center;
    margin-bottom:35px;

}

.register-header img{

    width:90px;
    height:90px;
    object-fit:cover;
    border-radius:18px;
    margin-bottom:20px;

}

.register-header h1{

    font-size:42px;
    color:#14213d;
    margin-bottom:12px;

}

.register-header p{

    color:#6b7280;
    line-height:1.8;
    font-size:16px;

}

/*=========================================
                FORM
=========================================*/

.form-group{

    margin-bottom:22px;

}

.form-group label{

    display:block;
    margin-bottom:8px;
    font-weight:600;
    color:#14213d;

}

.form-group input,
.form-group select{

    width:100%;
    padding:16px 18px;
    border:1px solid #dbe3ee;
    border-radius:14px;
    background:#fff;
    font-size:15px;
    font-family:inherit;
    transition:.3s;
    outline:none;

}

.form-group input:focus,
.form-group select:focus{

    border-color:#2563eb;
    box-shadow:0 0 0 4px rgba(37,99,235,.12);

}

/*=========================================
                BUTTON
=========================================*/

.register-btn{

    width:100%;
    padding:17px;
    margin-top:10px;
    font-size:17px;
    font-weight:600;
    border:none;
    border-radius:14px;
    cursor:pointer;

}

/*=========================================
            LINKS
=========================================*/

.register-footer{

    text-align:center;
    margin-top:28px;
    color:#6b7280;

}

.register-footer a{

    color:#2563eb;
    font-weight:600;
    text-decoration:none;

}

.register-footer a:hover{

    text-decoration:underline;

}

.support-text{

    text-align:center;
    margin-top:15px;
    color:#6b7280;

}

.support-text a{

    color:#2563eb;
    font-weight:600;
    text-decoration:none;

}

.support-text a:hover{

    text-decoration:underline;

}

/*=========================================
            BACK BUTTON
=========================================*/

.back-home{

    display:inline-flex;
    align-items:center;
    gap:10px;
    color:#2563eb;
    font-weight:600;
    text-decoration:none;
    margin-bottom:20px;

}

.back-home:hover{

    color:#1d4ed8;

}

/*=========================================
            RESPONSIVE
=========================================*/

@media(max-width:768px){

.register-page{

padding:40px 15px;

}

.register-card{

padding:30px 25px;

}

.register-header h1{

font-size:32px;

}

}

/*=========================================
                LOGIN PAGE
=========================================*/

.login-page{

    background:#f8fbff;
    min-height:100vh;
    padding:70px 20px;

}

.login-card{

    max-width:560px;
    margin:35px auto;
    background:#fff;
    border-radius:24px;
    padding:45px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    border:1px solid #e8edf5;

}

.login-header{

    text-align:center;
    margin-bottom:35px;

}

.login-header h1{

    font-size:42px;
    color:#14213d;
    margin-bottom:12px;

}

.login-header p{

    color:#6b7280;
    line-height:1.8;
    font-size:16px;

}

/*=========================================
                FORM
=========================================*/

.login-card .form-group{

    margin-bottom:22px;

}

.login-card label{

    display:block;
    margin-bottom:8px;
    font-weight:600;
    color:#14213d;

}

.login-card input{

    width:100%;
    padding:16px 18px;
    border:1px solid #dbe3ee;
    border-radius:14px;
    background:#fff;
    font-size:15px;
    font-family:inherit;
    outline:none;
    transition:.3s;

}

.login-card input:focus{

    border-color:#2563eb;
    box-shadow:0 0 0 4px rgba(37,99,235,.12);

}

/*=========================================
            FORGOT PASSWORD
=========================================*/

.login-card .forgot-password{

    display:block;
    text-align:right;
    margin-top:-10px;
    margin-bottom:25px;
    color:#2563eb;
    text-decoration:none;
    font-size:14px;
    font-weight:600;

}

.login-card .forgot-password:hover{

    text-decoration:underline;

}

/*=========================================
                BUTTON
=========================================*/

.login-btn{

    width:100%;
    padding:17px;
    border:none;
    border-radius:14px;
    font-size:17px;
    font-weight:600;
    cursor:pointer;

}

/*=========================================
                FOOTER
=========================================*/

.login-footer{

    margin-top:28px;
    text-align:center;
    color:#6b7280;

}

.login-footer a{

    color:#2563eb;
    text-decoration:none;
    font-weight:600;

}

.login-footer a:hover{

    text-decoration:underline;

}

/*=========================================
                SUPPORT
=========================================*/

.login-card .support-text{

    margin-top:15px;
    text-align:center;
    color:#6b7280;

}

.login-card .support-text a{

    color:#2563eb;
    text-decoration:none;
    font-weight:600;

}

.login-card .support-text a:hover{

    text-decoration:underline;

}

/*=========================================
            RESPONSIVE
=========================================*/

@media(max-width:768px){

.login-page{

padding:40px 15px;

}

.login-card{

padding:30px 25px;

}

.login-header h1{

font-size:32px;

}

}

/*=========================================
        FORGOT PASSWORD PAGE
=========================================*/

.forgot-page{

    background:#f8fbff;
    min-height:100vh;
    padding:70px 20px;

}

.forgot-card{

    max-width:560px;
    margin:35px auto;
    background:#fff;
    border-radius:24px;
    padding:45px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    border:1px solid #e8edf5;

}

.forgot-header{

    text-align:center;
    margin-bottom:35px;

}

.forgot-header h1{

    font-size:40px;
    color:#14213d;
    margin-bottom:15px;

}

.forgot-header p{

    color:#6b7280;
    line-height:1.8;
    font-size:16px;

}

.forgot-card .form-group{

    margin-bottom:25px;

}

.forgot-card label{

    display:block;
    margin-bottom:8px;
    font-weight:600;
    color:#14213d;

}

.forgot-card input{

    width:100%;
    padding:16px 18px;
    border:1px solid #dbe3ee;
    border-radius:14px;
    outline:none;
    font-size:15px;
    font-family:inherit;
    transition:.3s;

}

.forgot-card input:focus{

    border-color:#2563eb;
    box-shadow:0 0 0 4px rgba(37,99,235,.12);

}

.forgot-btn{

    width:100%;
    padding:17px;
    border:none;
    border-radius:14px;
    font-size:17px;
    font-weight:600;
    cursor:pointer;

}

.forgot-footer{

    margin-top:28px;
    text-align:center;
    color:#6b7280;

}

.forgot-footer a{

    color:#2563eb;
    text-decoration:none;
    font-weight:600;

}

.forgot-footer a:hover{

    text-decoration:underline;

}

@media(max-width:768px){

.forgot-page{

padding:40px 15px;

}

.forgot-card{

padding:30px 25px;

}

.forgot-header h1{

font-size:32px;

}

}

/*=========================================
            CHECKOUT PAGE
=========================================*/

.checkout-page{

    background:#f8fbff;
    min-height:100vh;
    padding:70px 20px;

}

.checkout-header{

    text-align:center;
    margin:40px 0;

}

.checkout-header h1{

    font-size:44px;
    color:#14213d;
    margin-bottom:15px;

}

.checkout-header p{

    max-width:720px;
    margin:auto;
    color:#6b7280;
    line-height:1.8;
    font-size:16px;

}

/*=========================================
            GRID
=========================================*/

.checkout-grid{

    display:grid;
    grid-template-columns:2fr 1fr;
    gap:35px;
    align-items:start;

}

/*=========================================
            LEFT CARD
=========================================*/

.checkout-card{

    background:#fff;
    padding:40px;
    border-radius:22px;
    border:1px solid #e8edf5;
    box-shadow:0 15px 40px rgba(0,0,0,.06);

}

.checkout-card h2{

    color:#14213d;
    margin-bottom:25px;
    font-size:26px;

}

/*=========================================
            FORM
=========================================*/

.checkout-card .form-group{

    margin-bottom:22px;

}

.checkout-card label{

    display:block;
    margin-bottom:8px;
    font-weight:600;
    color:#14213d;

}

.checkout-card input{

    width:100%;
    padding:16px 18px;
    border:1px solid #dbe3ee;
    border-radius:14px;
    outline:none;
    font-size:15px;
    transition:.3s;
    font-family:inherit;

}

.checkout-card input:focus{

    border-color:#2563eb;
    box-shadow:0 0 0 4px rgba(37,99,235,.10);

}

/*=========================================
        PAYMENT BOX
=========================================*/

.payment-heading{

    margin-top:45px;

}

.payment-box{

    margin-top:20px;
    padding:35px;
    border:2px dashed #dbe3ee;
    border-radius:20px;
    text-align:center;
    background:#fbfdff;

}

.payment-box i.fa-lock{

    font-size:42px;
    color:#2563eb;
    margin-bottom:15px;

}

.payment-box h3{

    color:#14213d;
    margin-bottom:12px;

}

.payment-box p{

    color:#6b7280;
    line-height:1.7;
    margin-bottom:25px;

}

.card-icons{

    display:flex;
    justify-content:center;
    gap:20px;
    font-size:42px;
    color:#2563eb;

}

/*=========================================
        SUMMARY CARD
=========================================*/

.summary-card{

    background:#fff;
    padding:35px;
    border-radius:22px;
    border:1px solid #e8edf5;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
    position:sticky;
    top:100px;

}

.summary-card h2{

    margin-bottom:25px;
    color:#14213d;

}

.summary-row{

    display:flex;
    justify-content:space-between;
    align-items:center;
    margin:18px 0;

}

.summary-row span{

    color:#6b7280;

}

.summary-row strong{

    color:#14213d;

}

.summary-card hr{

    margin:25px 0;
    border:none;
    border-top:1px solid #edf2f7;

}

.summary-total{

    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:22px;
    font-weight:700;
    color:#14213d;

}

/*=========================================
        BENEFITS
=========================================*/

.summary-benefits{

    margin:30px 0;

}

.summary-benefits p{

    margin:12px 0;
    color:#16a34a;

}

.summary-benefits i{

    margin-right:8px;

}

/*=========================================
        BUTTON
=========================================*/

.checkout-btn{

    width:100%;
    padding:17px;
    border:none;
    border-radius:14px;
    font-size:17px;
    cursor:pointer;

}

.checkout-support{

    margin-top:25px;
    text-align:center;
    color:#6b7280;

}

.checkout-support a{

    color:#2563eb;
    text-decoration:none;
    font-weight:600;

}

.checkout-support a:hover{

    text-decoration:underline;

}

/*=========================================
        RESPONSIVE
=========================================*/

@media(max-width:992px){

.checkout-grid{

grid-template-columns:1fr;

}

.summary-card{

position:static;

}

}

@media(max-width:768px){

.checkout-page{

padding:40px 15px;

}

.checkout-card,
.summary-card{

padding:28px;

}

.checkout-header h1{

font-size:34px;

}

.card-icons{

font-size:34px;
gap:15px;

}

}

/*=========================================
            REFERRAL PAGE
=========================================*/

.referral-page{

background:#f8fbff;
min-height:100vh;
padding:70px 20px;

}

.referral-card{

max-width:760px;
margin:auto;
background:#fff;
padding:50px;
border-radius:24px;
box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.welcome-icon{

width:90px;
height:90px;
margin:auto;
margin-bottom:25px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
background:linear-gradient(135deg,#16a34a,#2563eb);

}

.welcome-icon i{

font-size:42px;
color:#fff;

}

.referral-card h1{

text-align:center;
font-size:46px;
color:#14213d;
margin-bottom:15px;

}

.welcome-text{

text-align:center;
max-width:600px;
margin:auto;
margin-bottom:45px;
line-height:1.8;
color:#6b7280;

}

.referral-box{

background:#fbfcff;
border:1px solid #e5edf7;
border-radius:20px;
padding:40px;

}

.referral-icon{

width:75px;
height:75px;
margin:auto;
margin-bottom:20px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
background:#e8f8ec;

}

.referral-icon i{

font-size:32px;
color:#16a34a;

}

.referral-box h2{

text-align:center;
margin-bottom:15px;
color:#14213d;

}

.referral-box p{

text-align:center;
line-height:1.8;
color:#6b7280;
margin-bottom:30px;

}

.referral-btn{

width:100%;
margin-top:20px;

}

.skip-btn{

display:block;
margin-top:18px;
padding:16px;
text-align:center;
background:#eef2f7;
border-radius:14px;
text-decoration:none;
font-weight:600;
color:#14213d;

}

.skip-btn:hover{

background:#dbe5f0;

}

.next-section{

margin-top:45px;
padding-top:35px;
border-top:1px solid #edf2f7;

}

.next-section h3{

margin-bottom:20px;
color:#14213d;

}

.next-section ul{

list-style:none;
padding:0;

}

.next-section li{

margin:16px 0;
font-size:16px;
display:flex;
align-items:center;
gap:12px;
color:#374151;

}

.next-section i{

color:#16a34a;

}

@media(max-width:768px){

.referral-page{

padding:40px 15px;

}

.referral-card{

padding:30px 25px;

}

.referral-card h1{

font-size:34px;

}

.referral-box{

padding:25px;

}

}

/*=========================================
        REGISTER TRIAL NOTICE
=========================================*/

.trial-notice {

    display: flex;

    align-items: flex-start;

    gap: 12px;

    margin: 20px 0;

    padding: 16px 18px;

    background: #EFFCF6;

    border: 1px solid #22C55E;

    border-left: 5px solid #22C55E;

    border-radius: 10px;

}

.trial-notice i {

    font-size: 1.4rem;

    color: #22C55E;

    margin-top: 3px;

}

.trial-notice p {

    margin: 0;

    color: #0F172A;

    font-size: 0.95rem;

    line-height: 1.6;

}

.trial-notice strong {

    color: #15803D;

}

/*=========================================
        REGISTER MESSAGES
=========================================*/

#registerMessage{

    display:none;

    margin:20px 0;

    padding:15px 18px;

    border-radius:10px;

    font-size:15px;

    font-weight:500;

    line-height:1.6;

}

#registerMessage.success{

    display:block;

    background:#ECFDF5;

    border:1px solid #22C55E;

    color:#166534;

}

#registerMessage.error{

    display:block;

    background:#FEF2F2;

    border:1px solid #EF4444;

    color:#991B1B;

}

#registerMessage.info{

    display:block;

    background:#EFF6FF;

    border:1px solid #3B82F6;

    color:#1D4ED8;

}
