     *{
        
            margin: 0;
            padding: 0;
            box-sizing: border-box;
     }   
   
   /* Ubuntu for Headings */
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'Ubuntu', sans-serif;
            font-weight: 700;
        }

        /* Roboto for Body, Paragraphs & Buttons */
        body,
        p,
        a,
        button,
        .btn,
        input,
        textarea,
        select {
            font-family: 'Roboto', sans-serif;
        }

        body {
            background: #ffffff;
        }
        
        .img-img{
            width: 230px !important;
            height: auto !important;
        }

        .hero-section {
          background: url('../images/slider-img.jpg') no-repeat center center / cover;
          height: 600px;
        }


      .nav-link {
        color: #0d70c3   !important;
        font-weight: 500;
      }
      .nav-link:hover {
        color: #000 !important;
      }

      /* Responsive Styles */
      @media (max-width: 991px) {
        .hero-section {
          height: 140px;
        }
      }

      .about-section {
        background: #F4F9FF;
        color: #3e3e3e !important;
      } 

      a{
        text-decoration: none;
      }
      a:hover{
        color: #000 !important;
      }
      .custom-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #4890D0;
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(72, 144, 208, 0.3);
}

.custom-btn:hover {
    background: #2F74B5;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(72, 144, 208, 0.4);
}

.custom-btn i {
    transition: transform 0.3s ease;
}

.custom-btn:hover i {
    transform: translateX(5px);
}
.doctor-img{
    border-radius: 15px;
    border: 2px solid #4890D0;
    box-shadow: 0 4px 8px rgba(0, 247, 255, 0.10) !important;
}
.hospital-card{
    border-radius:18px;
    padding:25px;
    transition:0.3s ease;
    background:#fff;
}

.hospital-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(72,144,208,.15)!important;
}

.icon-box{
    width:70px;
    height:70px;
    margin:auto;
    background:#4890d0;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
}

.hospital-card h4{
    font-weight:700;
    color:#1d3557;
}

.hospital-card p{
    font-size:16px;
    color:#555;
}

.hospital-card a{
    color:#555;
}

.hospital-card a:hover{
    color:#4890d0;
}

.contact-section{
    background:#4890d0;
    /* padding:50px 0; */
}

.facilities-section{
    background:#2F74B5;
    /* padding:80px 0; */
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    color:#fff;
    font-size:42px;
    font-weight:700;
}

.section-title p{
    color:#eaf5ff;
    font-size:18px;
}

.facility-grid{
    display:grid;
        grid-template-columns: repeat(3, 1fr);

    gap:25px;
}

.facility-card{
    background:#fff;
    border-radius:15px;
    padding:35px 25px;
    text-align:center;
    transition:.3s;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
}

.facility-card:hover{
    transform:translateY(-8px);
}

.facility-card i{
    width:70px;
    height:70px;
    line-height:70px;
    border-radius:50%;
    background:#2F74B5;
    color:#fff;
    font-size:28px;
    margin-bottom:20px;
}

.facility-card h5{
    font-size:18px;
    color:#222;
    line-height:1.6;
    margin:0;
}


.qualification-list li,
.interest-list li{
    margin-bottom:18px;
    line-height:1.7;
    color:#555;
}

.qualification-list strong{
    color:#2F74B5;
    display:inline-block;
    min-width:60px;
}

.interest-list i{
    color:#2F74B5;
    margin-right:10px;
}

.about-section h4{
    font-size:24px;
    font-weight:700;
}

.about-section h2{
    margin-bottom:20px;
}

.doctor-img{
    border-radius:15px;
}


.services-section{
    background:#f5f5f5;
    padding:90px 0;
}

.section-title{
    font-size:42px;
    font-weight:700;
    color:#2F74B5;
}

.section-subtitle{
    color:#666;
    margin-top:10px;
    margin-bottom:20px;
}

.service-card{

    background:#fff;
    border-radius:18px;
    overflow:hidden;
    transition:.4s;
    height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,.07);

}

.service-card:hover{

    transform:translateY(-12px);

    box-shadow:0 18px 40px rgba(0,0,0,.12);

}

.service-image{

    height:250px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#fff;

    padding:20px;

}

.service-image img{

    width:100%;

    height:210px;

    object-fit:contain;

    transition:.4s;

}

.service-card:hover img{

    transform:scale(1.08);

}

.service-content{

    padding:30px;

    text-align:center;

}

.service-content h4{

    font-size:24px;

    color:#222;

    margin-bottom:15px;

    font-weight:700;

}

.service-content p{

    color:#666;

    line-height:1.8;

    font-size:15px;

    margin-bottom:20px;

}

.read-btn{

    color:#2F74B5;

    text-decoration:none;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:.5px;

}

.read-btn i{

    margin-left:8px;

    transition:.3s;

}

.read-btn:hover{

    color:#0d6efd;

}

.read-btn:hover i{

    transform:translateX(5px);

}

@media(max-width:991px){

.service-image{

height:220px;

}

.service-image img{

height:180px;

}

}

@media(max-width:767px){

.section-title{

font-size:34px;

}

.service-content{

padding:25px;

}

}   


.faq-section{
    background:#4890D0;
}

.faq-section h2{
    font-size:2.5rem;
    font-weight:700;
}

.accordion-item{
    border:none;
    border-radius:12px !important;
    overflow:hidden;
}

.accordion-button{
    font-weight:600;
    font-size:17px;
    padding:18px 22px;
    background:#fff;
    color:#222;
    box-shadow:none !important;
}

.accordion-button:not(.collapsed){
    background:#fff;
    color:#4890D0;
}

.accordion-button:focus{
    box-shadow:none;
    border:none;
}

.accordion-body{
    color:#666;
    line-height:1.8;
    font-size:15px;
    background:#fff;
}

.accordion-button::after{
    filter:hue-rotate(180deg);
}

@media (max-width:768px){
    .faq-section h2{
        font-size:2rem;
    }
}

.footer-section{
    background:#f5f5f5;
}

.footer-section h2{
    color:#1d3557;
    font-weight:700;
}

.footer-section p{
    color:#666;
}

.hospital-card{
    background:#fff;
    border-radius:18px;
    padding:35px 25px;
    text-align:center;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.3s;
    height:100%;
}

.hospital-card:hover{
    transform:translateY(-8px);
}

.icon-box{
    width:75px;
    height:75px;
    margin:0 auto 20px;
    background:#4890D0;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
}

.hospital-card h4{
    color:#1d3557;
    font-weight:700;
    margin-bottom:20px;
}

.hospital-card p{
    margin-bottom:12px;
    font-size:17px;
}

.hospital-card i{
    color:#4890D0;
    margin-right:8px;
}

.hospital-card a{
    color:#333;
    text-decoration:none;
}

.social-icons{
    display:flex;
    /* justify-content:center; */
    gap:15px;
}

.social-icons a{
    width:45px;
    height:45px;
    background:#4890D0;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    transition:.3s;
}

.social-icons a:hover{
    background:#1d3557;
    transform:translateY(-4px);
}
.footer-section{
    background:#f5f5f5;
    padding:70px 0 20px;
}

.footer-section h4{
    color:#1f3b64;
    font-size:22px;
    font-weight:700;
    margin-bottom:25px;
}

.footer-section p{
    color:#666;
    line-height:1.8;
}

.footer-links,
.footer-contact{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li,
.footer-contact li{
    margin-bottom:14px;
}

.footer-links a,
.footer-contact a{
    color:#666;
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover,
.footer-contact a:hover{
    color:#4890D0;
    padding-left:5px;
}

.footer-contact i{
    color:#4890D0;
    width:22px;
    margin-right:10px;
}

.social-icons{
    display:flex;
    gap:12px;
}

.social-icons a{
    width:42px;
    height:42px;
    background:#4890D0;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    transition:.3s;
    font-size:18px;
}

.social-icons a:hover{
    background:#1f3b64;
    transform:translateY(-5px);
}

.footer-section hr{
    margin:40px 0 20px;
    border-color:#ddd;
}

.copyright{
    color:#777;
    font-size:15px;
}

@media(max-width:768px){

.footer-section{
    text-align:center;
}

.social-icons{
    justify-content:center;
}

.footer-contact i{
    margin-right:8px;
}
}


.banner-sec{
    background: url('../images/gastero-banner.jpg') no-repeat center center / cover;
    height: 300px;
}
/*====================================
        Benefits Section
=====================================*/

.benefits-section{

    background:#4890d0;

    padding-top:80px ;

}



.symptoms-section{

    background:#fff;

    /* padding-top:80px ; */

}

/* Heading */

.section-title{

    color:#fff;

    font-size:22px;

    font-weight:700;

    /* line-height:1.5; */

}

.section-title span{

    color:#ffd3e8;

}

.title-line{

    width:80px;

    height:4px;

    background:#fff;

    margin:15px auto 0;

    border-radius:50px;

}

/* List */

.benefits-list{

    list-style:none;

    padding:0;

    margin:0;

}

.benefits-list li{

    position:relative;

    padding-left:35px;

    margin-bottom:18px;

    color:#fff;

    font-size:18px;

    line-height:1.8;

    transition:.3s;

}

.benefits-list li::before{

    content:"\f058";

    font-family:"Font Awesome 6 Free";

    font-weight:900;

    position:absolute;

    left:0;

    top:2px;

    color:#000;

    font-size:18px;

}

.benefits-list li:hover{

    color:#ffd3e8;

    padding-left:42px;

}

/* Responsive */

@media(max-width:991px){

    .section-title{

        font-size:30px;

    }

    .benefits-list{

        margin-bottom:30px;

    }

}

@media(max-width:767px){

    .section-title{

        font-size:24px;

    }

    .benefits-list li{

        font-size:16px;

    }

}
/*=========================================
            ACHIEVEMENTS SECTION
=========================================*/

.achievements-section{
    background:#fff;
    padding:80px 0;
}

/*=========================================
            PUBLICATION SECTION
=========================================*/

.publication-section{
    background:#4890D0;
    padding:80px 0;
}

/*=========================================
            SECTION HEADING
=========================================*/

.section-heading h2{

    font-size:42px;

    font-weight:700;

    color:#1c2c4c;

    margin-bottom:15px;

    position:relative;

}

.publication-heading h2{

    color:#fff;

}

/*=========================================
            Heading Line
=========================================*/

.heading-line{

    width:70px;

    height:4px;

    background:#4890D0;

    border-radius:30px;

    position:relative;

}

.heading-line::before{

    content:"";

    position:absolute;

    width:8px;

    height:8px;

    background:#4890D0;

    border-radius:50%;

    right:-15px;

    top:-2px;

}

.heading-line::after{

    content:"";

    position:absolute;

    width:8px;

    height:8px;

    background:#4890D0;

    border-radius:50%;

    right:-30px;

    top:-2px;

}

.heading-line.white{

    background:#fff;

}

.heading-line.white::before,
.heading-line.white::after{

    background:#fff;

}

/*=========================================
            Achievement List
=========================================*/

.achievement-list{

    list-style:none;

    padding:0;

    margin:0;

}

.achievement-list li{

    position:relative;

    padding-left:28px;

    margin-bottom:18px;

    font-size:20px;

    color:#444;

    line-height:1.8;

    transition:.3s;

}

.achievement-list li::before{

    content:"\f054";

    font-family:"Font Awesome 6 Free";

    font-weight:900;

    position:absolute;

    left:0;

    top:4px;

    color:#4890D0;

    font-size:15px;

}

.achievement-list li:hover{

    color:#4890D0;

    transform:translateX(6px);

}
/*==========================
        Contact Section
==========================*/

.contact-section{

    background:#4890D0;

    padding:80px 0;

}

.contact-title{

    color:#fff;

    font-size:42px;

    font-weight:700;

}

.contact-subtitle{

    color:#eaf4ff;

    font-size:18px;

}

/*==========================
        Form
==========================*/

.contact-form{

    background:#fff;

    padding:35px;

    border-radius:15px;

    box-shadow:0 10px 30px rgba(0,0,0,.12);

}

.contact-form label{

    font-weight:600;

    margin-bottom:8px;

    color:#1f2d3d;

}

.contact-form span{

    color:#ff4f9a;

}

.contact-form .form-control{

    height:50px;

    border-radius:8px;

    border:1px solid #ddd;

}

.contact-form textarea{

    height:auto !important;

    resize:none;

}

.contact-form .form-control:focus{

    border-color:#4890D0;

    box-shadow:none;

}

.contact-btn{

    background:#2873c5;

    color:#fff;

    border:none;

    padding:12px 35px;

    border-radius:30px;

    transition:.3s;

}

.contact-btn:hover{

    background:#243b8f;

    color:#fff;

}

/*==========================
        Contact Info
==========================*/

.hospital-box{

    background:#fff;

    border-radius:15px;

    padding:25px;

    margin-bottom:20px;

    transition:.3s;

}

.hospital-box:hover{

    transform:translateY(-5px);

}

.hospital-box h4{

    color:#243b8f;

    font-size:22px;

    margin-bottom:18px;

    font-weight:700;

}

.hospital-box p{

    margin-bottom:10px;

    color:#555;

    font-size:16px;

}

.hospital-box i{

    color:#2873c5;

    width:25px;

}
html,
body{
    overflow-x:hidden;
    width:100%;
}
/*==========================
        Responsive
==========================*/

@media(max-width:991px){

.contact-title{

    font-size:34px;

}

}

@media(max-width:767px){

.contact-title{

    font-size:28px;

}

.contact-form{

    padding:25px;

}

.hospital-box{

    padding:20px;

}

}
.copyright-section{
    background:#4890d0;
    height:50px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.copyright{
    color:#fff;
    text-align:center;
    font-size:15px;
    font-weight:500;
}

.copyright strong{
    color:#fff;
}
@media (max-width:768px){

    .copyright-section{
        height:auto;
        padding:15px 0;
    }

    .copyright{
        font-size:14px;
        line-height:1.6;
    }

}
/* Desktop Hover Dropdown */

@media (min-width: 992px) {

    .navbar .dropdown:hover > .dropdown-menu{
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        margin-top: 0;
    }

    .navbar .dropdown-menu{
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all .3s ease;
        border: none;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0,0,0,.12);
        margin-top: 15px;
    }

    .navbar .dropdown-toggle::after{
        transition: transform .3s ease;
    }

    .navbar .dropdown:hover .dropdown-toggle::after{
        transform: rotate(180deg);
    }

}