/* General Styles */
:root {
    --primary-color: #e74c3c;
    --secondary-color: #34495e;
    --light-color: #f8f9fa;
    --dark-color: #2c3e50;
    --text-color: #333;
    --border-color: #ddd;
}

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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

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

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

.section-header h2 {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.separator {
    height: 3px;
    width: 70px;
    background-color: var(--primary-color);
    margin: 0 auto 20px;
}

section {
    padding: 80px 0;
}

/* Hero Banner Styles */
.hero-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/herobg.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    position: relative;
}

.breadcrumb {
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
}

.breadcrumb ul {
    list-style: none;
    display: flex;
    padding: 0 15px;
}

.breadcrumb li {
    margin-right: 10px;
}

.breadcrumb li:after {
    content: "/";
    margin-left: 10px;
}

.breadcrumb li:last-child:after {
    content: "";
}

.breadcrumb a {
    color: white;
    text-decoration: none;
}

.breadcrumb .active {
    color: var(--primary-color);
}

.hero-content {
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
}

.hero-content p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
}


/* Responsive Styles */
@media (max-width: 992px) {
    .overview-content {
        flex-direction: column;
    }
    
    .mission-vision .container {
        flex-direction: column;
    }
    
    .timeline::after {
        left: 31px;
    }
    
    .milestone {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .milestone:nth-child(even) {
        left: 0;
    }
    
    .year {
        left: 0;
        right: auto;
    }
    
    .milestone:nth-child(even) .year {
        left: 0;
    }
    
    .milestone-content::after {
        left: -10px;
        border-left: 1px solid var(--border-color);
        border-bottom: 1px solid var(--border-color);
        border-right: none;
        border-top: none;
        right: auto;
    }
    
    .milestone:nth-child(even) .milestone-content::after {
        left: -10px;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .facility-stats {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .facilities-slider {
        flex-direction: column;
        gap: 30px;
    }
    
    .facility-slide {
        min-width: 100%;
    }
}
