/* ================= BODY ================= */
body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    background-color: #f4f6f8;
    color: #333;
}

/* ================= HERO SECTION ================= */
.hero {
    background: linear-gradient(rgba(0,51,102,0.9), rgba(0,51,102,0.9)),
                url("../assets/images/hero.jpg");
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
    line-height: 1.6;
}

/* ================= BUTTON ================= */
.btn {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 30px;
    background-color: #ffcc00;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 30px;
}

/* ================= NAVIGATION ================= */
nav {
    background-color: #ffffff;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

nav a {
    margin: 0 12px;
    text-decoration: none;
    color: #003366;
    font-weight: 600;
}

/* ================= CONTENT SECTIONS ================= */
section {
    background-color: #ffffff;
    margin: 30px auto;
    padding: 35px;
    max-width: 1000px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

section h2 {
    color: #003366;
    margin-bottom: 15px;
}

/* ================= LIST ================= */
ul {
    padding-left: 20px;
}

ul li {
    margin-bottom: 10px;
}

/* ================= GALLERY ================= */
section img,
section video {
    margin: 10px;
    border-radius: 8px;
    max-width: 100%;
}

/* ================= SOCIAL ICONS (CONTACT PAGE) ================= */
.social-icons {
    margin-top: 20px;
}

.social-icons a {
    margin-right: 20px;
    font-size: 32px;
    display: inline-block;
    transition: transform 0.2s, opacity 0.2s;
}

.social-icons a:hover {
    opacity: 0.8;
    transform: scale(1.15);
}

/* ================= SERVICES GRID ================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.service-card {
    background: #f4f6f8;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card h3 {
    color: #003366;
    margin-top: 0;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

/* ================= AWARD TIMELINE ================= */
.timeline {
    position: relative;
    margin: 40px 0;
    padding-left: 40px;
    border-left: 4px solid #003366;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: -12px;
    top: 5px;
    width: 18px;
    height: 18px;
    background-color: #ffcc00;
    border-radius: 50%;
    border: 3px solid #003366;
}

.timeline-year {
    font-weight: bold;
    color: #003366;
    margin-bottom: 8px;
    font-size: 18px;
}

.timeline-content {
    background: #f4f6f8;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.timeline-content h3 {
    margin-top: 0;
    color: #003366;
}

/* ================= FOOTER ================= */
footer {
    text-align: center;
    padding: 20px;
    background-color: #003366;
    color: white;
    margin-top: 40px;
}

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 768px) {

    .hero h1 {
        font-size: 28px;
    }

    nav a {
        display: block;
        margin: 10px 0;
    }

    section {
        margin: 20px 10px;
        padding: 25px;
    }
}
/* ================= GALLERY GRID ================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    cursor: pointer;
}

.gallery-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform 0.4s;
}

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

/* ================= GALLERY OVERLAY ================= */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,51,102,0.85);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s;
    text-align: center;
    padding: 20px;
}

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

.gallery-overlay h3 {
    margin: 0;
    font-size: 22px;
}

.gallery-overlay p {
    margin-top: 8px;
    font-size: 14px;
}

