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

body {
    /* background-color: #f8f8f8; */
}

.container {
    max-width: 1200px;
    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;
}



.logo-text {
    margin-left: 10px;
}

.logo-text h1, .logo-text h2 {
    font-size: 18px;
    color: #333;
    margin: 0;
    line-height: 1.2;
}

.logo-text h1 span, .logo-text h2 span {
    display: block;
    color: #02B803;
    font-size: 22px;
    font-weight: bold;
}

/* 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: #02B803;
}

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

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

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

.social-icons a {
    margin-left: 10px;
    color: #333;
    font-size: 20px;
    text-decoration: none;
}


/* hero section */
.hero{
    padding: 50px 0;
}
.hero-content {
    background-image: url('/assets/hero.webp');
    padding: 175px 20px;
    background-repeat: no-repeat;
    border-radius: 20px;
}
.hero-content-left {
    max-width: 550px;
}   
.hero-content-left h1 {
    font-size: 100px;
    font-weight: 500;
    line-height: 100px;
}
.hero-content-left p {
    font-size: 20px;
    margin: 30px 0 60px;
}
.schedule-button {
    background-color: #02B803;
    color: white;
    font-size: 20px;
    font-weight: 500;
    padding: 16px 32px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.schedule-button:hover {
    background-color: #4da83a;
}

.schedule-button .arrow {
    margin-left: 8px;
    margin-top: 3px;
}
/* end hero section */

/* health care section */
.healthcare-section {
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 50px 0;
}

.doctor-image {
    width: 50%;
    position: relative;
}

.doctor-image img {
    width: 100%;
    height: auto;
}

.content-container {
    width: 50%;
}

.green-box {
    background-color: #02B803;
    color: white;
    padding: 50px;
    border-radius: 25px;
    margin-bottom: 20px;
    position: relative;
    left: -20%;
    width: 120%;
}

.green-box h2 {
    font-size: 70px;
    margin: 0 0 20px 0;
    text-align: center;
    position: relative;
}
.green-box h2::after{
    content: "";
    width: 100px;
    height: 3px;
    background: white;
    display: inline-block;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}
.green-box p {
    font-size: 20px;
  
    margin: 0;
    padding-top: 20px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 500;
}

.benefits-list .icon {
    background-color: #02B803;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 14px;
}
/* health care section end */

/* doctors sections */
.doctors-container{
    background-color: #DCDCDC;
    padding: 50px 0 0;
    border-radius: 20px;
}
.doctors-section {
    border-radius: 20px;
    padding: 40px 20px;
    background-image: url('/assets/doctors.webp');
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
    
  }
  
  .doctors-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  
  .doctors-header h2 {
      max-width: 380px;
    font-size: 70px;
    font-weight: 700;
    color: #333;
    line-height: 1.1;
    margin: 0;
  }
  
  .doctors-cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    
  }
  
  .doctor-card {
    max-width: 280px;
    background-color: #02B803;
    border-radius: 15px;
    padding: 30px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 250px;
    flex: 1;
  }
  
  
  
  .doctor-name {
    font-size: 22px;
    font-weight: 600;
    margin: 10px 0 5px 0;
  }
  
  .doctor-credentials {
    font-size: 14px;
    margin: 0 0 20px 0;
  }
  
  .doctor-hours {
    position: relative;
    padding-top: 20px;
    margin-bottom: 20px;
    font-size: 18px;
  }
  
  .doctor-hours::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: white;
  }
  
  .doctor-button {
    background-color: white;
    color: #5cba47;
    border: none;
    border-radius: 20px;
    padding: 8px 20px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .doctor-button:hover {
    background-color: #f0f0f0;
  }
/* doctors sections end */
/* service section */
.services-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    padding: 100px 0;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 220px;
}

.service-icon {
    background-color: #5cba47;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon svg {
    width: 40px;
    height: 40px;
    color: white;
    fill: none;
    stroke: white;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-title {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 15px 0;

}

.service-description {
    font-size: 16px;
    line-height: 1.5;
    text-align: left;
    max-width: 250px;
    margin: 0;
}
/* service section 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 {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 15px;
}

.contact-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
}

.contact-container {
    display: flex;
    background-color: white;
    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: #02B803;
    color: white;
    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: #4da83a;
}

.address-container {
    background-color: #02B803;
    color: white;
    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 */
/* why seo */
.why-seo{
    padding: 90px 0;
    background: #02B803;
}
.why-seo h2{
    color: white;
    text-align: center;
    font-size: 50px;
    margin-bottom: 20px;
}
.why-seo p{
    font-size: 16px;
}
.why-seo p{
    font-size: 16px;
    text-align: justify;
}
.why-seo a{
    color: #e7f5f8;
    text-decoration: none;
    transition: .4s ease-in-out;
}
.why-seo a:hover{
    color: #1e2cec;
}
/* why seo end */
/* Footer Section */
.footer {
    background-color: white;
    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-social {
    display: flex;
    margin-top: 20px;
    gap: 10px;
}

.social-square {
    width: 40px;
    height: 40px;
    background-color: #02B803;
    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;
}

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

.copyright {
    background-color: #1a0f3d;
    color: white;
    padding: 15px 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");
}

/* 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 adjustments */
    .hero-content {
        padding: 50px 16px;
        border-radius: 10px;
    }
    .hero-content-left h1{
        font-size: 42px;
        line-height: normal;
        font-weight: 600px;
    }
    .hero-content-left p {
        font-size: 18px;
        margin: 15px 0 30px;
    }
    .schedule-button{
        padding: 15px 10px;
        font-size: 16px;
    }
    /* well being */
    .healthcare-section{
        padding: 0;
    }
    .doctor-image{
        display: none;
    }
    .content-container{
        width: 100%;
        padding: 16px;
    }
    .green-box{
        width: 100%;
        left: 0;
        padding: 32px 16px;
        margin-bottom: 30px;
    }
    .benefits-list{
        margin-bottom: 20px;
    }
    .green-box h2{
        font-size: 32px;
    }
    .green-box p{
        font-size: 16px;
    }
    /* service adjustments */
    .services-container {
        flex-direction: column;
        align-items: center;
    }
    
    .service-item {
        width: 100%;
        max-width: 300px;
    }
    /* well being adjustments */
    .doctors-container{
        padding: 30px 0;
    }
    .doctors-section{
        padding: 20px 16px;
        background: none;
    }
    .doctors-header h2{
        font-size: 32px;
        line-height: 1;
        max-width: initial;
        text-align: center;
    }
    .doctors-cards{
        justify-content: center;
    }
    /* gallary adjustments */
    section.gallery-section{
        padding: 30px 0;
    }
    section.gallery-section h2{
        font-size: 32px;
    }
    /* why seo */
    .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;
    }
}

/* Medium screens */
@media (min-width: 769px) and (max-width: 1024px) {
    
}

/* Add this to your existing CSS file */

/* Clinic Glimpse Section */





/* 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%;
}