@import url('./core/variable.css');
@import url('./core/utilities.css');
@import url('./layout/navbar.css');
@import url('./components/form.css');
@import url('./layout/footer.css');
@import url('./animation.css');
@import url('./responsive.css');

/*=====================================================
BODY OFFSET & BASE RESPONSIVE SETUP
======================================================*/
html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    font-size: clamp(14px, 1.1vw, 16px);
}

/*=====================================================
SECTION & GLOBAL HEADINGS
======================================================*/

section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.section-header {
    max-width: 720px;
    margin: 0 auto clamp(40px, 6vw, 70px);
    text-align: center;
    padding: 0 15px;
}

.section-padding {
    padding: clamp(40px, 6vw, 80px) 0;
}

.success-section {
    background: var(--white);
}

.reviews-section {
    background: var(--gray-50);
}

.smart-finder {
    background: var(--white);
}

.smart-match-section {
    background: linear-gradient(135deg, #091324 0%, #0f2347 50%, #1e40af 100%);
}

/* GLOBAL HEADINGS COMPONENTS */
.section-tag {
    display: inline-flex;
    align-items: center;
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary);
    padding: 8px clamp(14px, 2vw, 20px);
    border-radius: 50px;
    font-size: clamp(11px, 1vw, 13px);
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(24px, 3.8vw, 44px);
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.25;
    margin-top: 15px;
    margin-bottom: 20px;
}

.section-description {
    font-size: clamp(14px, 1.2vw, 16px);
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 0;
}

/*=====================================================
HERO SECTION
======================================================*/

.hero-section {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: clamp(520px, 80vh, 720px);
    padding: clamp(60px, 8vw, 100px) 0;
    background:
        linear-gradient(to right,
        rgba(255,255,255,.98) 0%,
        rgba(255,255,255,.96) 42%,
        rgba(255,255,255,.65) 58%,
        rgba(255,255,255,.15) 72%,
        rgba(255,255,255,0) 100%),
        url("../images/student-loan.webp") right center / contain no-repeat,
        linear-gradient(180deg,#ffffff 0%,#f8fafc 100%);
}

.hero-section .container {
    position: relative;
    z-index: 5;
}

.hero-bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .55;
    z-index: 2;
}

.hero-shape-1 {
    width: clamp(250px, 30vw, 420px);
    height: clamp(250px, 30vw, 420px);
    background: rgba(229,152,25,.18);
    top: -120px;
    right: -120px;
}

.hero-shape-2 {
    width: clamp(200px, 25vw, 350px);
    height: clamp(200px, 25vw, 350px);
    background: rgba(11,37,69,.08);
    left: -120px;
    bottom: -100px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px clamp(12px, 1.5vw, 18px);
    border-radius: 999px;
    background: var(--secondary-light);
    color: var(--secondary-dark);
    font-size: clamp(12px, 1.1vw, 14px);
    font-weight: 600;
    margin-bottom: 25px;
    border: 1px solid rgba(229,152,25,.25);
}

.hero-badge i {
    color: var(--secondary);
}

.hero-title {
    font-size: clamp(2.2rem, 4.5vw, 3rem);
    line-height: 1.15;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.hero-title span {
    display: block;
    color: var(--secondary);
}

.hero-description {
    max-width: 580px;
    font-size: clamp(15px, 1.3vw, 18px);
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: clamp(25px, 4vw, 40px);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: clamp(30px, 4vw, 45px);
}

.hero-buttons .btn {
    min-width: clamp(180px, 20vw, 220px);
    height: clamp(50px, 5vw, 58px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 600;
    font-size: clamp(14px, 1.1vw, 16px);
    transition: var(--transition);
}

.hero-buttons .btn-premium {
    background: var(--gradient-gold);
    color: #fff;
    box-shadow: var(--shadow-hover);
}

.hero-buttons .btn-premium:hover {
    transform: translateY(-4px);
}

.hero-buttons .btn-outline-premium {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: #fff;
}

.hero-buttons .btn-outline-premium:hover {
    background: var(--primary);
    color: #fff;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: clamp(14px, 1.1vw, 16px);
    font-weight: 600;
    color: var(--gray-700);
}

.hero-feature i {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-light);
    color: var(--secondary);
    flex-shrink: 0;
}

.hero-section .col-lg-6:first-child {
    max-width: 620px;
    z-index: 5;
}

/*=====================================================
SMOOTH ANIMATION
======================================================*/

.hero-badge,
.hero-title,
.hero-description,
.hero-buttons,
.hero-features,
.hero-image-wrapper {
    animation: heroFade .8s ease both;
}

.hero-title { animation-delay: .15s; }
.hero-description { animation-delay: .3s; }
.hero-buttons { animation-delay: .45s; }
.hero-features { animation-delay: .6s; }
.hero-image-wrapper { animation-delay: .4s; }

@keyframes heroFade {
    from {
        opacity: 0;
        transform: translateY(35px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*=====================================================
SCROLL INDICATOR
======================================================*/

.scroll-down {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 30;
    animation: fadeScroll 2s infinite;
}

.scroll-down span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #64748b;
}

.scroll-down i {
    font-size: 20px;
    color: var(--primary);
    animation: arrowMove 2s infinite;
}

@keyframes arrowMove {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

@keyframes fadeScroll {
    0%, 100% { opacity: 1; }
    50% { opacity: .55; }
}

/*=====================================================
LOAN SERVICES
======================================================*/

.loan-services-section {
    background: #f8fafc;
}

.loan-service-card {
    height: 100%;
    padding: clamp(22px, 3vw, 35px);
    background: #fff;
    border-radius: clamp(18px, 2.5vw, 28px);
    border: 1px solid var(--gray-200);
    transition: .35s ease;
}

.loan-service-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
    box-shadow: 0 20px 50px rgba(11,37,69,.08);
}

.loan-icon {
    width: clamp(56px, 5vw, 72px);
    height: clamp(56px, 5vw, 72px);
    border-radius: 22px;
    background: var(--secondary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.loan-icon i {
    font-size: clamp(24px, 2.5vw, 30px);
    color: var(--secondary);
}

.loan-service-card h3 {
    font-size: clamp(19px, 1.8vw, 24px);
    color: var(--primary);
    margin-bottom: 18px;
    font-weight: 700;
}

.loan-service-card p {
    margin: 0;
    line-height: 1.8;
    color: var(--gray-600);
    font-size: clamp(14px, 1.1vw, 16px);
}

/*=====================================================
LOAN OPTIONS
======================================================*/

.loan-options-section {
    background: #ffffff;
}

.loan-option-card {
    position: relative;
    height: 100%;
    padding: clamp(22px, 3vw, 35px);
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: clamp(18px, 2.5vw, 28px);
    transition: .35s;
}

.loan-option-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
    box-shadow: var(--shadow-hover);
}

.option-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 12px;
    background: var(--secondary-light);
    color: var(--secondary-dark);
    border-radius: 999px;
    font-size: clamp(11px, 1vw, 13px);
    font-weight: 600;
}

.option-icon {
    width: clamp(56px, 5vw, 72px);
    height: clamp(56px, 5vw, 72px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: 20px;
    margin-bottom: 25px;
}

.option-icon i {
    font-size: clamp(24px, 2.5vw, 30px);
    color: var(--primary);
}

.loan-option-card h3 {
    font-size: clamp(20px, 2vw, 24px);
    margin-bottom: 15px;
    color: var(--primary);
}

.loan-option-card p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: clamp(14px, 1.1vw, 16px);
}

.loan-option-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.loan-option-card ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: var(--gray-700);
    font-size: clamp(14px, 1.1vw, 15px);
}

.loan-option-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
    color: var(--success);
}

.loan-option-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
}

.loan-option-card a:hover {
    color: var(--secondary);
}

/*=====================================================
CHALLENGES & SOLUTIONS
======================================================*/

.challenge-section {
    background: #f8fafc;
}

.challenge-wrapper {
    display: grid;
    grid-template-columns: 1fr 120px 1fr;
    gap: clamp(20px, 3vw, 40px);
    align-items: start;
    margin-top: clamp(30px, 5vw, 60px);
}

.challenge-column {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: clamp(18px, 2.5vw, 28px);
    padding: clamp(22px, 3vw, 40px);
    height: 100%;
}

.challenge-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: clamp(20px, 3vw, 35px);
}

.challenge-header i {
    width: clamp(48px, 5vw, 60px);
    height: clamp(48px, 5vw, 60px);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    color: var(--primary);
    font-size: clamp(20px, 2vw, 24px);
    flex-shrink: 0;
}

.challenge-right .challenge-header i {
    background: var(--secondary-light);
    color: var(--secondary);
}

.challenge-header h3 {
    margin: 0;
    font-size: clamp(22px, 2.5vw, 30px);
    color: var(--primary);
}

.challenge-item {
    padding: clamp(15px, 2vw, 22px) 0;
    border-bottom: 1px solid var(--gray-200);
}

.challenge-item:last-child {
    border-bottom: none;
}

.challenge-item h4 {
    font-size: clamp(17px, 1.8vw, 21px);
    color: var(--primary);
    margin-bottom: 10px;
}

.challenge-item p {
    margin: 0;
    color: var(--gray-600);
    line-height: 1.8;
    font-size: clamp(14px, 1.1vw, 15px);
}

.challenge-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.challenge-divider span {
    width: clamp(60px, 7vw, 90px);
    height: clamp(60px, 7vw, 90px);
    border-radius: 50%;
    background: var(--gradient-gold);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 700;
    box-shadow: var(--shadow-lg);
}

/*=====================================================
KNOWLEDGE HUB
======================================================*/

.knowledge-section {
    background: linear-gradient(180deg,#ffffff,#f7f9fc);
}

.knowledge-feature {
    padding: clamp(25px, 4vw, 45px);
    height: 100%;
    background: var(--primary);
    border-radius: clamp(20px, 3vw, 32px);
    color: #fff;
}

.knowledge-category {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.15);
    margin-bottom: 20px;
    font-size: clamp(12px, 1vw, 14px);
}

.knowledge-feature h3 {
    font-size: clamp(24px, 3vw, 34px);
    margin-bottom: 20px;
}

.knowledge-feature p {
    line-height: 1.9;
    opacity: .92;
    font-size: clamp(14px, 1.2vw, 16px);
}

.knowledge-feature ul {
    margin-top: 25px;
    padding-left: 20px;
}

.knowledge-feature li {
    margin-bottom: 12px;
    font-size: clamp(14px, 1.1vw, 16px);
}

.knowledge-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(15px, 2vw, 25px);
}

.knowledge-card {
    padding: clamp(20px, 3vw, 35px);
    background: #fff;
    border-radius: 24px;
    border: 1px solid var(--gray-200);
    height: 100%;
    transition: .35s;
}

.knowledge-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.knowledge-card i {
    font-size: clamp(26px, 3vw, 34px);
    color: var(--secondary);
    margin-bottom: 20px;
}

.knowledge-card h4 {
    margin-bottom: 15px;
    color: var(--primary);
    font-size: clamp(18px, 1.6vw, 20px);
}

.knowledge-card p {
    margin: 0;
    line-height: 1.8;
    font-size: clamp(13px, 1.1vw, 15px);
}

/*=====================================================
WHY STUDY SAHARA
======================================================*/

.why-section {
    background: linear-gradient(180deg,#ffffff 0%,#f8fafc 100%);
}

.trust-card {
    height: 100%;
    padding: clamp(22px, 3vw, 35px);
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: clamp(18px, 2.5vw, 28px);
    transition: var(--transition);
}

.trust-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
    box-shadow: var(--shadow-hover);
}

.trust-icon {
    width: clamp(56px, 5vw, 72px);
    height: clamp(56px, 5vw, 72px);
    border-radius: 20px;
    background: var(--secondary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.trust-icon i {
    font-size: clamp(24px, 2.5vw, 30px);
    color: var(--secondary);
}

.trust-card h3 {
    font-size: clamp(19px, 1.8vw, 24px);
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 700;
}

.trust-card p {
    margin: 0;
    line-height: 1.8;
    color: var(--gray-600);
    font-size: clamp(14px, 1.1vw, 16px);
}

/*=====================================================
BANKING PARTNERS
======================================================*/

.bank-partners-section {
    background: #f8fafc;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: clamp(15px, 2.5vw, 30px);
    margin-top: clamp(30px, 4vw, 50px);
}

.partner-logo {
    height: clamp(90px, 10vw, 130px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 24px;
    padding: 15px;
    transition: .35s;
}

.partner-logo:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.partner-logo img {
    max-width: clamp(100px, 12vw, 140px);
    max-height: clamp(40px, 5vw, 60px);
    filter: grayscale(100%);
    transition: .35s;
}

.partner-logo:hover img {
    filter: none;
}

/*=====================================================
LOAN JOURNEY
======================================================*/

.journey-section {
    background: #ffffff;
}

.journey-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: clamp(15px, 2vw, 30px);
    margin-top: clamp(30px, 5vw, 60px);
}

.journey-progress {
    position: absolute;
    top: 45px;
    left: 8%;
    right: 8%;
    height: 4px;
    background: linear-gradient(90deg,var(--secondary),var(--primary));
    z-index: 0;
    border-radius: 50px;
}

.journey-step {
    position: relative;
    z-index: 2;
    text-align: center;
}

.journey-icon {
    width: clamp(65px, 6vw, 90px);
    height: clamp(65px, 6vw, 90px);
    margin: auto auto 25px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: .35s;
}

.journey-step:hover .journey-icon {
    transform: translateY(-8px) scale(1.08);
    background: var(--secondary);
    color: #fff;
}

.journey-icon i {
    font-size: clamp(22px, 2.5vw, 32px);
    color: var(--primary);
    transition: .35s;
}

.journey-step:hover .journey-icon i {
    color: #fff;
}

.journey-step h4 {
    margin-bottom: 15px;
    font-size: clamp(17px, 1.6vw, 22px);
    color: var(--primary);
}

.journey-step p {
    margin: 0;
    font-size: clamp(13px, 1vw, 15px);
    line-height: 1.7;
    color: var(--gray-600);
}

/*=====================================================
SUCCESS STORIES
======================================================*/

.success-section {
    background: #f8fafc;
}

.success-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: clamp(20px, 2.5vw, 30px);
    margin-top: clamp(30px, 5vw, 60px);
}

.success-card {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: .35s;
}

.success-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.student-photo img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.success-card.featured .student-photo img {
    height: clamp(260px, 25vw, 340px);
}

.student-content {
    padding: clamp(20px, 2.5vw, 30px);
}

.country-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--secondary-light);
    border-radius: 999px;
    font-size: clamp(12px, 1vw, 14px);
    margin-bottom: 20px;
}

.student-content h3 {
    font-size: clamp(20px, 2vw, 26px);
    color: var(--primary);
    margin-bottom: 18px;
}

.student-content p {
    color: var(--gray-600);
    line-height: 1.8;
    font-size: clamp(14px, 1.1vw, 16px);
}

.student-meta {
    margin-top: 25px;
    display: flex;
    justify-content: space-between;
    font-size: clamp(12px, 1vw, 14px);
}

/*=====================================================
FAQ
======================================================*/

.faq-section {
    background: #ffffff;
}

.faq-wrapper {
    max-width: 900px;
    margin: clamp(30px, 5vw, 60px) auto 0;
}

.accordion-item {
    border: none;
    border-radius: 20px !important;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.accordion-button {
    padding: clamp(16px, 2vw, 24px) clamp(20px, 2.5vw, 30px);
    font-size: clamp(15px, 1.4vw, 18px);
    font-weight: 600;
    color: var(--primary);
    background: #fff;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-light);
    color: var(--primary);
}

.accordion-button::after {
    filter: grayscale(100%);
}

.accordion-body {
    padding: clamp(18px, 2vw, 25px) clamp(20px, 2.5vw, 30px);
    line-height: 1.9;
    color: var(--gray-600);
    background: #fff;
    font-size: clamp(14px, 1.1vw, 16px);
}

.accordion-button:focus {
    box-shadow: none;
}

/*=====================================================
FINAL CTA
======================================================*/

.final-cta-section {
    padding: 50px 0;
    background: #ffffff;
}

.final-cta-wrapper {
    background: linear-gradient(135deg,#0b2545,#16365f);
    border-radius: clamp(24px, 4vw, 36px);
    padding: clamp(30px, 5vw, 70px);
    overflow: hidden;
    position: relative;
}

.final-cta-wrapper::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(229,152,25,.10);
    top: -120px;
    right: -120px;
}

.final-cta-wrapper::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255,255,255,.05);
    bottom: -80px;
    left: -80px;
}

.final-cta-wrapper > * {
    position: relative;
    z-index: 2;
}

.final-cta-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(255,255,255,.10);
    border-radius: 999px;
    color: #fff;
    margin-bottom: 25px;
    font-size: clamp(12px, 1.1vw, 14px);
    font-weight: 600;
}

.final-cta-wrapper h2 {
    color: #fff;
    font-size: clamp(26px, 4vw, 46px);
    line-height: 1.25;
    margin-bottom: 25px;
    font-weight: 700;
    max-width: 720px;
}

.final-cta-wrapper p {
    font-size: clamp(15px, 1.3vw, 18px);
    line-height: 1.8;
    color: rgba(255,255,255,.82);
    max-width: 680px;
    margin-bottom: 35px;
}

.cta-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.cta-features span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: clamp(14px, 1.1vw, 16px);
    font-weight: 500;
}

.cta-features i {
    color: var(--secondary);
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.cta-buttons .btn {
    height: clamp(50px, 5vw, 58px);
    border-radius: 999px;
    font-weight: 600;
    font-size: clamp(14px, 1.1vw, 16px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-light {
    background: #fff;
    color: var(--primary);
}

.btn-light:hover {
    background: var(--secondary);
    color: #fff;
}

.btn-outline-light {
    border: 2px solid rgba(255,255,255,.40);
    color: #fff;
}

.btn-outline-light:hover {
    background: #fff;
    color: var(--primary);
}

/*=====================================================
PREMIUM CTA
======================================================*/

.premium-cta {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    color: #fff;
    z-index: 1;
    background: linear-gradient(135deg,
            var(--primary),
            var(--primary-dark),
            #0f172a);
}

.premium-cta::before {
    content: '';
    position: absolute;
    top: -250px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    filter: blur(80px);
}

.premium-cta::after {
    content: '';
    position: absolute;
    bottom: -220px;
    left: -150px;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    filter: blur(70px);
}

/*=====================================================
CTA STATS
======================================================*/

.cta-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.stat-card {
    padding: 28px 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: 0.35s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

.stat-card h3 {
    margin-bottom: 8px;
    font-size: 2.3rem;
    font-weight: 800;
    line-height: 1;
    color: #fff;
}

.stat-card span {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

/*=====================================================
CTA BUTTONS
======================================================*/

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
}

.cta-buttons .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    height: 58px;
    font-weight: 700;
    border-radius: 16px;
    transition: 0.35s ease;
}

.cta-buttons .btn:hover {
    transform: translateY(-5px);
}

/*=====================================================
CTA IMAGE
======================================================*/

.cta-image-wrapper {
    position: relative;
    text-align: center;
}

.cta-image-wrapper img {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 480px;
    border-radius: 30px;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.35);
}

/*=====================================================
SECTION BACKGROUNDS
======================================================*/

.services-section,
.impact-section {
    background: #f8fafc;
}

.why-section {
    background: linear-gradient(180deg, #eff6ff, #dbeafe);
}

.journey-section,
.scholarship-section {
    background: #fff;
}

/*=====================================================
SERVICES
======================================================*/

.services-section .row.g-4>[class*='col-'] {
    display: flex;
}

.service-link {
    display: flex;
    width: 100%;
    color: inherit;
    text-decoration: none;
}

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 38px 30px;
    border: 1px solid rgba(37, 99, 235, 0.08);
    border-radius: 28px;
    background: #fff;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 28px;
    background: linear-gradient(135deg, #2563eb, #38bdf8);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: 0.4s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(37, 99, 235, 0.18);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 78px;
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    margin-bottom: 28px;
    font-size: 30px;
    color: #fff;
    background: linear-gradient(135deg, #2563eb, #38bdf8);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.3);
    transition: 0.4s;
}

.service-card:hover .service-icon {
    transform: rotate(-8deg) scale(1.08);
}

.service-badge {
    position: absolute;
    top: 22px;
    right: 22px;
    padding: 6px 14px;
    border-radius: 50px;
    background: #eef4ff;
    color: #2563eb;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.service-card h4 {
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
}

.service-card p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 24px;
    min-height: 90px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    color: var(--gray-700);
    font-size: 15px;
}

.service-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    flex-shrink: 0;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    font-weight: 600;
    color: var(--primary);
}

.service-arrow {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f8fafc;
    transition: 0.4s;
}

.service-card:hover .service-arrow {
    background: var(--primary);
    color: #fff;
    transform: translateX(6px);
}

/*=====================================================
TRUSTED SECTION
======================================================*/

.trusted-section {
    position: relative;
    overflow: hidden;
    padding: 50px 0;
    background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

.trusted-section::before {
    content: '';
    position: absolute;
    top: -250px;
    right: -180px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.05);
    filter: blur(90px);
}

.logo-slider {
    position: relative;
    overflow: hidden;
}

.logo-track {
    display: flex;
    gap: 35px;
    animation: scrollLogo 35s linear infinite;
}

.partnerSwiper,
.universitySwiper {
    padding: 10px 0;
}

.logo-item {
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: 22px;
    transition: 0.35s;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.logo-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
}

.logo-item img {
    max-width: 150px;
    max-height: 70px;
    object-fit: contain;
    transition: 0.35s;
}

.logo-item:hover img {
    transform: scale(1.08);
}

/*=====================================================
FORM
======================================================*/

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/*=====================================================
SUCCESS STORIES
======================================================*/

.story-card {
    padding: 0;
}

.story-image {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--transition);
}

.story-card:hover .story-image img {
    transform: scale(1.06);
}

.story-image .play-button {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin: auto;
    background: var(--white);
    color: var(--primary);
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.story-card:hover .play-button {
    transform: scale(1.1);
}

.story-image .country-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    padding: 5px 14px;
    background: rgba(15, 23, 42, 0.75);
    color: var(--white);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(8px);
}

.story-content {
    padding: 25px 30px 30px;
}

.story-content h4 {
    margin-bottom: 4px;
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-900);
}

.story-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 14px;
    color: var(--gray-600);
}

.stars i {
    margin-right: 2px;
    font-size: 14px;
    color: #fbbf24;
}

.read-more-link {
    display: inline-flex;
    align-items: center;
    margin-top: 10px;
    color: var(--primary);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}

.read-more-link:hover i {
    transform: translateX(4px);
    transition: transform 0.2s ease;
}

/*=====================================================
STUDENT REVIEWS
======================================================*/

.review-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    padding: 32px;
    background: #fff;
    border: 1px solid rgba(37, 99, 235, 0.08);
    border-radius: 28px;
    box-shadow: 0 15px 45px rgba(15, 23, 42, 0.06);
    transition: all 0.4s ease;
}

.review-card:hover {
    transform: translateY(-10px);
    border-color: rgba(37, 99, 235, 0.18);
    box-shadow: 0 30px 70px rgba(37, 99, 235, 0.14);
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #2563eb, #06b6d4);
    transform: scaleX(0);
    transition: 0.4s;
}

.review-card:hover::before {
    transform: scaleX(1);
}

.review-top {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
}

.review-top img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border: 4px solid #eff6ff;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
    transition: 0.4s ease;
}

.review-card:hover .review-top img {
    transform: scale(1.08);
}

.review-top h5 {
    margin: 0 0 4px;
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
}

.review-top small {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
}

.rating {
    margin: 8px 0 18px;
}

.rating i {
    margin-right: 2px;
    font-size: 17px;
    color: #fbbf24;
    transition: 0.3s ease;
}

.review-text,
.review-card p {
    flex: 1;
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.8;
    color: #475569;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 18px;
    border-top: 1px solid #e2e8f0;
}

.review-footer span {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: #eff6ff;
    color: #2563eb;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.review-footer i {
    font-size: 20px;
    color: #2563eb;
}

.review-card:hover .review-footer span {
    background: #2563eb;
    color: #fff;
}

.review-card:hover .rating i {
    transform: scale(1.08);
}

/*=====================================================
AI FINDER
======================================================*/

.finder-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.finder-item {
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-900);
}

.finder-card label {
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-900);
}

.finder-card .form-control,
.finder-card .form-select {
    padding: 12px 16px;
    font-size: 15px;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    background: var(--gray-50);
}

.finder-card .form-control:focus,
.finder-card .form-select:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.finder-toolbar {
    background: #fff;
    padding: 24px;
    border-radius: 20px;

    box-shadow: 0 15px 45px rgba(0, 0, 0, .08);
    margin-bottom: 35px;
}

.results-counter {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.results-counter span {
    font-size: 34px;
    color: var(--primary-color);
    margin-right: 10px;
}

.favourite-btn {
    width: 48px;
}

.compare-btn {
    white-space: nowrap;
}

/*=====================================================
SMART MATCH
======================================================*/

.smart-match-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.match-benefits {
    margin: 0;
    padding: 0;
    list-style: none;
}

.match-benefits li {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.match-benefits li i {
    color: #34d399;
}

.smart-card {
    border: none !important;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25) !important;
}

.smart-card label {
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-900);
}

.smart-card h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--gray-900);
}

/* ===========================
TAB BUTTON
=========================== */

.tab-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--white);
    color: var(--gray-700);
    border: 1px solid var(--gray-200);
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: var(--shadow-xs);
}

.tab-btn:hover {
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.tab-btn.active {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
    box-shadow: var(--shadow-lg);
}

.tab-btn i {
    font-size: 16px;
}

/* ===========================
TAB CONTENT
=========================== */

.tab-content {
    display: none;
    animation: tabFade 0.4s ease;
}

.tab-content.active {
    display: block;
}

.tab-pane {
    width: 100%;
}

/*=====================================================
FAQ SECTION
======================================================*/

.tab-btn:hover i {
    transform: translateY(-2px);
}

.faq-section {
    position: relative;
    overflow: hidden;
    padding: 40px 0;
    background: linear-gradient(180deg, #f8fbff 0%, var(--white) 100%);
}

.faq-section::before {
    content: '';
    position: absolute;
    top: -220px;
    right: -180px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.05);
    filter: blur(100px);
}

.faq-section .container {
    position: relative;
    z-index: 2;
}

/*=====================================================
ACCORDION
======================================================*/
.accordion-premium {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.accordion-item {
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(37, 99, 235, 0.08);
    border-radius: 22px;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.05);
    transition: all var(--transition);
}

.accordion-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 50px rgba(37, 99, 235, 0.1);
}

.accordion-item.active {
    border-color: var(--primary);
    box-shadow: 0 28px 65px rgba(37, 99, 235, 0.14);
}

.accordion-header {
    margin: 0;
}

.accordion-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    padding: 24px 30px;
    border: none;
    background: transparent;
    cursor: pointer;
    color: var(--dark);
    font-size: 18px;
    font-weight: 600;
    transition: color var(--transition);
}

.accordion-button:hover {
    color: var(--primary);
}

.faq-question {
    display: flex;
    align-items: center;
    flex: 1;
}

.faq-number {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    margin-right: 16px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary);
    font-size: 15px;
    font-weight: 700;
    transition: all var(--transition);
}

.accordion-item.active .faq-number {
    background: var(--primary);
    color: var(--white);
}

.accordion-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary);
    font-size: 16px;
    transition: all var(--transition);
}

.accordion-item.active .accordion-icon {
    background: var(--gradient-primary);
    color: var(--white);
    transform: rotate(180deg);
}

.accordion-collapse {
    display: none;
    overflow: hidden;
}

.accordion-item.active .accordion-button {
    color: var(--primary-color);
}

.accordion-button {
    cursor: pointer;
}

.accordion-item.active .accordion-collapse {
    display: block;
}

.accordion-body {
    padding: 0 30px 30px 88px;
    color: var(--gray-600);
    font-size: 15px;
    line-height: 1.8;
}

/*=====================================================
FORM VALIDATION
======================================================*/

.is-valid {
    border-color: #10b981 !important;
}

.is-invalid {
    border-color: #ef4444 !important;
}

.invalid-feedback {
    display: block;
    margin-top: 8px;
    color: #ef4444;
    font-size: 13px;
    font-weight: 500;
}

#backToTop {
    position: fixed;
    right: 25px;
    bottom: 30px;
    width: 55px;
    height: 55px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #0ea5e9);
    color: #fff;
    font-size: 20px;
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.35);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: 0.35s;
    z-index: 999;
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
}

#backToTop:hover {
    transform: translateY(-5px);
}

.whatsapp-float {
    position: fixed;
    left: 25px;
    bottom: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    color: #fff;
    font-size: 32px;
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.35);
    z-index: 999;
    transition: 0.35s;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: translateY(-6px);

    color: #fff;
}

