* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* ========== HEADER STYLES ========== */
header {
    background: #1a2a3a;
    color: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

/* Clearfix for header */
header .container::after {
    content: "";
    display: table;
    clear: both;
}

/* Logo container */
.logo {
    display: flex;
    align-items: center;
    gap: 20px;
    float: left;
}

/* Custom logo image */
.custom-logo {
    height: 60px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

/* Text logo */
.text-logo {
    display: inline-block;
}

.text-logo h1 {
    font-size: 1.2rem;
    margin: 0;
    line-height: 1.3;
    color: white;
}

.text-logo p {
    font-size: 0.7rem;
    color: #e67e22;
    margin: 0;
}

/* Navigation */
nav {
    float: right;
    margin-top: 10px;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline-block;
    margin-left: 25px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    font-size: 0.9rem;
}

nav ul li a:hover {
    color: #e67e22;
}

/* ========== SLIDER STYLES ========== */
.slider-container {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    margin-bottom: 0;
    padding-bottom: 0;
}

.slider-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slider-slide.active {
    opacity: 1;
}

.slide-content {
    position: absolute;
    bottom: 15%;
    left: 10%;
    background: rgba(0,0,0,0.7);
    padding: 20px 40px;
    border-radius: 8px;
    color: white;
    max-width: 500px;
}

.slide-content h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: white;
}

.slide-content p {
    font-size: 1rem;
    color: white;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 10;
    border-radius: 5px;
}

.slider-btn:hover {
    background: rgba(0,0,0,0.8);
}

.prev-btn { left: 10px; }
.next-btn { right: 10px; }

/* ========== MISSION SECTION ========== */
.mission {
    background: #f8f9fa;
    padding: 40px 0 60px 0;
    text-align: center;
    margin-top: 0;
}

.mission h2 {
    color: #1a2a3a;
    font-size: 2rem;
    margin-bottom: 20px;
}

.mission-text {
    font-size: 1.2rem;
    max-width: 900px;
    margin: 20px auto;
    line-height: 1.8;
    color: #333;
}

/* ========== MISSION SECTION ========== */
.mission {
    padding: 60px 0;
    background: #f8f9fa;
    text-align: center;
}

.mission h2 {
    color: #1a2a3a;
    font-size: 2rem;
    margin-bottom: 20px;
}

.mission-text {
    font-size: 1.2rem;
    max-width: 900px;
    margin: 20px auto;
    line-height: 1.8;
    color: #333;
}

/* ========== CORE FOCUS AREAS ========== */
.focus-areas {
    padding: 60px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: #1a2a3a;
    margin-bottom: 40px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #e67e22;
    margin: 10px auto 0;
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.focus-card {
    background: #fef9e8;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
    border-bottom: 4px solid #e67e22;
}

.focus-card:hover {
    transform: translateY(-5px);
}

.focus-card .icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.focus-card h3 {
    color: #1a2a3a;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.focus-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========== TEAM SECTION ========== */
.team {
    padding: 60px 0;
    background: #ecf0f1;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.team-card h3 {
    margin: 15px 0 5px;
    color: #1a2a3a;
    font-size: 1.1rem;
}

.team-card p {
    color: #e67e22;
    font-weight: bold;
    margin-bottom: 10px;
}

.team-card .email {
    font-size: 0.8rem;
    color: #7f8c8d;
    margin-bottom: 15px;
    word-break: break-all;
}

/* ========== LATEST NEWS SECTION ========== */
.latest-news-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.featured-news {
    background: linear-gradient(135deg, #1a2a3a 0%, #2c3e50 100%);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 50px;
    color: white;
    position: relative;
    overflow: hidden;
}

.featured-news::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: rgba(230,126,34,0.1);
    border-radius: 50%;
}

.featured-badge {
    display: inline-block;
    background: #e67e22;
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.featured-news h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.featured-summary {
    font-size: 1rem;
    line-height: 1.6;
    margin: 15px 0;
    opacity: 0.95;
}

.btn-read-more {
    display: inline-block;
    background: #e67e22;
    color: white;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s;
    margin-top: 10px;
}

.btn-read-more:hover {
    background: #d35400;
    transform: translateX(5px);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.news-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.news-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-image-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.news-card-content {
    padding: 20px;
}

.news-card-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #1a2a3a;
    line-height: 1.4;
}

.news-meta {
    font-size: 0.8rem;
    color: #7f8c8d;
    margin-bottom: 12px;
    display: flex;
    gap: 15px;
}

.news-meta i {
    margin-right: 5px;
}

.read-more {
    display: inline-block;
    color: #e67e22;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
    transition: color 0.3s;
}

.read-more:hover {
    color: #d35400;
    text-decoration: underline;
}

.news-footer {
    text-align: center;
    margin-top: 20px;
}

.btn-view-all {
    display: inline-block;
    background: transparent;
    border: 2px solid #e67e22;
    color: #e67e22;
    padding: 12px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-view-all:hover {
    background: #e67e22;
    color: white;
    transform: translateY(-2px);
}

.no-news {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 10px;
    color: #7f8c8d;
}

@media (max-width: 768px) {
    .featured-news {
        padding: 25px;
    }
    
    .featured-news h3 {
        font-size: 1.3rem;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .news-meta {
        flex-direction: column;
        gap: 5px;
    }
}

/* ========== FOOTER ========== */
footer {
    background: #0f1a24;
    color: #bdc3c7;
    padding: 40px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

footer h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

footer p {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

footer a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: #e67e22;
}

.social-links a {
    display: inline-block;
    margin-right: 15px;
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #e67e22;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #2c3e50;
    font-size: 0.8rem;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
    .logo {
        float: none;
        justify-content: center;
        margin-bottom: 15px;
    }
    
    nav {
        float: none;
        text-align: center;
        margin-top: 0;
    }
    
    nav ul li {
        margin: 0 10px;
    }
    
    .slider-container {
        height: 350px;
    }
    
    .slide-content {
        bottom: 20%;
        left: 5%;
        right: 5%;
        padding: 15px 20px;
    }
    
    .slide-content h2 {
        font-size: 1.3rem;
    }
    
    .slide-content p {
        font-size: 0.9rem;
    }
    
    .mission-text {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .focus-grid {
        gap: 20px;
    }
    
    .focus-card {
        padding: 20px;
    }
}

