/* Reset and General Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.6;
}


/* 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;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.25);
    padding: 15px 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;
    position: relative;
}

.navbar .logo {
    font-size: 24px;
    font-weight: bold;
    color: #17449e;
}

.navbar .logo img {
    height: 40px;
    width: 170px;
}

.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;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* Hero Section */

.hero {
    background: url('Upload/Hospital-Images.jpg') center/cover no-repeat;
    padding: 150px 0;
    text-align: center;
    color: #fff;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero h1 {
    font-size: 60px;
    font-weight: 600;
    margin-bottom: 10px;
    position: relative;
    color: #17449e;
}

.hero p {
    font-size: 18px;
    position: relative;
}


/* Story Section */

.story-section {
    display: flex;
    align-items: stretch;
    margin-top: 30px;
    margin-bottom: 60px;
}

.story-image {
    flex: 1;
    background: url('Upload/chairman.JPG') center/cover no-repeat;
    border-radius: 5px 5px 5px 5px;
}

.story-content {
    flex: 1;
    background: #fff;
    padding: 50px;
    border-radius: 0 4px 4px 0;
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
}

.story-content h2 {
    font-size: 28px;
    font-weight: 600;
    color: #171717;
    margin-bottom: 10px;
}

.story-content p.subtitle {
    color: #17449e;
    font-size: 20px;
    margin-bottom: 20px;
}

.story-content p {
    font-size: 15px;
    color: #606060;
    margin-bottom: 20px;
}

.story-content img.signature {
    max-width: 195px;
    margin-bottom: 10px;
}

.story-content .founder {
    font-size: 15px;
    color: #5e5e5e;
    font-weight: 600;
}


/* Certification Section */

.certification-section {
    text-align: center;
    padding: 80px 0;
}

.certification-section h2 {
    font-size: 29px;
    font-weight: 700;
    color: #171717;
    margin-bottom: 10px;
}

.certification-section p.subtitle {
    font-size: 20px;
    color: #17449e;
    margin-bottom: 20px;
}

.certification-section p {
    font-size: 16px;
    color: #6d6d6d;
    max-width: 800px;
    margin: 0 auto 30px;
}

.certification-divider {
    width: 35px;
    height: 2px;
    background: #17449e;
    margin: 0 auto;
}


/* Counter Section */

.counter-section {
    background: url('https://via.placeholder.com/1200x300') center/cover no-repeat;
    padding: 70px 0;
    color: #fff;
    text-align: center;
    border-radius: 4px;
    margin: 0 20px -100px;
}

.counter-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.counter-item {
    flex: 1;
    min-width: 200px;
    margin: 20px;
}

.counter-item .number {
    font-size: 39px;
    font-weight: 700;
    margin-bottom: 10px;
}

.counter-item .text {
    font-size: 20px;
    font-weight: 500;
}


/* Doctors Section */

.doctors-section {
    padding: 80px 0;
    background: #f5f5f5;
    text-align: center;
}

.doctors-section h2 {
    font-size: 24px;
    font-weight: 700;
    color: #17449e;
    margin-bottom: 20px;
}

.divider {
    width: 44px;
    height: 4px;
    background: #d8d8d8;
    margin: 0 auto 50px;
    border-radius: 2px;
}

.doctor-carousel {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 20px;
}

.doctor-card {
    flex: 0 0 300px;
    margin: 0 10px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.09);
    text-align: center;
    transition: transform 0.3s;
}

.doctor-card:hover {
    transform: scale(1.05);
}

.doctor-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 5px 5px 0 0;
}

.doctor-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 15px 0 5px;
}

.doctor-card p {
    font-size: 15px;
    color: #606060;
    margin-bottom: 15px;
}

.map-section{
    background-color: #e0e0e0;
    margin-top: 10px;
}
footer {
    background-color: #f5f5f5;
    padding: 20px;
    color: #333;
}

.footer-content {
    display: flex;
    justify-content: space-between;
}
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-content div {
        width: 100%;
        margin-bottom: 20px;
    }
}

.footer-content div {
    width: 24%;
    /* Adjust based on content */
}

.logo img {
    width: 50px;
    /* Adjust according to your logo size */
}
.menu item{
    list-style-type: none;
    padding: 0;
}

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;
}
@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;
    }
    html {
    font-size: 16px;
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
}

}
@media (max-width: 768px) {
    .story-section {
        flex-direction: column;
    }
    .story-content {
        padding: 20px;
    }
}


