/* ===== MAIN WEBSITE STYLES ===== */

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Arial", sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}

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

/* Main Layout */
.main-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.content {
    flex: 1;
    padding-top: 142px; /* Account for large header */
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 160px 0 80px;
    text-align: center;
    margin-top: 0;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ============================================
   PROFESSIONAL HERO SLIDER
   ============================================ */

/* Hero Slider Container */
.hero-slider {
    position: relative;
    height: 80vh;
    min-height: 500px;
    max-height: 800px;
    overflow: hidden;
    margin-top: -24px;
}

/* Hero Slide */
.hero-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
}

.hero-swiper,
.swiper-wrapper,
.swiper-slide {
    height: 100%;
}

/* Professional Dark Overlay */
.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* Hero Content - Left Side Positioned */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    padding: 2rem 5%;
    max-width: 500px;
    margin-left: 8%;
    margin-right: auto;
}

/* Modern Title Styling */
.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #ffffff;
}

.hero-content h1 .highlight {
    color: #e53935;
    display: block;
}

/* Modern Subtitle Styling */
.hero-content p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
}

/* CTA Button */
.hero-content .hero-btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: #e53935;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-content .hero-btn:hover {
    background: #c62828;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(229, 57, 53, 0.4);
}

/* Professional Swiper Navigation - Beautiful Font Awesome icons */
.swiper-button-prev,
.swiper-button-next {
    color: white;
    background: none !important;
    border: none !important;
    width: auto;
    height: auto;
    transition: all 0.3s ease;
}

/* Hide default swiper icons */
.swiper-button-prev:after,
.swiper-button-next:after {
    display: none !important;
}

/* Style Font Awesome icons */
.swiper-button-prev i,
.swiper-button-next i {
    font-size: 3rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
    transition: all 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    color: #ffffff;
}

.swiper-button-prev:hover i,
.swiper-button-next:hover i {
    transform: scale(1.2);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.5));
}

/* Position adjustments */
.swiper-button-prev {
    left: 20px;
}

.swiper-button-next {
    right: 20px;
}

/* Professional Pagination */
.swiper-pagination {
    bottom: 30px !important;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet:hover {
    background: rgba(255, 255, 255, 0.7);
}

.swiper-pagination-bullet-active {
    background: #e53935;
    width: 30px;
    border-radius: 6px;
}

/* ============================================
   RESPONSIVE HERO SLIDER
   ============================================ */
@media (max-width: 991px) {
    .hero-slider {
        height: 70vh;
        min-height: 450px;
    }
    
    .hero-content {
        margin-left: 5%;
        max-width: 420px;
    }
    
    .hero-content h1 {
        font-size: 2.4rem;
    }
    
    .hero-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 65vh;
        min-height: 400px;
    }
    
    .hero-content {
        margin: 0 auto;
        padding: 2rem;
        text-align: center;
        max-width: 500px;
    }
    
    .hero-content h1 {
        font-size: 1.9rem;
        margin-bottom: 1rem;
    }
    
    .hero-content h1 .highlight {
        display: inline;
    }
    
    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .swiper-button-prev,
    .swiper-button-next {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 60vh;
        min-height: 350px;
    }
    
    .hero-content {
        padding: 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 1.6rem;
    }
    
    .hero-content p {
        font-size: 0.85rem;
    }
    
    .hero-content .hero-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }
}

/* ===== SECTIONS ===== */
.section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem !important;
    color: #2c3e50;
    position: relative;
    text-transform: uppercase;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #ec1e2c;
}

/* ===== FOOTER ===== */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #ec1e2c;
}

.footer-section p {
    margin-bottom: 0.5rem;
    color: #bdc3c7;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: inline-block;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: scale(1.2);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    .content {
        padding-top: 110px; /* Adjust for mobile header */
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-slider {
        margin-top: -15px;
    }

    .footprint-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .programs-news-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .program-filter {
        justify-content: center;
    }

    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}
