/* ===================================
   RESET & GLOBAL STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0a2540;
    --secondary-color: #00a8e8;
    --accent-color: #7ed957;
    --dark-color: #1f2937;
    --light-color: #f3f4f6;
    --text-color: #374151;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #0a2540 0%, #00a8e8 100%);
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-color);
}

.logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
    padding: 8px 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--secondary-color);
}

.btn-enroll {
    background: var(--gradient);
    color: var(--white) !important;
    padding: 10px 25px !important;
    border-radius: 5px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-enroll:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: 0.3s;
}

/* ===================================
   HERO SLIDER SECTION
   =================================== */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    ;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide:nth-child(1) {
    background: linear-gradient(135deg, #0a2540 0%, #1e3a8a 50%, #0a2540 100%);
}

.slide:nth-child(2) {
    background: linear-gradient(135deg, #1e3a8a 0%, #00a8e8 50%, #1e3a8a 100%);
}

.slide:nth-child(3) {
    background: linear-gradient(135deg, #00a8e8 0%, #7ed957 50%, #00a8e8 100%);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    animation: slideIn 0.8s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.slide-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.slide-title {
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.slide-title .highlight {
    color: #7ed957;
    text-shadow: 0 0 30px rgba(126, 217, 87, 0.5);
}

.slide-text {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
}

.slide-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.slide-buttons .btn {
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.slide-buttons .btn-primary {
    background: #7ed957;
    color: #0a2540;
    box-shadow: 0 5px 20px rgba(126, 217, 87, 0.4);
}

.slide-buttons .btn-primary:hover {
    background: #6bc247;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(126, 217, 87, 0.6);
}

.slide-buttons .btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.slide-buttons .btn-secondary:hover {
    background: var(--white);
    color: #0a2540;
    transform: translateY(-3px);
}

/* Slider Navigation Buttons */
.slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 3;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 20px;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.dot.active {
    background: #7ed957;
    width: 40px;
    border-radius: 20px;
    border-color: var(--white);
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    padding: 60px 0;
    margin-top: -2px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #00a8e8 0%, #7ed957 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--white);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #0a2540;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 16px;
    color: #6b7280;
    font-weight: 600;
}

/* Old Hero Section - Keeping as backup */
.hero {
    background: var(--gradient);
    color: var(--white);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    display: none; /* Hidden in favor of slider */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1200') center/cover;
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

.highlight {
    color: var(--accent-color);
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--white);
}

.btn-primary:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-light {
    background: var(--white);
    color: var(--primary-color);
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-small {
    display: inline-block;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 5px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
}

.btn-small:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-full {
    width: 100%;
}

.btn-large {
    padding: 15px 40px;
    font-size: 18px;
}

/* ===================================
   FEATURES SECTION
   =================================== */
.features {
    padding: 80px 0;
    background: var(--light-color);
}

.section-title {
    text-align: center;
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 22px;
}

/* ===================================
   RECENT ADMISSIONS TICKER
   =================================== */
.admissions-ticker {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 20px 0;
    overflow: hidden;
    position: relative;
}

.ticker-header {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 15px;
}

.ticker-header i {
    font-size: 24px;
    animation: bounce 2s infinite;
}

.ticker-wrapper {
    overflow: hidden;
    position: relative;
    
    border-radius: 10px;
    padding: 15px 0;
}

.ticker-content {
    display: flex;
    gap: 50px;
    animation: scroll-left 15s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 12px 25px;
    border-radius: 30px;
    min-width: 300px;
}

.ticker-item i {
    font-size: 28px;
    color: var(--accent-color);
}

.ticker-details {
    display: flex;
    flex-direction: column;
}

.ticker-name {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 16px;
}

.ticker-course {
    color: #6b7280;
    font-size: 14px;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* ===================================
   SCHOLARSHIP SECTION
   =================================== */
.scholarship-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 60px 0;
}

.verification-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.scholarship-box {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.scholarship-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.scholarship-header i {
    font-size: 36px;
    color: var(--secondary-color);
}

.scholarship-header h3 {
    color: var(--primary-color);
    font-size: 28px;
    font-weight: bold;
}

.scholarship-desc {
    text-align: center;
    color: #6b7280;
    font-size: 16px;
    margin-bottom: 30px;
}

.scholarship-form {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.scholarship-form .form-group {
    display: flex;
    flex-direction: column;
}

.scholarship-form label {
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.scholarship-form label i {
    color: var(--secondary-color);
}

.scholarship-form input {
    padding: 12px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.scholarship-form input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(0, 168, 232, 0.1);
}

.btn-scholarship {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-scholarship:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 168, 232, 0.4);
}

.scholarship-result {
    background: #f0fdf4;
    border: 2px solid #22c55e;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
}

.result-success i {
    font-size: 48px;
    color: #22c55e;
    margin-bottom: 15px;
}

.result-success h4 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 15px;
}

.result-success p {
    color: #6b7280;
    font-size: 16px;
    margin-bottom: 10px;
}

.result-success p strong {
    color: var(--primary-color);
}

.btn-download,
.btn-reset {
    padding: 12px 30px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 10px 5px;
    transition: all 0.3s ease;
}

.btn-download {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.4);
}

.btn-reset {
    background: #6b7280;
    color: white;
}

.btn-reset:hover {
    background: #4b5563;
}

.scholarship-error {
    background: #fef2f2;
    border: 2px solid #ef4444;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
}

.scholarship-error i {
    font-size: 48px;
    color: #ef4444;
    margin-bottom: 15px;
}

.scholarship-error p {
    color: #991b1b;
    font-size: 16px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .verification-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .scholarship-box {
        padding: 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .scholarship-header h3 {
        font-size: 22px;
    }

    .scholarship-header i {
        font-size: 28px;
    }
}

/* ===================================
   POPULAR COURSES
   =================================== */
.popular-courses {
    padding: 80px 0;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.course-card {
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.course-img {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin-bottom: 20px;
}

.course-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 22px;
}

.course-info {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    font-size: 14px;
    color: #6b7280;
}

.course-info i {
    color: var(--secondary-color);
    margin-right: 5px;
}

/* ===================================
   STATS SECTION
   =================================== */
.stats {
    background: var(--gradient);
    color: var(--white);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 18px;
    opacity: 0.9;
}

/* ===================================
   TESTIMONIALS
   =================================== */
.testimonials {
    padding: 80px 0;
    background: var(--light-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.stars {
    color: #fbbf24;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #6b7280;
    font-size: 14px;
}

/* ===================================
   CTA SECTION
   =================================== */
.cta {
    background: var(--primary-color);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    margin-bottom: 20px;
    color: var(--white);
}

.footer-col p {
    opacity: 0.8;
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    opacity: 0.8;
    transition: opacity 0.3s, padding-left 0.3s;
    display: inline-block;
}

.footer-col ul li a:hover {
    opacity: 1;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s, transform 0.3s;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.contact-info li {
    display: flex;
    align-items: start;
    gap: 10px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.contact-info i {
    color: var(--secondary-color);
    margin-top: 3px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* ===================================
   PAGE HEADER
   =================================== */
.page-header {
    background: var(--gradient);
    color: var(--white);
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* ===================================
   ABOUT PAGE
   =================================== */
.about-content {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    color: var(--primary-color);
    font-size: 32px;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-highlights {
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.highlight-item i {
    color: var(--accent-color);
    font-size: 20px;
}

.about-image img {
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.mission-vision {
    background: var(--light-color);
    padding: 80px 0;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.mv-card {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.mv-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 20px;
}

.mv-card h3 {
    color: var(--primary-color);
    font-size: 26px;
    margin-bottom: 15px;
}

.mv-card p {
    line-height: 1.8;
}

.leadership {
    padding: 80px 0;
}

.leader-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    max-width: 900px;
    margin: 0 auto;
}

.leader-image {
    width: 200px;
    height: 200px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
}

.leader-info h3 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 5px;
}

.leader-info h4 {
    color: var(--secondary-color);
    font-size: 18px;
    margin-bottom: 20px;
}

.leader-info p {
    line-height: 1.8;
    margin-bottom: 15px;
}

.values {
    background: var(--light-color);
    padding: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card i {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.achievements {
    padding: 80px 0;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.achievement-item {
    text-align: center;
    padding: 30px;
}

.achievement-item i {
    font-size: 50px;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.achievement-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* ===================================
   COURSES PAGE
   =================================== */
.courses-section {
    padding: 80px 0;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid var(--secondary-color);
    background: transparent;
    color: var(--secondary-color);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--secondary-color);
    color: var(--white);
}

.courses-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.course-detail-card {
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.course-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.course-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 20px;
}

.course-icon-large {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.course-badge {
    background: var(--accent-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.course-detail-card h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 10px;
}

.course-desc {
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.6;
}

.course-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    font-size: 14px;
    color: #6b7280;
}

.course-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.course-meta i {
    color: var(--secondary-color);
}

.course-features {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.feature-item i {
    color: var(--accent-color);
}

/* ===================================
   VERIFICATION PAGE
   =================================== */
.verification-type-section {
    padding: 40px 0 20px;
    background: #f8f9fa;
}

.verification-type-selector {
    display: flex;
    gap: 20px;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.type-btn {
    flex: 1;
    padding: 20px 30px;
    border: 2px solid #e5e7eb;
    background: white;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.type-btn i {
    font-size: 32px;
    color: #6b7280;
    transition: all 0.3s ease;
}

.type-btn span {
    font-size: 16px;
    font-weight: 600;
    color: #374151;
}

.type-btn:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(10, 37, 64, 0.15);
}

.type-btn:hover i {
    color: var(--primary-color);
}

.type-btn.active {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.type-btn.active i,
.type-btn.active span {
    color: white;
}

.verification-section {
    padding: 80px 0;
}

.verify-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.verify-info h2 {
    color: var(--primary-color);
    font-size: 32px;
    margin-bottom: 20px;
}

.verify-info p {
    line-height: 1.8;
    margin-bottom: 30px;
}

.verify-features {
    margin-bottom: 30px;
}

.verify-feature-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.verify-feature-item i {
    color: var(--accent-color);
    font-size: 24px;
    margin-top: 5px;
}

.verify-feature-item h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.verify-help {
    background: var(--light-color);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
}

.verify-help h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.verify-help p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.verify-help a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.verify-form-container {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.verify-form {
    text-align: center;
}

.form-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 20px;
}

.verify-form h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 26px;
}

.verify-form > p {
    color: #6b7280;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.verification-result {
    animation: fadeIn 0.5s ease;
}

.result-header {
    text-align: center;
    margin-bottom: 30px;
}

.result-header i {
    font-size: 60px;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.result-header h3 {
    color: var(--primary-color);
    font-size: 26px;
}

.result-details {
    background: var(--light-color);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #d1d5db;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 600;
    color: var(--primary-color);
}

.detail-value {
    color: var(--text-color);
}

.status-active {
    color: var(--accent-color);
    font-weight: bold;
}

.error-result .result-header i {
    color: #ef4444;
}

.error-message {
    background: #fee2e2;
    border: 1px solid #fca5a5;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.error-message p {
    color: #991b1b;
    margin-bottom: 10px;
}

.info-section {
    background: var(--light-color);
    padding: 80px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.info-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
}

.info-card i {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.info-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* ===================================
   CONTACT PAGE
   =================================== */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-box h2 {
    color: var(--primary-color);
    font-size: 32px;
    margin-bottom: 20px;
}

.contact-info-box > p {
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-text h4 {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 18px;
}

.contact-text p {
    line-height: 1.8;
    color: #6b7280;
}

.social-section h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 18px;
}

.social-links-large {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
    font-size: 18px;
}

.social-link:hover {
    transform: translateY(-5px);
}

.contact-form-box {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.contact-form-box h2 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 15px;
}

.contact-form-box > p {
    color: #6b7280;
    margin-bottom: 30px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-message {
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.success-message {
    background: #d1fae5;
    border: 1px solid #6ee7b7;
    color: #065f46;
}

.success-message i {
    font-size: 24px;
    color: var(--accent-color);
}

.map-section {
    padding: 80px 0;
    background: var(--light-color);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-top: 40px;
}

.faq-section {
    padding: 80px 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--light-color);
}

.faq-question h4 {
    color: var(--primary-color);
    font-size: 18px;
}

.faq-question i {
    color: var(--secondary-color);
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 25px 20px;
}

.faq-answer p {
    line-height: 1.8;
    color: var(--text-color);
}

/* ===================================
   ENROLLMENT PAGE
   =================================== */
.enrollment-section {
    padding: 80px 0;
    background: var(--light-color);
}

.enrollment-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.enrollment-intro h2 {
    color: var(--primary-color);
    font-size: 36px;
    margin-bottom: 20px;
}

.enrollment-intro p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.enrollment-benefits {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefit-item i {
    color: var(--accent-color);
    font-size: 20px;
}

.enrollment-container {
    max-width: 900px;
    margin: 0 auto;
}

.enrollment-form {
    background: var(--white);
    padding: 50px;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.enrollment-form h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin: 30px 0 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.enrollment-form h3:first-child {
    margin-top: 0;
}

.enrollment-form h3 i {
    color: var(--secondary-color);
}

.enrollment-form .form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.checkbox-group {
    display: flex;
    align-items: start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 5px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
}

.checkbox-group a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.form-note {
    text-align: center;
    color: #6b7280;
    font-size: 14px;
    margin-top: 15px;
}

.enrollment-success {
    background: var(--white);
    padding: 50px;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    animation: fadeIn 0.5s ease;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    margin: 0 auto 30px;
}

.enrollment-success h2 {
    color: var(--primary-color);
    font-size: 32px;
    margin-bottom: 15px;
}

.enrollment-success > p {
    font-size: 18px;
    margin-bottom: 30px;
}

.success-details {
    background: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: left;
}

.success-details p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.success-details ul {
    list-style: none;
    margin: 20px 0;
}

.success-details li {
    display: flex;
    align-items: start;
    gap: 10px;
    margin-bottom: 12px;
}

.success-details li i {
    color: var(--accent-color);
    margin-top: 3px;
}

.success-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.why-enroll {
    padding: 80px 0;
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease;
}

.fade-in-delay {
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.fade-in-delay-2 {
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 20px 0;
    }

    .nav-links.active {
        left: 0;
    }

    /* Hero Slider Responsive */
    .hero-slider {
        height: 100vh;
        min-height: 500px;
    }

    .slide-title {
        font-size: 36px;
    }

    .slide-text {
        font-size: 16px;
    }

    .slide-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .slide-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .slider-nav {
        padding: 0 15px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .slider-dots {
        bottom: 20px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-item {
        padding: 20px;
    }

    .stat-number {
        font-size: 36px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .about-grid,
    .verify-container,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .verification-type-selector {
        flex-direction: column;
    }

    .type-btn {
        padding: 15px 20px;
    }

    .type-btn i {
        font-size: 28px;
    }

    .leader-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .leader-image {
        margin: 0 auto;
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .courses-container,
    .courses-grid {
        grid-template-columns: 1fr;
    }

    .enrollment-form {
        padding: 30px 20px;
    }

    .enrollment-form .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .values-grid,
    .achievements-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 24px;
    }

    .section-title {
        font-size: 24px;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .enrollment-form h3 {
        font-size: 20px;
    }

    .filter-buttons {
        gap: 10px;
    }

    .filter-btn {
        padding: 8px 15px;
        font-size: 14px;
    }
}

/* ===================================
   FLOATING SOCIAL MEDIA BUTTONS
   =================================== */
.floating-social {
    position: fixed;
    right: 25px;
    bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.social-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 26px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.social-btn:hover {
    transform: scale(1.15) translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    animation: none;
}

.social-btn.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.social-btn.whatsapp:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
}

.social-btn.instagram {
    background: linear-gradient(135deg, #833AB4 0%, #E1306C 50%, #FD1D1D 100%);
}

.social-btn.instagram:hover {
    background: linear-gradient(135deg, #5B2A87 0%, #C13584 50%, #E1306C 100%);
}

.social-btn.youtube {
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
}

.social-btn.youtube:hover {
    background: linear-gradient(135deg, #CC0000 0%, #990000 100%);
}

/* ===================================
   SCROLL TO TOP BUTTON
   =================================== */
.scroll-to-top {
    position: fixed;
    left: 25px;
    bottom: 25px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #5cb042 100%);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #5cb042 0%, var(--accent-color) 100%);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Responsive for mobile */
@media (max-width: 768px) {
    .floating-social {
        right: 15px;
        bottom: 15px;
        gap: 12px;
    }

    .social-btn {
        width: 48px;
        height: 48px;
        font-size: 22px;
    }

    .scroll-to-top {
        left: 15px;
        bottom: 15px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}