* {
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
}

h1{
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

:root {
    --primary-color: #a94a82;
    --secondary-color: #f8f9fa;
    --dark-color: #343a40;
    --light-color: #ffffff;
}

body {
    padding-top: 150px;
    /* font-family: ; */
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 500;
    font-style: normal;
}



.navbar {
    background-color: white;
    color: black;
    height: fit-content;
    width: 100%;
    z-index: 1000;
    overflow: visible !important;
    position: fixed;
    top: 50px;
}

.search-icon {
    font-size: 1.3rem;
    color: black;
    margin-right: 20px;
    /* line-height: 100px; */
    cursor: pointer;
    /* background-color: #28a745; */
    padding: 0 10px;
}

.logo-div {
    width: fit-content;
    /* background-color: #00bcd4; */
}

.nav-logo {
    width: 100px;
    margin-left: 20px;
    /* height: auto; */
}

/* Custom navbar styles */
.navbar-toggler-wrapper {
    display: flex;
    align-items: center;
}

.custom-toggler,
.navbar-close {
    background: none;
    border: none;
    color: black;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    display: none;
}

.navbar-collapse {
    transition: all 0.3s ease;
}

/* Dropdown menu styles */
.dropdown-menu {
    position: absolute;
    display: none;
    background: #fff;
    min-width: 200px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    padding: 0;
    margin: 0;
    list-style: none;
    z-index: 1000;
    border: none;
    border-radius: 0;
}

/* Show dropdown when parent is hovered */
.dropdown:hover>.dropdown-menu {
    display: block;
}

/* Dropdown item styles */
.dropdown-item {
    padding: 8px 15px;
    color: #333;
    position: relative;
    display: block;
    text-decoration: none;
    transition: all 0.2s;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #000;
}

/* Submenu positioning */
.dropdown-menu .submenu {
    position: absolute;
    left: 100%;
    top: 0;
    display: none;
    background: #fff;
    min-width: 200px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

/* Show submenu when parent item is hovered */
.dropdown-menu li:hover>.submenu {
    display: block;
}

/* Add arrow for items with submenus */
.dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}

.nav-item {
    /* background-color: #0d6efd; */
    margin: auto 20px;

    /* background-color: #00bcd4; */
    /* justify-content: space-between; */
}

.nav-item a {
    /* justify-content: space-around; */
    /* align-items: center; */
    /* background-color: #0d6efd; */
    /* margin: 20px 20px; */
    font-size: 15px !important;
}

#searchBarContainer {
    display: none;
    background: #fff;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 6px;
    width: 400px;
    max-width: 100%;
    position: absolute;
    top: 60px;
    right: 10px;
    z-index: 1050;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
    #searchBarContainer {
        right: 10px;
        top: 60px;
        width: 90%;
    }
}

.highlight {
    background-color: yellow;
    color: black;
    font-weight: bold;
}


/* Mobile styles - stack submenus vertically */
@media (max-width: 991px) {
    .logo {
        width: 80px;
        margin-left: 20px;
        height: auto;
    }

    .custom-toggler,
    .navbar-close {
        display: block;
    }

    .navbar-collapse {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background-color: white;
        padding: 2rem;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        overflow-y: auto;
    }

    .navbar-collapse.show {
        left: 0;
    }

    .navbar-nav {
        flex-direction: column;
    }

    .nav-item {
        margin: 0.5rem 0;


    }

    .dropdown-menu {
        position: static;
        display: none;
        margin-top: 0.5rem;
        padding-left: 1rem;
        border: none;
        box-shadow: none;
    }

    .dropdown-menu.show {
        display: block;
    }

    .dropdown-menu .submenu {
        position: static;
        display: none;
        margin-left: 15px;
        box-shadow: none;
    }

    .dropdown-menu li:hover>.submenu {
        display: block;
    }

    /* Overlay when menu is open */
    .overlay {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100% - 80px);
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    /* Close button styles when menu is open */
    .navbar-collapse.show~.container-fluid .custom-toggler {
        display: none;
    }

    .navbar-collapse.show~.container-fluid .navbar-close {
        display: block;
        position: fixed;
        right: 1rem;
        top: 1rem;
        z-index: 1001;
        background-color: rgba(0, 0, 0, 0.1);
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Scrooling Div Front  */


.scroll-left {
    height: 50px;
    overflow: hidden;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 4;
    /* Lower than navbar */
    background-color: var(--primary-color);
    color: White;
    border: 1px solid rgb(0, 0, 0);
}

.scroll-left p {
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0;
    line-height: 50px;
    text-align: center;
    /* Starting position */
    transform: translateX(100%);
    /* Apply animation to this element */
    animation: scroll-left 25s linear infinite;
}





/* Move it (define the animation) */
@keyframes scroll-left {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}



/* service section  our aprroach and our stry css  */


/* Global Section Styling */
.vp-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
}

.vp-section-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #000000;
}

/* Story Section */
.vp-story-section {
    background: #f9f9f9;
}

/* Approach Section */
.vp-approach-section {
    background-color: var(--primary-color);
}

/* Responsive Image Styling */
img {
    transition: transform 0.3s ease;
    /* Safari mobile fix - prevent stretching */
    max-width: 100%;
    height: auto;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

img:hover {
    transform: scale(1.03) translateZ(0);
    -webkit-transform: scale(1.03) translateZ(0);
}

/* Safari mobile specific media query for image stretching fix */
@supports (-webkit-touch-callout: none) {
    @media screen and (max-width: 768px) {
        img {
            max-width: 100% !important;
            width: 100% !important;
            height: auto !important;
            object-fit: contain !important;
            transform: translateZ(0);
            -webkit-transform: translateZ(0);
            backface-visibility: hidden;
            -webkit-backface-visibility: hidden;
            perspective: 1000px;
            -webkit-perspective: 1000px;
        }
        
        .img-fluid {
            max-width: 100% !important;
            width: 100% !important;
            height: auto !important;
            object-fit: contain !important;
        }
    }
}

.vp-section-title,
.vp-section-text {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease-out;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    width: 88%;
    height: 300px;
}

.vp-section-title.show,
.vp-section-text.show {
    opacity: 1;
    transform: translateY(0);
}

/* Keep reveal animation for images without forcing fixed dimensions
   so Bootstrap's .img-fluid (max-width: 100%; height: auto) still works
   and images don't stretch, especially on Safari mobile. */
.img-fluid {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease-out;
    /* Safari mobile fix - prevent image stretching */
    max-width: 100%;
    height: auto;
    width: auto;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    perspective: 1000px;
    -webkit-perspective: 1000px;
    object-fit: contain;
    display: block;
}

.img-fluid.show {
    opacity: 1;
    transform: translateY(0) translateZ(0);
    -webkit-transform: translateY(0) translateZ(0);
}

/* Safari mobile specific fixes for images in About page */
@media screen and (max-width: 768px) {
    .img-fluid {
        max-width: 100% !important;
        height: auto !important;
        width: 100% !important;
        object-fit: contain !important;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        perspective: 1000px;
        -webkit-perspective: 1000px;
    }
    
    /* Specific fix for images with inline styles */
    img[src*="APPROACH.webp"],
    img[src*="yoga-img.webp"] {
        max-width: 100% !important;
        height: auto !important;
        width: 100% !important;
        object-fit: contain !important;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
    }
}




/* hero section image slider  */

.mySlides {
    display: none;
}

img {
    vertical-align: middle;
}

/* Slideshow container */
.slideshow-container {
    max-width: 100%;
    position: relative;
    margin: auto;
}

/* Caption text */
.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* The dots/bullets/indicators */
.dot {
    height: 8px;
    width: 8px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}


/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 5s;
}

@keyframes fade {
    from {
        opacity: .8
    }

    to {
        opacity: 1
    }
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
    .text {
        font-size: 11px
    }
    
}
@media screen and (max-width: 768px){
    .hero-section{
        margin: 40px 0px;
    }
}
    




/* Therapy section css */


.therapy-header {
    text-align: center;
    margin-bottom: 50px;
}

.therapy-header h1 {
    color: var(--primary-color);
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
    display: inline-block;
}
.therapy-header h2 {
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

/*.therapy-header h2::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background: var(--primary-color);
    bottom: -10px;
    left: 25%;
} */

.therapy-card {
    border: none;
    /* margin: 10px; */
    border-radius: 15px;
    overflow: hidden;
    /* background-color: #6a3093; */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    cursor: pointer;
}

.therapy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 25px;
}

.card-body i {
    font-size: 30px;
}

.card-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.therapy-modal .modal-content {
    border-radius: 15px;
    border: none;
}

.modal-header {
    background: var(--primary-color);
    color: white;
    border-bottom: none;
}

.modal-body {
    padding: 30px;
}

.therapy-features {
    list-style-type: none;
    padding-left: 0;
}

.therapy-features li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.therapy-features li:last-child {
    border-bottom: none;
}

.therapy-features i {
    color: var(--primary-color);
    margin-right: 10px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}

.servic-but{
    width: 100%;
    border: 1px solid #a94a82;
    color: #a94a82;
    
}
.servic-but:hover{
    background-color: #a94a82;
    color: white;
}

@media (max-width: 768px) {
    body {
        padding-top: 120px;
    }

    .therapy-card {
        margin-bottom: 30px;

    }


}


/*===== the new services btn===*/
.service-btn{
    background-color: #a94a82;
    color: white;
    padding: 7px 20px;
}
.service-btn:hover{
    background-color:#75345a;
    color: white;
}

/*===== the new services section===*/

.carousel-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
  }
  .carousel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.25);
  }
  .carousel-card img {
    height: 200px;
    object-fit: cover;
  }
  .card-title {
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    padding: 10px;
  }
  .carousel-indicators {
    position: static;
    margin-top: 15px;
  }
  .carousel-indicators [data-bs-target] {
    background-color: #333;
    width: 12px;
    height: 12px;
    border-radius: 50%;
  }



/* Booking Appointment Hero Section Css */
.booking-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%),
                url('assets/book-bg.webp') center/cover no-repeat;
    color: white;
    padding: 120px 0;
    margin-bottom: 3rem;
}


.booking-card {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
    border: none;
    transition: transform 0.3s;
}

.booking-card:hover {
    transform: translateY(-5px);
}

.booking-card-header {
    background-color: var(--accent-color);
    border-bottom: 1px solid #e3e6f0;
    padding: 1rem 1.35rem;
    border-radius: 0.5rem 0.5rem 0 0 !important;
}

.time-slot {
    padding: 0.5rem;
    background-color: var(--accent-color);
    border-radius: 0.35rem;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid #e3e6f0;
}

.time-slot:hover {
    background-color: #d2d6de;
}

.time-slot.selected {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.btn-book {
    background-color: var(--primary-color);
    color: white;
    padding: 0.75rem;
    font-weight: 600;
}

.btn-book:hover {
    background-color: var(--secondary-color);
    color: white;
}

.confirmation-icon {
    font-size: 5rem;
    color: #1cc88a;
    margin-bottom: 1.5rem;
}

.map-container {
    height: 654px;
    border-radius: 0.35rem;
    overflow: hidden;
    margin-bottom: 1rem;
    border: 1px solid #e3e6f0;
}

.booking-type-tabs .nav-link {
    color: #6e707e;
    font-weight: 600;
    border: none;
    padding: 1rem 2rem;
}

.booking-type-tabs .nav-link.active {
    color: var(--primary-color);
    background-color: transparent;
    border-bottom: 3px solid var(--primary-color);
}

.video-call-icon {
    background-color: #f0f7ff;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
    font-size: 2rem;
}


/* About Section csss  */
.about-section {
    padding: 80px 20px;
    position: relative;
}

.about-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 40px;
    transition: 0.4s ease-in-out;
}

.about-card:hover {
    transform: scale(1.02);
}

.tagline {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #6a1b9a;
    font-weight: bold;
    margin-bottom: 10px;
}

.about-content h2 {
    font-weight: 800;
    font-size: 2.2rem;
    color: #2e2e2e;
}

.about-content p {
    color: #333;
    font-size: 1.05rem;
    line-height: 1.7;
}

.btn-custom {
    background: var(--primary-color);
    border: none;
    padding: 10px 28px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transition: 0.3s ease-in-out;
}

.btn-custom:hover {
    background: #75345a;
    color: white;
    transform: scale(1.05);
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    border: 5px solid white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.video-wrapper:hover {
    transform: scale(1.1);
}

.icon-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #d1c4e9;
    padding: 5px 12px;
    border-radius: 25px;
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 500;
}

@media (max-width: 768px) {
    .about-card {
        padding: 25px;
    }
}


.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 5rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjA1KSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
    opacity: 0.6;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-description {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 10px auto;
    opacity: 0.9;
}

.get-btn {
    background-color: var(--accent-color);
    color: white;
    font-weight: 600;
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    border: none;
    box-shadow: 0 4px 15px rgba(46, 39, 26, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(254, 222, 170, 0.6);
    color: white;
}

.cta-btn:active {
    transform: translateY(1px);
}

.cta-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.cta-btn:hover i {
    transform: translateX(5px);
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.cta-btn:hover::before {
    left: 100%;
}

/* Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Floating elements */
.floating-element {
    position: absolute;
    opacity: 0.1;
    z-index: 0;
}

.circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: white;
}

.triangle {
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 100px solid white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cta-title {
        font-size: 2rem;
    }

    .cta-description {
        font-size: 1rem;
    }

    .cta-section {
        padding: 3rem 0;
    }
}


/* Blog and news css  */
.blog-heading {
    text-align: center;
    padding-top: 40px;
}

.blog-heading h5 {
    color: #0d6efd;
}

.blog-heading h2 {
    font-weight: bold;
    margin-bottom: 20px;
}

.blog-card {
    background: white;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    border-radius: 10px;
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.badge-health {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.card-footer a {
    background-color: #e0f7fa;
    padding: 8px 12px;
    border-radius: 50%;
    color: #00bcd4;
    text-decoration: none;
}


/*=========plan-card=========*/
.plan-card {
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 10px;
    height: 100%;
    background: white;
    border-radius: 15px;
    padding: 15px;
    transition: 0.3s;
}

/*=======group page ======*/
.group-hero{
    background: linear-gradient(rgba(169, 74, 130, 0.85), rgba(169, 74, 130, 0.85)), url('assets/service02.webp') center / cover no-repeat;
    color: white;
    padding: 150px 0 120px;
    margin-bottom: 0;
    text-align: center;
    position: relative;
    }

    /*======== Student Page ======*/

    .student-hero{
        background: linear-gradient(rgba(169, 74, 130, 0.9), rgba(169, 74, 130, 0.9)),
        url('assets/student-wel.webp') center/cover no-repeat;
    color: white;
    padding: 120px 0;
    margin-bottom: 2rem;    
    text-align: center;
    }
     
    /* ========= wellness subscription ====*/
    /*======== Student Page ======*/

    .Wellsub-hero{
        background: linear-gradient(rgba(169, 74, 130, 0.9), rgba(169, 74, 130, 0.9)),
        url('assets/atma-yuva.webp') center/cover no-repeat;
    color: white;
    padding: 120px 0;
    margin-bottom: 2rem;    
    text-align: center;
    }

     /*======== Support Page ======*/

     .support-hero{
    
        background: url('assets/suppor-g.JPG') center/cover no-repeat;
        padding: 120px 0;
        color: white;
        position: relative;
        text-align: center;
        height: 400px;
    }
    .support-hero::after {
        content: "Support Group at Manasthali";
        position: absolute;
        top: 90%;
        left: 0;
        width: 100%;
        color:white;
        padding: 12px 30px;
         color: white; 
         background-color: #a94a82; 
         text-align: center; 
         font-size: 2.5em;
          margin-bottom: 40px;
    }
    @media screen and (max-width:468px) {
        .support-hero::after {
            content: "Wellness Subscription at Manasthali";
            position: absolute;
            left: 0px;
            top: 50%;
            width: 100%;
            color: white;
            padding: 12px 30px;
            color: white;
            background-color: #a94a82;
            text-align: center;
            font-size: 1.5em;
            margin-bottom: 40px;
        }
    }

    

/* Foooter Csss */

.footer .footer-mask {
    background: #464646;
    color: #fefefe;
    padding: 0;
    padding-top: 80px;
}

.footer .footer-contant {
    background: url(assets/footer-bg.png)no-repeat 50% 100%;
    padding-bottom: 80px;
}

.footer .footer-logo {
    padding-left: 0;
}

.footer a {
    color: #fefefe;
    font-size: 14px;
}

.footer a:hover {
    color: #C1C1C1;
}

.footer .footer-logo {
    max-height: 160px;
    margin-bottom: 25px;
}


.footer .social ul {
    text-align: left;
    width: 250px;
}

.footer .social ul {
    list-style: none;
    margin: 0;
    padding: 0;
    vertical-align: top
}

.footer .social ul li {
    display: inline-block;
    margin: 0;
    padding: 0;
}

.footer .social ul li:not(:last-child) {
    margin-right: 5px;
}

.footer .social ul li a {
    background: #fefefe;
    border-radius: 5px;
    color: #595959;
    display: block;
    font-size: 17px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    text-decoration: none;
    width: 30px;
}

.footer .social ul li a:hover {
    background: #ddd;
    color: #373a3c;
}

.footer .title {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 60px;
    text-transform: uppercase;
}
@media (max-width:600px){
    .footer .title{
        margin: 0;
        padding: 30px 0;
    }
}



.footer .list {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: -8px;
}

.footer .list {
    margin-top: -8px;
}

.footer .list a:hover {
    background: white;
    color: #777;
    text-decoration: none;
}

.footer .list li {
    display: block;
    margin: 0;
    margin-bottom: 6px;
    padding: 0;
}

.footer .list-hours li,
.footer .list-news li {
    border-bottom: 1px solid #90949c;
    margin-bottom: 3px;
    font-size: 14px;
    line-height: 30px;
    padding: 8px 0;
}

.footer .list-hours li:last-child,
.footer .list-news li:last-child {
    border-bottom: 0;
    margin-bottom: 0;
}

.footer .list-hours .title,
.footer .list-news .title {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 2px;
    margin-right: 4px;
    text-decoration: none;
    text-transform: initial;

}

.footer .list-hours .description {
    float: right;
}

.footer .list-contact li:first-child {
    line-height: 1.8;
    padding-bottom: 6px;
}

.footer .list-news .title:after {
    content: ',';
}

.footer .list-news .description {
    color: #dddfe2;
    font-size: 12px;
    font-style: italic;
}

.footer .footer-bottom {
    background: #303030;
    font-size: 15px;
    padding: 40px 0;
}

.footer .footer-bottom .container {
    padding: 0 15px;
}

/* logo css website logo  */

.footer-logo a img {
    width: auto;
    height: 180px;
    background-color: white;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}

@media (max-width: 767px) {
    .footer .footer-bottom .container {
        text-align: center
    }

    .-footer-logo a img {
        width: 100%;
        height: auto;
        /* background-color: #0d6efd; */
    }

    .social {
        display: none;
        background-color: #0d6efd;
    }

}

.btn-scoll-up.btn {
    border: 0;
    background: rgb(48, 48, 48) url(assets/arrow-up.png) no-repeat 50% 50%;
    bottom: 15px;
    display: none;
    height: 50px;
    opacity: 0.6;
    outline: 2px solid #F8F8F8;
    outline-offset: -4px;
    position: fixed;
    right: 25px;
    transition: .15s opacity ease;
    -webkit-transition: .15s opacity ease;
    width: 50px;
    z-index: 15;
}

.btn-scoll-up.btn:hover {
    opacity: 1;
    outline: 2px solid #F8F8F8;
    outline-offset: -4px;
}




/* Service page cassss */

.services-section {
    padding: 60px 40px;
    background: #fff;
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 40px;
    gap: 20px;
}

.subheading {
    text-transform: uppercase;
    font-size: 12px;
    color: #555;
    letter-spacing: 1px;
}

.services-header h1 {
    font-size: 56px;
    font-weight: 500;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin: 5px 0;
}

.description {
    max-width: 600px;
    /* margin-bottom: 30px; */
    font-size: 14px;
    color: #b4b4b4;
}

.pricing-link a {
    color: #000;
    font-weight: 400;
    text-decoration: none;
    font-size: 19px;
}

.swiper {
    width: 100%;
    padding: 10px 0 40px;
}

.swiper-slide {
    height: 450px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.overlay {
    position: absolute;
    bottom: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    color: white;
    width: 100%;
}

.count {
    font-size: 14px;
    opacity: 0.8;
}

h3 {
    margin: 5px 0;
    font-size: 18px;
}

.overlay p {
    font-size: 13px;
    opacity: 0.85;
}

/* reset - div all css here  */
.object-cover {
    object-fit: cover;
    height: 100%;
}

.experience-section {
    background-color: #f7faf4;
}

.experience-card {
    border: none;
    border-radius: 12px;
    padding: 30px 20px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-5px);
}

/* Specifically color-tinted for #a94a82 */
.icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(23%) sepia(12%) saturate(1794%) hue-rotate(292deg) brightness(90%) contrast(89%);
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    color: #1c2a2e;
}

.card-text {
    font-size: 14px;
    color: #889196;
}
/* Newsletter */

.hero-section-newsletter {
    background:  
        url('assets/letter_bg.webp') center/cover no-repeat;
    color: white;
    padding: 150px 0;
    margin-bottom: 2rem;    
    text-align: center;
}
@media (max-width:600px){
.hero-section-newsletter {
    background: linear-gradient(rgba(169, 74, 130, 0.85), rgba(169, 74, 130, 0.85)),
                url('assets/yoga-img.webp') center/cover no-repeat;
            color: white;
            padding: 120px 0 120px;
            margin-bottom: 0;
            text-align: center;
            position: relative;
            width:100%;
}
.hero-section-newsletter::after{
    content: "Newletter";
    position: absolute;
            left: 0px;
            top: 50%;
            width: 100%;
            color: white;
            padding: 12px 30px;
            color: white;
            text-align: center;
            font-size: 1.8em;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            margin-bottom: 40px;
}
}

/* psychaitry  */

.hero-section-psychaitry {
    background: linear-gradient(rgba(169, 74, 130, 0.9), rgba(169, 74, 130, 0.9)),
        url('assets/bann-pschai.webp') top/cover no-repeat;
    color: white;
    padding: 120px 0;
    margin-bottom: 2rem;    
    text-align: center;
}
/* Laision */
.hero-section-liaison {
    background: linear-gradient(rgba(169, 74, 130, 0.9), rgba(169, 74, 130, 0.9)),
        url('assets/liaison_bg.webp') top/cover no-repeat;
    color: white;
    padding: 120px 0;
    margin-bottom: 2rem;    
    text-align: center;
}
/* About page all css here  */

.hero-section-about {
    background: linear-gradient(rgba(169, 74, 130, 0.9), rgba(169, 74, 130, 0.9)),
        url('assets/yoga-img.webp') top/cover no-repeat;
    color: white;
    padding: 120px 0;
    margin-bottom: 2rem;    
    text-align: center;
}

/* Safari mobile fix for images in About page sections */
@media screen and (max-width: 768px) {
    .hero-section-about ~ section img,
    section img.img-fluid {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        perspective: 1000px;
        -webkit-perspective: 1000px;
        display: block;
    }
}

.section-title {
    position: relative;
    margin-bottom: 2.5rem;
    color: var(--dark-color);
}

/* .section-title:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
} */

.about-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.1);
    transition: transform 0.3s ease;
    margin-bottom: 30px;
    background-color: white;
}

.about-card:hover {
    transform: translateY(-5px);
}

.team-card {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.1);
    transition: all 0.3s ease;
    background-color: white;
    margin-bottom: 30px;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0.5rem 1.5rem 0 rgba(58, 59, 69, 0.2);
}

.team-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid var(--accent-color);
    margin: 0 auto 20px;
}

.team-img:hover {
    transform: scale(1.1);
    /* zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}

.social-icons a {
    color: var(--text-color);
    margin: 0 5px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--primary-color);
}

.breadcrumb {
    background-color: transparent;
    padding: 0;
}

.mission-div {
    background-color: var(--primary-color);
}

.mission-text h2 {
    font-weight: 700;
}

.mission-text p {
    font-size: 17px;
}

.breadcrumb-item.active {
    color: var(--primary-color);
    font-weight: 600;
}



.hindi-text {
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-size: 1.1em;
}



/* section csss  who we are  */

.text-orange {
    color: rgb(111, 111, 247);
}

.vision-card {
    background-color: var(--primary-color);
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.mission-card {
    background-color: var(--dark-color);
    color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.signature {
    font-family: 'Brush Script MT', cursive;
    font-size: 24px;
    margin-top: 20px;
}

/* TEam section css  */
team-section {
    padding: 60px 0;
    background: #fff;
    width: 100%;
}

.team-section h2 {
    font-size: 36px;
    font-weight: bold;
    color: #a94a82;
    margin-bottom: 10px;
}

.team-section p.subheading {
    color: #999;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-card {
    background: #fff;
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 0;
    overflow: hidden;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.team-title {
    font-size: 26px;
    font-weight: bold;
    margin-top: 10px;
    color: #333;
}

.team-role {
    font-size: 16px;
    color: #a94a82;
    margin-bottom: 15px;
}

.team-social i {
    font-size: 18px;
    color: #333;
    margin: 0 8px;
    transition: color 0.3s;
}

.team-social i:hover {
    color: #a94a82;
}

.btn-profile {
    background: #a94a82;
    border: none;
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}



.carousel-item .row {
    min-height: 200px;
}

.team-text {
    padding: 50px;
}

@media (max-width: 768px) {
    .team-text {
        padding: 30px 20px;
    }

    .carousel-item .row {
        flex-direction: row;
    }

    .team-img {
        height: 300px;
        object-fit: cover;
    }

    /* this code for hide the news and events crausel dots in mobile */
    .owl-dots {
        display: none;
    }
}




/* Clinical page all css 
  */

.section-title {
    font-weight: 700;
    margin: 20px 0 10px;
}

.accordion-button:not(.collapsed) {
    background-color: #a94a82;
    /* Bootstrap green */
    color: white;
}

.accordion-button::after {
    transform: rotate(0deg);
}

.accordion-button.collapsed::after {
    transform: rotate(180deg);
}

.img-col img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}




/* team page alll csss 
 */


.team-section {
    background: #fff;
    padding: 60px 0;
    text-align: center;
}

.team-card {
    position: relative;
    overflow: hidden;
    background: #fff;
    border: none;
    border-radius: 0;
    margin-bottom: 30px;
}

.team-card .yellow-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--primary-color);
    z-index: 1;
}

.team-card img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.team-info {
    padding: 20px 0 10px;
    z-index: 3;
    position: relative;
}

.team-info h5 {
    margin: 10px 0 5px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.team-info p {
    margin-bottom: 10px;
    font-size: 14px;
    color: #555;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.social-icons a {
    color: #333;
    font-size: 16px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f1f1f1;
    text-decoration: none;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #ddd;
}

.underline {
    width: 30px;
    height: 2px;
    background: #f7cf3b;
    margin: 5px auto;
}


/* collobarations page css here all  */

.collab-hero {
    background: linear-gradient(rgba(169, 74, 130, 0.85), rgba(169, 74, 130, 0.85)),
        url('assets/collab.webp') center/cover no-repeat;
    color: white;
    padding: 80px 0;
    margin-bottom: 2rem;    
    text-align: center;
}



.collab-hero .collab-content {
    position: relative;
    z-index: 1;
}

.collab-section-title {
    font-weight: 700;
    font-size: 2.4rem;
    margin-bottom: 40px;
    color: #333;
}

.collab-card {
    border: none;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.collab-card:hover {
    transform: translateY(-5px);
}

.collab-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #f0f0f5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
}

.collab-testimonial {
    background: #eef2f6;
    padding: 60px 30px;
    border-radius: 20px;
}

.collab-btn {
    background-color: white;
    color: #a94a82;
    border: none;
}

.collab-btn:hover {
    background-color: #8c3b6a;
}

.collab-footer {
    background: #f4f4f4;
    padding: 30px 0;
    text-align: center;
    color: #666;
}


/* Leadership all css is here  */

.lead-hero {
    background: linear-gradient(rgba(169, 74, 130, 0.85), rgba(169, 74, 130, 0.85)),
                url('assets/yoga-img.webp') center/cover no-repeat;
            color: white;
            padding: 120px 0 120px;
            margin-bottom: 0;
            text-align: center;
            position: relative;
}

.lead-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
}

.lead-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.lead-card:hover {
    transform: translateY(-5px);
}

.lead-card img {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.lead-card-body {
    padding: 20px;
}

.lead-quote {
    background-color: #f9f9fb;
    border-left: 4px solid #a94a82;
    padding: 25px;
    font-style: italic;
    color: #333;
}

.lead-milestone {
    background: #f1f1f1;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.lead-cta {
    background: #fff;
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.lead-footer {
    background: #f4f4f4;
    text-align: center;
    padding: 30px 0;
    color: #777;
}

.vp-team-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    padding: 20px;
    transition: transform 0.3s ease;
}

.vp-team-card:hover {
    transform: scale(1.01);
}

.vp-team-img {
    object-fit: cover;
    height: 100%;
    border-radius: 12px 0 0 12px;
}

.vp-team-img-left {
    object-fit: cover;
    height: 100%;
    border-radius: 0 12px 12px 0;
}

.vp-team-text {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 0 12px 12px 0;
}

.vp-team-text-right {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 12px 0 0 12px;
}

.vp-team-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #333;
}

.vp-team-role {
    font-size: 1rem;
    color: #666;
    margin-bottom: 10px;
}

.vp-team-social i {
    font-size: 1.2rem;
    color: #444;
    margin-right: 10px;
    transition: color 0.3s;
}

.vp-team-social i:hover {
    color: #007bff;
}

.vp-team-desc {
    font-size: 1rem;
    color: #444;
    text-align: justify;
}

.vp-btn-profile {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    border: none;
    margin-top: 15px;
    transition: background 0.3s ease;
}

.vp-btn-profile:hover {
    background-color: #004d99;
}


/* Project perspective all css is heree   */

.pph-hero {
    background: linear-gradient(rgba(169, 74, 130, 0.9), rgba(169, 74, 130, 0.9)),
        url('https://images.unsplash.com/photo-1516822003754-cca485356ecb') center/cover no-repeat;
    color: white;
    padding: 120px 0;
    text-align: center;
}

.pph-title {
    font-size: 2.5rem;
    font-weight: 700;
}

.pph-section {
    padding: 60px 0;
}

.pph-pillars .card {
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.pph-impact {
    background: var(--primary-color);
    color: white;
    padding: 40px 0;
}

.pph-impact .col {
    text-align: center;
}

.pph-workshops .card img {
    height: 220px;
    object-fit: cover;
}

.pph-footer {
    background: #f4f4f4;
    text-align: center;
    padding: 30px 0;
}

/* awareness*/
.aware-hero {
    background: linear-gradient(rgba(169, 74, 130, 0.85), rgba(169, 74, 130, 0.85)),
        url('assets/awareness_bg.webp') center/cover no-repeat;
    color: white;
    padding: 120px 0;
    text-align: center;
}


/* Education page all csss is here  */

.edu-hero {
    background: linear-gradient(rgba(169, 74, 130, 0.85), rgba(169, 74, 130, 0.85)),
        url('assets/Psychology-bg2.webp') center/cover no-repeat;
    color: white;
    padding: 120px 0;
    text-align: center;
}

.edu-title {
    font-weight: 700;
    font-size: 2.4rem;
    margin-bottom: 40px;
    color: #333;
}

.edu-card {
    border: none;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.edu-card:hover {
    transform: translateY(-5px);
}

.edu-card img {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    height: 180px;
    width: 100%;
    object-fit: cover;
}

.edu-feature {
    padding: 25px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.04);
    text-align: center;
    transition: 0.3s;
}

.edu-feature:hover {
    transform: translateY(-4px);
}

.edu-icon {
    font-size: 32px;
    color: #a94a82;
    margin-bottom: 15px;
}

.edu-testimonial {
    background: linear-gradient(rgba(169, 74, 130, 0.85), rgba(169, 74, 130, 0.85));
    color: white;
    padding: 60px 30px;
    border-radius: 20px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.edu-cta {
    background: #fff;
    padding: 60px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.edu-footer {
    background: #f4f4f4;
    text-align: center;
    padding: 30px 0;
    color: #777;
}


/* Atmsandhan all css is here  */

.atms-hero {
    background: linear-gradient(rgba(169, 74, 130, 0.85), rgba(169, 74, 130, 0.85)),
        url('assets/atmasa_bg.webp') center/cover no-repeat;
    padding: 120px 0;
    color: white;
    text-align: center;
}

.atms-title {
    font-size: 2.8rem;
    font-weight: 700;
}

.atms-section {
    padding: 60px 0;
}

.atms-card {
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    overflow: hidden;
    transition: 0.3s;
}

.atms-card:hover {
    transform: translateY(-5px);
}

.atms-card img {
    height: 220px;
    object-fit: cover;
}

.atms-footer {
    background: #222;
    color: #aaa;
    padding: 40px 0;
    text-align: center;
}

.atms-icon {
    font-size: 2rem;
    color: #6f42c1;
}




/* Core team page css all is here  */
.team-hero {
    background: linear-gradient(rgba(169, 74, 130, 0.85), rgba(169, 74, 130, 0.85)),
        url('assets/student-wel.webp') center/cover no-repeat;
    color: white;
    padding: 120px 0;
    margin-bottom: 2rem;    
    text-align: center;
}

.team-section-title {
    font-weight: 700;
    font-size: 2.4rem;
    margin-bottom: 40px;
    color: #333;
}

.team-card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-6px);
}

.team-card img {
    height: 320px;
    width: 100%;
    object-fit: cover;
}

.team-card-body {
    padding: 20px;
}

.team-name {
    font-size: 1.3rem;
    font-weight: 600;
}

.team-role {
    color: #a94a82;
    font-weight: 500;
    margin-bottom: 10px;
}

.team-social a {
    color: #666;
    font-size: 18px;
    margin: 0 6px;
}

.team-social a:hover {
    color: #a94a82;
}

.team-values i {
    font-size: 32px;
    color: #a94a82;
    margin-bottom: 10px;
}

.team-cta {
    background: #fff;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.team-footer {
    background: #f1f1f1;
    text-align: center;
    padding: 30px 0;
    color: #777;
}



/* wellnesss page all csss here  */




.misc-card {
    transition: 0.3s;
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.misc-card:hover {
    transform: translateY(-5px);
}

.misc-card img {
    height: 200px;
    object-fit: cover;
}

.misc-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.misc-footer {
    background: #111;
    color: #ccc;
    padding: 40px 0;
    text-align: center;
}

.info-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.info-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}



/* Miscellaneous | Psychology Network  page csss alll is herer */

.misc-hero {
    background: linear-gradient(rgba(161, 102, 137, 0.9), rgba(254, 191, 228, 0.326)),
        url('https://images.unsplash.com/photo-1524504388940-b1c1722653e1') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 120px 0;
}

.misc-hero h1 {
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.misc-section {
    padding: 60px 0;
}

.misc-background {
    background-color: #d8b2c9;
    padding: 40px 0;
    border-radius: 20px;
}

/* .misc-card, .misc-footer already defined above - reusing those */
.misc-icon.psychology-network {
    font-size: 2.5rem;
    color: #7952b3;
}

.quote-section {
    background-color: #f1f3f5;
    padding: 60px 0;
}

.quote-box {
    font-style: italic;
    border-left: 4px solid #7952b3;
    padding-left: 20px;
    margin-bottom: 30px;
}

.testimonials {
    background: #fff;
    padding: 60px 0;
}

.testimonial {
    border-left: 4px solid #28a745;
    padding-left: 20px;
    margin-bottom: 30px;
}


.manasthali-wrapper {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 20px auto;
    max-width: 2000px;
    background-color: #f9f9f9;
    padding: 20px;
    color: #333;
}

.manasthali-section {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.manasthali-card {
    -webkit-box-shadow: 5px 5px 47px -15px rgba(0, 0, 0, 0.51);
    box-shadow: 5px 5px 47px -20px #a94a82c7;
    border-radius: 20px;
    padding: 30px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.manasthali-card:hover {
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 5px 10px 50px -15px rgba(169, 74, 130, 0.7);
}

.manasthali-heading {
    color: #a94a82;
    font-size: 2.9em;
    font-weight: 700;
    margin-bottom: 10px;
}

.manasthali-subheading {
    font-size: 28px;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #34495e;
}

.manasthali-paragraph {
    text-align: justify;
    margin: 10px 0;
}

.manasthali-list {
    margin-left: 0px;
    padding-left: 0;
}

.manasthali-list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
    list-style: none;
}

/* Custom bullet */
.manasthali-list li::before {
    content: '✔';
    color: #a94a82;
    position: absolute;
    left: 0;
    top: 2px;
    font-weight: bold;
    font-size: 18px;
}

/* For ordered list - remove custom bullet */
.manasthali-list[style*="list-style-type: decimal"] li::before {
    content: none;
    position: static;
    font-weight: normal;
    font-size: inherit;
    color: inherit;
    padding-left: 0;
    list-style-position: inside;
}

/* For <ol> elements */
ol.manasthali-list {
    list-style-type: decimal;
    margin-left: 30px;
    padding-left: 0;
}

ol.manasthali-list li {
    padding-left: 0;
    margin-bottom: 8px;
    position: static;
}

.manasthali-space {
    margin-top: 5rem;
    width: 100%;
    margin-left: auto;
}

.manasthali-card-space {
    margin-top: 2rem;
}

.manasthali-icon {
    font-size: 2em;
    color: #a94a82;
    margin-bottom: 15px;
}


/*  maya for wellness page  */

.mfw-hero {
    background: linear-gradient(rgba(169, 74, 130, 0.75), rgba(169, 74, 130, 0.75)),
        url('assets/Maya2bg.webp') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 100px 0;
}

/* maya all css is herer ? */
/* Hero Banner */
.maya-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('assets/anxietyIMG.jpg') center/cover no-repeat;
    height: 100vh;
    color: white;
}

/* Section Styling */
.feature-card {
    transition: transform 0.3s ease;
    background-color: #fff;
    border-radius: 1rem;
}

.feature-card:hover {
    transform: translateY(-10px);
}

/* Join Section */
.join-section {
    background-color: var(--primary-color);
}

/* New: Experience Cards */
.experience-card {
    background-color: #f8f9fa;
    border-left: 5px solid #375a7f;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease-in-out;
}

.experience-card:hover {
    background-color: #e9f0f7;
}

/* Element Table */
.element-table {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.element-table th,
.element-table td {
    padding: 1rem;
    text-align: center;
    border: 1px solid #dee2e6;
}

/* Checklist Styling */
.checklist {
    list-style: none;
    padding-left: 0;
}

.checklist li::before {
    content: "\2713";
    /* ✓ symbol */
    color: #28a745;
    font-weight: bold;
    margin-right: 10px;
}

/* Section Headings */
.section-heading {
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* CTA Buttons */
.cta-btn {
    background-color: #375a7f;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    transition: 0.3s ease-in-out;
}

.cta-btn:hover {
    background-color: #2c4565;
}

/* Responsive */
@media (max-width: 768px) {
    .maya-hero h1 {
        font-size: 2.5rem;
    }

    .experience-card {
        padding: 15px;
    }
}

/* Course-hero section */
.Course-hero {
    background: linear-gradient(rgba(169, 74, 130, 0.75), rgba(169, 74, 130, 0.75)),
        url('assets/course_bg.webp') center/cover no-repeat;
    padding: 120px 0;
    color: white;
    text-align: center;
}

@media (max-width: 600px){
    .Course-hero .atms-title {
        font-size:24px ;
    }
    .Course-hero .lead{
        font-size: 18px;
    }
}

 
/* Training page all css is here  */
.taining-hero {
    background: linear-gradient(rgba(169, 74, 130, 0.75), rgba(169, 74, 130, 0.75)),
        url('assets/atmsa_bg.webp') center/cover no-repeat;
    padding: 120px 0;
    color: white;
    text-align: center;
}

.taining-title {
    font-size: 2.8rem;
    font-weight: 700;
}

.taining-section {
    padding: 60px 0;
}

.taining-card {
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    overflow: hidden;
    transition: 0.3s;
}

.taining-card:hover {
    transform: translateY(-5px);
}

.taining-card img {
    height: 220px;
    object-fit: cover;
}

.taining-icon {
    font-size: 2rem;
    color: #6f42c1;
}

.internship-section h2 {
    font-weight: 600;
    color: #a94a82;
}

.internship-section ul {
    list-style: disc;
    padding-left: 1.5rem;
}

.internship-section li {
    margin-bottom: 10px;
}


/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters-wrapper {
    text-align: center;
    margin-bottom: 80px;
}

.portfolio .portfolio-filters {
    display: inline-flex;
    align-items: center;
    gap: 40px;
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
}

.portfolio .portfolio-filters::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 1px;
    background: color-mix(in srgb, var(--default-color), transparent 90%);
}

.portfolio .portfolio-filters li {
    position: relative;
    cursor: pointer;
    padding: 12px 0;
    font-size: 15px;
    font-weight: 400;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    transition: all 0.4s ease-out;
    letter-spacing: 0.5px;
}

.portfolio .portfolio-filters li::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: all 0.4s ease-out;
    transform: translateX(-50%);
}

.portfolio .portfolio-filters li:hover {
    color: var(--default-color);
}

.portfolio .portfolio-filters li.filter-active {
    color: var(--default-color);
}

.portfolio .portfolio-filters li.filter-active::after {
    width: 100%;
}

@media (max-width: 768px) {
    .portfolio .portfolio-filters {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
}

.portfolio .portfolio-card {
    background: var(--surface-color);
    transition: all 0.4s ease-out;
    overflow: hidden;
}

.portfolio .portfolio-card:hover {
    transform: translateY(-8px);
}

.portfolio .portfolio-card:hover .image-container img {
    transform: scale(1.05);
}

.portfolio .portfolio-card:hover .overlay {
    opacity: 1;
    visibility: visible;
}

.portfolio .portfolio-card:hover .content h3 {
    color: var(--accent-color);
}

.portfolio .image-container {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    border-radius: 8px;
}

.portfolio .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease-out;
}

.portfolio .image-container .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: color-mix(in srgb, var(--accent-color), transparent 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-out;
    backdrop-filter: blur(2px);
}

.portfolio .image-container .overlay-content {
    display: flex;
    gap: 20px;
    transform: translateY(20px);
    transition: transform 0.4s ease-out 0.1s;
}

.portfolio-card:hover .portfolio .image-container .overlay-content {
    transform: translateY(0);
}

.portfolio .image-container .overlay-content a {
    width: 50px;
    height: 50px;
    background: var(--surface-color);
    color: var(--heading-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 18px;
}

.portfolio .image-container .overlay-content a:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
    transform: scale(1.1);
}

.portfolio .content {
    padding: 30px 0;
    text-align: center;
}

.portfolio .content h3 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 8px;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

.portfolio .content p {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    letter-spacing: 0.3px;
}

@media (min-width: 992px) {
    .portfolio .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .portfolio .portfolio-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 50px;
    }
}


/*  news & Events */

.gallery {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto;
}

.gallery .a-frame {
    background: url('assets/texture1.1.webp') center/cover no-repeat;
    height: 320px;
    width: 300px;
    margin: 20px;
    border-radius: 5px;
    overflow: hidden;
    border: 2px solid rgba(169, 74, 130, 0.8);
    border-radius: 10px;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}

.gallery video {
    background-color: #f5ecf1;
    height: 320px;
    width: 300px;
    margin: 20px;
    border-radius: 5px;
    overflow: hidden;
    border: 2px solid rgba(169, 74, 130, 0.8);
    border-radius: 10px;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}

.gallery a img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    
}

.gallery a img:hover {
    transform: scale(1.4);
}

.gallery-item {
    display: none;
}

.gallery-item.active {
    display: block;
}

.filter-btn {
    padding: 6px 16px;
    color: black;
    background: none;
    border: none;
}

.filter-btn:hover {
    background-color: #a94a82;
    border: none;
    color: white;
}

.no-style {
    box-shadow: none !important;
    border: none !important;
}


.manasthali-image {
    margin-top: 30px;
    
}

/* for newsletter  */
.NewsLe {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto;
}

.NewsLe a {
    height: auto;
    width: 300px;
    margin: 20px;
    border-radius: 5px;
    overflow: hidden;
    border: 2px solid rgba(169, 74, 130, 0.8);
    border-radius: 10px;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}

.NewsLe video {
    background-color: #f5ecf1;
    height: 370px;
    width: 300px;
    margin: 20px;
    border-radius: 5px;
    overflow: hidden;
    border: 2px solid rgba(169, 74, 130, 0.8);
    border-radius: 10px;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}

.NewsLe a img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    background-color: #f5ecf1;
}

.NewsLe a img:hover {
    transform: scale(1.4);
}

/* faq all css is here  */
.faq-section {
    padding: 60px 0;
    display: flex;
    justify-content: center;
}

.faq-container {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    width: 90%;
}

.faq-left {
    flex: 1;
}

.faq-right {
    flex: 1;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 500px;
    background-color: #f8f1f5;
}

.faq-right img {
    max-width: 80%;
    height: auto;
}

.faq-subtitle {
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
    font-size: 14px;
}

.faq-title {
    font-size: 36px;
    font-weight: 700;
    color: #0c2340;
    margin-bottom: 30px;
}

.faq-accordion {
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
}

.faq-item+.faq-item {
    border-top: 1px solid #ddd;
}

.faq-question {
    background: #fff;
    color: #000;
    font-weight: 600;
    padding: 15px 20px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    cursor: pointer;
    position: relative;
}
.faq-question :hover{
    color: white;
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 20px;
    font-weight: bold;
    
}

.faq-item.active .faq-question::after {
    content: "−";
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fafafa;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 15px 20px;
}

/* ------------------------------ */
/* ✅ RESPONSIVE DESIGN SECTION   */
/* ------------------------------ */

/* Large tablets & small laptops (≤ 1024px) */
@media (max-width: 1024px) {
    .faq-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .faq-right {
        background: none;
    }

    .faq-right img {
        max-width: 60%;
    }

    .faq-title {
        font-size: 32px;
    }
}

/* Tablets & medium screens (≤ 768px) */
@media (max-width: 768px) {
    .faq-section {
        padding: 40px 0;
    }

    .faq-container {
        flex-direction: column;
        width: 95%;
        gap: 25px;
    }

    .faq-left,
    .faq-right {
        width: 100%;
    }

    .faq-title {
        font-size: 28px;
    }

    .faq-right img {
        max-width: 75%;
    }

    .faq-question {
        font-size: 16px;
        padding: 12px 16px;
    }

    .faq-answer {
        font-size: 15px;
    }
}

/* Mobile phones (≤ 576px) */
@media (max-width: 576px) {
    .faq-section {
        padding: 30px 0;
    }

    .faq-title {
        font-size: 24px;
        text-align: center;
    }

    .faq-subtitle {
        text-align: center;
        font-size: 13px;
    }

    .faq-container {
        width: 95%;
        gap: 20px;
    }

    .faq-right img {
        max-width: 90%;
    }

    .faq-question {
        font-size: 15px;
        padding: 12px 14px;
    }

    .faq-answer {
        font-size: 14px;
    }
}

/* Extra small screens (≤ 400px) */
@media (max-width: 400px) {
    .faq-title {
        font-size: 20px;
    }

    .faq-question {
        font-size: 14px;
    }
}





/* webiste loader page csss is here   
     */

 /* ===== Loader Container ===== */
 #loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, visibility;
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* Fade-out effect */
#loader.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* ===== Text Animation ===== */
.loader-text {
    font-size: 1rem;
    text-align: center;
    color:var(--primary-color);
    letter-spacing: 1px;
    animation: pulse 2s infinite ease-in-out, fadeIn 0.6s ease-out forwards;
    opacity: 0;
    will-change: opacity, transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}
 .line-box{
   padding:10px 2px 10px 2px;
   width:40%;
   height: 20px;
   border: 2px solid #343a40;
   border-radius: 20px;
   display: flex;
   justify-content: start;
   align-items: center;
   overflow: hidden;
}
 .line-box .line{
   height: 18px;
   border-radius: 20px;
   background: #a94a82;
   animation: loaded 2s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
   will-change: width;
   backface-visibility: hidden;
   transform: translateZ(0);
}
@keyframes loaded{
   0%{
       width: 0%;
   }
   100%{
       width:100%;
   }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px) translateZ(0);
    }

    100% {
        opacity: 1;
        transform: translateY(0) translateZ(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1) translateZ(0);
        opacity: 1;
    }

    50% {
        transform: scale(1.03) translateZ(0);
        opacity: 0.9;
    }

    100% {
        transform: scale(1) translateZ(0);
        opacity: 1;
    }
}

/* ===== Website Content ===== */
#content {
    display: none;
    text-align: center;
    padding: 60px;
}