﻿
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #16a34a;
    --secondary-color: #15803d;
    --accent-color: #4ade80;
    --pale-green: #98FB98;
    --success-color: #22c55e;
    --dark-color: #14532d;
    --light-color: #f0fff4;
    --gray-100: #f0fff4;
    --gray-200: #dcfce7;
    --gray-300: #bbf7d0;
    --gray-400: #86efac;
    --gray-500: #4ade80;
    --gray-600: #22c55e;
    --gray-700: #16a34a;
    --gray-800: #15803d;
    --gray-900: #14532d;
    --shadow-sm: 0 1px 2px 0 rgba(20, 83, 45, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(20, 83, 45, 0.1), 0 2px 4px -1px rgba(20, 83, 45, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(20, 83, 45, 0.12), 0 4px 6px -2px rgba(20, 83, 45, 0.06);
    --shadow-xl: 0 20px 25px -5px rgba(20, 83, 45, 0.14), 0 10px 10px -5px rgba(20, 83, 45, 0.06);
    --border-radius: 12px;
    --border-radius-lg: 20px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #f4fff6;
    color: #1a1a1a;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Photo */
.bg-photo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/dist/images/bgImage.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(3px) saturate(0.55) brightness(1.05) contrast(0.95);
    transform: scale(1.05);
    pointer-events: none;
    z-index: -4;
}

.bg-photo-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.55) 0%, rgba(240, 255, 246, 0.4) 45%, rgba(255, 255, 255, 0.58) 100%);
    pointer-events: none;
    z-index: -3;
}

/* Background Decorations */
.bg-decoration {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(152, 251, 152, 0.18) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(74, 222, 128, 0.14) 0%, transparent 50%), radial-gradient(circle at 60% 20%, rgba(34, 197, 94, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -2;
}

.bg-circles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.floating-circle {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--primary-color);
    opacity: 0.03;
    animation: float 15s infinite ease-in-out;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }

    25% {
        transform: translateY(-20px) rotate(90deg);
    }

    50% {
        transform: translateY(-10px) rotate(180deg);
    }

    75% {
        transform: translateY(-30px) rotate(270deg);
    }
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(244, 255, 246, 0.96);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(152, 251, 152, 0.5);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand .logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-placeholder {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #98FB98, #22a84a);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: var(--shadow-md);
}

    .logo-placeholder.small {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

    .nav-link:hover {
        color: var(--primary-color);
        background: var(--gray-100);
    }

/* Main Container */
.main-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Hero Section */
.hero-section {
    padding: 1rem 0;
    text-align: center;
    background: transparent;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
    line-height: 1.1;
}

.title-highlight {
    color: #10b981;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #1a1a1a;
    margin-bottom: 0.9rem;
    font-weight: 400;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.7);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.7);
}

.stat-label {
    font-size: 0.95rem;
    color: #1a1a1a;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.7);
}

/* Application Section */
.application-section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #1a1a1a;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.7);
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.application-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(152, 251, 152, 0.4);
    position: relative;
    overflow: hidden;
}

    .application-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--primary-color);
    }

    .application-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-xl);
    }

    .application-card.self-sponsored::before {
        background: var(--primary-color);
    }

    .application-card.kuccps::before {
        background: var(--accent-color);
    }

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #98FB98, #16a34a);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
}

.kuccps .card-icon {
    background: linear-gradient(135deg, #98FB98, #22a84a);
}

.card-header {
    margin-bottom: 2rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.card-subtitle {
    color: #1a1a1a;
    font-size: 1rem;
}

.card-content {
    margin-bottom: 2rem;
}

.process-steps {
    margin-bottom: 1.5rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: var(--gray-100);
    border-radius: var(--border-radius);
}

.step-number {
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.step-text {
    color: #1a1a1a;
    font-weight: 500;
}

.fee-notice {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(152, 251, 152, 0.3);
    border-radius: var(--border-radius);
    border: 1px solid rgba(152, 251, 152, 0.6);
    color: #1a1a1a;
    font-weight: 500;
    font-size: 0.9rem;
}

.requirements {
    margin-bottom: 1.5rem;
}

.requirement-title {
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.document-list {
    space-y: 0.75rem;
}

.document-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--gray-100);
    border-radius: var(--border-radius);
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

    .document-item i {
        color: var(--accent-color);
        width: 20px;
    }

.login-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(152, 251, 152, 0.22);
    border-radius: var(--border-radius);
    border: 1px solid rgba(152, 251, 152, 0.5);
    color: #1a1a1a;
    font-weight: 500;
}

    .login-info i {
        color: var(--primary-color);
        margin-right: 0.5rem;
    }

.format-example {
    font-size: 0.85rem;
    color: #1a1a1a;
    font-family: 'Monaco', 'Consolas', monospace;
    background: white;
    padding: 0.5rem;
    border-radius: 6px;
    margin-top: 0.5rem;
}

.card-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    min-width: 150px;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

    .btn-primary:hover {
        background: var(--secondary-color);
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

    .btn-secondary:hover {
        background: var(--primary-color);
        color: white;
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

/* Features Section */
.features-section {
    padding: 4rem 0;
    background: white;
    border-radius: var(--border-radius-lg);
    margin: 4rem 0;
    box-shadow: var(--shadow-md);
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.feature {
    text-align: center;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #98FB98, #22a84a);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-md);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.feature-text {
    color: #1a1a1a;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 6rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-tagline {
    color: #86efac;
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.link-group h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
}

.link-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

    .link-group a {
        color: #86efac;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .link-group a:hover {
            color: #22c55e;
        }

.footer-bottom {
    border-top: 1px solid var(--gray-700);
    padding: 2rem;
    text-align: center;
    color: #86efac;
}

    .footer-bottom a {
        color: var(--accent-color);
        text-decoration: none;
    }

        .footer-bottom a:hover {
            text-decoration: underline;
        }

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }

    .nav-links {
        display: none;
    }

    .main-container {
        padding: 0 1rem;
    }

    .hero-stats {
        gap: 2rem;
        flex-wrap: wrap;
    }

    .cards-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .application-card {
        padding: 2rem;
    }

    .card-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .features-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }
}

