@import url('https://fonts.googleapis.com/css2?family=Inria+Serif:wght@400;700&display=swap');
* {
  padding: 0;
  margin: 0;
}


.navbar {
    --bs-navbar-padding-x: 0;
    --bs-navbar-padding-y: 0rem !important;
}


        /* Custom Header Styles */
        :root {
            --primary-color: #126086;
            --secondary-color: #0b557a;
            --text-color: #333;
            --light-color: #ffffff;
        }

        body {
            font-family: 'Arial', sans-serif;
        }

        /* Top Bar Styles */
        .top-bar {
            background-color: var(--light-color);
            /* padding: 15px 0; */
        }

        .trust-logo {
            max-height: 80px;
        }
        
        .trust-name {
            color: #00609E;
font-family: Playfair;
font-size: 2rem;
font-style: normal;
font-weight: 600;
line-height: normal;
text-transform: uppercase;
            margin: 0;
        }
        
      .trust-name2 {
            color: #00609E;
font-family: Playfair;
font-size: 1.3rem;
font-style: normal;
font-weight: 600;
line-height: normal;
margin-left: 20px;
        }

        .contact-btn {
            display: flex;
            align-items: center;
            justify-content: flex-end;
        }
        
        .phone-number {
            color: var(--text-color);
            font-size: 1.2rem;
            font-weight: 500;
            margin-right: 15px;
        }
        
        .appointment-btn {
            background-color: transparent;
            color: var(--primary-color);
           
            border-radius: 50px;
            padding: 10px 20px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .appointment-btn:hover {
            background-color: var(--primary-color);
            color: white;
        }
        
        /* Navigation Bar Styles */
        .main-nav {
            background-color: var(--primary-color);
            padding: 0;
            /* height: 30vh; */
           align-items: start;
        }
        
        .nav-item .nav-link {
            color: white;
           text-align: center;
font-family: "Plus Jakarta Sans";
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: normal;
            padding: 20px 25px;
            transition: all 0.3s ease;
            margin-right: 40px;
        }
        
        .nav-item .nav-link:hover, 
        .nav-item .nav-link.active {
            /* background-color: var(--secondary-color); */
            color: white;
        }
        
        .nav-item:first-child .nav-link {
            /* border-bottom: 3px solid white; */
        }
        
        .search-box {
            background: white;
            border-radius: 30px;
            padding: 5px 20px;
            width: 30%;
        }
        
        .search-box input {
            border: none;
            background: transparent;
            width: 100%;
            padding: 5px;
            outline: none;
        }
        
        /* Banner/Slider Styles */
        .banner-slider {
            position: relative;
            overflow: hidden;
            margin-top: -110px;
        }
        
        .banner-slide {
            height: 450px;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background: rgba(0,0,0,0.5);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            cursor: pointer;
            z-index: 10;
        }
        
        .slider-prev {
            left: 20px;
        }
        
        .slider-next {
            right: 20px;
        }
        
        .slider-pagination {
            position: absolute;
            bottom: 20px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 10px;
        }
        
        .pagination-dot {
            width: 12px;
            height: 12px;
            background: rgba(255,255,255,0.5);
            border-radius: 50%;
        }
        
        .pagination-dot.active {
            background: white;
        }
        
        /* Mobile Navigation */
        .mobile-menu-toggle {
            color: var(--primary-color);
        }

     

        @media (max-width: 992px) {
            .trust-name {
                font-size: 1.2rem;
            }
            
            .phone-number {
                font-size: 1rem;
            }
            
            .appointment-btn {
                padding: 8px 15px;
                font-size: 0.9rem;
            }
            
            .desktop-nav {
                display: none;
            }
            
            .mobile-nav {
                display: block;
            }
                 .banner-slider {
            margin-top: 10px;
        }
        }
        
        @media (min-width: 993px) {
 
        

            .mobile-nav {
                display: none;
            }
        }
        
        @media (max-width: 768px) {


            .full-button-in-phone {
                width: 100%;
            }
            .trust-name {
                display: none;
            }
            
            .top-actions {
                width: 100%;
                justify-content: space-between;
                margin-top: 10px;
            }
            
            .banner-slide {
                height: 350px;
            }
        }



 
    /* Mobile Navigation Styles */



    .mobile-nav {
        background-color: white;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-menu-toggle {
        background: none;
        border: none;
        color: #126086;
        font-size: 1.5rem;
        cursor: pointer;
        padding: 8px;
        border-radius: 4px;
        transition: all 0.3s ease;
    }

    .mobile-menu-toggle:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.8);
        z-index: 9999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu-content {
        position: absolute;
        top: 0;
        right: 0;
        width: 300px;
        max-width: 85vw;
        height: 100vh;
        background: white;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
        transform: translateX(100%);
        transition: all 0.3s ease;
        overflow-y: auto;
    }

    .mobile-menu-overlay.active .mobile-menu-content {
        transform: translateX(0);
    }

    .mobile-menu-header {
        /* padding: 20px; */
        /* text-align: right; */
        /* border-bottom: 1px solid rgba(0, 0, 0, 0.1); */
    }

    .mobile-menu-close {
        background: none;
        border: none;
        font-size: 1.5rem;
        color: #333;
        cursor: pointer;
        padding: 8px;
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .mobile-menu-close:hover {
        background-color: rgba(0, 0, 0, 0.1);
    }

    .mobile-menu-body {
        padding: 20px;
    }

    .mobile-menu-items {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobile-menu-items li {
        margin-bottom: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }


    .mobile-menu-items a {
        display: block;
        padding: 15px 0;
        color: #126086;
        text-decoration: none;
        font-weight: 500;
        font-size: 1rem;
        transition: all 0.3s ease;
    }

    .mobile-menu-items a:hover {
        color: #126086;
        padding-left: 10px;
    }

    .mobile-menu-contact {
        margin-top: 30px;
        padding: 20px 0;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    .contact-info {
        display: flex;
        align-items: center;
        color: #126086;
        font-weight: 600;
        /* margin-bottom: 20px; */
    }

    .contact-info i {
        margin-right: 10px;
        color: #126086;
    }

    .mobile-book-btn {
        width: 100%;
        padding: 12px 20px;
        background-color: #126086;
        color: white;
        border: none;
        border-radius: 25px;
        font-weight: 600;
        font-size: 1rem;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .mobile-book-btn:hover {
        background-color: #126086;
        transform: translateY(-2px);
    }

    .mobile-menu-footer {
        margin-top: 30px;
        padding: 20px 0;
        /* border-top: 1px solid rgba(0, 0, 0, 0.1); */
        text-align: center;
    }

    .mobile-logo-footer {
        margin-bottom: 15px;
    }

    .mobile-copyright {
        color: #666;
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .mobile-copyright p {
        margin: 2px 0;
    }

    .thyo-link {
        color: #126086;
        font-weight: 600;
    }

    /* Prevent body scroll when menu is open */
    body.mobile-menu-open {
        overflow: hidden;
    }

    /* Responsive adjustments */
    @media (max-width: 576px) {
        .mobile-menu-content {
            width: 100%;
            max-width: 100%;
        }
    }






    header .nav-link {
        color: #2c3376;
        font-size: 1rem;
        /* margin-right: 1.5rem; */
        transition: color 0.2s;
    }

    header .nav-link.active,
    header .nav-link:hover {
        color: #1a245e;
        text-decoration: underline;
        font-weight: bold;
    }

    @media (max-width: 767.98px) {

    .border-left-class{
        border-left: none !important;
    }

        header .container-fluid {
            flex-direction: column;
            align-items: flex-start;
        }

        header h2 {
            font-size: 1.3rem;
        }

        header img {
            height: 40px;
        }

        .consultation1{
font-size:2rem !important; 
}
.consultation2{
font-size:1rem !important;
}

.consultation3{
width: 100%;
align-items: center;
 font-size:1rem !important;
 background:#fff; 
color:#106e92;
  box-shadow:0 2px 8px rgba(16,110,146,0.08);

}
    }
   
.consultation1{
font-size:2.5rem; 
line-height:1.2;
}
.consultation2{
font-size:1.3rem;
}

.consultation3{
background:#fff; 
color:#106e92;
 font-size:1.25rem;
  box-shadow:0 2px 8px rgba(16,110,146,0.08);
}
.consultation3:hover{
background:#67BC45; 
color:#106e92;
border: 1px solid white;
color: white;
 font-size:1.25rem;
  box-shadow:0 2px 8px rgba(16,110,146,0.08);
}

    .help-section-card{
        display: flex;
height: 96px;
padding: 24px 55.65px;
justify-content: center;
align-items: center;

gap: 11.034px;
flex: 1 0 0;
border-radius: 12px;
background: #00609E ;
    }


    .help-section-card-text{
        color: #FCFEFE;
font-family: "Plus Jakarta Sans";
font-size: 24px;
font-style: normal;
font-weight: 600;
line-height: 140%; /* 33.6px */
    }

    .help-section-text2{
        color: #67BC45;
font-family: "PT Serif";
font-size: 30px;
font-style: normal;
font-weight: 700;
line-height: normal; /* 44.8px */
    }


    .help-section-text3{
        color: #FCFEFE;
text-align: center;
font-family: "Work Sans";
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: 140%; /* 28px */
    }


    .card-title{
        color: #00609E;
font-family: "Plus Jakarta Sans";
font-size: 26px;
font-style: normal;
font-weight: 600;
line-height: normal;
    }

    .card-text{
        color: #838BA1;
text-align: justify;

/* Body */
font-family: "Work Sans";
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 140%; /* 22.4px */
    }



    .medical-problem-text1{
color: #1E232C;

font-family: "Plus Jakarta Sans";
    }

      .medical-problem-text2{
color: #838BA1;

font-family: "Work Sans";
    }

    .border-left-class{
        border-left: 1px solid #FFF;
    }






  /* What We Offer Section Styles */
  .what-we-offer .nav-pills .nav-link {
    background-color: #f8f9fa;
    color: #333;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
    text-align: left;
  }
  
  .what-we-offer .nav-pills .nav-link:hover {
    background-color: rgba(16, 110, 146, 0.1);
  }
  
  .what-we-offer .nav-pills .nav-link.active {
    background-color: #00609E;
    color: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  
  .what-we-offer .nav-pills .nav-link.active .icon-wrapper {
    color: white !important;
  }
  
  /* For mobile view */
  @media (max-width: 767px) {

    .font-size2{
        font-size:2.3rem !important;
    }

     .font-size3{
        font-size:1.8rem !important;
    }
      .font-size4{
        font-size:1.6rem !important;
    }

      .font-size5{
        font-size:1.7rem !important;
    }

    
    




    .help-section-card-text{
font-size: 18px;
    }


    .help-section-card{
justify-content: space-between;
    }

    .what-we-offer .nav-pills {
      display: flex;
      flex-wrap: nowrap;
      overflow-x: auto;
      padding-bottom: 1rem;
    }
    
    .what-we-offer .nav-pills .nav-link {
       min-width: 243px;
        white-space: nowrap;
        margin-right: 25px;
    }
    
    .what-we-offer .nav-pills {
      flex-direction: row !important;
    }
  }




.medical-card {
  transition: background 0.3s, color 0.3s;
  cursor: pointer;
}
.medical-card1:hover,
.medical-card1.active-card {
   background-image: url("../images/img/Alcohol De-Addiction.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* background: #67BC45 !important; */
  color: #fff !important;
}

.medical-card2:hover,
.medical-card2.active-card {
   background-image: url("../images/img/Drugs De-Addiction.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* background: #67BC45 !important; */
  color: #fff !important;
}

.medical-card3:hover,
.medical-card3.active-card {
   background-image: url("../images/img/Marijuana.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* background: #67BC45 !important; */
  color: #fff !important;
}


.medical-card4:hover,
.medical-card4.active-card {
   background-image: url("../images/img/Whitener.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* background: #67BC45 !important; */
  color: #fff !important;
}

.medical-card5:hover,
.medical-card5.active-card {
   background-image: url("../images/img/Smoking Addiction.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* background: #67BC45 !important; */
  color: #fff !important;
}


.medical-card6:hover,
.medical-card6.active-card {
   background-image: url("../images/img/Stress%20Management.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* background: #67BC45 !important; */
  color: #fff !important;
}





.medical-card:hover h4,
.medical-card.active-card h4 {
  color: #fff !important;
}
.medical-card:hover p,
.medical-card.active-card p {
  color: #fff !important;
}
.medical-card img {
  background: #f7f7f7;
  border-radius: 16px;
  padding: 10px;
}





.excellence-card {
  transition: box-shadow 0.3s;
}
.excellence-card:hover {
  box-shadow: 0 8px 32px rgba(16,110,146,0.10), 0 1.5px 8px rgba(92,184,92,0.10);
}



@media (max-width: 991px) {
  .doctor-contact-section .p-4 {
    border-radius: 0.5rem;
  }
  .doctor-contact-section h2 {
    font-size: 1.5rem !important;
  }
  .doctor-contact-section p {
    font-size: 1.1rem !important;
  }
}



.faq-accordion .accordion-item {
  background: transparent;
  border: none;
}
.faq-accordion .accordion-button {
  box-shadow: none !important;
  border: none;
  border-radius: 12px !important;
}
.faq-accordion .accordion-button:not(.collapsed) {
  color: #67BC45;
  font-weight: 700;
  border-left: 4px solid #67BC45;
  background: #f8fff5;
}
.faq-accordion .accordion-body {
  background: #f8fff5;
  border-radius: 0 0 12px 12px;
  font-size: 1.1rem;
}
.faq-accordion .faq-active .accordion-button {
  color: #67BC45 !important;
  font-weight: 700;
  border-left: 4px solid #67BC45;
  background: #f8fff5 !important;
}
@media (max-width: 767px) {
  .faq-accordion .accordion-button {
    font-size: 1rem;
    padding: 0.75rem 1rem;
  }
  .faq-accordion .accordion-body {
    font-size: 1rem;
    padding: 1rem;
  }
}





.gallery-thumb-card {
  height: 220px;
  cursor: pointer;
  transition: box-shadow 0.3s, transform 0.3s;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.gallery-thumb-card:hover {
  box-shadow: 0 8px 32px rgba(103,188,69,0.15);
  transform: translateY(-4px) scale(1.03);
}
.gallery-thumb-img {
  object-fit: cover;
  height: 100%;
  transition: transform 0.4s;
}
.gallery-thumb-card:hover .gallery-thumb-img {
  transform: scale(1.07);
}
.gallery-thumb-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 60px;
  background: linear-gradient(0deg, rgba(0,0,0,0.55) 80%, rgba(0,0,0,0.0) 100%);
  color: #fff;
  font-size: 1.1rem;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
}



.dropdown-menu-mobile {
  list-style: none; /* Removes bullet points */
  padding-left: 0;
  margin-bottom: 0;
}
.dropdown-menu-mobile.show { display: block !important; animation: fadeInDown 0.3s; }
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-10px);}
  to { opacity: 1; transform: translateY(0);}
}
.dropdown-menu-mobile .dropdown-item:hover {
  background: #f6f7fa;
  color: #00609E;
  font-weight: 500;
}


footer {
  font-family: 'Arial', sans-serif;
}
footer h3, footer h5 {
  color: #fff;
}
footer .form-control {
  border: none;
  font-size: 1.1rem;
}
footer .form-control:focus {
  box-shadow: none;
}
footer .btn-success {
  background: #5cb85c;
  border: none;
}
footer .btn-success:hover {
  background: #4cae4c;
}
footer ul li a:hover {
  text-decoration: underline;
  color: #5cb85c;
}
@media (max-width: 991px) {
  /* footer .row > div {
    margin-bottom: 2rem;
  } */
}
@media (max-width: 767px) {
 
  footer .form-control, footer .btn-success {
    height: 44px !important;
    font-size: 1rem;
  }
  footer .mt-4 {
    font-size: 1.2rem;
  }
}






.footer-bottom-bar a:hover {
  text-decoration: underline;
  color: #5cb85c !important;
}
@media (max-width: 767px) {

    .footer-class-2{
        font-size: 0.8rem !important;
    }
  .footer-bottom-bar .row > div {
    font-size: 0.95rem;
    margin-bottom: 8px;
  }
  .footer-bottom-bar img {
    width: 24px !important;
    height: 15px !important;
    margin-left: 6px !important;
  }
}




  /* Modal Animation */
  .modal.fade .modal-dialog {
    transition: transform 0.3s ease-out;
    transform: scale(0.95);
  }
  
  .modal.show .modal-dialog {
    transform: scale(1);
  }
  
  /* Form Styling */
  #inquiryForm .form-control,
  #inquiryForm .form-select {
    border: 1px solid #dee2e6;
    border-radius: 10px;
  }
  
  #inquiryForm .form-control:focus,
  #inquiryForm .form-select:focus {
    border-color: #5cb85c;
    box-shadow: 0 0 0 0.25rem rgba(92, 184, 92, 0.25);
  }
  
  /* Button Animation */
  #inquiryBtn {
    animation: pulse-btn 2s infinite;
    transition: all 0.3s ease;
  }
  
  #inquiryBtn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 15px rgba(0,0,0,0.1) !important;
    animation: none;
  }
  
  @keyframes pulse-btn {
    0% {
      box-shadow: 0 0 0 0 rgba(92, 184, 92, 0.7);
    }
    70% {
      box-shadow: 0 0 0 10px rgba(92, 184, 92, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(92, 184, 92, 0);
    }
  }
  
  /* Responsive adjustments */
  @media (max-width: 767px) {
    #inquiryBtn {
      padding: 10px 15px !important;
      bottom: 80px !important;
    }
    
    #inquiryBtn span {
      display: none;
    }
    
    #inquiryBtn i {
      font-size: 1.2rem;
    }
  }

