:root {
    --green: #5ca64c;
    --yellow: #f6e35f;
    --dark-yellow: #988448;
}


/* --- Hero Video Section Styles --- */
.hero-video-section-restraint {
    height: 100vh;
    /* Full viewport height */
    min-height: 650px;
    position: relative;
    overflow: hidden;
    /* Important for video and overlay */
    display: flex;
    align-items: center;
    /* Vertically center content */
}

#heroBgVideo {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: 0;
    /* Behind overlay and content */
    object-fit: cover;
    /* Cover the area */
}

.hero-video-section-restraint::before {
    /* Dark overlay */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(15, 23, 36, 0.85) 0%, rgba(15, 23, 36, 0.5) 50%, rgba(15, 23, 36, 0.1) 100%);
    /* Gradient from left */
    z-index: 1;
}

.hero-content-restraint-wrapper {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.eyebrow-hero-restraint {
    font-size: 0.85rem;
    font-weight: 600;
    color: #D1A054;
    /* Muted Gold/Brown */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    display: block;
}

.eyebrow-hero-restraint .star-icon {
    /* For the small star/asterisk */
    /* content: '\2731'; /* Unicode asterisk, or use Font Awesome */
    margin-right: 5px;
}

.hero-title-restraint {
    font-family: 'Playfair Display', serif;
    font-size: 35px;
    /* Large, elegant title */
    font-weight: 700;
    color: white;
    line-height: 1.25;
    margin-bottom: 20px;
}

.hero-title-restraint em {
    /* For "mindfully," */
    font-style: italic;
    font-weight: 400;
    /* Regular italic */
}

.hero-description-restraint {
    font-size: 1rem;
    line-height: 1.8;
    max-width: 500px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
}

.hero-meta-info {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.user-avatars-hero {
    display: flex;
}

.user-avatars-hero img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid white;
    margin-right: -12px;
    /* Overlapping effect */
}

.user-avatars-hero img:last-child {
    margin-right: 0;
}

.active-reviews-text {
    margin-left: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
}

.btn-more-about-hero {
    background-color: rgba(209, 160, 84, 0.85);
    /* Muted Gold/Brown, slightly transparent */
    color: white;
    border: 1px solid rgba(209, 160, 84, 0.9);
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
}

.btn-more-about-hero:hover {
    background-color: #D1A054;
    color: white;
    border-color: #D1A054;
}

.btn-more-about-hero i {
    margin-left: 8px;
    font-size: 0.8em;
}

/* Custom Carousel Indicators (Bottom Center) */
.hero-carousel-indicators-custom {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    display: flex;
    padding-left: 0;
    margin-right: 15%;
    margin-left: 15%;
    list-style: none;
    gap: 8px;
}

.hero-carousel-indicators-custom li button {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 10px;
    height: 10px;
    padding: 0;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.5);
    background-clip: padding-box;
    border: 0;
    border-radius: 50%;
    opacity: 0.7;
    transition: opacity .6s ease, background-color .3s ease;
}

.hero-carousel-indicators-custom li button.active {
    opacity: 1;
    background-color: #D1A054;
    /* Active indicator color */
}

/* Floating Side Action Bar */
.floating-action-bar-restraint {
    transform: translateY(-50%);
    background-color: var(--dark-yellow);
    border-radius: 8px 0 0 8px;
    padding: 20px 6px;
    display: flex;
    gap: 8px;
    margin-top: 50px !important;

}

.floating-action-bar-restraint .action-icon-link {
    color: white;
    font-size: 1.1rem;
    padding: 8px;
    transition: color 0.2s ease;
}

.floating-action-bar-restraint .action-icon-link:hover {
    color: #FFD700;
}

.mobile-icons {
    background-color: var(--dark-yellow);
    padding: 7px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    border: 2px solid #000;
}

.action-icon-link {
    color: white;
    font-size: 25px;
    padding: 8px;
}

/* Responsive */
@media (max-width: 991.98px) {

    /* Tablet */
    body {
        padding-top: 70px;
    }

    /* Adjust for navbar height on mobile */
    .hero-title-restraint {
        font-size: 3rem;
    }

    .hero-carousel-restraint .carousel-caption-hero-restraint {
        left: 5%;
        max-width: 80%;
    }

    .floating-action-bar-restraint {
        display: block;
    }

    /* Hide side bar on tablet/mobile */
}

@media (max-width: 767.98px) {

    /* Mobile */
    .hero-video-section-restraint .carousel-item {
        height: 85vh;
        min-height: 500px;
    }

    .hero-title-restraint {
        font-size: 25px;
    }

    .hero-description-restraint {
        font-size: 0.9rem;
    }

    .hero-carousel-restraint .carousel-caption-hero-restraint {
        text-align: center;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
    }

    .hero-meta-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .active-reviews-text {
        margin-left: 0;
        margin-top: 10px;
    }

    .btn-more-about-hero {
        margin-top: 15px;
    }
}

/* Content Scroll Start */

.yoga-ticker-section {
    background-color: #C9A988;
    /* Light brown/tan color from image */
    color: #F8F8F8;
    /* Off-white text color */
    padding: 12px 0;
    /* Vertical padding */
    overflow: hidden;
    /* Crucial for marquee effect */
    white-space: nowrap;
    /* Prevent items from wrapping to next line */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    /* Optional subtle shadow */
    width: 100%;
    /* Ensure it takes full width */
}

.yoga-ticker-content {
    display: inline-block;
    /* Allows animation of transform */
    /* Animation properties */
    animation-name: yoga-marquee-scroll;
    animation-duration: 35s;
    /* Adjust speed: higher value = slower scroll, lower = faster */
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    padding-left: 100%;
    /* Start items off-screen to the right */
    /* This ensures the duplicated content starts immediately after the first set passes */
}

.yoga-ticker-wrapper:hover .yoga-ticker-content {
    /* Optional: Pause animation on hover */
    /* animation-play-state: paused; */
}


.yoga-ticker-item {
    display: inline-block;
    /* Keep items in a line */
    font-family: 'Playfair Display', serif;
    /* Serif font as in image */
    font-size: 1.1rem;
    /* Adjust as needed, image looks like this size */
    font-weight: 500;
    /* Or 400 for regular */
    margin: 0 25px;
    /* Space between items */
    /* text-transform: capitalize; /* If needed, but image seems to be Title Case */
}

.yoga-ticker-item .separator-icon {
    /* Using Font Awesome asterisk, or you can use a unicode character or SVG */
    /* content: '\2731'; /* Unicode Heavy Asterisk */
    font-size: 0.7em;
    /* Smaller asterisk */
    vertical-align: middle;
    margin: 0 10px;
    /* Space around asterisk */
    opacity: 0.9;
    color: #F0E6D1;
    /* Slightly different white/cream for asterisk */
}

/* Marquee Animation */
@keyframes yoga-marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        /* Move left by half of the total width (since items are duplicated) */
        transform: translateX(-50%);
    }
}

/* Responsive adjustments */
@media (max-width: 767.98px) {

    /* Mobile */
    .yoga-ticker-item {
        font-size: 0.95rem;
        margin: 0 15px;
    }

    .yoga-ticker-section {
        padding: 10px 0;
    }

    .yoga-ticker-content {
        animation-duration: 25s;
        /* Slightly faster on mobile */
    }
}

/* About Us Section Start */

.nurturing-growth-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    /* For decorative dots */
}

/* Decorative Dots (Optional) */
.decorative-dots-nurturing {
    position: absolute;
    top: 40px;
    right: 40px;
    /* Adjust position */
    width: 100px;
    height: 100px;
    /* Size of pattern area */
    background-image: radial-gradient(#B08D57 1.5px, transparent 1.5px);
    /* Gold/Brown dots */
    background-size: 12px 12px;
    /* Size and spacing of dots */
    opacity: 0.3;
    z-index: 0;
}


/* Image Cluster (Left Side) */
.image-cluster-nurturing {
    position: relative;
    z-index: 1;
}

.large-image-nurturing {
    border-radius: 10px;
    /* Organic shape */
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

.large-image-nurturing:hover {
    transform: scale(1.02);
}

.large-image-nurturing img {
    width: 100%;
    height: 480px;
    /* Adjust height of the large image */
    object-fit: cover;
    display: block;
}

.small-image-badge-wrapper {
    position: absolute;
    bottom: -40px;
    left: -40px;
    z-index: 2;
}

.small-image-nurturing {
    width: 200px;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    /* border: 5px solid white; */
    transition: transform 0.3s ease;
}

.small-image-nurturing:hover {
    transform: scale(1.05);
}

.small-image-nurturing img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.experience-badge-nurturing {
    position: absolute;
    bottom: -50px;
    /* Position below the small image */
    left: 50%;
    transform: translateX(-50%);
    background-color: #C6A971;
    /* Gold/Brownish from image */
    color: white;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 4px solid white;
    padding: 5px;
    z-index: 3;
    /* Above small image */
    transition: transform 0.3s ease;
}

.experience-badge-nurturing:hover {
    transform: translateX(-50%) scale(1.05);
}

.experience-badge-nurturing .exp-years {
    font-size: 0.7rem;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.experience-badge-nurturing .exp-icon img {
    width: 25px;
    margin: 5px 0;
}

/* Placeholder for farm icon */
.experience-badge-nurturing .exp-text {
    font-size: 0.7rem;
    line-height: 1;
    text-transform: uppercase;
}


/* Content (Right Side) */
.content-nurturing {
    padding-left: 50px;
    /* Space from image cluster */
}

.eyebrow-nurturing {
    font-size: 0.85rem;
    font-weight: 600;
    color: #5C5C5C;
    /* Muted */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: block;
}

.eyebrow-nurturing .star-deco {
    /* Asterisk */
    color: #C6A971;
    /* Gold/Brownish */
    margin-right: 5px;
}

.main-title-nurturing {
    font-family: 'Lora', serif;
    /* Elegant serif font */
    font-size: 30px;
    font-weight: 700;
    color: #2E251E;
    /* Dark Brown/Black */
    line-height: 1.3;
    margin-bottom: 20px;
}

.main-title-nurturing em {
    font-style: italic;
    font-weight: 400;
}

/* For "growth, healing," */
.description-nurturing {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #5C5C5C;
    margin-bottom: 30px;
}

.description-nurturing a{
    text-decoration: none;
    color: #000;
}

.description-nurturing a:hover{
    color: var(--dark-yellow);
    text-decoration: underline;
}

.feature-buttons-nurturing .feature-btn {
    background-color: #2E4052;
    /* Dark Teal/Blue from image */
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    text-decoration: none;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.feature-buttons-nurturing .feature-btn:hover {
    background-color: #212f3c;
    /* Darker shade */
    transform: translateX(3px);
}

.feature-btn .feature-btn-icon {
    font-size: 1.3rem;
    margin-right: 15px;
    color: #C6A971;
    /* Gold/Brownish icon */
    width: 30px;
    text-align: center;
    /* For icon alignment */
}

.feature-btn .feature-btn-text {
    font-size: 0.95rem;
    font-weight: 600;
}

.bottom-actions-nurturing {
    margin-top: 30px;
    display: flex;
    align-items: center;
}

.btn-more-about-nurturing {
    background-color: #D1A054;
    /* Muted Gold/Brown */
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-more-about-nurturing:hover {
    background-color: #b3863f;
    color: white;
}

.btn-more-about-nurturing i {
    margin-left: 8px;
    font-size: 0.8em;
}

.call-us-info-nurturing {
    margin-left: 25px;
    display: flex;
    align-items: center;
}

.call-us-info-nurturing .call-icon {
    background-color: #FFF0D9;
    /* Light orange circle for call icon */
    color: #D1A054;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-right: 10px;
}

.call-us-info-nurturing .call-text {
    font-size: 0.8rem;
    color: #777;
    display: block;
    line-height: 1.2;
}

.call-us-info-nurturing .phone-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2E251E;
    display: block;
}


/* Responsive */
@media (max-width: 991.98px) {

    /* Tablets */
    .image-cluster-nurturing {
        margin-bottom: 50px;
        /* Space for badge and below */
    }

    .large-image-nurturing img {
        height: 400px;
    }

    .small-image-badge-wrapper {
        left: -20px;
        bottom: -30px;
    }

    .small-image-nurturing {
        width: 180px;
        height: 180px;
    }

    .experience-badge-nurturing {
        width: 110px;
        height: 110px;
        bottom: -40px;
    }

    .experience-badge-nurturing .year-text {
        font-size: 1.5rem;
    }

    .content-nurturing {
        padding-left: 15px;
        text-align: center;
    }

    .main-title-nurturing {
        font-size: 2.2rem;
    }

    .feature-buttons-nurturing .col-md-6 {
        margin-bottom: 15px;
    }

    .bottom-actions-nurturing {
        flex-direction: column;
        align-items: center;
    }

    .call-us-info-nurturing {
        margin-left: 0;
        margin-top: 20px;
    }

    .decorative-dots-nurturing {
        display: none;
    }
}

@media (max-width: 767.98px) {

    /* Mobile */
    .nurturing-growth-section {
        padding: 40px 0;
    }

    .image-cluster-nurturing {
        display: block;
        /* Stack images on mobile */
        text-align: center;
    }

    .large-image-nurturing {
        width: 90%;
        margin: 0 auto 20px;
    }

    .large-image-nurturing img {
        height: 300px;
    }

    .small-image-badge-wrapper {
        position: static;
        /* Reset for stacking */
        display: inline-block;
        /* To center */
        margin-top: -60px;
        /* Pull up over large image */
        margin-bottom: 70px;
        /* Space for badge below */
    }

    .small-image-nurturing {
        width: 150px;
        height: 150px;
        margin: 0 auto;
    }

    .experience-badge-nurturing {
        position: relative;
        /* Relative to small image now */
        left: auto;
        bottom: -65px;
        /* Position below small image */
        transform: translateX(0);
        /* Reset transform */
        margin: 0 auto;
    }

    .main-title-nurturing {
        font-size: 1.8rem;
    }

    .feature-buttons-nurturing .col-md-6 {
        width: 100%;
    }
}

/* Services Section Start */

.section-title-services-tab {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--light-yellow);
    /* Dark Blue */
    margin-bottom: 40px;
}

/* Desktop: Vertical Tabs on Right */
.desktop-vertical-tabs .nav-pills {
    border-left: 3px solid #E0E7FF;
    /* Light blue border */
}

.desktop-vertical-tabs .nav-link {
    color: #fff;
    /* Muted text */
    font-weight: 600;
    font-size: 1rem;
    padding: 12px 20px;
    border-radius: 0 8px 8px 0;
    /* Rounded on right */
    margin-bottom: 5px;
    /* Space between tabs */
    text-align: left;
    border: none;
    background-color: transparent;
    border-left: 3px solid transparent;
    /* For active state */
    margin-left: -3px;
    /* Align with main border */
    transition: all 0.3s ease;
}

.desktop-vertical-tabs .nav-link:hover {
    color: #fff;
    /* Bright Blue */
    background-color: var(--dark-yellow);
    /* Very light blue background */
}

.desktop-vertical-tabs .nav-link.active {
    background-color: var(--dark-yellow);
    color: #fff;
    border-left-color: #fff;
    /* Active tab indicator */
    font-weight: 700;
}

/* Mobile: Horizontal Swiper Tabs */
.mobile-tabs-slider-wrapper {
    margin-bottom: 30px;
    border-bottom: 2px solid #E0E7FF;
}

.mobile-tabs-swiper .swiper-slide {
    width: auto;
    /* Let content define width */
    padding: 0 5px;
}

.mobile-tabs-swiper .nav-link {
    color: #4A5568;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 15px;
    border-radius: 20px;
    /* Pill shape */
    background-color: #fff;
    border: 1px solid #E0E7FF;
    white-space: nowrap;
    margin-bottom: 10px;
    /* For scrollbar space if any */
}

.mobile-tabs-swiper .nav-link.active {
    background-color: #3B82F6;
    color: white;
    border-color: #3B82F6;
}

/* Optional: Swiper scrollbar */
/* .swiper-scrollbar-drag { background-color: #3B82F6 !important; } */


/* Tab Content Area */
.service-tab-content-area {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
    min-height: 450px;
    /* Ensure content area has height */
}

.service-tab-content-inner {
    display: flex;
    /* Using flex for layout is possible */
    align-items: center;
    /* Vertically align if using flex */
}

.service-content-image {
    text-align: center;
    /* Center image if col is wider */
}

.service-content-image img {
    max-width: 100%;
    height: auto;
    max-height: 350px;
    /* Limit image height */
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.service-content-text {
    padding-left: 30px;
    /* Space from image */
}

.service-content-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-yellow);
    /* Bright Blue */
    margin-bottom: 15px;
    text-align: center;
}

.service-content-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #000;
}

/* Fade animation for tab panes */
.tab-pane.fade {
    transition: opacity .45s ease-in-out;
}

/* Responsive */
@media (max-width: 991.98px) {

    /* Below LG, where vertical tabs become slider */
    .desktop-vertical-tabs-wrapper {
        display: none;
    }

    .mobile-tabs-slider-wrapper {
        display: block !important;
    }

    .service-tab-content-area {
        margin-top: 0;
    }

    .service-content-text {
        padding-left: 0;
        margin-top: 20px;
        text-align: center;
    }
}

@media (min-width: 992px) {

    /* LG and up */
    .mobile-tabs-slider-wrapper {
        display: none !important;
    }
}

@media (max-width: 767.98px) {

    /* Mobile */
    .section-title-services-tab {
        font-size: 2rem;
    }

    .service-content-title {
        font-size: 1.5rem;
    }

    .service-content-image img {
        max-height: 280px;
    }
}

/* Why Choose Us Section Start */

.mindful-growth-section {
    /* padding: 80px 0; */
    position: relative;
    overflow: hidden;
    /* To contain any overflowing animated elements if needed */
}

/* Main Header Content (Eyebrow & Title) */
.section-header-mindful {
    text-align: center;
    margin-bottom: 50px;
}

.eyebrow-mindful {
    font-size: 0.9rem;
    font-weight: 600;
    color: #786A5F;
    /* Muted brown */
    text-transform: capitalize;
    /* "Why Choose Us" */
    margin-bottom: 8px;
    display: block;
}

.eyebrow-mindful .star-deco-mindful {
    /* Asterisk */
    color: #C3A985;
    /* Gold/Tan color */
    margin-right: 5px;
}

.main-title-mindful {
    font-family: 'Lora', serif;
    /* Elegant serif font */
    font-size: 2.8rem;
    /* Adjust as needed */
    font-weight: 400;
    /* Regular weight for main title, italic part is bolder */
    color: #3E4C59;
    /* Dark Teal/Blue */
    line-height: 1.3;
    margin: 0;
}

.main-title-mindful em {
    /* For "strength," */
    font-style: italic;
    font-weight: 700;
    /* Bolder italic */
}

/* Feature Items (Left and Right Columns) */
.feature-item-mindful {
    display: flex;
    align-items: flex-start;
    /* Align icon with top of text */
    margin-bottom: 30px;
    text-align: left;
    /* Ensure text is left aligned */
}

.feature-item-mindful:last-child {
    margin-bottom: 0;
}

.feature-icon-mindful {
    background-color: transparent;
    /* No circle background for icon itself */
    color: #B08D57;
    /* Gold/Brownish icon color */
    width: 40px;
    /* Size for icon container */
    height: 40px;
    border: 2px solid #D1C0A8;
    /* Light tan border for circle around icon */
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    /* Icon size */
    margin-right: 15px;
    flex-shrink: 0;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-item-mindful:hover .feature-icon-mindful {
    transform: rotate(15deg) scale(1.05);
    border-color: #B08D57;
}

.feature-content-mindful .feature-title-mindful {
    font-size: 1.05rem;
    font-weight: 600;
    color: #3E4C59;
    /* Dark Teal/Blue */
    margin-bottom: 5px;
}

.feature-content-mindful .feature-description-mindful {
    font-size: 0.85rem;
    color: #786A5F;
    line-height: 1.6;
}

/* Center Image with Rotating Background */
.center-image-column-mindful {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /* For the rotating background */
    min-height: 400px;
    /* Ensure space for image */
}

.rotating-bg-mandala {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 380px;
    height: 380px;
    transform: translate(-50%, -50%);
    z-index: 0;
    animation: rotate-mandala 30s linear infinite;
    opacity: 0.2;
}

.rotating-bg-mandala img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Or cover */
}

@keyframes rotate-mandala {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.main-yoga-image-mindful {
    position: relative;
    /* Above rotating background */
    z-index: 1;
    max-width: 300px;
    /* Adjust size of the yoga woman image */
    width: 100%;
    border-radius: 15px;
    /* Optional rounding if image isn't transparent PNG */
    /* box-shadow: 0 10px 25px rgba(0,0,0,0.1); /* Optional shadow */
}


/* Responsive */
@media (max-width: 991.98px) {

    /* Tablets */
    .main-title-mindful {
        font-size: 2.4rem;
    }

    .features-column-left,
    .features-column-right {
        margin-bottom: 30px;
        /* text-align: center; */
        /* Optionally center feature items on stack */
    }

    /* .feature-item-mindful { justify-content: center; text-align: center;} */
    /* If centering items */
    .center-image-column-mindful {
        order: -1;
        margin-bottom: 40px;
    }

    /* Image on top on tablet */
    .rotating-bg-mandala {
        width: 320px;
        height: 320px;
    }

    .main-yoga-image-mindful {
        max-width: 250px;
    }
}

@media (max-width: 767.98px) {

    /* Mobile */
    .mindful-growth-section {
        padding: 50px 0;
    }

    .main-title-mindful {
        font-size: 2rem;
    }

    .feature-item-mindful {
        flex-direction: column;
        /* Stack icon above text */
        align-items: center;
        text-align: center;
    }

    .feature-icon-mindful {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .rotating-bg-mandala {
        width: 280px;
        height: 280px;
        opacity: 0.15;
    }

    .main-yoga-image-mindful {
        max-width: 220px;
    }
}


/* Extra Content Section Start */

.guiding-journey-section {
    background-color: #2E4052;
    /* Dark Teal/Blue background from image */
    color: #E0E7EA;
    /* Light text color on dark background */
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    margin-top: -1px;
}

/* Left Content Area */
.journey-intro-content {
    padding-right: 30px;
    /* Space from image on desktop */
}

.eyebrow-journey {
    font-size: 0.85rem;
    font-weight: 600;
    color: #A5C2D1;
    /* Lighter teal for eyebrow */
    text-transform: capitalize;
    /* "What We Do" */
    margin-bottom: 10px;
    display: block;
}

.eyebrow-journey .star-deco-journey {
    /* Asterisk */
    color: #D1A054;
    /* Gold/Brownish accent */
    margin-right: 5px;
}

.main-title-journey {
    font-family: 'Lora', serif;
    /* Elegant serif font */
    font-size: 2.8rem;
    /* Adjust as needed */
    font-weight: 400;
    /* Regular weight for main title */
    color: #fff;
    /* White title */
    line-height: 1.3;
    margin-bottom: 20px;
}

.main-title-journey em {
    /* For "journey" */
    font-style: italic;
    font-weight: 700;
    /* Bolder italic */
}

.description-journey {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #BDC7D1;
    /* Lighter grey for description */
    margin-bottom: 30px;
    max-width: 500px;
    /* Limit description width */
}

.features-box-journey {
    background-color: #fff;
    /* White box for features */
    color: #5C6B7A;
    /* Text color inside white box */
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.features-list-journey {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    /* Remove default ul margin */
}

.features-list-journey li {
    font-size: 0.9rem;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #E9EEF2;
    /* Light separator line */
    display: flex;
    align-items: center;
}

.features-list-journey li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.features-list-journey i.fa-check-circle {
    color: #D1A054;
    /* Gold/Brownish checkmark */
    margin-right: 12px;
    font-size: 1.1em;
}


/* Right Image Area */
.journey-image-wrapper img {
    width: 100%;
    height: auto;
    /* Maintain aspect ratio */
    max-height: 500px;
    /* Adjust as needed */
    object-fit: cover;
    border-radius: 15px;
    /* Rounded corners */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.journey-image-wrapper:hover img {
    transform: scale(1.03);
}

/* Bottom Call to Action Bar */
.journey-cta-bar {
    background-color: #FAF8F5;
    /* Light cream, same as body */
    padding: 25px 0;
    /* border-top: 1px solid #e0dbd1; /* Optional subtle separator */
}

.cta-text-journey {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2E251E;
    /* Dark brown/black */
    margin-bottom: 0;
}

.btn-contact-journey {
    background-color: #D1A054;
    /* Muted Gold/Brown */
    color: white;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-contact-journey:hover {
    background-color: #b3863f;
    color: white;
}

.btn-contact-journey i {
    margin-left: 8px;
    font-size: 0.8em;
}


/* Responsive */
@media (max-width: 991.98px) {

    /* Tablets */
    .journey-intro-content {
        text-align: center;
        padding-right: 15px;
        margin-bottom: 40px;
    }

    .description-journey {
        margin-left: auto;
        margin-right: auto;
    }

    .features-box-journey {
        text-align: left;
    }

    /* Keep list items left aligned */
    .main-title-journey {
        font-size: 2.4rem;
    }

    .journey-image-wrapper img {
        max-height: 400px;
    }

    .journey-cta-bar .row>div {
        text-align: center;
        margin-bottom: 15px;
    }

    .journey-cta-bar .row>div:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 767.98px) {

    /* Mobile */
    .guiding-journey-section {
        padding: 50px 0;
    }

    .main-title-journey {
        font-size: 2rem;
    }

    .features-box-journey {
        padding: 20px;
    }

    .journey-image-wrapper img {
        max-height: 350px;
    }
}

/* How to Work Section Start */

.yoga-process-section {
    padding: 80px 0;
    position: relative;
}

/* Section Header */
.section-header-yoga {
    margin-bottom: 50px;
    /* text-align: center; /* Or left based on your preference */
}

.eyebrow-yoga {
    font-size: 0.85rem;
    font-weight: 600;
    color: #786A5F;
    text-transform: capitalize;
    margin-bottom: 8px;
    display: block;
}

.eyebrow-yoga .star-deco-yoga {
    color: #C3A985;
    margin-right: 5px;
}

.main-title-yoga {
    font-family: 'Lora', serif;
    font-size: 2.8rem;
    font-weight: 400;
    color: #3E4C59;
    line-height: 1.3;
    margin-bottom: 20px;
}

.main-title-yoga em {
    font-style: italic;
    font-weight: 700;
}

.description-yoga {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #6B6158;
    max-width: 600px;
}


/* Image Column (Left) */
.image-stack-yoga {
    position: relative;
    display: flex;
    /* flex-direction: column; */
    /* align-items: center; */
    /* Center the stack if col is wider */
}

.image-stack-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    /* Space between stacked images */
    width: 90%;
    /* Adjust width of images within column */
    max-width: 380px;
    transition: transform 0.3s ease;
}

.image-stack-item:hover {
    transform: scale(1.03);
}

.image-stack-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.center-badge-yoga {
    position: absolute;
    top: 60%;
    left: 40%;
    transform: translate(-50%, -50%);
    background-color: #000;
    /* Muted Gold/Brown */
    color: white;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 4px solid white;
    z-index: 10;
    /* Above images */
    transition: transform 0.3s ease;
}

.center-badge-yoga:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.center-badge-yoga i {
    font-size: 2.2rem;
}

/* Icon size */


/* Process Steps (Right Column) */
.process-steps-yoga {
    padding-left: 30px;
}

.process-step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(195, 169, 133, 0.2);
    /* Light Gold/Brown separator */
}

.process-step-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.step-number {
    font-family: 'Lora', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #C3A985;
    /* Gold/Brown */
    margin-right: 20px;
    line-height: 1;
    padding-top: 0.2em;
    /* Align with first line of title */
}

.step-content .step-title {
    font-size: 25px;
    font-weight: 600;
    color: #3E4C59;
    /* Dark Teal/Blue */
    margin-bottom: 8px;
}

.step-content .step-description {
    font-size: 15px;
    line-height: 1.6;
    color: #6B6158;
}

/* Bottom Benefits Row */
.benefits-row-yoga {
    /* margin-top: 60px; */
    /* Space above benefits */
    border-top: 1px solid rgba(195, 169, 133, 0.2);
    /* Separator */
    padding-top: 40px;
}

.benefit-item-yoga {
    display: flex;
    align-items: center;
    padding: 17px 0;
    background-color: var(--dark-yellow);
    border-radius: 10px;
}

.benefit-icon-yoga {
    color: #fff;
    /* Gold/Brownish */
    font-size: 1.6rem;
    width: 45px;
    height: 45px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.benefit-text-yoga {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
}

/* Responsive */
@media (max-width: 991.98px) {

    /* Tablets */
    .image-stack-yoga {
        margin-bottom: 40px;
    }

    .center-badge-yoga {
        width: 90px;
        height: 90px;
    }

    .center-badge-yoga i {
        font-size: 2rem;
    }

    .process-steps-yoga {
        padding-left: 15px;
    }

    .main-title-yoga {
        font-size: 2.4rem;
    }

    .benefits-row-yoga .col-lg-3 {
        margin-bottom: 20px;
    }
}

@media (max-width: 767.98px) {

    /* Mobile */
    .yoga-process-section {
        padding: 50px 0;
    }

    .section-header-yoga,
    .process-steps-yoga,
    .benefit-item-yoga {
        text-align: center;
    }

    .image-stack-item img {
        height: 200px;
    }

    .center-badge-yoga {
        width: 80px;
        height: 80px;
    }

    .center-badge-yoga i {
        font-size: 1.8rem;
    }

    .main-title-yoga {
        font-size: 2rem;
    }

    .step-number {
        margin-right: 10px;
        font-size: 1.1rem;
    }

    .step-content .step-title {
        font-size: 1.05rem;
    }

    .benefit-item-yoga {
        flex-direction: column;
    }

    .benefit-icon-yoga {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

/* Our Beefits Section Start */

.yoga-benefits-section {
    margin-top: 40px;
    position: relative;
    overflow: hidden;
    /* To contain the large blob shape if it extends */
}

/* Left Content Area */
.benefits-intro-content {
    padding-right: 30px;
    /* Space from image on desktop */
    position: relative;
    /* Ensure it's above any bg elements if needed */
    z-index: 2;
    border-right: 2px solid var(--dark-yellow);
    height: 600px;
}

.eyebrow-benefits {
    font-size: 0.85rem;
    font-weight: 600;
    color: #786A5F;
    /* Muted brown */
    text-transform: capitalize;
    margin-bottom: 8px;
    display: block;
}

.eyebrow-benefits .star-deco-benefits {
    /* Asterisk */
    color: #C3A985;
    /* Gold/Tan color */
    margin-right: 5px;
}

.main-title-benefits {
    font-family: 'Lora', serif;
    /* Elegant serif font */
    font-size: 35px;
    /* Adjust as needed */
    font-weight: 400;
    /* Regular weight for main title */
    color: #3E4C59;
    /* Dark Teal/Blue for title */
    line-height: 1.3;
    margin-bottom: 20px;

}

.main-title-benefits em {
    /* For "benefits" */
    font-style: italic;
    font-weight: 700;
    /* Bolder italic */
}

.description-benefits {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #6B6158;
    margin-bottom: 30px;
}

.benefits-list-yoga {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.benefits-list-yoga li {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(195, 169, 133, 0.25);
    /* Light Gold/Brown separator */
    display: flex;
    align-items: flex-start;
}

.benefits-list-yoga li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.benefits-list-yoga .benefit-icon {
    color: #D1A054;
    /* Gold/Brownish checkmark */
    font-size: 1.1rem;
    /* Icon size */
    margin-right: 12px;
    margin-top: 0.2em;
    /* Align with first line of text */
    flex-shrink: 0;
}

.benefit-text-item .benefit-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #3E4C59;
    margin-bottom: 5px;
    display: block;
}

.benefit-text-item .benefit-desc {
    font-size: 0.85rem;
    color: #786A5F;
    line-height: 1.5;
}


/* Right Image Area with Blob Background */
.yoga-image-column {
    position: relative;
    /* For positioning elements within */
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center the image and blob */
    min-height: 400px;
    /* Ensure space for image and blob */
    z-index: 1;
}

.background-blob-shape {
    position: absolute;
    width: 450px;
    /* Adjust size of blob */
    height: 450px;
    background-color: rgba(210, 190, 160, 0.3);
    /* Light tan/gold, semi-transparent */
    border-radius: 60% 40% 30% 70% / 70% 30% 70% 40%;
    /* Creates an organic blob shape */
    /* You can generate more complex blob shapes using SVG or online tools */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(15deg);
    /* Center and slightly rotate */
    z-index: 0;
    /* Behind the main image and badge */
    animation: subtleMorph 15s ease-in-out infinite alternate;
}

@keyframes subtleMorph {

    /* Subtle animation for the blob */
    0% {
        border-radius: 60% 40% 30% 70% / 70% 30% 70% 40%;
    }

    50% {
        border-radius: 30% 70% 60% 40% / 40% 60% 30% 70%;
    }

    100% {
        border-radius: 60% 40% 30% 70% / 70% 30% 70% 40%;
    }
}

.main-yoga-person-image {
    position: relative;
    /* Above the blob */
    z-index: 1;
    max-width: 520px;
    /* Adjust size of the person image */
    width: 100%;
    /* No explicit border-radius if using a transparent PNG that already has shape */
    transition: transform 0.4s ease;
}

.main-yoga-person-image:hover {
    transform: scale(1.03);
}

.experience-badge-on-image {
    position: absolute;
    bottom: 10%;
    /* Adjust position on the blob or image */
    right: 10%;
    /* Adjust position */
    background-color: var(--green);
    /* Gold/Brownish badge */
    color: white;
    padding: 12px 18px;
    border-radius: 8px;
    /* Rounded rectangle */
    font-size: 0.8rem;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
    /* Above person image and blob */
    transition: transform 0.3s ease;
}

.experience-badge-on-image:hover {
    transform: scale(1.05);
}

.experience-badge-on-image .years-big {
    font-size: 1.6rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.experience-badge-on-image .years-small {
    font-size: 0.7rem;
    text-transform: uppercase;
    display: block;
}


/* Responsive */
@media (max-width: 991.98px) {

    /* Tablets */
    .benefits-intro-content {
        text-align: center;
        margin-bottom: 50px;
        padding-right: 15px;
    }

    .main-title-benefits {
        font-size: 2.4rem;
    }

    .yoga-image-column {
        min-height: 400px;
    }

    .background-blob-shape {
        width: 380px;
        height: 380px;
    }

    .main-yoga-person-image {
        max-width: 280px;
    }

    .experience-badge-on-image {
        bottom: 5%;
        right: 5%;
    }
}

@media (max-width: 767.98px) {

    /* Mobile */
    .yoga-benefits-section {
        padding: 50px 0;
    }

    .main-title-benefits {
        font-size: 2rem;
    }

    .benefits-list-yoga li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .benefits-list-yoga .benefit-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .yoga-image-column {
        min-height: 350px;
    }

    .background-blob-shape {
        width: 300px;
        height: 300px;
    }

    .main-yoga-person-image {
        max-width: 230px;
    }

    .experience-badge-on-image {
        padding: 10px 15px;
    }

    .experience-badge-on-image .years-big {
        font-size: 1.4rem;
    }
}



/* Contact Us Section Start */

.contact-us-wellness-section {
    padding: 80px 0;
}

/* Left Content Area */
.contact-intro-wellness {
    /* padding-right: 30px; /* Space from form on desktop */
}

.eyebrow-contact-wellness {
    font-size: 0.85rem;
    font-weight: 600;
    color: #B08D57;
    /* Gold/Brownish accent */
    text-transform: capitalize;
    margin-bottom: 8px;
    display: block;
}

.eyebrow-contact-wellness .star-deco-contact {
    /* Asterisk */
    /* color: #C3A985; /* Gold/Tan color */
    margin-right: 5px;
}

.main-title-contact-wellness {
    font-family: 'Lora', serif;
    /* Elegant serif font */
    font-size: 2.6rem;
    /* Adjust as needed */
    font-weight: 700;
    color: #3E4C59;
    /* Dark Teal/Blue for title */
    line-height: 1.3;
    margin-bottom: 20px;
}

.description-contact-wellness {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #6B6158;
    margin-bottom: 30px;
    max-width: 500px;
}

.contact-info-blocks-grid .info-block-contact {
    border: 2px solid var(--green);
    /* White background for info blocks */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 15px;
    /* Space between icon and text */
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-blocks-grid .info-block-contact:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.info-block-icon {
    background-color: #b39165;
    /* Light tan/beige for icon circle */
    color: #fff;
    /* Gold/Brownish icon */
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    /* Icon size */
    flex-shrink: 0;
}

.info-block-text .info-block-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #3E4C59;
    display: block;
}

.info-block-text .info-block-detail,
.info-block-text .info-block-detail a {
    font-size: 0.85rem;
    color: #6B6158;
    text-decoration: none;
}

.info-block-text .info-block-detail a:hover {
    color: #B08D57;
}

.social-follow-contact {
    margin-top: 30px;
}

.social-follow-contact .follow-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #3E4C59;
    margin-right: 10px;
}

.social-icons-contact {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    display: inline-flex;
    gap: 10px;
}

.social-icons-contact li a {
    background-color: #D1A054;
    /* Gold/Brownish */
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.social-icons-contact li a:hover {
    background-color: #b3863f;
    transform: scale(1.1);
}


/* Contact Form Styles (Right Side) */
.contact-form-wellness-wrapper {
    background-color: #fff;
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.form-title-wellness {
    font-family: 'Lora', serif;
    font-size: 2rem;
    color: #3E4C59;
    margin-bottom: 25px;
}

.contact-form-wellness .form-floating>.form-control {
    background-color: #FAF8F5;
    /* Light cream for inputs */
    border: 1px solid #966710;
    /* Lighter border */
    border-radius: 8px;
}

.contact-form-wellness .form-floating>.form-control:focus {
    border-color: #D1A054;
    box-shadow: 0 0 0 0.2rem rgba(209, 160, 84, 0.25);
}

.contact-form-wellness .form-floating>label {
    color: #9A8B7F;
    font-size: 0.9rem;
}

.contact-form-wellness .form-floating>.form-control:focus~label,
.contact-form-wellness .form-floating>.form-control:not(:placeholder-shown)~label {
    color: #D1A054;
}

.contact-form-wellness textarea.form-control {
    min-height: 130px;
}

.btn-book-appointment {
    background-color: #D1A054;
    /* Muted Gold/Brown */
    color: white;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    display: inline-flex;
    align-items: center;
}

.btn-book-appointment:hover {
    background-color: #b3863f;
    color: white;
}

.btn-book-appointment i {
    margin-left: 8px;
    font-size: 0.8em;
}


/* Responsive */
@media (max-width: 991.98px) {

    /* Tablets */
    .contact-intro-wellness {
        text-align: center;
        margin-bottom: 40px;
        padding-right: 15px;
    }

    .description-contact-wellness {
        margin-left: auto;
        margin-right: auto;
    }

    .main-title-contact-wellness,
    .form-title-wellness {
        font-size: 2.2rem;
    }

    .social-follow-contact {
        justify-content: center;
    }
}

@media (max-width: 767.98px) {

    /* Mobile */
    .contact-us-wellness-section {
        padding: 50px 0;
    }

    .main-title-contact-wellness,
    .form-title-wellness {
        font-size: 1.8rem;
    }

    .contact-form-wellness-wrapper {
        padding: 25px 20px;
    }
}

.copyright-text {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

.mobile-tabs-slider-wrapper .swiper-slide button {
    white-space: nowrap;
    padding: 8px 16px;
    font-size: 0.95rem;
}


/* Gallery sectioin Start */

.interior-gallery-section {
    padding: 60px 0;
    background-color: #2C3E50;
}

.gallery-main-title {
    font-size: 1.8rem;
    /* Adjust as needed */
    font-weight: 700;
    color: var(--black);
    /* Orange/Yellow color from image */
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    /* Clip image to rounded corners */
    border-radius: 8px;
    /* Rounded corners for image items */
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.05);
    /* Subtle glow on dark bg */
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid var(--red);
}

.gallery-item:hover {
    transform: scale(1.03);
    /* Slight zoom on hover */
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    /* Fixed height for gallery images, adjust as needed */
    object-fit: cover;
    /* Cover the area, may crop */
    display: block;
}

/* Bootstrap Modal Customization (Optional) */
.modal-content-gallery {
    background-color: rgba(0, 0, 0, 0.85);
    /* Dark semi-transparent modal background */
    border: none;
}

.modal-header-gallery {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.modal-title-gallery {
    color: #FFA500;
}

.modal-body-gallery img {
    max-width: 100%;
    max-height: 80vh;
    /* Limit image height in modal */
    display: block;
    margin: 0 auto;
    /* Center image in modal */
    border-radius: 5px;
}

.btn-close-modal {
    filter: invert(1) grayscale(100%) brightness(200%);
    /* Make X white */
    opacity: 0.8;
}

.btn-close-modal:hover {
    opacity: 1;
}

/* Testimonials Section Start */

/* Swiper Card Styling */
.testimonial-swiper .card {
  border: none;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #c5c0c091;
}

.testimonial-swiper .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Image Styling */
.testimonial-swiper img {
  border: 4px solid #eaeaea;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

/* Card Title & Text */
.testimonial-swiper .card-title {
  font-size: 1.1rem;
  font-weight: 600;
}

.testimonial-swiper .card-text {
  font-size: 0.95rem;
  color: #555;
}

.testimonial-swiper .text-muted {
  font-size: 0.85rem;
}

/* Swiper Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
  color: #555;
  transition: color 0.3s ease;
  background-color: var(--dark-yellow);
  height: 40px;
  width: 40px;
  font-size: 20px !important;
  border-radius: 50px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: #fff;
}

/* Pagination Dots */
.swiper-pagination-bullet {
  background: #888;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--dark-yellow);
  color: #fff !important;
}