﻿@import url('styles.css');
:root {
    --primary-color: #1e40af;
    --secondary-color: #059669;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --bg-light: #f8fafc;
    --border-color: #e5e7eb;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Header Styles */
.header-top {
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
    color: white;
    padding: 10px 0;
    font-size: 0.9rem;
}

.main-header {
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 20px 0;
    top: 0;
    z-index: 1000;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-emblem {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), #fbbf24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.logo-text h1 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.8rem;
    margin: 0;
}

.logo-text p {
    color: var(--secondary-color);
    font-weight: 500;
    margin: 0;
    font-size: 1rem;
}

/* Hero Section with Carousel */
.hero-section {
    padding: 0;
    position: relative;
}

.hero-slide {
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: white;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.carousel-indicators {
    bottom: 30px;
}

    .carousel-indicators button {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        border: 2px solid white;
        background: transparent;
        margin: 0 8px;
        transition: all 0.3s ease;
    }

        .carousel-indicators button.active {
            background: white;
            transform: scale(1.2);
        }

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

    .carousel-control-prev:hover,
    .carousel-control-next:hover {
        background: rgba(255, 255, 255, 0.3);
    }

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button {
    background: var(--accent-color);
    color: white;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

    .cta-button:hover {
        background: #d97706;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
        color: white;
    }

/* Section Styles */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 50px;
    position: relative;
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: var(--accent-color);
        border-radius: 2px;
    }

/* Card Styles */
.feature-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    height: 100%;
}

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }

.feature-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Process Timeline */
.process-timeline {
    position: relative;
    padding: 40px 0;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 30px;
    flex-shrink: 0;
}

.timeline-content {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    flex: 1;
}

/* Eligibility Cards */
.eligibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.eligibility-card {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid var(--secondary-color);
}

/* Statistics Section */
.stats-section {
    background: linear-gradient(135deg, var(--secondary-color), #10b981);
    color: white;
    padding: 80px 0;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Documents Section */
.document-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

    .document-card:hover {
        border-color: var(--primary-color);
        transform: translateY(-5px);
    }

.document-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 50px 0 20px;
}

.footer-section h5 {
    color: var(--accent-color);
    margin-bottom: 20px;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

    .footer-links a:hover {
        color: var(--accent-color);
    }

/* Navigation Styles */
.desktop-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-color);
    padding: 0;
    position:sticky;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
    flex-wrap: wrap;
}

    .nav-menu li {
        margin: 0;
    }

    .nav-menu a {
        display: block;
        padding: 15px 20px;
        color: var(--text-dark);
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        position: relative;
    }

        .nav-menu a:hover {
            color: var(--primary-color);
            background: var(--bg-light);
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 3px;
            background: var(--primary-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-menu a:hover::after,
        .nav-menu a.active::after {
            width: 80%;
        }

/* Mobile Menu Button */
.mobile-menu-btn {
    background: none;
    border: 1px solid #aaaaaa;
    width: 30px;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    padding: 5px 2px;
}

    .mobile-menu-btn span {
        width: 100%;
        height: 3px;
        background:#ffffff;
        transition: all 0.3s ease;
        border-radius: 2px;
    }

    .mobile-menu-btn:hover span {
        background: #5c95f1;
    }

/* Mobile Menu Styles */
.mobile-menu {
    width: 300px !important;
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
}

    .mobile-menu .offcanvas-header {
        background: rgba(255, 255, 255, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding: 20px;
    }

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-emblem-small {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.mobile-logo-text h6 {
    color: white;
    margin: 0;
    font-weight: 600;
}

.mobile-logo-text small {
    color: rgba(255, 255, 255, 0.8);
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

    .mobile-nav-menu li {
        margin: 0;
    }

    .mobile-nav-menu a {
        display: flex;
        align-items: center;
        padding: 15px 20px;
        color: white;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        border-left: 3px solid transparent;
    }

        .mobile-nav-menu a:hover {
            background: rgba(255, 255, 255, 0.1);
            border-left-color: var(--accent-color);
            color: white;
        }

        .mobile-nav-menu a i {
            width: 20px;
            margin-right: 15px;
            text-align: center;
        }

.mobile-menu-footer {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
}

    .mobile-menu-footer .contact-info p {
        color: rgba(255, 255, 255, 0.8);
        margin: 10px 0;
        font-size: 0.9rem;
    }

    .mobile-menu-footer .contact-info i {
        margin-right: 10px;
    }

.btn-close {
    background: none;
    opacity: 1;
}

    .btn-close::before,
    .btn-close::after {
        background-color: white;
    }

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .logo-section {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .timeline-item {
        flex-direction: column;
        text-align: center;
    }

    .timeline-number {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

/* Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

    .fade-in-up.active {
        opacity: 1;
        transform: translateY(0);
    }

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

    .scroll-top.show {
        opacity: 1;
        visibility: visible;
    }

    .scroll-top:hover {
        background: var(--secondary-color);
        transform: translateY(-3px);
    }
