* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f4f4f4;
}


/* Reset and General Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    color: #333;
}


/* Top Bar */

.top-bar {
    background: #f8f9fa;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #17449e;
}

.top-bar .contact-info span {
    margin-right: 20px;
}

.top-bar .contact-info span i {
    margin-right: 5px;
}

.top-bar .social-icons a {
    color: #17449e;
    margin-left: 15px;
    text-decoration: none;
    font-size: 16px;
}


/* Navbar */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.navbar .logo {
    font-size: 24px;
    font-weight: bold;
    color: #17449e;
}

.navbar .logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #17449e;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #0d2d6e;
}

.nav-links a.active {
    border-bottom: 2px solid #17449e;
    padding-bottom: 5px;
}

.book-appointment {
    background: #1305d8;
    color: #e7e406;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

.hamburger {
    display: none;
    font-size: 24px;
    color: #17449e;
    cursor: pointer;
}


/* Achievements Section */

.achievements {
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 15px 20px;
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
}

.achievement-item {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #17449e;
}

.achievement-item i {
    margin-right: 8px;
    font-size: 18px;
}


/* Responsive Design */

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links a {
        margin: 10px 0;
    }
    .book-appointment {
        margin-top: 10px;
    }
    .achievements {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}


/* Header Section */

.header {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.header-overlay h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.header-overlay p {
    font-size: 1.2rem;
    max-width: 600px;
}
.name {
    color: #ffffff;
}


/* Directors Grid */

.directors-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.director-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.director-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.director-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.director-card .info {
    padding: 1rem;
    text-align: center;
}

.director-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.director-card p {
    color: #666;
    font-size: 1rem;
}


/* Responsive Design */

@media (max-width: 768px) {
    .header {
        height: 300px;
    }
    .header-overlay h1 {
        font-size: 2rem;
    }
    .header-overlay p {
        font-size: 1rem;
    }
    .directors-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 480px) {
    .header {
        height: 250px;
    }
    .header-overlay h1 {
        font-size: 1.5rem;
    }
    .header-overlay p {
        font-size: 0.9rem;
    }
}

footer {
    background-color: #f5f5f5;
    padding: 20px;
    color: #333;
}

.footer-content {
    display: flex;
    justify-content: space-between;
}

.footer-content div {
    width: 100%;
    /* Adjust based on content */
}

.logo img {
    width: 170px;
    /* Adjust according to your logo size */
}

ul {
    list-style-type: none;
    padding: 0;
}

h3 {
    border-bottom: 2px solid #333;
    /* Optional for separation */
    padding-bottom: 10px;
}

.emergency {
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    margin-top: 10px;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #555;
}