/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
 }

 #spinner.show {
     transition: opacity .8s 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;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    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: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn-primary-outline-0 {
    border: 0;
    color: var(--bs-white) !important;
}

.btn-light-outline-0 {
    border: 0;
    color: var(--bs-primary) !important;
}

.btn-primary-outline-0:hover {
    background: rgba(206,172,81,255) !important;
    color: var(--bs-white) !important;
}

.btn-light-outline-0:hover {
    background: rgba(206,172,81,255) !important;
    color: var(--bs-white) !important;
}

/*** Topbar Start ***/
.sticky-top {
    transition: 0.5s;
    background: var(--bs-white);
}

.topbar {
    padding: 10px 0;
/*    background: rgba(206,172,81,255) !important;*/


}

/*** Topbar End ***/

/*** Navbar Start ***/
.navbar .navbar-nav .nav-link {
    padding: 10px 15px;
    font-size: 16px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.sticky-top.bg-white .navbar .navbar-nav .nav-link:hover,
.sticky-top.bg-white .navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary);

}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    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;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: rgba(206,172,81,255);
    color: var(--bs-primary);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    border-radius: 10px !important;
    transition: .5s;
    opacity: 1;
}

@media (min-width: 1200px) {
    .navbar .navbar-collapse .border-top {
        border-top: none !important;
    }
}

#searchModal .modal-content {
    background: rgba(250, 250, 250, .6);
}
/*** Navbar End ***/


/*** Carousel Start ***/
.carousel-item {
    position: relative;
    min-height: 100vh;
}

    .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .carousel-item .carousel-caption {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        display: flex;
        align-items: center;
        justify-content: center; /* Center caption content vertically & horizontally */
        text-align: center;
        /* Optional background if you want overlay */
        /* background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)); */
        background-size: cover;
    }

.carousel-control-prev,
.carousel-control-next {
    opacity: 0;
}

    .carousel-control-prev .carousel-control-prev-icon,
    .carousel-control-next .carousel-control-next-icon {
        background: transparent;
    }

#carouselId .carousel-indicators {
    padding-bottom: 30px;
}

    #carouselId .carousel-indicators li {
        border-top: 10px solid var(--bs-white);
        border-bottom: 10px solid var(--bs-white);
        border-right: 5px solid var(--bs-white);
        border-left: 5px solid var(--bs-white);
        margin-right: 10px;
        border-radius: 10px;
        transition: 0.5s;
    }

        #carouselId .carousel-indicators li.active {
            background: var(--bs-primary);
            border-color: var(--bs-primary);
            border-right: 15px solid var(--bs-primary);
            border-left: 15px solid var(--bs-primary);
        }

/* Blink icon animation */
.blink-icon {
    animation: blink 1.2s infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Mobile responsiveness */
@media (max-width: 767.98px) {
    .carousel-item {
        min-height: 300px; /* smaller height on mobile */
    }

        .carousel-item img {
            height: 300px;
            position: absolute;
            object-fit: cover;
        }

        .carousel-item .carousel-caption > div {
            max-width: 100% !important;
            padding: 0 1rem;
        }

    .btn {
/*        padding: 0.6rem 1.5rem;*/
        font-size: 1rem;
        white-space: nowrap; /* keep button text in single line */
    }
}


.bg-breadcrumb {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../img/appointment-background.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
/*** Carousel End ***/


.bg-breadcrumb {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../img/appointment-background.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

/*** Services Start ***/
.services .services-item {
    transition: 0.5s;
}

.services .services-item:hover {
    background: var(--bs-primary) !important;
    border-color: rgba(206,172,81,255) !important;
}

.services .services-item:hover .services-content p,
.services .services-item:hover .services-content h3 {
    color: var(--bs-white);
    transition: 0.5s;
}

.services .services-item:hover .services-content a.btn {
    background: var(--bs-white);
    color: var(--bs-primary) !important;
}

.services .services-item:hover .services-content a.btn:hover {
/*    color: var(--bs-white) !important;*/
  color: #CEAC51 !important ;

}

.services .services-item .services-img {
    overflow: hidden;
}

.services .services-item .services-img img {
    transition: 0.5s;
}

.services .services-item .services-img img:hover {
    transform: scale(1.3);
}
/*** Services End ***/



/*** About Start ***/
/*** Youtube Video start ***/
.video {
    position: relative;
    padding-right: 70px; 
    padding-bottom: 70px;
    border-radius: 10px;
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -45%);
    margin-left: -35px;
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;

}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: rgba(206,172,81,255);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.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-primary);
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid var(--bs-white);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@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 ***/
/*** About End ***/


/*** Appointment  Start ***/
.appointment {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/appointment-background.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.appointment .appointment-form {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, .4));
    object-fit: cover;
    border-radius: 10px;
}

.appointment .appointment-time {
    background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, .2));
    object-fit: cover;
    border-radius: 10px;
}
/*** Appointment End ***/

/*** Counter Start ***/
.counter-section .counter-item .counter-content {
    position: relative;
    margin-bottom: 60px;
    background-image: linear-gradient(rgba(252, 152, 195, 0.3), rgba(255, 255, 255, 0.3), rgba(136, 76, 210, 0.3));
    border-radius: 48px;
    z-index: 9;
}

.counter-section .counter-item {
    text-align: center;
    background: rgba(255, 255, 255, .5) !important;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
    object-fit: cover;
    border-radius: 0 25% 0 25%;
}

.counter-section .counter-item .counter-content .svg-img {
    position: absolute;
    bottom: 0; 
    left: 50%; 
    transform: translateX(-50%); 
    margin-bottom: -50px; 
    margin-left: -45px; 
    transform: rotate(180deg);
}

.counter-section .counter-item .counter-quantity {
    width: 140px;
    height: 140px;
    border-radius: 75px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-primary);
}
/*** Counter End ***/


/*** Events Start ***/
.gallery .tab-class .nav-item {
    padding: 0 0 20px 0;
}
.gallery .tab-class .nav-item a.active {
    background: var(--bs-primary) !important;
}

.gallery .tab-class .nav-item a.active span {
    color: var(--bs-white) !important;
}

.gallery .gallery-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.gallery .gallery-img img {
    transition: 0.5s;
}

.gallery .gallery-img:hover img {
    transform: scale(1.3);
}

.gallery .gallery-img .gallery-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    transition: 0.5s;
    opacity: 0;
    z-index: 1;
}

.gallery .gallery-img .search-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
    z-index: 2;
    
}

.gallery .gallery-img:hover .gallery-overlay,
.gallery .gallery-img:hover .search-icon {
    opacity: 1;
}
/*** Events End ***/


/*** Pricing Start ***/
.pricing {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/appointment-background.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.pricing .pricing-item {
    color: var(--bs-white);
}

.pricing .pricing-item .pricing-content {
    background: rgba(255, 255, 255, 0.4);
}

.pricing .owl-carousel.pricing-carousel {
    position: relative;
}

.pricing .owl-carousel.pricing-carousel .owl-nav {
    position: absolute;
    top: -60px;
    right: 0;
    display: flex;
    font-size: 40px;
    color: var(--bs-white);

}

.pricing .owl-carousel.pricing-carousel .owl-nav .owl-prev {
    margin-right: 40px;
}

.pricing .owl-carousel.pricing-carousel .owl-nav .owl-prev,
.pricing .owl-carousel.pricing-carousel .owl-nav .owl-next {
    transition: 0.5s;
}

.pricing .owl-carousel.pricing-carousel .owl-nav .owl-prev:hover,
.pricing .owl-carousel.pricing-carousel .owl-nav .owl-next:hover {
    color: var(--bs-primary);
}
/*** Pricing End ***/

/*** Team Start ***/
.team .team-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.team .team-item .team-text {
    background: var(--bs-primary);
}

.team .team-item .team-social {
    position: absolute;
    top: -180px; 
    left: 20px; 
    opacity: 0;
    transition: 0.5s;
}

.team .team-item:hover .team-social {
    top: 20px; 
    left: 20px;
    opacity: 1;
}

.team .team-item .team-img {
    position: relative;
    width: 100%;
}

.team .team-item .team-img::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.3);
    overflow: hidden;
    width: 100%;
    height: 0;
    transition: 0.5s ease;
}

.team .team-item:hover .team-img::after {
    bottom: 0;
    height: 100%;
}

.team .team-item .team-text {
    transition: 0.5s;
}

.team .team-item:hover .team-text {
    background: rgba(206,172,81,255);
}
/*** Team End ***/

/*** testimonial Start ***/
.testimonial {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/testimonial-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.testimonial .testimonial-item {
    background: rgba(0, 0, 0, 0.4);
}

.testimonial .owl-carousel.testimonial-carousel {
    position: relative;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav {
    position: absolute;
    top: -60px;
    right: 0;
    display: flex;
    font-size: 40px;
    color: var(--bs-white);
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev {
    margin-right: 40px;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev,
.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-next {
    transition: 0.5s;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--bs-primary);
}
/*** testimonial end ***/

/*** Contact Start ***/
.contact {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/appointment-background.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.contact .contact-form {
    background: rgba(255, 255, 255, 0.6);
}
/*** Contact End ***/

/*** footer start ***/
.footer {
    background: var(--bs-dark);
}

.footer .footer-item a,
.footer .footer-item p {
    color: var(--bs-white);
    line-height: 40px;
/*    font-size: 17px;*/
    transition: 0.5s;
}

.footer .footer-item a:hover {
    letter-spacing: 2px;
    color: var(--bs-primary) !important;
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark) !important;
}
/*** copyright end ***/



/* Style.css PoPup ki hai  Model bana kar dali gai hai */
.modal-content {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.modal-header {
    background-color: rgba(206, 172, 81, 255);
    color: white;
    border-bottom: none;
    text-align: center;
    justify-content: center;
    position: relative;
    padding: 1.5rem;
}

.modal-title {
    font-weight: bold;
}

.modal-header .btn-close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    filter: brightness(100%);
}

.modal-body {
    padding: 2rem;
}

.form-control, .form-select {
    border-radius: 12px;
    margin-bottom: 1rem;
    border: 1px solid #ced4da;
}

.btn-whatsapp {
    background-color: #25d366;
    color: white;
    border-radius: 12px;
    margin-bottom: 10px;
    margin-top: 8px;
    font-weight: 600;
}

    .btn-whatsapp:hover {
        background-color: #1ebd5a;

    }

.btn-submit {
    background-color: #ffffff;
    border-color: rgba(206,172,81,255);
    color: #CEAC51;
  
}

    .btn-submit:hover {
        background-color: rgba(206, 172, 81, 255);
        color: white;
        border-radius: 12px;
        font-weight: 600;
    }

@media (max-width: 576px) {
    .modal-dialog {
        margin: 1rem;
    }
}

/*.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    margin-bottom: 250px;
    line-height: 2;
}*/


.blink-icon {
    animation: blink 1s infinite;
    margin-right: 8px;
    color: white; /* Icon color */
    background-color: #e91e63; /* Vibrant pink/red background */
    padding: 6px;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%; /* Perfect circle */
    box-shadow: 0 0 8px rgba(233, 30, 99, 0.6); /* Soft glow */
    font-size: 16px;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}




/* ===== Desktop Float Styles ===== */
/*.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 16rem;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    line-height: 2;
}*/

/*.float1 {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 10rem;
    right: 40px;
    background-color: #0000ffd6;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    line-height: 2;
}
*/
/* ===== Mobile Sticky Bottom Buttons ===== */
.mobile-floating-icons {
    display: none;
}

/* Visibility Control */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

/* ===== Mobile View Styles ===== */
@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: flex !important;
    }

    .mobile-floating-icons {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 20px;
        z-index: 9999;
        background: transparent;
    }

        .mobile-floating-icons .icon {
            width: 60px;
            height: 60px;
            font-size: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
            text-decoration: none;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

            .mobile-floating-icons .icon:hover {
                transform: scale(1.1);
                box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
            }

        .mobile-floating-icons .whatsapp {
            background-color: #25d366;
        }

        .mobile-floating-icons .call {
            background-color: #0085f3;
        }
}

/* Desktop-only floating buttons */
.float {
    position: fixed;
    bottom: 160px;
    right: 20px;
    background-color: #25d366;
    color: #fff;
    font-size: 38px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    z-index: 9999;
}

    .float:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
    }

.float1 {
    position: fixed;
    bottom: 90px; /* Adjust to sit above WhatsApp icon */
    right: 20px;
    background-color: #0085f3;
    color: #fff;
    font-size: 28px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    z-index: 9999;
    cursor: pointer;
}

    /* Hover effect */
    .float1:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
        background-color: #0071d9; /* Slightly darker on hover */
    }

    /* Focus accessibility */
    .float1:focus {
        outline: 2px solid #fff;
        outline-offset: 2px;
    }



/* Blink animation class */
.blink {
    animation: blink-animation 1s infinite;
}

@keyframes blink-animation {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* Centering and styling */
.icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}



@keyframes rotate360 {
    0%

{
    transform: rotate(0deg);
}

100% {
    transform: rotate(360deg);
}

}

.float1 i {
    animation: rotate360 5s linear infinite;
}


@keyframes rotate-border {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}



body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #fff8f4;
    color: #333;
}

.why-choose-us {
    padding: 60px 20px;
    background: #fff0e6;
    text-align: center;
}

    .why-choose-us h2 {
        font-size: 2em;
        margin-bottom: 40px;
        font-weight: 600;
        color: #a0522d;
    }

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.feature {
    background: #fff;
    border-radius: 10px;
    padding: 25px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    flex: 0 1 300px;
    transition: transform 0.3s;
}

    .feature:hover {
        transform: translateY(-5px);
    }

    .feature i {
        font-size: 36px;
        color: #d48b5f;
        margin-bottom: 15px;
    }

    .feature h3 {
        font-size: 1.2em;
        margin-bottom: 10px;
        color: #844c2f;
    }

    .feature p {
        font-size: 0.95em;
        line-height: 1.6;
        color: #555;
    }

/* Responsive Design */
@media (max-width: 768px) {
    .features {
        flex-direction: column;
        align-items: center;
    }

    .feature {
        width: 100%;
        max-width: 90%;
    }
}

/* FAQ Section Styles */
.faq-section {
    background-color: #fff0e6;
    padding: 60px 20px;
    font-family: 'Montserrat', sans-serif;
    color: #333;
}

    .faq-section h2 {
        font-size: 2em;
        font-weight: 600;
        color: #844c2f;
        margin-bottom: 40px;
    }

.accordion-button {
    background-color: #fff8f4;
    color: #333;
    font-weight: 500;
    box-shadow: none;
    border: 1px solid #e7c6b8;
    transition: background-color 0.3s ease, color 0.3s ease;
    border-radius: 10px;
}

    .accordion-button:not(.collapsed) {
        background-color: #ffd9bf;
        color: #000;
        box-shadow: inset 0 0 5px rgba(0,0,0,0.05);
    }

    .accordion-button:focus {
        box-shadow: none;
        border-color: #d86c2e;
    }

.accordion-item {
    border: none;
    background-color: transparent;
}

.accordion-body {
    background-color: #fff;
    border: 1px solid #f2d6c7;
    border-top: none;
    padding: 20px;
    border-radius: 0 0 10px 10px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f4f4;
}

.whychoose-carousel-section {
    padding: 60px 20px;
    background-color: #fff;
}

    .whychoose-carousel-section h2 {
        text-align: center;
        font-size: 2em;
        font-weight: 600;
        color: #a0522d;
        margin-bottom: 40px;
    }

.carousel-container {
    overflow: hidden;
    max-width: 1200px;
    margin: auto;
    position: relative;
}

.carousel-track {
    display: flex;
    animation: scrollCarousel 8s linear infinite;
}

@keyframes scrollCarousel {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


.carousel-card {
    flex: 0 0 100%;
    box-sizing: border-box;
    padding: 30px 20px;
    text-align: center;
    background: #fff;
    margin: 10px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

    .carousel-card i {
        font-size: 40px;
        color: #4CAF50;
        margin-bottom: 15px;
    }

    .carousel-card h3 {
        font-size: 20px;
        color: #222;
        margin-bottom: 10px;
    }

    .carousel-card p {
        font-size: 16px;
        color: #666;
    }

        .carousel-card p i {
            color: #e74c3c;
            margin-right: 6px;
        }

/* Responsive layout */
@media (min-width: 768px) {
    .carousel-card {
        flex: 0 0 33.3333%;
    }
}


/* Testimonial CSS*/

.testimonial-video-section {
    background: linear-gradient(135deg, #f5f0ec, #e8f5e9);
    position: relative;
}

.video-wrapper {
    max-width: 800px;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.star-btn:hover {
    background-color: #ffc107;
    color: #fff;
    transform: scale(1.05);
    transition: all 0.2s ease-in-out;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.custom-card {
    background: #fff;
    border: 3px solid transparent;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.3s ease;
    cursor: pointer;
    text-align: center;
    border-radius: 1.5rem; /* smooth rounded corners */
}

    .custom-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15), 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .custom-card.active {
        border-color: rgba(255, 255, 255, 0.08);
        box-shadow: 0 0 20px rgba(13, 110, 253, 0.4);
        background: #fefefe;
    }

.icon-wrapper {
    font-size: 48px;
    color: rgba(206, 172, 81, 255);
    width: 75px;
    height: 75px;
    margin: 0 auto;
    border-radius: 50%;
    /*    background: linear-gradient(135deg, #dbe9ff, #b3cfff);*/
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 15px rgb(13 110 253 / 0.3);
    transition: transform 0.3s ease;
}

.custom-card:hover .icon-wrapper {
    transform: scale(1.15) rotate(10deg);
}

@media (max-width: 767.98px) {
    .custom-card {
        padding: 3rem 2rem;
        border-radius: 1.25rem;
    }

    .icon-wrapper {
        width: 80px;
        height: 80px;
        font-size: 36px;
    }
}

.service-hover-group {
    transition: background-color 0.3s ease;
}

.service-hover-btn {
    transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
}

.service-hover-group:hover .service-hover-btn {
    background-color: #ffffff !important; /* White background */
    color: #0d6efd !important; /* Bootstrap primary blue text */
    border: 1px solid #CEAC51 !important; /* Blue border */
}


.custom-phone-link {
    color: #6A3717; /* Bootstrap's text-secondary color */
    text-decoration: none;
}

    .custom-phone-link:hover {
        color: #CEAC51;
    }

.step-circle {
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.25rem;
}

.hover-shadow:hover {
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.1) !important;
    transform: translateY(-4px);
    transition: all 0.3s ease;
}

.transition {
    transition: all 0.3s ease;
}


.tip-box {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 18px;
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

    .tip-box:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

.step-bubble {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
    color: white;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    animation: glow 2s ease-in-out infinite alternate;
}

.gradient-purple {
    background: linear-gradient(135deg, #8e2de2, #4a00e0);
}

.gradient-green {
    background: linear-gradient(135deg, #00c9a7, #92fe9d);
}

.gradient-orange {
    background: linear-gradient(135deg, #f7971e, #ffd200);
}

@keyframes glow {
    0% {
        box-shadow: 0 0 8px rgba(255,255,255,0.5);
    }

    100% {
        box-shadow: 0 0 20px rgba(255,255,255,0.9);
    }
}

.faq-button {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 12px !important;
    color: #4b3a00;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

    .faq-button:not(.collapsed) {
        background: linear-gradient(135deg, rgba(206, 172, 81, 1), rgba(255, 223, 99, 0.85));
        color: #2b1e00;
        box-shadow: 0 6px 14px rgba(0,0,0,0.25);
    }

.faq-item {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    transition: background-color 0.3s ease;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.faq-header {
    margin-bottom: 0.5rem !important; /* reduce from 3rem (mb-5) to 1.5rem */
}

/* Apply gold background on expanded item�s content */
.faq-collapse.show .faq-body {
    background: rgba(206, 172, 81, 0.15);
    border-radius: 0 0 16px 16px;
    border-top: 3px solid rgba(206, 172, 81, 0.8);
    font-weight: 500;
    transition: background-color 0.4s ease;
}

.faq-body {
    padding: 1rem 1.25rem;
    color: #3b2f00;
}

@media (max-width: 576px) {
    .faq-header.mb-5 {
        margin-bottom: 0.5rem !important;
    }

    .faq-subtitle {
        margin-bottom: 0.25rem !important;
    }

    .faq-accordion {
        margin-top: 0 !important;
    }

    .faq-item {
        margin-bottom: 0.5rem !important;
    }

    .faq-button {
        font-size: 0.9rem !important;
        padding: 0.5rem 1rem !important;
    }

    .faq-body {
        padding: 0.5rem 1rem !important;
        font-size: 0.85rem !important;
    }
}


.custom-btn {
    background-color: transparent;
    border: 2px solid #CEAC51;
    color: black;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .custom-btn:hover {
        background-color: #CEAC51;
        color: white;
    }


/* typing Book Appointment*/


.cursor {
    display: inline-block;
    margin-left: 2px;
    color: #000;
    animation: blink 0.7s steps(1) infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

/* custom-btn hover */
.custom-btn {
    background-color: transparent;
    border: 2px solid #CEAC51;
    color: black;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .custom-btn:hover {
        background-color: #CEAC51;
        color: white;
    }


/* appointment-icon hover */
.appointment-icon {
    transition: transform 0.6s ease-in-out, color 0.3s ease-in-out;
/*    color: #CEAC51;*/
    color: #25d366;
}

.appointment-btn:hover .appointment-icon {
    transform: rotate(360deg);
    color: #32CD32; /* LimeGreen on hover */
    /*color: #ffffff;*/ /* White color on hover */
}


.cursor {
    display: inline-block;
    width: 1px;
    background-color: black;
    animation: blink 1s step-start infinite;
    margin-left: 2px;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}







/* Spa journey section start  ayushi*/

/* Responsive */
@media (max-width: 600px) {
    .relax-timeline {
        margin-left: 0;
        padding-left: 0;
        border: none;
    }

    .relax-timeline-dot {
        display: none;
    }

    .relax-timeline-content {
        margin-left: 0;
    }
}


@media (max-width: 576px) {
    .relax-timeline-container {
        padding: 0 10px;
    }
}







.blinking-icon {
    color: #5df83d;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}





.swal-custom-title {
    color: #CEAC51 !important;
    font-weight: bold;
}





.faq-card {
    background-color: #fff3ec;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    padding: 2rem 1.5rem;
    min-height: 350px; /* Increase height */
}

    .faq-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    }

    .faq-card i {
        transition: transform 0.4s ease;
        font-size: 2.5rem; /* Bigger icon */
    }

    .faq-card:hover i {
        transform: scale(1.2) rotate(5deg);
    }

@media (min-width: 768px) {
    .faq-card {
        padding: 2.5rem 2rem;
    }
}










@keyframes blink {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.2;
    }
}





::selection {
    background: #CEAC51;
    color: white; /* Optional: text color when selected */
}

/* For Mozilla Firefox */
::-moz-selection {
    background: #CEAC51;
    color: white;
}



.rotate-logo {
    max-width: 150px;
    border-radius: 12px;
    animation: rotate360 10s linear infinite;
}

@keyframes rotate360 {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}
.rotate-logo {
    max-width: 150px;
    border-radius: 12px;
    transition: transform 1s ease-in-out;
}

    .rotate-logo:hover {
        transform: rotate(360deg);
    }










@keyframes pulse-zoom {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.25);
    }

    100% {
        transform: scale(1);
    }
}

.icon-pulse {
    display: inline-block;
    animation: pulse-zoom 1.5s infinite ease-in-out;
}

.gradient-icon {
    background: linear-gradient(45deg, #0d6efd, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}




@media (max-width: 767.98px) {
    .card-body p {
        font-size: 0.95rem;
    }

    .card-body h5 {
        font-size: 1.1rem;
    }

    h1.display-6 {
        font-size: 1.5rem;
    }
}




@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}







@media (max-width: 768px) {
    .carousel-caption

{
    bottom: 20%;
    text-align: center;
}

.carousel-caption .btn {
    font-size: 14px;
    padding: 10px 20px;
}

}





@keyframes fadeSlideIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.heading-animate {
    animation: fadeSlideIn 1.2s ease-in-out forwards;
}








/*.gorakhpur-highlight*/

/* Keyframes: blink background and text color together */
@keyframes blinkBg {
    0% {
        background-color: #CEAC51;
        color: white;
    }

    50% {
        background-color: transparent;
        color: #6c4800;
    }

    100% {
        background-color: #CEAC51;
        color: white;
    }
}








@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}





.animated-float {
    position: absolute;
    right: -200px; /* Start off-screen */
    animation: moveFromRightSpin 2s ease-out forwards;
    opacity: 0;
}

@keyframes moveFromRightSpin {
    0% {
        transform: translateX(200px) rotate(0deg);
        opacity: 0;
    }

    50% {
        transform: translateX(-50px) rotate(180deg);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) rotate(360deg);
        left: 50%;
        right: auto;
        opacity: 1;
    }
}





.dropdown-menu {
    max-height: 400px;
    overflow-y: auto;
}

.card-img-top {
    height: 140px;
    object-fit: cover;
}

.zoom-icon {
    transition: transform 0.3s ease;
}

    .zoom-icon:hover {
        transform: scale(1.4);
    }

/* Optional: smoother dropdown on smaller screens */
@media (max-width: 576px) {
    .dropdown-menu {
        width: 100vw !important;
        left: 0 !important;
        right: 0 !important;
        margin: 0 auto;
        padding: 1rem !important;
        border-radius: 0;
    }

        .dropdown-menu .row {
            flex-wrap: wrap;
        }

        .dropdown-menu .col-6 {
            flex: 0 0 50%;
            max-width: 50%;
        }
}


