﻿/* ================= BASE ================= */
body {
    margin: 0;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    background: #f8fafc;
    color: #0f172a;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ================= HERO ================= */
.hero {
    padding: 120px 0 110px;
    text-align: center;
    background: radial-gradient(circle at top, #eef2ff, #f8fafc);
}

    .hero h1 {
        font-size: 48px;
        font-weight: 800;
        line-height: 1.2;
    }

        .hero h1 span {
            color:#3b4999;
        }

.hero-sub {
    max-width: 760px;
    margin: 24px auto;
    font-size: 18px;
    color: #64748b;
}

/* Trust Badge */
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 30px;
    background: #e0e7ff;
    color: #4338ca;
    font-weight: 600;
    margin-bottom: 24px;
    font-size: 14px;
}

    .trust-badge i {
        font-size: 12px;
    }

/* Hero Buttons */
.hero-buttons {
    margin-top: 36px;
    display: flex;
    justify-content: center;
    gap: 22px;
}

/* ================= BUTTONS ================= */
.btn-primary {
    padding: 14px 34px;
    background: linear-gradient(135deg, #1d2f7e, #3b4999);
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline {
    padding: 14px 34px;
    border: 2px solid #1d2f7e;
    color: #1d2f7e;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}

/* ================= SECTIONS ================= */
.section {
    padding: 100px 0;
}

    .section.light {
        background: #f1f5f9;
    }

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
}

    .section-title span {
        color: #3b4999;
    }

.section-sub {
    max-width: 760px;
    margin: 18px auto 60px;
    text-align: center;
    color: #64748b;
    font-size: 16px;
}

/* ================= STUDENT / INSTITUTION ================= */
/* STUDENTS & INSTITUTIONS */
.dual-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.info-card {
    padding: 40px;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .info-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 30px 70px rgba(0,0,0,0.08);
    }

/* Soft gradients like reference */
.student-card {
    background:#fff;
}

.institute-card {
    background:#fff;
}

/* Icon box */
.card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
}

    .card-icon.blue {
        background: #3b4999;
        color: #fff;
    }
    .card-icon.purple {
        background: #3b4999;
        color: #fff;
    }

.info-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.card-desc {
    color: #64748b;
    font-size: 15px;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Icon list */
.icon-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .icon-list li {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 15px;
        color: #0f172a;
        margin-bottom: 14px;
    }

    .icon-list i {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: #3b4999;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 16px;
    }

/* RESPONSIVE */
@media (max-width: 768px) {
    .dual-cards {
        grid-template-columns: 1fr;
    }
}


/* ================= FEATURES ================= */
/* FEATURES GRID */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

/* FEATURE CARD */
.feature-box {
    background: #ffffff;
    border-radius: 18px;
    padding: 36px 32px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .feature-box:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 45px rgba(15, 23, 42, 0.10);
    }

/* ICON CIRCLE */
.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: #3b4999;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

    .feature-icon i {
        font-size: 24px;     
        color: #fff;
    }

/* TITLE */
.feature-box h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0f172a;
}

/* DESCRIPTION */
.feature-box p {
    font-size: 14.5px;
    color: #64748b;
    line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
}


/* ================= HOW IT WORKS ================= */
.workflow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
    position: relative;
}

    .workflow::before {
        content: "";
        position: absolute;
        top: 44px;
        left: 5%;
        right: 5%;
        height: 2px;
        background: #c7d2fe;
        z-index: 0;
    }

.workflow-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.workflow-icon {
    width: 72px;
    height: 72px;
    background: #3b4999;
    border-radius: 20px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

    .workflow-icon i {
        font-size: 28px;
        color: #fff;
    }

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #facc15;
    color: black;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}


.workflow-step h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.workflow-step p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
    .workflow {
        grid-template-columns: 1fr 1fr;
    }

        .workflow::before {
            display: none;
        }
}

@media (max-width: 576px) {
    .workflow {
        grid-template-columns: 1fr;
    }
}


/* ================= SECURITY ================= */
.security-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.security-list div {
    margin-top: 16px;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.security-list i {
    color: #f7b500;
    font-size: 18px;
}

.security-visual {
    position: relative;
    height: 360px;
}

.shield-main {
    width: 180px;
    height: 180px;
    border-radius: 28px;
    background: linear-gradient(135deg, #1d2f7e, #3b4999);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

    .shield-main i {
        font-size: 72px;
        color: #fff;
    }

.floating-icon {
    position: absolute;
    width: 56px;
    height: 56px;
    background: #ffffff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

    .floating-icon i {
        font-size: 22px;
        color: #3b4999;
      
    }

    .floating-icon.one {
        top: 20px;
        left: 40px;
    }

    .floating-icon.two {
        top: 20px;
        right: 40px;
    }

    .floating-icon.three {
        bottom: 20px;
        left: 60px;
    }

    .floating-icon.four {
        bottom: 20px;
        right: 60px;
    }

@media (max-width: 768px) {
    .security-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }
}


/* WHY CHOOSE */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.brand-card {
    background: linear-gradient(135deg, #eef2ff, #e0e7ff);
    padding: 50px;
    border-radius: 28px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(99,102,241,0.15);
}


.brand-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    /* Image fits perfectly */
    .brand-logo img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

/* Clean clickable area */
.brand-logo-link {
    display: inline-block;
    text-decoration: none;
}


    /* Optional: hover effect */
    .brand-logo-link:hover .brand-logo {
        transform: scale(1.05);
        box-shadow: 0 10px 30px rgba(99,102,241,0.4);
        transition: 0.3s ease;
    }


.brand-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 6px;
}

.brand-sub {
    color: #64748b;
    font-size: 15px;
}

.stats {
    display: flex;
    justify-content: space-between;
    margin-top: 35px;
}

    .stats div {
        text-align: center;
    }

    .stats strong {
        display: block;
        font-size: 26px;
        color: #6366f1;
        font-weight: 800;
    }

    .stats span {
        font-size: 14px;
        color: #64748b;
    }

/* RIGHT CONTENT */
.why-content .why-desc {
    color: #64748b;
    font-size: 16px;
    margin: 15px 0 30px;
    max-width: 520px;
}

.check-list {
    list-style: none;
    padding: 20px;
}

    .check-list li {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 16px;
        font-size: 15px;
        color: #0f172a;
    }

    .check-list i {
        color: #3b4999;
        font-size: 18px;
    }

/* RESPONSIVE */
@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .why-content .section-title.left {
        text-align: center;
    }

    .check-list li {
        justify-content: center;
    }
}


/* ================= CTA ================= */
/* CTA SECTION */
.cta {
    padding: 120px 0;
    text-align: center;
    background: radial-gradient(circle at center, #eef2ff 0%, #f8fafc 70%);
}

.cta-title {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.3;
}

    .cta-title span {
        color: #3b4999;
    }

.cta-sub {
    max-width: 760px;
    margin: 20px auto 40px;
    font-size: 18px;
    color: #64748b;
}

/* CTA BUTTONS */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

/* DIVIDER */
.cta-divider {
    margin: 60px auto 20px;
    height: 1px;
    width: 70%;
    background: linear-gradient(to right, transparent, #e5e7eb, transparent);
}

/* TRUST TEXT */
.cta-trust {
    font-size: 15px;
    color: #94a3b8;
    margin-bottom: 18px;
}

/* ICON ROW */
.cta-icons {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    font-size: 15px;
    color: #94a3b8;
}

    .cta-icons span {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .cta-icons i {
        font-size: 18px;
        color: #6366f1;
    }

/* RESPONSIVE */
@media (max-width: 768px) {
    .cta-title {
        font-size: 34px;
    }

    .cta-sub {
        font-size: 16px;
    }

    .cta-divider {
        width: 90%;
    }
}


/* ================= FOOTER ================= */
.footer {
    background: #020617;
    color: #cbd5f5;
    padding: 70px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 34px;
}

.footer a {
    display: block;
    color: #94a3b8;
    margin-top: 10px;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    margin-top: 44px;
    color: #64748b;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .dual-cards,
    .feature-grid,
    .steps,
    .security-grid,
    .why-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-buttons {
        flex-direction: column;
    }
}
/* ===== NOTIFICATION CARD ===== */
.notification-card {
    background: #ffffff;
    border-left: 6px solid #3b4999;
    border-radius: 14px;
    padding: 18px 22px;
    margin-bottom: 16px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.08);
}

.notification-title {
    font-size: 17px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 6px;
}

.notification-message {
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
}
