/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header */
header {
    background-color: #004080;
    color: #fff;
    padding: 20px;
    text-align: center;
    position: relative;
}
header .logo {
    position: absolute;
    top: 20px;
    left: 20px;
}
header .logo img {
    width: 80px;
}
header h1 {
    margin-top: 20px;
}
header p {
    font-style: italic;
}

/* Navigation */
nav {
    background: #0066cc;
    padding: 10px 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 100;
}
nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}
nav a:hover {
    text-decoration: underline;
}

/* Sections */
section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
}
h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #004080;
}

/* Slider */
.slider {
    position: relative;
    max-width: 100%;
    margin: auto;
    overflow: hidden;
}
.slides .slide {
    display: none;
    text-align: center;
}
.slides .slide.active {
    display: block;
}
.slides img {
    width: 100%;
    border-radius: 10px;
    max-height: 400px;
    object-fit: cover;
}
.slide-text {
    margin-top: 10px;
    font-weight: bold;
}

/* Slider buttons */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 12px;
    cursor: pointer;
    border-radius: 50%;
}
.prev {
    left: 20px;
}
.next {
    right: 20px;
}
.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}

/* Team */
.team-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.team-member {
    background: #f4f4f4;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    width: 250px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.team-member img {
    width: 100%;
    border-radius: 50%;
    height: 250px;
    object-fit: cover;
}

/* Contact */
.contact-info p {
    margin: 10px 0;
}

/* Footer */
footer {
    background-color: #004080;
    color: #fff;
    text-align: center;
    padding: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .team-container {
        flex-direction: column;
        align-items: center;
    }
    header .logo {
        position: relative;
        top: 0;
        left: 0;
        margin-bottom: 10px;
    }
}
.social-icons {
    margin-top: 10px;
}
.social-icons a {
    color: white;
    margin: 0 10px;
    font-size: 20px;
    text-decoration: none;
    transition: transform 0.3s, color 0.3s;
}
.social-icons a:hover {
    color: #ffd700;
    transform: scale(1.2);
}

#contact {
    background: linear-gradient(to right, #0066cc, #004080);
    color: white;
    padding: 60px 20px;
    text-align: center;
    border-radius: 15px;
    margin: 40px auto;
    max-width: 1000px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

#contact h2 {
    margin-bottom: 30px;
    font-size: 36px;
}

.contact-info p {
    margin: 12px 0;
    font-size: 18px;
}

.contact-info a {
    color: #ffd700;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.social-icons {
    margin-top: 15px;
}

.social-icons a {
    color: white;
    margin: 0 12px;
    font-size: 24px;
    transition: transform 0.3s, color 0.3s;
}

.social-icons a:hover {
    color: #ffd700;
    transform: scale(1.2);
}
.shift-down {
    margin-top: 20px; /* increase as needed */
}
