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

.hero-section {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
    gap: 70px;
    padding: 90px 20px;
}

.hero-left h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin: 20px 0;
    color: #111827;
}

.hero-left h1 span {
    color: #2563eb;
}

.hero-left p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #6b7280;
    max-width: 650px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: #eef4ff;
    color: #2563eb;
    border-radius: 50px;
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin: 35px 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

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

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

.btn-outline {
    border: 2px solid #2563eb;
    color: #2563eb;
}

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

.hero-mini-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.mini-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 15px;
    padding: 18px;
    transition: .3s;
}

.mini-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, .08);
}

.mini-card h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.mini-card span {
    color: #555;
    font-size: .95rem;
}

/* ===========================
   CHAT BOX
=========================== */

.hero-chat {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
}

.chat-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #2563eb;
    color: #fff;
}

.chat-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.chat-header h3 {
    margin: 0;
}

.chat-header small {
    opacity: .9;
}

.chat-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.message {
    max-width: 85%;
    padding: 14px 18px;
    border-radius: 18px;
    line-height: 1.7;
    font-size: .95rem;
}

.message.left {
    background: #f3f4f6;
    color: #374151;
}

.message.right {
    background: #2563eb;
    color: #fff;
    margin-left: auto;
}

/* ===========================
   MOBILE
=========================== */

@media(max-width:992px) {

    .hero-section {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-left {
        text-align: center;
    }

    .hero-left p {
        margin: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-mini-stats {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:600px) {

    .hero-section {
        padding: 70px 15px;
    }

    .hero-left h1 {
        font-size: 2.2rem;
    }

    .hero-mini-stats {
        grid-template-columns: 1fr;
    }

    .message {
        max-width: 95%;
        font-size: .9rem;
    }

}

















.education-discounts {
    padding: 80px 20px;
}

.section-head {
    text-align: center;
    max-width: 750px;
    margin: auto;
    margin-bottom: 45px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #eef4ff;
    color: #2563eb;
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 18px;
}

.section-head h2 {
    font-size: 2.3rem;
    color: #111827;
    margin-bottom: 15px;
}

.section-head p {
    color: #6b7280;
    line-height: 1.8;
}

.benefits-wrapper {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding-bottom: 12px;
}

.benefits-wrapper::-webkit-scrollbar {
    display: none;
}

.benefit-card {
    min-width: 300px;
    max-width: 300px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    padding: 28px;
    flex-shrink: 0;
    transition: .35s;
}

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

.benefits-icon {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    background: #eef4ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 18px;
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: #111827;
}

.benefit-card p {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 20px;
}

.status {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 30px;
    background: #fff7ed;
    color: #d97706;
    font-size: .85rem;
    font-weight: 600;
}

.status.active {
    background: #ecfdf5;
    color: #16a34a;
}

@media(max-width:768px) {

    .education-discounts {
        padding: 60px 15px;
    }

    .section-head h2 {
        font-size: 1.9rem;
    }

    .benefit-card {
        min-width: 270px;
        max-width: 270px;
    }

}















.partner-institutes {
    padding: 80px 20px;
}

.section-title {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-title span {
    display: inline-block;
    background: #eef4ff;
    color: #2563eb;
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-title h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.section-title p {
    color: #666;
    line-height: 1.7;
}

/* .partners-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:25px;
} */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    grid-auto-flow: column;
    overflow: auto;


   

    scrollbar-width: thin;
    /* scrollbar-width: none */

    
}

.partner-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 28px;
    transition: .3s;

    width: 300px;

}

.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

.partner-logo {
    width: 70px;
    height: 70px;
    background: #eef4ff;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    font-size: 28px;
    margin-bottom: 20px;
}

.partner-card h3 {
    margin-bottom: 18px;
}

.partner-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.partner-card li {
    margin-bottom: 10px;
    color: #555;
}

.partner-card a {
    display: inline-block;
    text-decoration: none;
    color: #2563eb;
    font-weight: 600;
}

.active {
    color: #16a34a;
    font-weight: 600;
}

@media(max-width:768px) {

    .partner-institutes {
        padding: 60px 15px;
    }

    .section-title h2 {
        font-size: 1.9rem;
    }

}




















/* ===============================
   Eligible Certificates
=================================*/






.eligible-certificates {
    padding: 80px 20px;
}

.section-heading {
    text-align: center;
    max-width: 760px;
    margin: auto;
    margin-bottom: 45px;
}

.section-heading span {
    display: inline-block;
    background: #eef4ff;
    color: #2563eb;
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-heading h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.section-heading p {
    color: #666;
    line-height: 1.7;
}



.certificate-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 45px;
}

.certificate-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 25px;
    transition: .3s;
}

.certificate-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
}

.certificate-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: #eef4ff;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    flex-shrink: 0;
}

.certificate-content {
    flex: 1;
}

.certificate-content h3 {
    margin-bottom: 6px;
    font-size: 1.3rem;
    color: #111827;
}

.certificate-content>p {
    color: #6b7280;
    margin-bottom: 16px;
}

/* Tags */

.certificate-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.certificate-tags span {
    background: #eff6ff;
    color: #2563eb;
    padding: 8px 14px;
    border-radius: 30px;
    font-size: .85rem;
    font-weight: 600;
}

/* Information */

.certificate-info {
    display: grid;
    grid-template-columns: repeat(3, minmax(160px, 1fr));
    gap: 12px;
    margin-top: 10px;
}

.certificate-info p {
    margin: 0;
    padding: 12px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    font-size: .92rem;
    line-height: 1.5;
    color: #374151;
}

.certificate-info strong {
    display: block;
    margin-bottom: 5px;
    color: #111827;
}

/* Status */

.certificate-status {
    align-self: flex-start;
    white-space: nowrap;
    padding: 10px 18px;
    border-radius: 30px;
    background: #fff7ed;
    color: #d97706;
    font-weight: 700;
    font-size: .9rem;
}

.certificate-status.active {
    background: #ecfdf5;
    color: #16a34a;
}

/* Mobile */

@media(max-width:768px) {

    .certificate-item {
        flex-direction: column;
    }

    .certificate-icon {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }

    .certificate-info {
        grid-template-columns: 1fr;
    }

    .certificate-status {
        width: fit-content;
    }

}













.discount-programs {
    padding: 80px 20px;
}

.program-table {
    margin-top: 35px;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    overflow: hidden;
}

.program-row {
    display: grid;
    grid-template-columns: 2fr 2fr 1.5fr 2fr 1fr;
    gap: 15px;
    padding: 18px;
    border-bottom: 1px solid #eee;
    align-items: center;
}

.program-row:last-child {
    border-bottom: none;
}

.program-row.heading {
    background: #f8fafc;
    font-weight: 700;
}

.active,
.coming {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: .85rem;
    font-weight: 600;
}

.active {
    background: #ecfdf5;
    color: #16a34a;
}

.coming {
    background: #fff7ed;
    color: #d97706;
}

.note-box {
    margin-top: 25px;
    background: #eef4ff;
    border-left: 4px solid #2563eb;
    padding: 18px;
    border-radius: 12px;
    line-height: 1.7;
}

@media(max-width:900px) {

    .program-table {
        overflow-x: auto;
    }

    .program-row {
        min-width: 900px;
    }

}

















.eligibility {
    padding: 80px 20px;
}

.eligibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.eligibility-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 28px;
    transition: .3s;
}

.eligibility-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
}

.eligibility-card .icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: #eef4ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 18px;
}

.eligibility-card h3 {
    margin-bottom: 12px;
    font-size: 1.15rem;
}

.eligibility-card p {
    color: #666;
    line-height: 1.7;
}

.eligibility-note {
    margin-top: 35px;
    padding: 20px;
    border-left: 4px solid #2563eb;
    background: #eef4ff;
    border-radius: 12px;
    line-height: 1.8;
}




















.how-to-claim {
    padding: 80px 20px;
}

.claim-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 45px;
}

.step {
    position: relative;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 30px 25px;
    transition: .3s;
}

.step:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
}

.step-number {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #2563eb;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 20px;
}

.step h3 {
    margin-bottom: 12px;
}

.step p {
    color: #666;
    line-height: 1.7;
}

.claim-note {
    margin-top: 40px;
    background: #eef4ff;
    border-left: 4px solid #2563eb;
    padding: 20px;
    border-radius: 12px;
    line-height: 1.8;
}

















.become-partner {
    padding: 90px 20px;
}

.partner-content {
    max-width: 900px;
    margin: auto;
    text-align: center;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 60px 40px;
}

.partner-badge {
    display: inline-block;
    background: #eef4ff;
    color: #2563eb;
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 20px;
}

.partner-content h2 {
    font-size: 2.3rem;
    margin-bottom: 18px;
}

.partner-content p {
    color: #666;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 35px;
}

.partner-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px;
    margin-bottom: 35px;
}

.feature {
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 20px;
}

.feature i {
    font-size: 26px;
    color: #2563eb;
    margin-bottom: 12px;
    display: block;
}

.partner-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #2563eb;
    color: #fff;
    padding: 14px 24px;
    border-radius: 12px;
    text-decoration: none;
}

.btn-outline {
    border: 2px solid #2563eb;
    color: #2563eb;
    padding: 14px 24px;
    border-radius: 12px;
    text-decoration: none;
}
















.faq-section {
    padding: 80px 20px;
}

.faq-list {
    max-width: 900px;
    margin: 40px auto 0;
}

.faq-list details {
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    margin-bottom: 15px;
    overflow: hidden;
    background: #fff;
}

.faq-list summary {
    cursor: pointer;
    padding: 18px 22px;
    font-weight: 600;
    list-style: none;
    position: relative;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: "+";
    position: absolute;
    right: 20px;
    font-size: 22px;
}

.faq-list details[open] summary::after {
    content: "−";
}

.faq-list p {
    padding: 0 22px 22px;
    color: #666;
    line-height: 1.8;
}




















.benefits-cta {
    padding: 90px 20px;
    text-align: center;
}

.benefits-cta .cta-badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;
    background: #eef4ff;
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 18px;
}

.benefits-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 18px;
    color: #111827;
}

.benefits-cta p {
    max-width: 700px;
    margin: 0 auto 35px;
    color: #6b7280;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-buttons a {
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 600;
}

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

.btn-outline {
    border: 2px solid #2563eb;
    color: #2563eb;
    background: #fff;
}