<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}
body {
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #e6f7fa 0%, #b3e5fc 100%);
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.9);
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}
.logo img {
    height: 50px;
}
.nav-links {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 30px;
    background: #00bcd4;
    padding: 10px 20px;
    border-radius: 25px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1em;
    padding: 5px 10px;
    border-radius: 15px;
    transition: background 0.3s;
}
.nav-links a:hover {
    background: #0288d1;
}
.burger {
    display: none;
    font-size: 1.5em;
    color: #333;
    cursor: pointer;
}

/* General Section Styles */
section {
    padding: 50px 20px;
}
h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #0288d1;
    text-align: center;
}
p {
    font-size: 1em;
    color: #666;
}
.btn {
    padding: 10px 20px;
    background: #0288d1;
    color: #fff;
    cursor: pointer;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: background 0.3s;
}
.btn:hover {
    background: #0277bd;
}

/* Hero Section (Slider) */
.hero {
    position: relative;
    max-width: 100%;
    min-height: 500px;
    padding: 0;
    margin: 0 auto;
    text-align: center;
   overflow: hidden;
}
.hero-slider {
    position: relative;
}
.hero-slides {
    display: flex;
    transition: transform 0.5s ease;
}
.hero-slide {
    min-width: 100%;
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    color: #fff;
    position: relative;
}

.hero-slide h1 {
    font-size: 3em;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.hero-slide p {
    font-size: 1.2em;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    color: #fff;
}
.slider-btn {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #0288d1;
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
}
.prev {
    left: 10px;
}
.next {
    right: 10px;
}
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}
.slider-dot {
    display: none;
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
}
.slider-dot.active {
    background: #0288d1;
}

/* About Section */
.about {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.about-item {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.about-item img {
    width: 100%;
    height: 100%;
    max-height: 250px;
    object-fit: cover;
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}
.about-item h3 {
    font-size: 1.5em;
    color: #0288d1;
    margin-bottom: 10px;
}
.about-item h4 {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 10px;
}
.about-item p {
    margin-bottom: 20px;
}

/* Services Section */
.services {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}
.service-item {
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.service-item i {
    font-size: 2em;
    color: #0288d1;
    margin-bottom: 10px;
}
.service-item h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

/* Additional Services Section (Slider) */
.additional-services {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.additional-services-slider {
    position: relative;
    overflow: hidden;
}
.additional-services-slides {
    display: flex;
    transition: transform 0.5s ease;
}
.additional-service-slide {
    min-width: 100%;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
.additional-service-item {
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.additional-service-item img {
    width: 100%;
    max-width: 150px;
    border-radius: 10px;
    margin-bottom: 10px;
}
.additional-service-item h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

/* Appointment Section */
.appointment {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
    background: #00bcd4;
    padding: 20px;
    border-radius: 10px;
    color: #fff;
}
.appointment-content {
    flex: 1;
}
.appointment-content h2 {
    color: #fff;
}
.appointment-form {
    flex: 1;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}
.appointment-form select,
.appointment-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Programs Section */
.programs {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
.program-item {
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.program-item h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
}
.program-item .price {
    font-size: 1.5em;
    color: #0288d1;
    margin-bottom: 10px;
}

/* Doctors Section */
.doctors {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.doctors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
.doctor-item {
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.doctor-item img {
    width: 100%;
 
    max-height: 300px;
    height: 100%;
  
    margin-bottom: 10px;
}
.doctor-item h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

/* Find Doctor Section */
.find-doctor {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    background: #00bcd4;
    padding: 20px;
    border-radius: 10px;
    color: #fff;
}
.find-doctor input {
    padding: 10px;
    width: 50%;
    border: none;
    border-radius: 5px;
    margin-right: 10px;
}
.find-doctor .btn {
    background: #fff;
    color: #0288d1;
}

/* Testimonials Section (Slider) */
.testimonials {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.testimonials-slider {
    position: relative;
    overflow: hidden;
}
.testimonials-slides {
    display: flex;
    transition: transform 0.5s ease;
}
.testimonial-slide {
    min-width: 100%;
    padding: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}
.testimonial-item {
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 600px;
}
.testimonial-item img {
    width: 100%;
    max-width: 100px;
    border-radius: 50%;
    margin-bottom: 10px;
}
.testimonial-item p {
    font-style: italic;
}
.testimonial-item .author {
    font-weight: bold;
    margin-top: 10px;
}

/* Blog Section */
.blog {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
.blog-item {
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: left;
}
.blog-item img {
    width: 100%;
    max-height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}

/* Contact Section */
.contact {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.contact-form {
    background: #fff;
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.contact-info {
    margin-top: 20px;
}

/* Footer */
footer {
    background: #0288d1;
    color: #fff;
    padding: 20px;
    text-align: center;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 20px;
}
.footer-grid a {
    color: #fff;
    text-decoration: none;
}
.footer-grid a:hover {
    color: #b3e5fc;
}
.footer-grid h3 {
    margin-bottom: 10px;
    color: #fff;
}
.footer-grid .logo img {
    height: 40px;
}

/* Responsive */
@media (max-width: 768px) {
    .about-item {
    height: min-content;
    }
    doctor-item {
        padding: 20px;
        background: #fff;
        border-radius: 10px;
        height: fit-content;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        text-align: center;
    }
    .about-item img {
        width: 100%;
        height: 100%;
        max-height: fit-content;
        object-fit: cover;
        max-width: 100%;
        border-radius: 10px;
        margin-bottom: 20px;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #00bcd4;
        padding: 20px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        transform: translate(0, 0);
    }
    .nav-links.active {
        display: flex;
    }
    .burger {
        display: block;
    }
    .hero-slide h1 {
        font-size: 2em;
    }
    .hero-slide p {
        font-size: 1em;
    }
    .about, .appointment, .testimonial-slide {
        flex-direction: column;
    }
    .services-grid, .additional-services-slide, .programs-grid, .doctors-grid, .blog-grid {
        grid-template-columns: 1fr;
    }
    .find-doctor input {
        width: 100%;
        margin-bottom: 10px;
    }
}
.f{
    gap: 20px;
    display: flex;
}
.f-col{
   flex-direction: column;
}
.f-wrap{
    display: flex;
    flex-wrap: wrap;
}
.f-star{
    align-items:flex-start
}
.b.f {
    display: flex
;

    justify-content: space-around;
}
@media screen and (max-width:768px) {
    .f{
       flex-wrap: wrap;
    }
    .about{
        display: flex;
        flex-direction: column;
    }
    .map img{
width: 100%;
}
.map p{
width: 100%;
}
.b.f{
    flex-direction: column;
}
}
html,body{
    display: flex;
    flex-direction: column;
    height: 100%;
}</pre></body></html>