/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - Blue, Gold, Black Theme */
    --primary-blue: #1e3a8a;      /* Deep Royal Blue */
    --secondary-blue: #3b82f6;    /* Bright Blue */
    --light-blue: #dbeafe;        /* Light Blue */
    --gold: #fbbf24;              /* Gold */
    --dark-gold: #f59e0b;         /* Darker Gold */
    --black: #000000;             /* Pure Black */
    --dark-gray: #1f2937;         /* Dark Gray */
    --medium-gray: #6b7280;       /* Medium Gray */
    --light-gray: #f9fafb;        /* Light Gray */
    --white: #ffffff;             /* Pure White */
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', serif;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 80px 0;
    --section-padding-mobile: 60px 0;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Transitions */
    --transition-fast: 0.15s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--black);
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.875rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    border: 2px solid var(--primary-blue);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary-blue), var(--primary-blue));
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
}

/* Header */
.header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all var(--transition-normal);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo-img {
    height: 60px;
    width: auto;
}

/* Updated Logo */
.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 70px; /* Bigger logo */
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-acronym {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.logo-full {
    font-size: 0.85rem;
    color: var(--dark-gray);
    font-weight: 500;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .logo-img {
        height: 60px;
    }
    
    .logo-full {
        display: none; /* Hide full name on mobile */
    }
    
    .logo-acronym {
        font-size: 1.5rem;
    }
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition-normal);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    transition: all var(--transition-fast);
}

.nav-link.active {
    color: var(--primary-blue) !important;
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100% !important;
    height: 3px;
    background: var(--gold);
    border-radius: 1.5px 1.5px 0 0;
    box-shadow: 0 2px 5px rgba(251, 191, 36, 0.3);
    animation: activeGlow 2s infinite alternate;
}

@keyframes activeGlow {
    from {
        box-shadow: 0 2px 5px rgba(251, 191, 36, 0.3);
    }
    to {
        box-shadow: 0 2px 10px rgba(251, 191, 36, 0.6);
    }
}

/* Hover effect still works on all links */
.nav-link:hover::after {
    width: 100%;
}

/* Mobile menu active state */
@media (max-width: 768px) {
    .nav-link.active::after {
        bottom: -3px;
        height: 2px;
    }
}


/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: transparent; /* Remove default background */
}


.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero Slider Styles */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


.hero-slide,
.hero-slide * {
    color: white !important;
	background-size: cover !important;    /* Ensures image covers entire area */
    background-position: center !important; /* Centers the image */
    background-repeat: no-repeat !important; /* Prevents repeating */
    background-attachment: fixed !important; /* Optional: Creates parallax effect */
}

/* Specific elements for better control */
.hero-slide .hero-title,
.hero-slide .hero-subtitle,
.hero-slide .btn {
    color: white !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Add text shadow for better readability */
.hero-slide .hero-title {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-slide .hero-subtitle {
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* Button text should remain white even on hover */
.hero-slide .btn-primary,
.hero-slide .btn-secondary,
.hero-slide .btn-outline {
    color: white !important;
}

/* Special handling for secondary button outline */
.hero-slide .btn-secondary {
    border-color: white !important;
    background: transparent !important;
}

.hero-slide .btn-secondary:hover {
    background: white !important;
    color: var(--primary-blue) !important; /* Blue text on white background */
}

/* Button hover states */
.hero-slide .btn-primary:hover {
    color: white !important;
}

.hero-slide .btn-outline {
    border-color: white !important;
    color: white !important;
    background: transparent !important;
}

.hero-slide .btn-outline:hover {
    background: white !important;
    color: var(--black) !important; /* Black text on white background */
}


.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}
.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-slide .container {
    width: 100%;
}

.hero-slide .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}

@keyframes slideFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slider Controls */
.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    z-index: 10;
}

.slider-prev:hover,
.slider-next:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--gold);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

.slider-prev svg,
.slider-next svg {
    width: 24px;
    height: 24px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all var(--transition-normal);
    padding: 0;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.slider-dot.active {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.2);
}

/* Auto-play Toggle */
.slider-autoplay {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 10;
}

.autoplay-toggle {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.autoplay-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--gold);
    transform: scale(1.1);
}

.autoplay-toggle.paused svg {
    transform: translateX(1px);
}

/* Responsive adjustments for slider */
@media (max-width: 768px) {
    .slider-prev,
    .slider-next {
        width: 48px;
        height: 48px;
    }
    
    .slider-prev {
        left: 10px;
    }
    
    .slider-next {
        right: 10px;
    }
    
    .slider-dots {
        bottom: 30px;
    }
    
    .slider-autoplay {
        bottom: 30px;
        right: 20px;
    }
    
    .autoplay-toggle {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .slider-prev,
    .slider-next {
        width: 40px;
        height: 40px;
    }
    
    .slider-dots {
        gap: 8px;
        bottom: 25px;
    }
    
    .slider-dot {
        width: 10px;
        height: 10px;
    }
}


/* Page Hero Section Styles */
.page-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Creates parallax effect */
    color: white;
    text-align: center;
    padding: 100px 0 80px;
    margin-top: 80px; /* Account for fixed header */
}

/* Content styling */
.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

.page-hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Background images for each page */
.about-hero {
    background-image: url('../images/hospitality_management_hotel_school_5.jpg');
}

.courses-hero {
    background-image: url('../images/hospitality_management_hotel_school_4.jpg');
}

.facilities-hero {
    background-image: url('../images/hospitality_management_hotel_school_15.jpg');
}

.career-hero {
    background-image: url('../images/hospitality_management_hotel_school_18.jpg');
}

.contact-hero {
    background-image: url('../images/hospitality_management_hotel_school_8.jpg');
}

.course-cookery-hero {
    background-image: url('../images/hospitality_management_hotel_school_9.jpg');
}

.course-food-beverage-hero {
    background-image: url('../images/hospitality_management_hotel_school_10.jpg');
}

.course-housekeeping-hero {
    background-image: url('../images/hospitality_management_hotel_school_11.jpg');
}

.course-bakery-hero {
    background-image: url('../images/hospitality_management_hotel_school_12.jpg');
}

.course-barista-hero {
    background-image: url('../images/hospitality_management_hotel_school_13.jpg');
}

.course-butler-hero {
    background-image: url('../images/hospitality_management_hotel_school_14.jpg');
}

.course-hotel-management-hero {
    background-image: url('../images/hospitality_management_hotel_school_16.jpg');
}

.course-hotel-operation-hero {
    background-image: url('../images/hospitality_management_hotel_school_17.jpg');
}

/* Dark overlay for better text readability - VERY SUBTLE */
.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2); /* Very subtle dark overlay */
    z-index: 1;
    pointer-events: none;
}

/* Optional: Gradient overlay for more control */
.page-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        rgba(0, 0, 0, 0.1) 100%
    );
    z-index: 1;
    pointer-events: none;
}

/* Button styling for hero */
.page-hero .btn-primary {
    background: rgba(30, 58, 138, 0.9);
    border-color: white;
}

.page-hero .btn-primary:hover {
    background: rgba(30, 58, 138, 1);
    transform: translateY(-2px);
}

.page-hero .btn-secondary {
    background: transparent;
    border-color: white;
}

.page-hero .btn-secondary:hover {
    background: white;
    color: var(--primary-blue);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-hero {
        background-attachment: scroll; /* Remove parallax on tablet */
        min-height: 60vh;
    }
    
    .page-hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 50vh;
        padding: 80px 0 60px;
        margin-top: 70px;
    }
    
    .page-hero-title {
        font-size: 2.3rem;
    }
    
    .page-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .page-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .page-hero-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .page-hero-title {
        font-size: 2rem;
    }
    
    .page-hero-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }
}

/* Ensure no image repeating */
.page-hero {
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center !important;
}


/* Page Hero Text Colors - Force White */
.page-hero,
.page-hero * {
    color: white !important;
}

/* Specific element overrides */
.page-hero-title {
    color: white !important;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

.page-hero-subtitle {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Button text colors */
.page-hero .btn {
    color: white !important;
}

.page-hero .btn-secondary {
    border-color: white !important;
    background: transparent !important;
    color: white !important;
}

.page-hero .btn-secondary:hover {
    background: white !important;
    color: var(--primary-blue) !important; /* Blue text on white background */
}

.page-hero .btn-primary:hover {
    color: white !important; /* Keep white text on hover */
}

/* If you're using button outline style */
.page-hero .btn-outline {
    border-color: white !important;
    color: white !important;
    background: transparent !important;
}

.page-hero .btn-outline:hover {
    background: white !important;
    color: var(--black) !important; /* Black text on white background */
}


/* Section Styles */
section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: block;
}

.section-title {
    color: var(--black);
    margin-bottom: 1rem;
}

/* Welcome Section - FIXED LAYOUT */
.welcome-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start; /* Changed from center to start */
}

.welcome-text {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.welcome-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.welcome-img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

/* Welcome Subtitle */
.welcome-subtitle {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
    font-weight: 600;
    position: relative;
    padding-left: 1.5rem;
}

.welcome-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
}

/* Welcome List */
.welcome-list {
    list-style: none;
    margin: 1rem 0 2rem;
    padding: 0;
    flex-grow: 1;
}

.welcome-list-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: var(--dark-gray);
    line-height: 1.5;
}

.list-icon {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.welcome-list-item span {
    flex: 1;
}

.welcome-cta {
    margin-top: auto; /* Pushes button to bottom */
    padding-top: 1.5rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .welcome-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .welcome-image {
        order: -1; /* Image first on mobile */
    }
    
    .welcome-img {
        max-height: 350px;
    }
}

@media (max-width: 768px) {
    .welcome-content {
        gap: 2rem;
    }
    
    .welcome-subtitle {
        font-size: 1.3rem;
    }
    
    .welcome-list-item {
        font-size: 0.95rem;
    }
}

/* Excellence Section */
.excellence {
    background: var(--white);
}

.excellence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.excellence-item {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background: var(--white);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border-top: 4px solid var(--gold);
}

.excellence-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-top-color: var(--primary-blue);
}

.excellence-icon {
    color: var(--gold);
    margin-bottom: 1.5rem;
    transition: color var(--transition-normal);
}

.excellence-item:hover .excellence-icon {
    color: var(--primary-blue);
}

.excellence-title {
    color: var(--black);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.excellence-description {
    color: var(--medium-gray);
    line-height: 1.7;
    font-size: 1rem;
}

.excellence-cta {
    text-align: center;
}

/* Featured Courses Section */
.featured-courses {
    background: var(--light-gray);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.course-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.course-image {
    height: 200px;
    overflow: hidden;
}

.course-image .image-placeholder {
    height: 100%;
    min-height: 200px;
    border-radius: 0;
    border: none;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
}

.course-content {
    padding: 1.5rem;
}

.course-title {
    color: var(--black);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.course-description {
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.course-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.course-level, .course-duration {
    background: var(--light-blue);
    color: var(--primary-blue);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.course-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-fast);
}

.course-link:hover {
    color: var(--gold);
}

.courses-cta {
    text-align: center;
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(1.1);
}

.footer-description {
    color: #d1d5db;
    line-height: 1.6;
    font-size: 1rem;
}

.footer-title {
    color: var(--gold);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

.footer-link {
    color: #d1d5db;
    text-decoration: none;
    display: block;
    padding: 0.5rem 0;
    transition: all var(--transition-fast);
    font-size: 0.95rem;
}

.footer-link:hover {
    color: var(--gold);
    padding-left: 5px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    color: var(--gold);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.contact-details {
    flex: 1;
}

.contact-details strong {
    color: var(--white);
    display: block;
    margin-bottom: 0.5rem;
}

.contact-link {
    color: #d1d5db;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.contact-link:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: all var(--transition-normal);
}

.social-link:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
}

.social-link.whatsapp:hover {
    background: #25d366;
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1.5rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: #9ca3af;
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-link {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer-bottom-link:hover {
    color: var(--gold);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    /* Typography adjustments */
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    /* Header mobile */
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: var(--shadow-lg);
        padding: 1rem;
    }
    
    .nav.active {
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 1rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Hero mobile */
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Sections mobile */
    section {
        padding: var(--section-padding-mobile);
    }
    
    .welcome-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .excellence-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .course-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}


/* Vision & Mission Section */
.vision-mission {
    padding: var(--section-padding);
    background: var(--white);
}

.vision-mission .section-description {
    color: var(--medium-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    text-align: center;
    line-height: 1.6;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.vm-box {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    border-top: 5px solid transparent;
    position: relative;
    overflow: hidden;
}

.vm-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.vm-vision {
    border-top-color: var(--gold);
}

.vm-vision:hover {
    border-top-color: var(--dark-gold);
}

.vm-mission {
    border-top-color: var(--primary-blue);
}

.vm-mission:hover {
    border-top-color: var(--secondary-blue);
}

.vm-icon {
    margin-bottom: 1.5rem;
    color: currentColor;
    transition: transform var(--transition-normal);
}

.vm-box:hover .vm-icon {
    transform: scale(1.1) rotate(5deg);
}

.vm-vision .vm-icon {
    color: var(--gold);
}

.vm-mission .vm-icon {
    color: var(--primary-blue);
}

.vm-title {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: var(--black);
}

.vm-text {
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.vm-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.vm-highlight-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--dark-gray);
    font-size: 0.95rem;
}

.vm-highlight-item svg {
    color: var(--gold);
    flex-shrink: 0;
}

.vm-vision .vm-highlight-item svg {
    color: var(--gold);
}

.vm-mission .vm-highlight-item svg {
    color: var(--primary-blue);
}

/* Decorative elements */
.vm-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: currentColor;
    opacity: 0.05;
    border-radius: 0 0 0 100%;
    transition: opacity var(--transition-normal);
}

.vm-box:hover::before {
    opacity: 0.1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .vision-mission-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .vm-box {
        padding: 2rem;
    }
    
    .vm-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .vm-box {
        padding: 1.5rem;
    }
    
    .vm-highlights {
        gap: 0.6rem;
    }
    
    .vm-highlight-item {
        font-size: 0.9rem;
    }
}