*{
    font-family: 'Poppins', sans-serif;
}

/*============================================= nav bar css =========================================*/

/* Navbar overall spacing */
.navbar {
    padding: 10px 40px;
}

/* Logo size */
.navbar-brand img {
    height: 55px;
}

/* Nav links */
.navbar-nav .nav-link {
    color: #004C6D !important;
    font-weight: 700;
    /* margin: 0 5px; */
    padding: 6px 14px;
    text-transform: uppercase;
    transition: 0.3s;
    font-size: 14px;
}

.navbar-nav .nav-link:hover{
    color: #1299CC !important;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.3s;
    font-size: 14px;
}

/* Active + Hover BOX STYLE */

/* Remove default Bootstrap caret boldness */
.navbar-nav .dropdown-toggle::after {
    margin-left: 5px;
}

/* Dropdown menu */
.dropdown-menu {
    border-radius: 0;
    padding: 10px;
    border: 1px solid #ddd;
}

/* Dropdown items */
.dropdown-item {
    color: #0b5e7a;
    font-weight: 700;
    text-transform: uppercase;
    padding: 8px 12px;
    margin-bottom: 6px;
    transition: 0.3s;
    font-size: 14px;
}

/* Remove last item spacing */
.dropdown-item:last-child {
    margin-bottom: 0;
}

/* Fix dropdown width */
.dropdown-menu {
    min-width: 260px;
    font-size: 14px;
}

/* Optional: align dropdown perfectly */
.dropdown-menu {
    margin-top: 8px;
}


/*=============================================== slider css =========================================*/

/* Slider height fix */
.slider-img {
    /*height: 500px;*/
    object-fit: cover;
}

/* Caption style */
.carousel-caption {
    background: rgba(0, 0, 0, 0.5);
    padding: 15px;
    border-radius: 5px;
}

.carousel-caption h2 {
    font-weight: 700;
}

.carousel-caption p {
    font-size: 16px;
}


/*================================================== about docter =====================================*/

.doctor-section {
    padding: 60px 0;
}

.doctor-title {
    color: #004C6D;
    font-weight: 700;
    font-size: 32px;
}

.underline {
    width: 200px;
    height: 3px;
    background-color: #9ecae1;
    margin: 15px 0;
}

.subtitle {
    color: #888;
    font-size: 20px;
    margin-bottom: 20px;
}

.doctor-text {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    text-align: justify;
}

.doctor-text b {
    font-weight: 600;
}

.btn-read {
    background-color: #0092C8;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    transition: 0.3s;
}

.btn-read:hover {
    background-color: #0077a8;
    color: #fff;
}

.doctor-img {
    border-radius: 15px;
    border: 3px solid #0092C8;
    width: 100%;
    height: auto;
}


/*======================================== service card ===========================================*/

        
    
   /* 4 card css              */
           .card-section {
               padding: 50px 0;
           }
    
           .custom-card {
               border: 1px solid #999;
               text-align: center;
               padding: 25px 20px;
               background: #fff;
               height: 100%;
               transition: 0.3s;
           }
    
           .custom-card:hover {
               transform: translateY(-6px);
               box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
           }
    
           .custom-card img {
               width: 140px;
               height: 140px;
               object-fit: cover;
               margin-bottom: 15px;
           }
    
           .card-title {
               color: #0077b6;
               font-weight: 600;
               font-size: 18px;
               margin-bottom: 10px;
               font-size: 16px;
           }
    
           .card-text {
               color: #666;
               font-size: 15px;
               line-height: 1.7;
               font-size: 16px;
           }



/* info cards            */
.special-section {
    background: #8c8c8c;
    padding: 60px 0;
    text-align: center;
    color: #fff;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.underline {
    width: 200px;
    height: 3px;
    background: #ccc;
    margin: 0 auto 40px;
}

.special-card {
    border: 1px solid #ddd;
    padding: 35px 25px;
    height: 100%;
    transition: 0.3s;
}

.special-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.special-icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: #fff;
}

.special-title {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 15px;
}

.special-text {
    font-size: 16px;
    line-height: 1.7;
    color: #f1f1f1;
}


/*=============================== Home Gallery ===========================*/

.gallery-title {
    font-weight: 700;
    color: #004C6D;
}

.underline {
    width: 120px;
    height: 3px;
    background: #9ecae1;
    margin: 10px auto;
}

/* Image */
.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border: 2px solid #004C6D;
    transition: 0.4s;
}

/* Hover zoom
.gallery-img:hover {
    transform: scale(1.05);
} */

/* Smooth slide */
.carousel-item {
    transition: transform 0.8s ease-in-out;
}

/* Indicators dots */
.carousel-indicators [data-bs-target] {
    background-color: #999;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.carousel-indicators .active {
    background-color: #004C6D;
}


/*============================================ all page banner ==========================*/

        .hero-about {
            background: url('images/about-bg.jpg') no-repeat center center/cover;
            position: relative;
            padding: 100px 0;
            color: #fff;
        }
    
        .hero-about::before {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.5);
        }
    
        .hero-content {
            position: relative;
            z-index: 2;
            padding-left: 80px;
        }
    
        .hero-title {
            font-weight: 700;
        }
    
        .hero-underline {
            width: 120px;
            height: 4px;
            background: #ccc;
            margin-top: 10px;
        }
    
        @media (max-width: 768px) {
            .hero-content {
                padding-left: 20px;
                text-align: center;
            }
    
            .hero-underline {
                margin: 10px auto;
            }
        }

    /*============================== All pages Banner css     ================================*/
      
        .hero-about {
            background: url('images/about-bg.jpg') no-repeat center center/cover;
            position: relative;
            padding: 100px 0;
            color: #fff;
        }
    
        .hero-about::before {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.5);
        }
    
        .hero-content {
            position: relative;
            z-index: 2;
        }
    
        .hero-title {
            font-weight: 700;
        }
    
        .hero-underline {
            width: 120px;
            height: 4px;
            background: #ccc;
            margin-top: 10px;
        }
    
        @media (max-width: 768px) {
            .hero-content {
                padding-left: 20px;
                text-align: center;
            }
    
            .hero-underline {
                margin: 10px auto;
            }
        }


  /*================================================ Facilities About page      =========================== */


.facility-section {
    background: #ffff;
    padding: 80px 0;
}

.facility-wrapper {
    padding-left: 40px;
}

.facility-title {
    font-size: 32px;
    font-weight: 700;
    color: #0b4f6c;
    letter-spacing: 2px;
}

.facility-line {
    width: 150px;
    height: 3px;
    background: #8bb3d9;
    margin: 10px 0 30px;
}

.facility-list {
    list-style: none;
    padding: 0;
}

.facility-list li {
    font-size: 16px;
    margin-bottom: 15px;
    position: relative;
    padding-left: 35px;
}

/* Custom dotted bullet */
.facility-list li::before {
    content: "••";
    position: absolute;
    left: 0;
    color: #1e73be;
    font-size: 18px;
    letter-spacing: 2px;
}

/* Mobile */
@media (max-width: 768px) {
    .facility-wrapper {
        padding-left: 20px;
    }
}




/*============================== footer css ===========================================*/

.site-footer {
    background-color: #000;
    padding: 20px 0;
}

.footer-text {
    color: #6c757d;
    font-size: 16px;
    margin: 0;
}

.footer-link {
    color: #0d6efd;
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
}


/*================================== Testimonial ============================*/

.testi-section {
    background: #a9c0cb;
    padding: 80px 0;
    text-align: center;
}

.testi-title {
    font-size: 32px;
    font-weight: 700;
    color: #0b4f6c;
}

.testi-line {
    width: 200px;
    height: 4px;
    background: #6fa3c5;
    margin: 15px auto 50px;
}

.testi-card {
    background: #e6e6e6;
    border-radius: 10px;
    padding: 25px;
    text-align: left;
    height: 100%;
}

.user {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #5b3cc4;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-weight: bold;
}

.stars {
    color: #f4b400;
    margin: 8px 0;
}

.doctor-box {
    text-align: left;
}

.doctor-info {
    display: flex;
    align-items: center;
}

/* arrows */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #999;
    border-radius: 50%;
    padding: 15px;
}


/*============================================ Home section Vedio ======================================*/

        .award-section {
            background: #f4f4f4;
            padding: 80px 0;
        }
    
        .award-title {
            font-size: 32px;
            font-weight: 700;
            color: #0b4f6c;
            line-height: 1.4;
        }
    
        .award-text {
            margin-top: 20px;
            font-size: 16px;
            color: #333;
            line-height: 1.7;
        }
    
        .video-box iframe {
            width: 100%;
            height: 350px;
            border-radius: 10px;
        }
    
        /* Mobile */
        @media (max-width: 768px) {
            .award-title {
                font-size: 28px;
            }
    
            .video-box iframe {
                height: 250px;
            }
        }


   /*===================== About page FAQ AND IMAGE SECTION      ========================*/

   .why-section {
       background: #4a4a4a;
       padding: 80px 0;
   }

   .why-box {
       background: #f5f5f5;
       padding: 30px;
   }

   .why-title {
       font-size: 32px;
       font-weight: 700;
       color: #0b4f6c;
       margin-bottom: 25px;
   }

   .accordion-button {
       font-weight: 600;
       color: #0b4f6c;
   }

   .accordion-button:not(.collapsed) {
       background: #e9ecef;
       color: #0b4f6c;
   }

   .accordion-body {
       color: #555;
   }

   .why-image img {
       width: 100%;
       height: 430px;
       object-fit: cover;
   }

   /* Mobile */
   @media (max-width: 768px) {
       .why-image {
           margin-top: 20px;
       }
   }


   /*============================================= services about page css =============================*/

    .service-section {
               background: #ffff;
               padding: 80px 0;
               text-align: center;
           }
    
           .service-title {
               font-size: 32px;
               font-weight: 700;
               color: #0b4f6c;
           }
    
           .service-line {
               width: 200px;
               height: 4px;
               background: #6fa3c5;
               margin: 15px auto 50px;
           }
    
           .service-card {
               background: #fff;
               padding: 30px;
               border-radius: 40px;
               box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
               text-align: left;
               height: 100%;
           }
    
           .service-card h5 {
               color: #0b4f6c;
               font-weight: 700;
               margin-bottom: 15px;
           }
    
           .service-card p {
               color: #555;
               line-height: 1.7;
           }
    
           /* spacing between rows */
           .service-row {
               margin-bottom: 30px;
           }
    
           /* mobile */
           @media (max-width: 768px) {
               .service-card {
                   border-radius: 20px;
               }
           }


 /*=================================================== progress bar           ==========================*/

 .stats-section {
     background: #fff;
     padding: 80px 0;
 }

 /* LEFT */
 .profile-box {
     text-align: center;
 }

 .profile-img {
     width: 220px;
     height: 220px;
     border-radius: 50%;
     object-fit: cover;
     margin-bottom: 20px;
 }

 .profile-title {
     font-size: 19px;
     font-weight: 600;
     margin-bottom: 20px;
 }

 .contact-btn {
     background: #1e73be;
     color: #fff;
     padding: 10px 25px;
     border-radius: 6px;
     text-decoration: none;
     display: inline-block;
 }

 /* RIGHT */
 .stats-title {
     font-size: 32px;
     font-weight: 700;
     color: #0b4f6c;
     margin-bottom: 30px;
 }

 .progress-item {
     margin-bottom: 25px;
 }

 .year {
     font-weight: 600;
     margin-bottom: 5px;
 }

 .progress {
     height: 10px;
     background: #ddd;
     border-radius: 10px;
 }

 .progress-bar {
     background: #1e73be;
     border-radius: 10px;
 }

 .percent {
     float: right;
     font-size: 14px;
     color: #333;
 }

 /* Mobile */
 @media (max-width: 768px) {
     .profile-box {
         margin-bottom: 40px;
     }
 }


 /*======================================== Camp page css ==============================*/

 .camp-section {
     background: #f4f4f4;
     padding: 40px 0;
     text-align: center;
 }

 .camp-title {
     font-size: 32px;
     font-weight: 700;
     color: #0b4f6c;
     margin-bottom: 50px;
 }

 .camp-img {
     width: 100%;
     height: 350px;
     object-fit: cover;
     border-radius: 8px;
     transition: 0.3s;
 }

 .camp-img:hover {
     transform: scale(1.05);
 }

 /* spacing */
 .img-box {
     margin-bottom: 20px;
 }

 /* Mobile */
 @media (max-width: 768px) {
     .camp-title {
         font-size: 26px;
     }
 }

 /*===================================== piles page css ========================================*/

 .info-section {
     background: #ffff;
     padding: 60px 0;
 }

 .section-title {
     color: #0b4f6c;
     font-weight: 700;
     margin-bottom: 20px;
     font-size: 32px;
 }

 .info-text {
     color: #555;
     line-height: 1.8;
 }

 .info-list {
     padding-left: 20px;
 }

 .info-list li {
     margin-bottom: 5px;
 }

 .info-img {
     width: 100%;
     border: 3px solid #3b5a73;
     border-radius: 4px;
 }

 .divider {
     border-top: 2px solid #3b5a73;
     margin: 40px 0;
 }

 /* Mobile */
 @media (max-width: 768px) {
     .info-img {
         margin-top: 20px;
     }
 }

   /*===================================== contact page css ============================================*/

   .contact-section {
       background: #ffff;
       padding: 80px 0;
   }

   .contact-title {
       color: #0b4f6c;
       font-weight: 700;
       margin-bottom: 10px;
   }

   .contact-line {
       width: 120px;
       height: 3px;
       background: #6fa3c5;
       margin-bottom: 25px;
   }

   .contact-item {
       display: flex;
       margin-bottom: 20px;
       align-items: flex-start;
   }

   .contact-icon {
       font-size: 22px;
       color: #1e73be;
       margin-right: 15px;
       margin-top: 5px;
   }

   .contact-text {
       color: #333;
       line-height: 1.6;
   }

   /* Form */
   .form-box {
       border: 2px solid #1e73be;
       padding: 25px;
       background: #fff;
   }

   .form-control {
       height: 50px;
       margin-bottom: 15px;
   }

   textarea.form-control {
       height: 120px;
   }

   .submit-btn {
       background: #1e73be;
       color: #fff;
       padding: 10px 25px;
       border: none;
   }

   .submit-btn:hover {
       background: #155a9c;
   }

   /* Mobile */
   @media (max-width: 768px) {
       .form-box {
           margin-top: 30px;
       }
   }

   /*========================================= contact map css =============================*/

   .map-section {
       background: #ffff;
       padding: 60px 0;
   }

   .map-box {
       border: 2px solid #3b5a73;
       background: #fff;
       padding: 15px;
   }

   .map-title {
       text-align: center;
       color: #0b4f6c;
       font-weight: 700;
       margin-bottom: 15px;
   }

   .map-frame iframe {
       width: 100%;
       height: 300px;
       border: 0;
   }

   /* Mobile */
   @media (max-width: 768px) {
       .map-box {
           margin-bottom: 20px;
       }
   }


   /*===================================== ENT page css ===================================*/

   .oto-section {
       background: #fff;
       padding: 60px 0;
   }

   .oto-title {
       color: #0b4f6c;
       font-weight: 700;
       margin-bottom: 20px;
       letter-spacing: 1px;
   }

   .oto-text {
       color: #555;
       line-height: 1.8;
       margin-bottom: 15px;
   }

   .oto-img {
       width: 100%;
       border: 3px solid #3b5a73;
       padding: 5px;
       background: #fff;
   }

   /* Mobile */
   @media (max-width: 768px) {
       .oto-img {
           margin-top: 20px;
       }
   }


   /*=================================== allergy treatment page css ===============================*/

   .disease-section {
       background: #fff;
       border: 1px solid #ddd;
       margin: 20px 30px 50px 50px;
   }

   .custom-tabs {
       border-bottom: 1px solid #cfcfcf;
       padding: 0;
   }

   .custom-tabs .nav-link {
       border: none;
       color: #7a7a7a;
       font-size: 16px;
       padding: 22px 35px;
       position: relative;
       font-weight: 500;
       background: transparent;
   }

   .custom-tabs .nav-link i {
       margin-right: 10px;
       color: #8b5cf6;
   }

   .custom-tabs .nav-link.active {
       color: #7c3aed;
       background: transparent;
   }

   .custom-tabs .nav-link::after {
       content: "";
       width: 14px;
       height: 14px;
       border: 2px solid #8b5cf6;
       border-radius: 50%;
       background: #fff;
       position: absolute;
       bottom: -8px;
       left: 50%;
       transform: translateX(-50%);
   }

   .custom-tabs .nav-link.active::after {
       background: #8b5cf6;
   }

   .tab-content-area {
       padding: 40px 30px;
   }

   .tab-content-area h2 {
       font-size: 26px;
       font-weight: 700;
       color: #1f2937;
       margin-bottom: 30px;
   }

   .tab-content-area p {
       font-size: 16px;
       line-height: 1.8;
       color: #000;
       margin-bottom: 30px;
   }

   .tab-content-area h3 {
       font-size: 20px;
       font-weight: 700;
       color: #1f2937;
       margin-bottom: 25px;
   }

   .tab-content-area ul {
       padding-left: 25px;
   }

   .tab-content-area ul li {
       font-size: 18px;
       color: #000;
       margin-bottom: 12px;
       line-height: 1.7;
   }

   @media(max-width:768px) {
       .custom-tabs .nav-link {
           padding: 15px 18px;
           font-size: 15px;
       }

       .tab-content-area h2 {
           font-size: 34px;
       }

       .tab-content-area h3 {
           font-size: 28px;
       }

       .tab-content-area p,
       .tab-content-area ul li {
           font-size: 16px;
       }
   }

/* social icon css    */

.fixed-social-icons {
    position: fixed;
    right: 15px;
    /* Changed from left to right */
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fixed-social-icons a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: 0.3s ease;
}

.fixed-social-icons a:hover {
    transform: scale(1.1);
}

.fixed-social-icons .whatsapp {
    background: #25D366;
}

.fixed-social-icons .youtube {
    background: #FF0000;
}