* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Manrope', sans-serif;
}

body {
    background-color: #F5F5F5;
}

.container {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
}
.logo a img{
    /* width: 250px; */
    height: 65px;
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 200;
}

.burger-line {
    width: 100%;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
}

/* Navigation */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #FE1946;
}

.contact-btn {
    background-color: #FE1946;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    margin-left: 15px;
    transition: background-color 0.3s;
}

.contact-btn:hover {
    background-color: #329D91;
}

.social-icons {
    display: flex;
    margin-left: 20px;
}

.social-icons a {
    margin-left: 10px;
    color: #333;
    font-size: 20px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}
.social-container a:hover {
    background-color: #6AAD39;
}

/* header end */

/* hero section */
.hero-section{
    padding: 50px 0;
}
.hero-content{
    background-image: url('/assets/hero.webp');
    padding: 100px 30px 150px;
}
.hero-social-icons{
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}
.hero-social-icon{
    background: #FE1946;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    width: 45px;
    height: 45px;
    cursor: pointer;

}
.hero-social-icon:hover{
    background-color: #00A7C3;
}
.hero-left h1{
    font-size: 90px;
    color: #329D91;
    max-width: 520px;
    font-weight: 600;
    line-height: 1;
}
.hero-desc{
    max-width: 450px;
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 40px;
}
.schedule-button{
    background: #FE1946;
    font-size: 20px;
    color: white;
    border-radius: 10px;
    padding: 30px 20px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: .4s ease-in-out;
    
}
.schedule-button:hover{
    background-color: #329D91;
}
/* hero section end */

/* well being */
.well-beigng-content {
    margin: 10px 80px 50px;
    display: flex;
    gap: 90px;
}
.well-beigng-content .left{
    max-width: 360px;
}
.well-beigng-content .left h2{
    font-size: 70px;
    line-height: 1.2;
}

.well-beigng-content .right{
    
    margin-top: -60%;
    border-radius: 30px;
    padding: 50px;
    background: transparent;
    background-color: rgba(50, 157, 145, 0.8);

}
.contact-box h2{
    color: white;
    font-size: 70px;
    text-align: center;
    margin-bottom: 40px;
}
.contact-box form{
    display: flex;
    flex-direction: column;
    gap : 20px;
}
.contact-box form input {
    padding: 25px;
    border-radius: 10px;
    border: none;
}
.contact-box button{
    background-color: #FE1946;
    font-size: 20px;
    padding: 20px;
    border: none;
    color: white;
    border-radius: 10px;
    cursor: pointer;
    transition: .4s ease-in-out;

}
.contact-box button:hover{
    background-color: #329D91;
}
/* well being end */
/* service section  */
  
  .services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 70px 0 90px;
    gap: 20px;
    
  }
  
  .service-card {
    background-color: #fff;
    border-radius: 16px;
    padding: 30px;
    width: 360px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
  }
  
  .service-card:hover {
    transform: translateY(-5px);
  }
  
  .service-card .icon {
    background-color: #329D91;
    width: 90px;
    height: 90px;
    margin: 0 auto 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .service-card .icon img {
    width: 32px;
    height: 32px;
  }
  
  .service-card h3 {
    margin: 10px 0 8px;
    font-size: 24px;
    color: #111;
  }
  
  .service-card p {
    color: #555;
    font-size: 16px;
    line-height: 1.5;
  }
  
/* service section  end */

/* doctors section */
section.specialized-doctors {
    background: #329D91;
}
.doctors-content {
    padding: 90px 0;
    background-repeat: no-repeat;
    background-position: right bottom;
    background-image: url('/assets/dortors.webp');
}
.doctors-title{
    text-align: center;
    color: white;
    font-size: 70px;
}
.doctor-cards{
    margin-top: 30px;
}
.doctor-card {
    max-width: 380px;
    background: white;
    margin-bottom: 30px;
    padding: 30px;
    border-radius: 10px;
}
.doctor-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #FE1946;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 20px;
    margin-bottom: 20px;
    transition: .4s ease-in-out;
}
.doctor-badge:hover,.doctor-name:hover  {
    background-color: #1ecdec;
}
.doctor-name {
    background: #329D91;
    display: inline-block;
    color: white;
    padding: 6px 12px;
    font-size: 20px;
    border-radius: 6px;
    margin-bottom: 20px;
    transition: .4s ease-in-out;
}
.doctor-time {
    color: #329D91;
}
/* doctors section end */

/* why seo */
.why-seo{
    padding: 90px 0;
    /* background: #6AAD39; */
}
.why-seo h2{
    color: #329D91;
    text-align: center;
    font-size: 50px;
    margin-bottom: 20px;
}
.why-seo p{
    font-size: 16px;
    text-align: justify;
}
.why-seo a{
    color: #329D91;
    text-decoration: none;
    transition: .4s ease-in-out;
}
.why-seo a:hover{
    color: #1ecdec;
}
/* why seo end */
/* glimps section */

section.gallery-section {
    padding: 90px 0;
    /* background: #02B803; */
}
section.gallery-section h2{
    font-size: 60px;
    text-align: center;
    margin-bottom: 20px;
    /* color: white; */
}
.glimpse-navigation{
    margin-top: 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 20px;
}
.nav-btn {
    border: none;
    border-radius: 20px;
    padding: none;
    margin: none;
    background: white;
    cursor: pointer;
}
/* glimps section end */

/* contact section */
.contact_section{
    background-color: #329D91;
    padding: 80px 0;
}
.contact-section {
    max-width: 1000px;
    margin: 0px auto;
    padding: 0 15px;
}

.contact-title {
    text-align: center;
    font-size: 80px;
    font-weight: 500;
    margin-bottom: 30px;
    color: white;
}

.contact-container {
    display: flex;
    
    gap: 30px;
    margin-bottom: 40px;
}

.map-container {
    flex: 1;

    background-color: #f0f0f0;
    position: relative;
}

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form-container {
    flex: 1;
   height: 100%;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-input {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s;
}

.form-input:focus {
    border-color: #02B803;
}

.form-textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    min-height: 100px;
    resize: vertical;
    outline: none;
    transition: border-color 0.3s;
}

.form-textarea:focus {
    border-color: #5cba47;
}

.submit-button {
    background-color: white;
    color: #00A7C3;
    border: none;
    border-radius: 5px;
    padding: 12px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #d2eacd;
}

.address-container {
    background-color: white;
    color: #00A7C3;
    padding: 40px 30px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 15px;
    
}

.address-icon {
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.address-text {
    font-size: 18px;
    line-height: 1.4;
}
/* contact section end */
/* Footer Section */
.footer {
    background-color: #329D91;
    color: #333;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 60px 0;
    gap: 40px;
}

.footer-logo {
    /* flex: 1; */
    max-width: 400px;
    
}
.footer-logo img{
    height: 100px;
    width: 100px;
}

.footer-social {
    display: flex;
    margin-top: 20px;
    gap: 10px;
}

.social-square {
    width: 40px;
    height: 40px;
    background-color: #00A7C3;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}

.social-square .social-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.footer-text {
    flex: 2;
    line-height: 1.6;
    color: white ;
}

.footer-divider {
    height: 1px;
    background-color: #ddd;
    margin-bottom: 0;
}

.copyright {
    background-color: #00A7C3;
    color: white;
    padding: 7px 0;
    text-align: center;
    font-size: 14px;
}

/* Social Icons */
.social-icon {
    width: 24px;
    height: 24px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
}

.whatsapp-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z'/%3E%3C/svg%3E");
}

.instagram-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z'/%3E%3C/svg%3E");
}
.facebook-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath d='M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 50%;
    display: inline-block;
    width: 40px;
    height: 40px;
}
/* Clock Icon */
.clock-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm61.8-104.4l-84.9-61.7c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v141.7l66.8 48.6c5.4 3.9 6.5 11.4 2.6 16.8L334.6 349c-3.9 5.3-11.4 6.5-16.8 2.6z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* Arrow Icon */
.arrow-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 5px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='white' d='M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Show burger menu and hide regular nav */
    .burger-menu {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease, padding 0.5s ease;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        z-index: 100;
    }
    
    .nav-menu.active {
        max-height: 500px;
        padding: 20px;
    }
    
    .nav-links {
        flex-direction: column;
        width: 100%;
        margin: 0 0 15px 0;
    }
    
    .nav-links li {
        margin: 10px 0;
        width: 100%;
    }
    
    .contact-btn {
        margin: 10px 0;
    }
    
    .social-icons {
        margin: 15px 0 0 0;
    }
    
    /* Burger menu animation */
    .burger-menu.active .burger-line:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .burger-menu.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    
    .burger-menu.active .burger-line:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }


/* hero section adjustments */
.hero-content {
    background-image: none;
    padding: 40px 10px 50px;
    background: #E3E7EB;
}

.hero-left h1{
    font-size: 36px;
}
.hero-desc{
    font-size: 16px;
    margin: 20px 0;
}
.schedule-button{
    padding: 12px 10px;
    font-size: 16px;

}
/* hero section adjustments ends */

/* well beign adjustments */
.well-beigng-content{
    flex-direction: column;
    margin: 20px 0;
    gap: 30px;
}
.well-beigng-content .left{
    max-width: 100%;
    text-align: center;
}
.well-beigng-content .right{
    position: initial;
    margin-top: 0px;
    padding: 32px 16px;
}
.well-beigng-content .left h2{
    font-size: 32px;
}
.contact-box h2{
    font-size: 36px;
}
.contact-box form input, .contact-box form button{
    padding: 16px 20px;
}
/* well beign adjustments end */

/* service section adjustments */
.services {
    flex-direction: column;
    align-items: center;
  }

  .service-card {
    width: 95%;
  }
/* service section adjustments end*/
/* doctors content adjustments */
.doctors-content{
    padding: 40px 0;
    background-image: none;
}
.doctors-title{
    font-size: 36px;
}
.doctor-card{
    margin: 0 auto;
    margin-bottom: 20px;
}
/* doctors content adjustments end */
.why-seo{
    padding: 30px 0;
}
.why-seo h2{
    font-size: 32px;
}
/* contact adjustments */
.contact-container {
    flex-direction: column;
}

.map-container {
    min-height: 200px;
    overflow: hidden;
    border-radius: 6px;
}

.contact-title {
    font-size: 28px;
}

.address-icon{
    height: 40px;
    width: 40px;
}
.address-text{
    font-size: 16px;
    line-height: 1.2;
}
    /* Footer adjustments */
    .footer-content {
        flex-direction: column;
        padding: 30px 0;
        gap: 20px;
    }
    .footer-social{
        margin-top: 0;
    }
    .footer-logo {
        margin-bottom: 10px;
    }
    /* gallary adjustments */
    section.gallery-section{
        padding: 30px 0;
    }
    section.gallery-section h2{
        font-size: 32px;
    }
}

/* Medium screens */
@media (min-width: 769px) and (max-width: 1024px) {
    .well-beigng-content{
        flex-direction: column;
        margin: 50px 0;
    }
    .well-beigng-content .left{
        max-width: 100%;
        text-align: center;
    }
    .well-beigng-content .right{
        position: initial;
        margin-top: 0;
    }
}









/* swiper */
.swiper {
    width: 100%;
    height: 270px;
}
.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;

    overflow: hidden;
    border-radius: 20px;
}
.swiper-slide img {
    width: 100%;
    border-radius: 20px;
    height: 100%;
}