
body{
    font-family: "Inter", sans-serif;
    padding: 0;
    margin: 0;
    overflow-x: hidden !important;
}
h1 {
    font-family: "Inter", sans-serif;
}
p{
    color: #000;
}
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

/***social media icons  Button Start ***/
.btn-light:hover{
    background-color: #196d69;
    color: #fff;
}
.btn {
   
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.common_button_orangebg {
    display: inline-block;
    padding: 0.75rem 1.25rem;
    color: #fff !important;
    border: 2px solid rgb(25, 109, 105);
    font-size: 1rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  
  .common_button_orangebg:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(25, 109, 105);
    color:#fff;
    z-index: -2;
  }
  
  .common_button_orangebg:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #FFF;
    color:rgb(25, 109, 105) ;
    transition: all 0.3s;
    z-index: -1;
  }
  
  .common_button_orangebg:hover {
    color: rgb(25, 109, 105) !important;
  }
  
  .common_button_orangebg:hover:before {
    width: 100%;
  }
  .btn-primary {
    color: #000;
    background-color: rgb(25, 109, 105);
    border-color: rgb(25, 109, 105);
}
.btn_btn-primary{
    color: #000;
    background-color: transparent;
    border-color: rgb(25, 109, 105);  
}
.card_border_common{
    border:2px solid  rgb(25, 109, 105);  
}
/* .btn.btn-primary {
    box-shadow: inset 0 0 0 0 rgb(25, 109, 105);
}

.btn.btn-primary:hover {
    box-shadow: inset 300px 0 0 0 rgb(25, 109, 105) !important;
    color: #fff !important;
}

.btn.btn-light {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-light:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-primary);
    color:#fff !important;
}

.btn-hover {
    transition: 0.5s;
}

.btn-hover:hover {
    color: rgb(25, 109, 105) !important;
} */

/*** Section Title Start ***/

.section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}
.section-titles {
    max-width: 900px;
    text-align: justify;
    margin: 0 auto;
}

.section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: rgb(25, 109, 105);
}

.section-title .sub-style::before {
    
    width: 100px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-left: -100px;
    border: 1px solid var(--bs-primary) !important;
}

.section-title .sub-style::after {
   
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: 5px;
    margin-left: -50px;
    border: 1px solid var(--bs-primary) !important;
}

.sub-title {
    position: relative;
    display: inline-block;
    /* text-transform: uppercase; */
    color:rgb(25, 109, 105);
}

.sub-title::before {

    width: 100px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-right: -100px;
    
}

.sub-title::after {
   
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: 8px;
    margin-right: -50px;
  
}


/*** Topbar Start ***/
.fixed-top .container {
    transition: 0.5s;
}

.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--bs-primary) !important;
}

.topbar a,
.topbar a i {
    transition: 0.5s;
}
.navbar-light .navbar-nav .nav-link 
.topbar a:hover,
.topbar a i:hover {
    color: rgb(25, 109, 105) !important;
}


@media (max-width: 576px) {
    .topbar {
        display: none;    
    }
}
@media (max-width: 1024px) and (min-width: 678px) {
    .navbar-light .navbar-nav .nav-link {
        position: relative;
        margin-right: 13px !important;
        padding: 35px 0;
        color: rgb(25, 109, 105) !important;
        font-size: 11px !important;
        font-weight: 400;
        outline: none;
        transition: .5s;
    }
    .arrow_btns{
        font-size: 12px !important;
    }
}
/*** Topbar End ***/


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 18px;
    padding: 35px 0;
    color: rgb(25, 109, 105) !important;
    font-size: 16px;
    font-weight: 400;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color:#000 !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: rgb(25, 109, 105) !important;
}

.navbar-light .navbar-brand img {
    max-height: 57px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: var(--bs-white);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--bs-dark) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: var(--bs-light) !important;
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--bs-primary);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: calc(100% - 2px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}
/*** Carousel Hero Header Start ***/
.header-carousel {
    position: relative; 
}

.header-carousel .owl-nav .owl-prev {
    position: absolute;
    width: 70px;
    height: 70px;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: var(--bs-primary);
    color: var(--bs-white);
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 70px;
    height: 70px;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: var(--bs-primary);
    color: #fff;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 150px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}

@media (max-width: 576px) {
    .header-carousel .owl-nav .owl-prev,
    .header-carousel .owl-nav .owl-next {
        /* top: 630px; */
        transition: 0.5s;
        display : none;
    }

    .header-carousel .header-carousel-item .carousel-caption .carousel-caption-content {
        width: 95% !important;
    }
 
}

.header-carousel .header-carousel-item,
.header-carousel .header-carousel-item img {
    position: relative;
    width: 100%;
    /* height: 105vh; */
    margin-top: 95px;
    display: block;
    object-fit: fill;
    transition: 0.5s;

}

@media (max-width: 992px) {
    .header-carousel .header-carousel-item,
    .header-carousel .header-carousel-item img {
        margin-top: 0;
        transition: 0.5s;
    }

}

@media (min-width: 992px) {
    .header-carousel .owl-nav .owl-prev,
    .header-carousel .owl-nav .owl-next {
        margin-top: 50px;
    }
}

.header-carousel .header-carousel-item .carousel-caption {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
}

.header-carousel .header-carousel-item .carousel-caption .carousel-caption-content {
    position: relative;
    width: 75%;
    
}
/*** Carousel Hero Header End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/baneerimg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 216px 0 104px 0;
}

.bg-breadcrumb .breadcrumb-item a {
    color: var(--bs-white) !important;
}
/*** Single Page Hero Header End ***/


/*** Service Start ***/
.service .service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .2) ;
}

.service .service-item .service-img {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service .service-item .service-img img {
    transition: 0.5s;
}

.service .service-item .service-img::before {
    width: 100%;
    height: 0;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    transition: 0.5s;
    z-index: 5;
    
}

.service .service-item:hover .service-img::before {
    height: 100%;
    background: rgba(25, 109, 105, 0.3);
}

.service .service-item .service-img:hover img {
    transform: scale(1.3);
}

.service .service-item .service-content {
    position: relative;
    z-index: 2;

}

.service .service-item .service-content::before {
    width: 100%;
    height: 8px;
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: rgb(25, 109, 105);
    transition: 0.5s;
    z-index: 3;
}

.service .service-item:hover .service-content::before {
    background:rgb(25, 109, 105);
    height: 100%;
}

.service .service-item .service-content .service-content-inner {
    transition: 0.5s;
}


.service .service-item:hover .service-content .service-content-inner {
    position: relative;
    color: var(--bs-white) !important;
    z-index: 9;
}
.service .service-item:hover .service-content .service-content-inner h5 {
    color: var(--bs-secondary);
}

/*** Service End ***/

/*** About Start ***/
.about .about-img {
    position: relative;
    overflow: hidden;
    height: 100%;
    border-radius: 10px;
}
.about_us_section ul li{
    padding-bottom: 7px;
}
.about .about-img .about-img-inner {
    position: absolute;
    left: 0; 
    bottom: 0; 
    border: 10px solid; 
    border-color: var(--bs-white) var(--bs-white) var(--bs-white) var(--bs-white);
    border-radius: 50%;

}

.about .about-img .about-experience {
    position: absolute;
    top: 125px; 
    left: -125px; 
    transform: rotate(-90deg);
    background: transparent;
    color: var(--bs-primary);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 4px;
}

/*** About End ***/

/*** Feature Start ***/
.feature .feature-item {
    position: relative;
    display: flex;
    border: 1px solid var(--bs-primary);
    border-radius: 10px;
    background: var(--bs-light);
    transition: 0.5s;

}

.feature .feature-item::before {
    width: 0;
    height: 100%;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    /* border-radius: 10px; */
    transition: 0.5s;
}
.feature-item {
    position: relative;
    overflow: hidden;
    background: #fff;
    /* border-radius: 15px; */
    transition: transform 0.3s ease;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: #007bff61; /* Light blue overlay */
    transform: skew(-20deg);
    transition: transform 0.5s ease, opacity 0.5s ease;
    z-index: 0;
    opacity: 0;
}

.feature-item:hover::before {
    transform: skew(-14deg) translateX(20%);
    opacity: 1;
}

.feature-item > * {
    position: relative;
    z-index: 1;
}
.feature .feature-item:hover::before {
    width: 100%;
    /* background: var(--bs-primary); */
}
.feature-content p{
    text-align: center;
    white-space:normal;
}

.feature .feature-item .feature-icon {
    display: inline-flex;
    border-radius: 10px;
    transition: 0.5s;
}

.feature .feature-item:hover .feature-icon {
    position: relative;
    z-index: 2;
}

.feature .feature-item:hover .feature-content {
    position: relative;
    color: var(--bs-white);
    z-index: 2;
}

.feature .feature-item:hover .feature-content h5 {
    color: var(--bs-dark);
}

/*** Feature End ***/
/* *******fees_structure_card************ */
.fees_structure_card{
    background-color: #196d65;
  
}
.fees_structure_card ul li{
    font-family: "Inter", sans-serif;
}
.fees_structure_table td{
    padding: 10px;
    color: #000;
  }
  .fees_structure_table th{
    color: #000;
    padding: 10px;
    /* font-weight: 500; */
  }

/* *****fees_structure_card***************** */
/* **************management commitee*********************** */
.profile-card-5 {
    margin-top: 20px;
 }
 
 .profile-card-5 .btn {
    border-radius: 2px;
    text-transform: uppercase;
    font-size: 12px;
    padding: 7px 20px;
 }
 
 .profile-card-5 .card-img-block {
    width: 91%;
    margin: 0 auto;
    position: relative;
    top: -20px;
 }
 
 .profile-card-5 .card-img-block img {
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.63);

 }
 
 .profile-card-5 h5 {
    color: #4e5e30;
    font-weight: 600;
 }
 
 .profile-card-5 p {
    /* font-size: 14px; */
    /* font-weight: 300; */
 }
 
 .profile-card-5 .btn-primary {
    background-color: #4e5e30;
    border-color: #4e5e30;
 }
/* **************management commitee*********************** */
 
/*** Appointment Start ***/
.appointment {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url(../img/carousel-2.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.appointment .appointment-form {
    background: rgba(239, 162, 134, 0.3);
}

.appointment .appointment-form .btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.appointment .appointment-form .btn.btn-primary:hover {
    box-shadow: inset 600px 0 0 0 var(--bs-light) !important;
    color:#fff !important;
}
/*** Youtube Video start ***/
.video {
    position: relative;
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-sizing: content-box;
    display: block;
    width: 33px;
    height: 44px;
    border-radius: 50%;
    transition: 0.5s;
    

}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 115px;
    height: 115px;
    background: var(--bs-primary);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
    transition: 0.5s;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--bs-secondary);
    border-radius: 50%;
    transition: all 300ms;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 33px solid var(--bs-white);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
    margin-left: 5px;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #ffffff;
    background: #000000;
    opacity: 1;
}
/*** Youtube Video End ***/
/*** Appointment End ***/


/*** Team Start ***/
.team .team-item .team-img {
    position: relative;
    overflow: hidden;
}

.team .team-item .team-img::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    transition: 0.5s;
}

.team .team-item .team-img .team-icon {
    position: absolute;
    bottom: -125px;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.5s;
}

.team .team-item .team-img:hover .team-icon {
    margin-bottom: 145px;
}

.team .team-item:hover .team-img::before {
    background: rgba(21, 185, 217, .3);
}

.team .team-item .team-content {
    color: var(--bs-primary);
    transition: 0.5s;
}

.team .team-item .team-content h5 {
    color: var(--bs-secondary);
    transition: 0.5s;
}

.team .team-item:hover .team-content h5 {
    color: var(--bs-dark);
}

.team .team-item:hover .team-content {
    background: var(--bs-primary);
    color: var(--bs-white);
}
/*** Team End ***/


/*** testimonial Start ***/
.testimonial {
    background: linear-gradient(rgba(21, 185, 217, 0.9), rgba(21, 185, 217, 0.9)), url(../img/carousel-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.testimonial .testimonial-item .testimonial-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 10px;
    background: transparent;
}

.testimonial .testimonial-item .testimonial-inner .testimonial-inner-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 5px solid var(--bs-white);
}

.testimonial .testimonial-carousel.owl-carousel {
    position: relative;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev {
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: var(--bs-light);
    color: var(--bs-primary);
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: var(--bs-light);
    color: var(--bs-primary);
    transition: 0.5s;
}


.testimonial .testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 100px 0 0 0 var(--bs-primary) !important;
    color: var(--bs-white) !important;
}


@media (max-width: 900px) {
    .testimonial .testimonial-carousel .owl-nav .owl-prev {
        margin-top: -190px;
        margin-left: 40px;
    }

    .testimonial .testimonial-carousel .owl-nav .owl-next {
        margin-top: -190px;
        margin-right: 40px;
    }
    
}

.testimonial-carousel .owl-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 15px;
    border: 1px solid var(--bs-white);
    background: transparent;
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 20px;
    height: 20px;
    background: var(--bs-secondary) !important;
}

.testimonial-carousel .owl-dots .owl-dot span {
    position: relative;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot span::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 1px;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-white);
}

.testimonial .testimonial-carousel .testimonial-item .testimonial-inner p.fs-7 {
    transition: 0.5s;
}

@media (min-width: 900px) {
    .testimonial .testimonial-carousel .testimonial-item .testimonial-inner p.fs-7 {
        font-size: 20px;
    }
}


/* Testimonial Section Title Start */
.testimonial .section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.testimonial .section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.testimonial .section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-left: -100px;
    border: 1px solid var(--bs-white) !important;
}

.testimonial .section-title .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: 5px;
    margin-left: -50px;
    border: 1px solid var(--bs-white) !important;
}

.testimonial .section-title .sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.testimonial .section-title .sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-right: -100px;
    border: 1px solid var(--bs-white) !important;
}

.testimonial .section-title .sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: 8px;
    margin-right: -50px;
    border: 1px solid var(--bs-white) !important;
}
/*** Testimonial End ***/


/*** Blog Start ***/
.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    transition: 0.5s;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item .blog-img:hover img {
    transform: scale(1.3);
}

.blog .blog-item:hover .blog-img::after {
    background: rgba(21, 185, 217, .5);
}

.blog .blog-item .blog-centent {
    background: var(--bs-light);
    border: 1px solid var(--bs-primary);
    border-top: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
/*** Blog End ***/


/*** Contact Start ***/
.contact {
    background: linear-gradient(rgb(17 18 18 / 50%), rgb(18 18 18 / 50%)), url(../);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}


.contact .contact-form .btn.btn-light {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.contact .contact-form .btn.btn-light:hover {
    box-shadow: inset 600px 0 0 0 var(--bs-primary) !important;
    color: var(--bs-white) !important;
}

.contact .contact-form .form-floating input,
.contact .contact-form .form-floating textarea,
.contact .contact-form .form-floating label {
    color: var(--bs-light);
}



/* Testimonial Section Title Start */
.contact .section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.contact .section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.contact .section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-left: -100px;
    border: 1px solid var(--bs-white) !important;
}

.contact .section-title .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: 5px;
    margin-left: -50px;
    border: 1px solid var(--bs-white) !important;
}

.contact .section-title .sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.contact .section-title .sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-right: -100px;
    border: 1px solid var(--bs-white) !important;
}

.contact .section-title .sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: 8px;
    margin-right: -50px;
    border: 1px solid var(--bs-white) !important;
}
/*** Contact End ***/
/* ********message founder************ */
.text_color{
    color: #196d69;
}
  .card_border{
    box-shadow:rgba(25, 109, 105, 1) 2px -16px 32px -12px inset, rgba(25, 85, 88, 1) 0px 2px 22px -1px inset;
  }
  .founder_cards .card-title{
    color: #196d69;
  }
  .founder_cards .card{
    background-color: #196d69;
  }
  .founder_cards p{
    text-align: justify;
  }

 .profile-card-5 {
    margin-top: 20px;
    border: 2px solid #196d69;
    background: linear-gradient(135deg, rgb(25, 109, 105), rgb(8, 58, 58)) !important;
 }
 /* .profile-card-5{
    background-color: linear-gradient(135deg, rgb(25, 109, 105), rgb(8, 58, 58)) !important;

 } */
 .profile-card-5 .card-title{
    font-weight: 400;
 }
 .profile-card-5 .btn {
    border-radius: 2px;
    text-transform: uppercase;
    font-size: 12px;
    padding: 7px 20px;
 }
 
 .profile-card-5 .card-img-block {
    width: 64%;
    margin: 0 auto;
    position: relative;
    top: -20px;
 }
 
 .profile-card-5 .card-img-block img {
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.63);
 }
 
 .profile-card-5 h5 {
    color: #196d69;
    font-weight: 600;
 }
 

 
 .profile-card-5 .btn-primary {
    background-color: #196d69;
    border-color: #196d69;
 }
  
/* ********message founder************ */

/*** Footer Start ***/
.footer {
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url(../img/footerimg.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.footer .footer-item a {
    line-height: 25px;
    color: #fff;
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 25px;
}
.address a{
    line-height: 1.5 !important;
}


/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    background: var(--bs-dark) !important;
}
/*** copyright end ***/
.custom-orange {
    color: orange;
    font-weight: bold;
}
b {
    color: black;
}
.gallery-img {
    width: 261px;
    height: 196px;
    object-fit: cover; /* Ensures images fill the area without distortion */
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
}
.gallery-item {
    display: flex;
    justify-content: center;
}


.gallery-img:hover {
    transform: scale(1.1);
}
@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

.blink-text {
    animation: blink 1s infinite;
}
.goog-logo-link, 
.goog-te-gadget span, 
.goog-te-banner-frame {
    display: none !important;
}

.goog-te-gadget {
    font-size: 0 !important;
}
.flipped-phone {
    transform: scaleX(-1);
}
.gallery-img {
    cursor: pointer;
    width: 100%;
    height: auto;
    object-fit: cover;
}

@media (max-width: 768px) {
    .header-carousel-item img {
        max-height: 300px; /* Adjust based on your design */
        object-fit: cover;
    }
}
@media (max-width: 768px) {
    .carousel-caption {
        width: 90%; /* Make sure text fits well */
        padding: 5px;
    }
}
/* @media (max-width: 768px) {
    .carousel-caption-content {
        margin-bottom: 266px !important;
    }
} */
@media (max-width: 768px) {
    .header-carousel-item {
        height: auto !important;  /* Ensure the container wraps the image height */
        overflow: hidden;  /* Hide any extra space */
    }

    .header-carousel-item img {
        height: auto !important; /* Ensure the image scales properly */
        display: block; /* Remove any inline spacing issues */
    }

    .carousel-caption {
        bottom: 10% !important; /* Adjust positioning if needed */
    }
}
@media (max-width: 768px) {
    .header-carousel-item {
        height: auto !important;  /* Ensure the container wraps the image height */
        overflow: hidden;  /* Hide any extra space */
    }

    .header-carousel-item img {
        height: auto !important; /* Ensure the image scales properly */
        display: block; /* Remove any inline spacing issues */
    }

    .carousel-caption {
        bottom: 10% !important; /* Adjust positioning if needed */
    }
}

@media (max-width: 360px) {
    .navbar {
        padding: 10px 15px; /* Reduce padding for smaller screens */
    }

    .navbar-brand img {
        max-width: 120px; /* Adjust logo size */
        height: auto;
    }

    .navbar-toggler {
        font-size: 18px; /* Adjust hamburger menu size */
        padding: 5px 8px;
    }

    

    .navbar-nav .nav-item {
        padding: 5px 0; /* Reduce spacing between items */
    }

    .btn {
        padding: 8px 12px; /* Adjust button size */
        font-size: 14px;
    }
}
@media (max-width: 360px) {
    .carousel-caption {
        bottom: 10px !important; /* Adjust position */
        padding: 10px; /* Reduce padding */
        width: 100%; /* Ensure full width */
    }

    .carousel-caption-content {
        text-align: center; /* Center align text */
        font-size: 14px; /* Reduce text size */
    }

    .carousel-caption h1 {
        font-size: 20px !important; /* Reduce heading size */
        line-height: 1.2;
    }

    .carousel-caption p {
        font-size: 12px !important; /* Adjust paragraph size */
    }
}
/* Ensure header is fully responsive */
.bg-breadcrumb {
    width: 100%;
    min-height: 300px; /* Set a flexible height */
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .bg-breadcrumb {
        min-height: 200px; /* Reduce height for mobile */
        padding: 20px 0;
    }

    .bg-breadcrumb h1 {
        font-size: 2rem; /* Smaller font size for mobile */
    }
}

@media (max-width: 480px) {
    .bg-breadcrumb h1 {
        font-size: 1.8rem; /* Further reduce font size */
        margin-bottom: 10px;
    }
}
.accordion-button:not(.collapsed) {
    background-color: rgb(25, 109, 105);
    color: #fff;
  }
.our_page_icon{
    color: #003334;
}

 /* Container padding */

  /* Section Title */
  /* .sub-title {
   
    font-weight: 600;
    color: rgb(25, 109, 105);
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
  } */
  
  /* Accordion Item (like cards) */
  .accordion-item {
    border: 1px solid  rgb(25, 109, 105) !important;
    margin-bottom: 20px;
    border-radius: 8px !important;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .accordion-item:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  }
  
  /* Accordion Button */
  .accordion-button {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #333;
    padding: 18px 20px;
   
    transition: background 0.3s ease;
  }
  
  .accordion-button::after {
    transform: scale(1.3);
    color: rgb(25, 109, 105);
  }
  
  .accordion-button:not(.collapsed) {
    background-color: rgb(25, 109, 105);
    color: #fff;
  }
  
  .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
  }
  
  /* Accordion Body */
  .accordion-body {
    background: #fefefe;
    color: #444;
    padding: 20px;
    line-height: 1.6;
    font-size: 1rem;
    border-top: 1px solid #ddd;
  }
  
  /* Focus Style Removal */
  .accordion-button:focus {
    box-shadow: none;
  }
  .flip-card {
    background: linear-gradient(135deg, rgb(25, 109, 105), rgb(8, 58, 58));
    perspective: 1000px;
    width: 100%;
    height: 250px;
    border-radius: 15px;
  }
  
  .flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
  }
  
  .flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
  }
  
  .flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
  }
  
  .flip-card-front {
    background-color: transparent; /* Uses .flip-card gradient background */
    color: white;
  }
  
  .flip-card-back {
    background-color: white;
    color: rgb(25, 109, 105);
    transform: rotateY(180deg);
    border: 2px solid #196d69;
  }
  .icon-img {
    font-size: 4rem;
    color: inherit;
  }
  .service-img {
    /* height: 284px; */
    object-fit: cover;
    /* border-radius: 0.75rem; */
  }
  
  .service-card {
    border: 2px solid #196d69;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  }
  
  .service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(to top, rgba(25, 109, 105, 0.9), rgba(25, 109, 105, 0.3));
  }
  .services-img {
    height: 284px;
    object-fit: cover;
   
  }
  /* .service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
  } */

  .service-card {
    transition: transform 0.6s ease, box-shadow 0.6s ease;
    border-radius: 8px;
  }

  .service-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
  /* .service-card:hover{
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 2s ease forwards;
  } */
  /* @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  } */
  /* .service-card:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
  } */
  .service-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    transition: background 0.3s ease;
  }
  .service-overlay h5 {
    font-size: 1.25rem;
    letter-spacing: 0.5px;
  }
  
  .service-overlay p {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  .btn-outline-light:hover {
    background-color: #ffffff;
    color: #000;
    border-color: #ffffff;
  }
  .card-hover-gradient {
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease-in-out;
    border: 2px solid #196d65;
  }
  
  .card-hover-gradient::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(to bottom left, rgba(25, 109, 105, 0.9), rgba(25, 109, 105, 0.6));
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    z-index: 1;
    pointer-events: none;
    border-radius: 0.5rem; /* match card border radius */
  }
  
  .card-hover-gradient:hover::before {
    opacity: 1;
  }
  
  /* Change icon and text to white on hover */
  .card-hover-gradient:hover .card-title,
  .card-hover-gradient:hover .card-text,
  .card-hover-gradient:hover i {
    color: #fff !important;
    transition: color 0.3s ease-in-out;
  }
  .icon-circle {
    /* background-color: #d1f7f2; */
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(76, 175, 80, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
  }
  
  .symptom-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(76, 175, 80, 0.2);
  }
  
  .transition {
    transition: all 0.3s ease;
  }
  
  /* ********Volunteer page working pranali girme 16-04-2025*********** */
  .image-container {
    position: relative;
    overflow: hidden;
  }
  .image-container img {
    width: 100%;
    height: auto;
    display: block;
    height: 50vh;
  }
  .overlay-center {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #196d657a; /* optional dark overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 1rem;
  }
  /* ***********Volunteer page working pranali girme 16-04-2025*********** */
  /* *******************donate now******************************** */
  .donate_now .card{
    border:1px solid #196d65;
    color: #000;
  }