

/* ===== CSS VARIABLES ===== */
:root {
    --primary-color: #ff0000;
    --secondary-color: #000066;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --white-color: #ffffff;
    --text-color: #333333;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --light-bg: #f8f9fa;
    
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    
    --gradient-primary: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(0, 0, 102, 0.95) 0%, rgba(255, 0, 0, 0.95) 100%);
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--white-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ===== TOPBAR ===== */
.topbar {
    background: var(--secondary-color);
    color: var(--white-color);
    padding: 12px 0;
    font-size: 14px;
}

.topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.topbar-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white-color);
    transition: var(--transition);
}

.topbar-link:hover {
    color: var(--primary-color);
}

.topbar-link i {
    font-size: 12px;
}

.topbar-text {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.topbar-text i {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 14px;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    background: var(--white-color);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 55px;
    height: 55px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.logo-icon span {
    font-size: 32px;
    font-weight: 900;
    color: var(--white-color);
}

.logo-text h1 {
    font-size: 28px;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 3px;
}

.logo-text p {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 500;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-color);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    margin-left: 10px;
}

.btn-enroll {
    background: var(--gradient-primary);
    color: var(--white-color);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.btn-enroll:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===== DROPDOWN MENU ===== */
.nav-item.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.dropdown-toggle i.fa-chevron-down {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.nav-item.dropdown:hover .dropdown-toggle i.fa-chevron-down {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 260px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    padding: 0;
    margin-top: 15px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-15px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

/* Desktop hover effect */
@media (min-width: 769px) {
    .nav-item.dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
        transform: translateY(0);
    }
}

.dropdown-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.dropdown-menu li:last-child .dropdown-item {
    border-bottom: none;
}

.dropdown-item i {
    color: var(--primary-color);
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.dropdown-item:hover {
    background: var(--light-bg);
    color: var(--primary-color);
    padding-left: 30px;
}

.dropdown-item:hover::before {
    width: 4px;
}

.dropdown-item:hover i {
    transform: scale(1.1);
}

/* Mobile Dropdown */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--light-bg);
        margin-top: 10px;
        margin-left: 0;
        margin-right: 0;
        border-radius: 10px;
        max-height: 0;
        transition: max-height 0.4s ease;
        padding: 0;
        pointer-events: all;
        border: none;
    }
    
    .nav-item.dropdown.active .dropdown-menu {
        max-height: 600px;
    }
    
    .nav-item.dropdown.active .dropdown-toggle i.fa-chevron-down {
        transform: rotate(180deg);
    }
    
    .dropdown-item {
        padding: 14px 30px;
        font-size: 14px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    }
    
    .dropdown-menu li:last-child .dropdown-item {
        border-bottom: none;
    }
    
    .dropdown-item:hover {
        padding-left: 35px;
    }
    
    .dropdown-item::before {
        left: 0;
    }
}

/* Hide checkbox */
.dropdown-checkbox {
    display: none;
}

/* DESKTOP: hover opens */
@media (min-width: 769px) {
    .nav-item.dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
        transform: translateY(0);
    }
}

/* MOBILE: checkbox = open */
@media (max-width: 768px) {
    .dropdown-menu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
    }

    /* When checkbox is checked → open the menu */
    .dropdown-checkbox:checked ~ .dropdown-menu {
        max-height: 600px;
    }

    /* Rotate chevron when open */
    .dropdown-checkbox:checked + .dropdown-toggle i.fa-chevron-down {
        transform: rotate(180deg);
    }
}

/* ===== HERO SLIDER ===== */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    min-height: 100vh;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}

.hero-slide:nth-child(1) {
    background: linear-gradient(135deg, #000066 0%, #ff0000 100%);
}

.hero-slide:nth-child(2) {
    background: linear-gradient(135deg, #000080 0%, #cc0000 100%);
}

.hero-slide:nth-child(3) {
    background: linear-gradient(135deg, #000050 0%, #ff3333 100%);
}

.hero-slide:nth-child(4) {
    background: linear-gradient(135deg, #1a1a66 0%, #ff1a1a 100%);
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
    position: relative;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.03)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
    opacity: 0.3;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    color: var(--white-color);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge i {
    font-size: 16px;
    color: var(--white-color);
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-title .text-primary {
    color: var(--white-color);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 26px;
    font-weight: 300;
    margin-bottom: 20px;
    opacity: 0.95;
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
}

.hero-features {
    margin-bottom: 35px;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 16px;
}

.hero-features i {
    font-size: 20px;
    color: var(--white-color);
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 35px;
}

.mini-stat {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 25px 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mini-stat h3 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 5px;
}

.mini-stat p {
    font-size: 13px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--white-color);
    color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: transparent;
    color: var(--white-color);
    border-color: var(--white-color);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--white-color);
    border-color: var(--white-color);
}

.btn-outline:hover {
    background: var(--white-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-shape {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 30px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-shape::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 4s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.hero-shape i {
    font-size: 200px;
    color: rgba(255, 255, 255, 0.12);
    z-index: 1;
}

.floating-stat {
    position: absolute;
    background: var(--white-color);
    padding: 20px 25px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.floating-stat.stat-1 {
    top: 10%;
    right: -5%;
    animation-delay: 0s;
}

.floating-stat.stat-2 {
    bottom: 10%;
    left: -5%;
    animation-delay: 1.5s;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon i {
    font-size: 24px;
    color: var(--white-color);
}

.stat-content h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 2px;
}

.stat-content p {
    font-size: 12px;
    color: var(--text-light);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 10;
    pointer-events: none;
}

.slider-btn {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
    pointer-events: all;
}

.slider-btn:hover {
    background: var(--primary-color);
    border-color: var(--white-color);
    transform: scale(1.1);
}

.slider-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.7);
}

.indicator.active {
    width: 35px;
    border-radius: 10px;
    background: var(--white-color);
}

/* Slide Animations */
.hero-slide.active .hero-badge {
    animation: slideInLeft 0.8s ease;
}

.hero-slide.active .hero-title {
    animation: slideInLeft 0.8s ease 0.1s both;
}

.hero-slide.active .hero-subtitle {
    animation: slideInLeft 0.8s ease 0.2s both;
}

.hero-slide.active .hero-description {
    animation: slideInLeft 0.8s ease 0.3s both;
}

.hero-slide.active .hero-features,
.hero-slide.active .hero-stats-grid {
    animation: slideInLeft 0.8s ease 0.4s both;
}

.hero-slide.active .hero-buttons {
    animation: slideInLeft 0.8s ease 0.5s both;
}

.hero-slide.active .hero-visual {
    animation: slideInRight 0.8s ease 0.3s both;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== SECTION STYLES ===== */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header.text-left {
    text-align: left;
}

.section-header.text-left .section-tag {
    margin: 0;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 0, 102, 0.1), rgba(255, 0, 0, 0.1));
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-title span {
    color: var(--primary-color);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== PAGE HERO ===== */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb .separator {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb .current {
    color: white;
    font-weight: 600;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.page-description {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: var(--white-color);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-overview-section {
    padding: 80px 0;
}

.about-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.overview-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--light-bg);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

.highlight-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.highlight-item:hover i {
    color: white;
}

.content-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.content-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 20px;
}

.content-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--light-color);
    border-radius: 15px;
    transition: var(--transition);
}

.about-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 28px;
    color: var(--white-color);
}

.feature-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 3px;
}

.feature-info p {
    font-size: 13px;
    color: var(--text-light);
}

.about-visual {
    position: relative;
}

.visual-card {
    background: var(--gradient-primary);
    padding: 60px 40px;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    color: var(--white-color);
}

.visual-icon-large {
    margin-bottom: 30px;
}

.visual-icon-large i {
    font-size: 120px;
    opacity: 0.3;
}

.visual-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.v-stat {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.v-stat h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 5px;
}

.v-stat p {
    font-size: 14px;
    opacity: 0.9;
}

.stats-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.stat-box {
    text-align: center;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.stat-box .stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.stat-box .stat-icon i {
    color: white;
    font-size: 1.5rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.8;
}

/* ===== CHAIRMAN SECTION ===== */
.chairman-section {
    background: var(--light-color);
}

.chairman-card {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white-color);
    padding: 60px;
    border-radius: 30px;
    box-shadow: var(--shadow-md);
    position: relative;
}

.quote-mark {
    position: absolute;
    top: 30px;
    left: 40px;
    font-size: 80px;
    color: var(--primary-color);
    opacity: 0.1;
}

.chairman-content {
    position: relative;
    z-index: 2;
}

.chairman-content p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-color);
    margin-bottom: 20px;
    text-align: justify;
}

/* ===== VISION & MISSION SECTION ===== */
.vision-mission-section {
    background: var(--white-color);
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.vm-card {
    background: var(--white-color);
    padding: 50px;
    border-radius: 25px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-top: 5px solid var(--primary-color);
}

.vm-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.vm-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.vm-icon i {
    font-size: 40px;
    color: var(--white-color);
}

.vm-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.vm-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 15px;
}

.vm-highlight {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--light-color);
    padding: 10px 20px;
    border-radius: 50px;
    margin-top: 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
}

.vm-highlight i {
    font-size: 16px;
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose-section {
    background: var(--light-bg);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.why-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.why-card:hover .why-icon {
    transform: scale(1.1) rotate(5deg);
}

.why-icon i {
    color: white;
    font-size: 2rem;
}

.why-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.why-desc {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.6;
}

/* ===== VALUES SECTION ===== */
.values-section {
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    position: relative;
    background: var(--light-bg);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.value-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.1;
}

.value-icon {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.value-icon i {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.value-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.value-desc {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.6;
}

/* ===== JOURNEY TIMELINE SECTION ===== */
.journey-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 10px white, 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.timeline-marker i {
    color: white;
    font-size: 1.5rem;
}

.timeline-content {
    width: calc(50% - 50px);
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    text-align: left;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.timeline-year {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.timeline-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.timeline-desc {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.6;
}

/* ===== CERTIFICATIONS SECTION ===== */
.certifications-section {
    background: white;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.cert-card {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.cert-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.cert-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.cert-icon i {
    color: white;
    font-size: 2.5rem;
}

.cert-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.cert-desc {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 20px;
}

.cert-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: white;
    border-radius: 25px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.cert-badge i {
    font-size: 1.1rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 80px 0;
}

.cta-card {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.cta-content {
    color: white;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-desc {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

.cta-buttons .btn-outline {
    background: white;
    color: var(--primary-color);
    border-color: white;
}

.cta-buttons .btn-outline:hover {
    background: transparent;
    color: white;
}

.cta-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-icon-large {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    animation: float 3s ease-in-out infinite;
}

.cta-icon-large i {
    color: white;
    font-size: 5rem;
}

/* ===== FACILITIES SECTION ===== */
.facilities-section {
    background: var(--light-color);
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.facility-card {
    background: var(--white-color);
    padding: 45px 35px;
    border-radius: 25px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.facility-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.facility-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.facility-card:hover .facility-icon {
    transform: scale(1.1) rotate(5deg);
}

.facility-icon i {
    font-size: 42px;
    color: var(--white-color);
}

.facility-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.facility-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.facility-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}

.facility-link:hover {
    gap: 12px;
}

.facility-link i {
    font-size: 14px;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: var(--white-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.contact-info-text {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 35px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    gap: 20px;
}

.contact-item-icon {
    width: 55px;
    height: 55px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon i {
    font-size: 22px;
    color: var(--white-color);
}

.contact-item-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.contact-item-content p,
.contact-item-content a {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-item-content a:hover {
    color: var(--primary-color);
}

.contact-form-wrapper {
    background: var(--light-color);
    padding: 45px;
    border-radius: 25px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    transition: var(--transition);
    background: var(--white-color);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 25px;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.form-checkbox label {
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.5;
    cursor: pointer;
}

.form-checkbox label a {
    color: var(--primary-color);
    font-weight: 600;
}

.form-checkbox label a:hover {
    text-decoration: underline;
}

.form-message {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ===== CONTACT CARDS SECTION ===== */
.contact-cards-section {
    background: white;
    padding: 60px 0;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.contact-info-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.contact-info-card:hover .contact-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-card-icon i {
    font-size: 2rem;
    color: white;
}

.contact-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.contact-card-text {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact-card-text a {
    color: var(--text-color);
    font-weight: 600;
}

.contact-card-text a:hover {
    color: var(--primary-color);
}

.contact-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.contact-card-link:hover {
    gap: 12px;
}

/* ===== MAIN CONTACT SECTION ===== */
.main-contact-section {
    background: var(--light-bg);
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

.contact-form-section {
    background: white;
    padding: 50px;
    border-radius: 25px;
    box-shadow: var(--shadow-md);
}

.contact-form-main {
    margin-top: 30px;
}

.contact-form-main .form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
}

.contact-form-main .form-group label i {
    color: var(--primary-color);
    font-size: 1rem;
}

/* ===== CONTACT INFO SIDEBAR ===== */
.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-box {
    background: white;
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.info-box-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.info-box-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 30px;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.3rem;
    color: white;
}

.info-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.info-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.info-content a {
    color: var(--text-color);
    font-weight: 600;
}

.info-content a:hover {
    color: var(--primary-color);
}

.social-connect {
    padding-top: 25px;
    border-top: 2px solid var(--light-bg);
}

.social-connect h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.social-links-large {
    display: flex;
    gap: 15px;
}

.social-link-large {
    width: 50px;
    height: 50px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 1.2rem;
    color: var(--text-color);
}

.social-link-large:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-5px);
}

.quick-links-box {
    background: var(--gradient-primary);
    color: white;
}

.quick-links-box .info-box-title {
    color: white;
}

.quick-links-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quick-links-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 0.95rem;
    padding: 10px;
    border-radius: 8px;
    transition: var(--transition);
}

.quick-links-list li a:hover {
    background: rgba(255, 255, 255, 0.1);
    padding-left: 15px;
}

.quick-links-list li a i {
    font-size: 0.9rem;
}

/* ===== MAP SECTION ===== */
.map-section {
    background: white;
    padding: 80px 0;
}

.map-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
}

.map-overlay-info {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 10;
}

.map-info-card {
    background: white;
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 15px;
}

.map-info-card i {
    font-size: 2rem;
    color: var(--primary-color);
}

.map-info-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 3px;
}

.map-info-card p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===== FAQ SECTION ===== */
.faq-section {
    background: var(--light-bg);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    flex: 1;
}

.faq-question i {
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item.active .faq-question {
    background: var(--light-bg);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 25px;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

.faq-cta {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.faq-cta p {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 20px;
    font-weight: 600;
}

/* ===== COURSES PAGE ===== */
.course-stats-section {
    background: white;
    padding: 60px 0;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.course-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.course-stat-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}

.course-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-icon-wrapper {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon-wrapper i {
    font-size: 2rem;
    color: white;
}

.stat-info {
    flex: 1;
}

.courses-listing-section {
    background: var(--light-bg);
}

.courses-filter-wrapper {
    margin-bottom: 50px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.search-box {
    position: relative;
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.search-box i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 1.1rem;
}

.search-box input {
    width: 100%;
    padding: 15px 20px 15px 50px;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.1);
}

.filter-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 25px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-color);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.filter-btn i {
    font-size: 1rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-primary);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.course-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.course-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.course-card:hover .course-image img {
    transform: scale(1.1);
}

.course-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 102, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.course-card:hover .course-overlay {
    opacity: 1;
}

.course-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: var(--shadow-sm);
}

.course-badge i {
    font-size: 14px;
}

.course-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.course-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.course-code {
    background: var(--light-bg);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.course-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #ffa500;
    font-weight: 600;
    font-size: 14px;
}

.course-rating i {
    font-size: 16px;
}

.course-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 12px;
    line-height: 1.3;
}

.course-title a {
    color: var(--secondary-color);
    transition: var(--transition);
}

.course-title a:hover {
    color: var(--primary-color);
}

.course-description {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.course-meta {
    display: flex;
    gap: 20px;
    padding: 15px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-color);
}

.meta-item i {
    color: var(--primary-color);
    font-size: 1rem;
}

.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.course-price {
    display: flex;
    align-items: center;
    gap: 8px;
}

.course-price i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.course-price .price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--secondary-color);
}

.enroll-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.enroll-link:hover {
    gap: 12px;
    color: var(--secondary-color);
}

.enroll-link i {
    font-size: 0.9rem;
}

.no-results,
.no-courses {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.no-results i,
.no-courses i {
    font-size: 5rem;
    color: var(--text-light);
    opacity: 0.3;
    margin-bottom: 20px;
}

.no-results h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.no-results p,
.no-courses p {
    color: var(--text-light);
    font-size: 1rem;
}

.why-our-courses-section {
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-box {
    background: var(--light-bg);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
}

.feature-box:hover {
    background: white;
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-box-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.feature-box:hover .feature-box-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-box-icon i {
    font-size: 2rem;
    color: white;
}

.feature-box-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.feature-box-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--secondary-color);
    color: var(--white-color);
}

.footer-main {
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    background: var(--gradient-primary);
}

.footer-logo h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 3px;
}

.footer-logo p {
    font-size: 11px;
    opacity: 0.8;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 20px;
}

.footer-cert {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.footer-cert i {
    color: var(--primary-color);
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    opacity: 0.9;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    padding-left: 5px;
    color: var(--primary-color);
}

.footer-links i {
    font-size: 12px;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    font-size: 14px;
    opacity: 0.9;
}

.footer-contact i {
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright,
.reg-number {
    font-size: 14px;
    opacity: 0.8;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white-color);
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition);
}

.scroll-top:hover {
    transform: translateY(-5px);
}

.scroll-top.active {
    display: flex;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-visual {
        order: -1;
        height: 400px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-features {
        display: inline-block;
        text-align: left;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-grid,
    .about-overview-grid,
    .cta-card {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .vm-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-choose-grid,
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cert-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-marker {
        left: 30px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: row;
    }
    
    .timeline-content,
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        width: calc(100% - 100px);
        margin-left: 100px;
        text-align: left;
    }
    
    .course-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .courses-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-main-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-sidebar {
        grid-template-columns: repeat(2, 1fr);
        display: grid;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .topbar {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 85px;
        flex-direction: column;
        background: var(--white-color);
        width: 100%;
        text-align: center;
        padding: 30px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        gap: 20px;
        max-height: calc(100vh - 85px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-cta {
        margin-left: 0;
    }
    
    /* Mobile Dropdown */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--light-bg);
        margin-top: 10px;
        margin-left: 20px;
        margin-right: 20px;
        border-radius: 10px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.4s ease;
        padding: 0;
    }
    
    .nav-item.dropdown.active .dropdown-menu {
        max-height: 600px;
        padding: 12px 0;
    }
    
    .nav-item.dropdown.active .dropdown-toggle i {
        transform: rotate(180deg);
    }
    
    .dropdown-item {
        padding-left: 30px;
        font-size: 13px;
    }
    
    .dropdown-item:hover {
        padding-left: 35px;
    }
    
    .dropdown-item::before {
        left: 15px;
    }
    
    .hero-slide {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-visual {
        height: 350px;
    }
    
    .hero-shape i {
        font-size: 140px;
    }
    
    .floating-stat {
        padding: 15px 20px;
    }
    
    .stat-content h3 {
        font-size: 18px;
    }
    
    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .slider-controls {
        padding: 0 15px;
    }
    
    .section {
        padding: 70px 0;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-description {
        font-size: 1rem;
    }
    
    .about-features-grid,
    .overview-highlights {
        grid-template-columns: 1fr;
    }
    
    .stats-card {
        grid-template-columns: 1fr;
        padding: 30px;
    }
    
    .chairman-card {
        padding: 40px 30px;
    }
    
    .facilities-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .why-choose-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-icon-large {
        width: 150px;
        height: 150px;
    }
    
    .cta-icon-large i {
        font-size: 3.5rem;
    }
    
    .course-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .courses-filter-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-box {
        max-width: 100%;
    }
    
    .filter-buttons {
        justify-content: center;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-cards-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-section {
        padding: 30px 25px;
    }

    .contact-info-sidebar {
        grid-template-columns: 1fr;
    }

    .map-overlay-info {
        bottom: 15px;
        left: 15px;
        right: 15px;
    }

    .map-info-card {
        width: 100%;
    }

    .social-links-large {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-description {
        font-size: 15px;
    }
    
    .hero-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-visual {
        height: 300px;
    }
    
    .hero-shape i {
        font-size: 100px;
    }
    
    .floating-stat.stat-1,
    .floating-stat.stat-2 {
        right: 0;
        left: 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .breadcrumb {
        font-size: 0.85rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px;
        padding: 20px;
    }
    
    .timeline-marker {
        width: 50px;
        height: 50px;
    }
    
    .timeline-marker i {
        font-size: 1.2rem;
    }
    
    .course-stat-card {
        flex-direction: column;
        text-align: center;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .course-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .course-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .contact-card-icon {
        width: 60px;
        height: 60px;
    }

    .contact-card-icon i {
        font-size: 1.5rem;
    }

    .info-box {
        padding: 25px 20px;
    }

    .map-container iframe {
        height: 300px;
    }

    .map-info-card {
        flex-direction: column;
        text-align: center;
    }
}
