
     
         /* =========================================
   DARK LUXURY HERO THEME
========================================= */


/* ===============================
   GLOBAL VARIABLES
   =============================== */
:root {
    --primary-pink: #fc3b36;
    --primary-dark-pink: #b07d7e;
    --deep-black: #080808; /* Luxury Black */
    --text-dark: #333333;
    --text-light-grey: #666666;
}

body {
    font-family: "Philosopher", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
}

/* ===============================
   TOPBAR DESIGN (WHITE & ATTRACTIVE)
   =============================== */
.top-bar {
    background-color: #ffffff; /* Pure White */
    border-bottom: 1px solid #eeeeee; /* Very subtle separation line */
    padding: 12px 0;
    font-family: 'Manrope', sans-serif; /* Clean font for reading */
    font-size: 13px;
    font-weight: 600;
}

/* The "Free Healing" Badge */
.topbar-badge {
    background: #fc3b36 ;
    color: #fff;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(208, 155, 156, 0.4);
    margin-right: 15px;
}

/* Icon & Text Group */
.topbar-info-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-dark);
}

.info-item i {
    color: #fc3b36;
    font-size: 14px;
}

/* Vertical Divider Line */
.v-divider {
    height: 14px;
    width: 1px;
    background-color: #e0e0e0;
    margin: 0 5px;
}

/* Contact Links on Right */
.contact-group a {
    text-decoration: none;
    color: var(--text-light-grey);
    margin-left: 20px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.contact-group a i {
    color: #fc3b36;
    transition: 0.3s;
}

.contact-group a:hover {
    color: var(--primary-dark-pink);
}
.contact-group a:hover i {
    transform: scale(1.1);
}

/* ===============================
   NAVBAR DESIGN (DARK & SLEEK)
   =============================== */
.healing-navbar {
    background: var(--deep-black);
    padding: 5px 0px;
    position: sticky !important;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Logo Styling */
.navbar-logo {
    height: 75px;
    border-radius: 50%; /* Circular Logo */
    border: 2px solid rgba(255,255,255,0.1); /* Subtle ring */
    transition: 0.3s;
}
.navbar-logo:hover {
    border-color: var(--primary-pink);
}

/* Nav Links */
.navbar-nav {
    margin: 0 auto; /* Center items */
    gap: 2px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85) !important;

    font-size: 14px;
    font-weight: 500;
    text-transform: captalize;
    letter-spacing: 0.5px;
    padding: 10px 16px !important;
    position: relative;
    transition: 0.3s;
}

/* ===============================
   ACTIVE STATE STYLING (IMPROVED)
   =============================== */
.nav-link.active {
    color: var(--primary-pink) !important;
    font-weight: 700;
}

/* Active Link Underline Animation */
.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px; /* Thoda niche shift kiya taaki text se chipke nahi */
    left: 50%;
    transform: translateX(-50%) scaleX(0); /* Default hidden */
    width: 25px; 
    height: 2px;
    background-color: var(--primary-pink);
    box-shadow: 0 0 8px var(--primary-pink);
    transition: transform 0.3s ease-in-out;
}

/* Jab active ho ya hover karein tab dikhega */
.nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
    width: 30px; /* Active hone par thoda chauda */
}
/* Active Link Underline */
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 25px; /* Width of the underline */
    height: 2px;
    background-color: var(--primary-pink);
    box-shadow: 0 0 10px var(--primary-pink); /* Glow effect */
}

.nav-link:hover::after, .nav-link.active::after {
    width: 20px;
}

/* ===============================
   BUTTONS
   =============================== */
.btn-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 15px;
}

/* Outline Button */
.btn-learn {
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    font-family: 'Manrope', sans-serif;
}
.btn-learn:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
    color: #fff;
}

/* Gradient Button */
.btn-app {
       background: #fc3b36;
    color: #fff;
    padding: 9px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    box-shadow: 0 4px 15px rgb(202 42 45 / 30%);
    transition: 0.3s;
    font-family: 'Manrope', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
}
.btn-app:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(208, 155, 156, 0.5);
    color: white;
}

/* ===============================
   MOBILE
   =============================== */
.navbar-toggler { border: none; padding: 0; color: rgba(255,255,255,0.8); }
.navbar-toggler:focus { box-shadow: none; }

/* Mobile Offer Strip (Replaces Topbar) */
.mobile-offer-strip {
    background: #fff;
    color: var(--text-dark);
    text-align: center;
    padding: 8px;
    font-size: 12px;
    font-weight: 700;
    border-bottom: 1px solid #eee;
    font-family: 'Manrope', sans-serif;
}

.navbar-toggler i {
    color: #ffffff;
    font-size: 22px;
}


.mobile-offer-strip i { color: var(--primary-pink); }

@media (max-width: 991px) {
    .top-bar { display: none !important; }
    .mobile-offer-strip { display: block; }
    .info-item{
        display:unset;
        margin:10px;
    } 


    .navbar-collapse {
        /* background: #111; */
        margin-top: 15px;
        padding: 20px;
        border-radius: 8px;
    }
    .navbar-nav { text-align: center; padding-bottom: 15px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 15px; }
.nav-link {
        padding: 12px 0 !important;
        font-size: 16px;
        text-align: left;
    }
    .nav-link::after { display: none; }
    .btn-wrapper { flex-direction: row; width: 100%; margin-left: 0; }

  .healing-navbar {
    background: var(--deep-black);
    padding: 5px 0px;
    padding-right:10px;
    position: sticky !important;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);

}
.btn-app{
    padding:7px 17px !important;
}
}

:root {
    --gold-accent: #D4AF37;
    --pure-white: #ffffff;
    --dark-overlay-color: rgba(5, 10, 10, 0.75); /* Very Dark for contrast */
}


.hero-section {
    position: relative;
    width: 100%;

    background: #000;

    overflow: hidden;
}

.hero-section .carousel-item {

    min-height: 700px;
    padding:50px;
}

.hero-section .bg-layer{
    position: absolute;
    inset: 0;

    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;

    z-index: 0;
}

@media (max-width:768px){

    .hero-section .bg-layer{
        background-position: center center !important;
        /* background-size: contain; */
        animation: none;
    }

}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

/* The Heavy Dark Overlay */
.hero-section .dark-overlay {
    position: absolute;
    inset: 0;
    /* Gradient from black to transparent black */
    background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.85) 100%);
    z-index: 1;
}

/* --- 2. Content Centering --- */
.hero-section .hero-content {
    position: relative;
    z-index: 10;
    /* height: 100%; */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.text-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- 3. Whiter Text & Stroke Effects --- */

/* Top Tag (Small text above title) */
.top-tag {
    color: var(--gold-accent);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
    padding: 5px 15px;
    border: 1px solid rgba(212, 175, 55, 0.3); /* Subtle gold border */
}

/* Main Title */
 .carousel-inner .main-title {

    font-size: 4rem  !important;
    font-weight: 700;
    color: #ede4eb !important;
    line-height: 1.1;
    margin-bottom: 20px;
    
    /* Strong Drop Shadow to act as a "Glow/Stroke" */
    text-shadow: 0 0 10px rgba(0,0,0,0.8), 0 0 30px rgba(255,255,255,0.1);
}

/* The Hollow/Stroke Text Effect */
.stroke-text {
    /* Outline effect */
    -webkit-text-stroke: 1px var(--pure-white); 
    color: transparent; /* Makes the inside empty */
    font-style: italic;
    position: relative;
    transition: 0.5s;
}

/* Hover effect on stroke text just for style */
.hero-section:hover .stroke-text {
    color: rgba(255,255,255,0.1); /* Fills slightly on hover */
}

/* Decorative Line */
.separator-line {
    width: 80px;
    height: 3px;
    background: var(--gold-accent);
    margin: 0 auto 30px auto;
}

/* Description Text */
.description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 40px;
    font-weight: 400;
    /* Adding a slight black shadow for readability */
    text-shadow: 1px 1px 2px black; 
}

/* --- 4. Buttons --- */
.btn-group-custom {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-shine {
   padding: 15px 45px;
   background: #fc3b36;
    background-size: 200% auto;
    color: white;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: 0.4s;

    border: 1px solid #fc3b36;;
}
  

.btn-shine:hover {
    background: transparent;
    color: var(--pure-white);
    box-shadow: 0 0 15px rgba(255,255,255,0.4);
    border:1px solid white;
}

.btn-border {
    padding: 15px 45px;
    background: transparent;
    color: var(--pure-white);
    border: 2px solid rgba(255,255,255,0.5);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: 0.4s;
        border-radius:50px;
}

.btn-border:hover {
    border-color: var(--gold-accent);
    color: var(--gold-accent);
}

/* --- 5. Carousel Controls --- */
.arrow-box {
    width: 60px; height: 60px;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex; align-items: center; justify-content: center;
    transition: 0.3s;
}
.arrow-box:hover {
    background: var(--gold-accent);
    border-color: var(--gold-accent);
    color: black;
}

/* Indicators */
.hero-section .carousel-indicators button {
    width: 40px; height: 3px;
    background-color: rgba(255,255,255,0.3);
    border: none;
    margin: 0 5px;
}

/* --- Animations --- */
.animate-box {
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
    transform: translateY(40px);
}
.active .animate-box {
    animation-delay: 0.3s; /* Delay until slide is active */
    opacity: 1;
    transform: translateY(0);
    transition: all 1s ease-out 0.3s;
}
 .hero-section .hero-content{
    top:80px;
 }
/* --- Responsive --- */
@media (max-width: 768px) {
    .main-title { font-size: 3rem; }
    .stroke-text { -webkit-text-stroke: 1px var(--pure-white); } /* Thinner stroke on mobile */
    .description { font-size: 1rem; padding: 0 10px; }
    .btn-group-custom { flex-direction: row; width: 100%;  margin: 0 auto; }
    .btn-shine, .btn-border { width: 100%; text-align: center; }
    .hero-section .carousel-control-prev, 
    .hero-section .carousel-control-next { display: none; }
    .hero-section .hero-content {
    top:50px;
    }
}
     h1,h2{
        font-size: 35px !important;
      }
      .hero-section1 {

            height: 100vh; 
            width: 100%;
            position: relative;
         
            background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.4)), url('images/home-2-background-1.webp');
            
            background-size: cover;
          
            
    background-repeat: no-repeat;
    background-position: center center;

            background-attachment: fixed; 
            
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #ffffff;
            z-index: 1;
        }


        .hero-section1 h1 {

            font-size: 4rem; 
            font-weight: 400;
            line-height: 1.1;
            margin-bottom: 25px;
            letter-spacing: -1px;
            text-shadow: 0px 2px 10px rgba(0,0,0,0.2);
        }

        /* Subtitle Text Style */
        .hero-section1 p {

            font-size: 16px;
            font-weight: 400;
            max-width: 650px;
            margin: 0 auto 20px auto;
            letter-spacing: 0.5px;
            color: #f1f1f1;
            line-height: 1.6;
        }

        /* Button Group Container */
        .button-group {
            display: flex;
            gap: 25px;
            justify-content: center;
            flex-wrap: wrap;
        }

  
        .hero-btn {
            background-color: #ffffff;
            color: #783766 ; 
            border: none;
            padding: 16px 40px; 
            border-radius: 50px; 
            
            
            font-size: 13px;
            font-weight: 700; /* Bold text */
            text-transform: uppercase;
            letter-spacing: 2px;
            
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

      

        /*section2  */

.healing-wisdom-section {
   
    padding:  40px 0; 
  
    background-image: url('images/home-2-background-2.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
   
}


.contact-card {
  background-color: #ffffff;
    
   
    margin-top: -150px; 
    
    border-radius: 20px; 
    padding: 45px 20px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05);
    width: 100%;
    position: relative;
    z-index: 1; 
}


.contact-card .big-text {

    font-size: 28px;
    color: #40304b; 
    margin-bottom: 5px;
    font-weight: 400;
}

.contact-card .sub-link {

    font-size: 16px;
    color: #508086;
    font-weight:bold;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border 0.3s;
}

.contact-card .sub-link:hover {
    border-bottom: 1px solid #7da2aa;
    color: #5f8088;
}

.contact-card .main-text {
   
    font-size: 18px;
    color: #40304b;
    margin-bottom: 5px;
    font-weight: 500;
}

.contact-card .sub-text {

    font-size: 16px;
    color: #508086;
    margin: 0;
}

/* --- Package Card Styles --- */

/* Base Card Structure */
.package-card {
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Icon Styling */
.icon-top {
    font-size: 40px;
    margin-bottom: 25px;
}

.package-card h3 {
    font-size: 26px;
    font-weight: 400; /* Elegant serif look */
    margin-bottom: 15px;
    line-height: 1.3;
}

.pkg-desc {
    font-size: 15px;
    margin-bottom: 30px;
    line-height: 1.6;
    flex-grow: 1; /* Pushes price to bottom */
}

/* --- Price List Styling --- */
.price-list {
    margin-bottom: 35px;
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 20px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 15px;
    font-weight: 500;
}

.price-row .price {
    font-weight: 700;
    font-size: 18px;
}

/* --- THE PURPLE CARD (Offline) --- */
.purple-card {
    background-color: #783766; /* Your brand color */
    color: #ffffff;
}

.purple-card .price-list {
    border-top: 1px solid rgba(255,255,255,0.2);
}

.purple-card .pkg-desc {
    color: rgba(255,255,255,0.8);
}

/* Button for Purple Card */
.pkg-btn-white {
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
}
.pkg-btn-white:hover {
    color: #ffcaea; /* Light pink on hover */
    margin-left: 5px; /* Slide effect */
}

/* --- THE LIGHT CARD (Online/Others) --- */
.light-card {
    background-color: #f9f7f2; /* Creamy/Beige color from image */
    color: #40304b;
}

.light-card .icon-top {
    color: #783766;
}

.light-card .pkg-desc {
    color: #666;
}

/* Button for Light Card */
.pkg-btn-outline {
    color: #783766;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
}
.pkg-btn-outline:hover {
    color: #5a2a4d;
    margin-left: 5px;
}/* --- Badges for Cards --- */

/* Badge for International Clients */
.badge-global {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #ff9f43; /* Orange color to stand out */
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(255, 159, 67, 0.4);
    z-index: 2;
}

/* Badge for Popular Offline Package */
.badge-bestseller {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #fff;
    color: #783766;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
}

/* Update for Light Card Icon Color to differentiate */
.light-card .fa-earth-americas {
    color: #0abde3; /* Blue color for Earth icon */
}


/* Animation keyframes */
@keyframes floatUpDown {
    0%   { transform: translate(-50%, 0); }
    50%  { transform: translate(-50%, 20px); } /* move down */
    100% { transform: translate(-50%, 0); }     /* return to top */
}

/* counter-seciton */
  .counter-section {
            padding: 40px 0;
            background-color: #fff;
        }

        .counter-box {
            position: relative;
            padding: 20px;
        }


        .counter-box::after {
            content: '';
            position: absolute;
            right: 0;      
            top: 15%;       
            height: 70%;    
            width: 2px;     
            background-color: #e0e0e0; 
        }

      
        .counter-number {
            font-size: 3.5rem;
            font-weight: 400;
            color: #6a305a;
            margin-bottom: 5px;
            line-height: 1;
        }

        .counter-text {
            font-size: 1.1rem;
            color: #8c5e7b;
            font-weight: 400;
            margin: 0;
        }

   
   
                :root {
            --primary-purple: #6a305a; 
            --accent-gold: #c6a895;    
            --text-grey: #666;
        }


   
        .conditions-section {
            padding: 90px 0;
 
            background-image: url('images/home-2-background-2.webp');
            background-size: cover;
            background-position: center;
            position: relative;
        }

        /* --- Left Side Typography --- */
        .section-tag {
            display: inline-block;
            color: var(--accent-gold); /* Gold color text */
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
            margin-top: 18px;
        }

         .conditions-section  .main-heading {

            font-size: 3.5rem; 
            color: var(--primary-purple);
            font-weight: 400; 
            line-height: 1.2;
            margin-bottom: 40px;
        }


        .custom-accordion .accordion-item {
            border: none;
            background: transparent;
            margin-bottom: 20px; 
        }


        .custom-accordion .accordion-button {
            background-color: #fff;
            color: var(--primary-purple);
            
            font-size: 1.5rem;
            font-weight: 400;
            padding: 25px 30px;
            border-radius: 15px !important; 
            border: none;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05); 
            transition: all 0.3s ease;
        }

       
        .custom-accordion .accordion-button::after {
            background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236a305a'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>");
            transform: scale(1.3);
            transition: all 0.3s ease;
        }

        /* --- 2. ACTIVE STATE (The Magic Part) --- */
        /* Jab button khula ho (collapsed class hatt jati hai) */
        .custom-accordion .accordion-button:not(.collapsed) {
            background-color: #fc3b36 !important; /* Purple Background */
            color: #fff !important; /* White Text */
            box-shadow: 0 10px 30px rgba(201, 42, 82, 0.3);
            border-radius: 15px 15px 0 0 !important;
        }

        /* Arrow Icon Styling (Change to White when Active) */
        .custom-accordion .accordion-button:not(.collapsed)::after {
            /* Invert filter turns the purple icon to white */
            filter: brightness(0) invert(1); 
            transform: rotate(-180deg) scale(1.3);
        }

        /* Accordion Body Styling */
        .custom-accordion .accordion-body {
            background-color: #fff;
            color: #817b7b;
            font-size: 1rem;
            line-height: 1.8;
            padding: 10px 30px 30px 30px;
            border-radius: 0 0 15px 15px; /* Bottom rounded */
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        }

        /* Fix weird line in bootstrap accordion */
        .accordion-collapse {
            border: none;
        }

        /* --- Right Image Styling --- */
        .image-wrapper {
            position: relative;
            padding-left: 30px;
            margin-top: 20px;
        }

        .main-img {
               width: 100%;
    height: 480px;
    object-fit: inherit;
    border-radius: 30px;
    border-bottom-left-radius: 28% !important;
    border-bottom-right-radius: 28% !important;

        }

        /* The Badge (Top Right) */
        .flower-badge {
            position: absolute;
            top: -40px;
            right: -20px;
            width: 130px;
            height: 130px;
         
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            /* White border ring */
            border: 5px solid #fff;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

     
       /* about us */

         :root {
            --dark-bg: #1e1b1b; 
            --accent-orange: #fc3b36; 
            --text-white: #ffffff;
            --text-grey: #b0b0b0;
        }

    
        .about-us {
            background-color: var(--dark-bg);
            padding: 10px 0;
            position: relative;
            overflow: hidden;
            padding-top:50px;
            padding-bottom:50px;
            color: var(--text-white);
        }


        
.about-img-wrapper {
        position: relative;
        /* Thoda margin taaki background border ke liye jagah bache */
        margin: 0px; 
        z-index: 1;
    }

    /* Decorative Offset Border (Peeche wala frame) */
    .about-img-wrapper::before {
        content: '';
        position: absolute;
        /* Image se thoda hatke (offset) */
        top: -25px;
        left: -25px;
        width: 100%;
        height: 100%;
        /* Pink border, thoda transparent */
        border: 4px solid rgba(186, 143, 153, 0.5); /* Using var(--bg-pink) with opacity */
        border-radius: 35px; /* Image se thoda zyada round */
        z-index: -1; /* Image ke peeche */
        transition: all 0.4s ease;
    }

    /* Optional: Ek aur solid color block doosri taraf */
    .about-img-wrapper::after {
        content: '';
        position: absolute;
        bottom: -20px;
        right: -20px;
        width: 60%;
        height: 60%;
        background-color: var(--badge-teal);
        opacity: 0.2;
        border-radius: 30px;
        z-index: -2;
    }


    /* === Main Image Styling === */
    .about-main-img {
        width: 100%;
        height: 550px;
        object-fit: cover;
        border-radius: 30px;
        /* Stylish Shadow taaki image uthi hui lage */
        box-shadow: 0 20px 40px rgba(0,0,0,0.4);
        position: relative;
        transition: all 0.4s ease;
        /* Thoda sa filter taaki dark background pe blend ho */
        filter: brightness(0.95) contrast(1.1);
    }

    /* --- Hover Effects (Optional - Jab mouse upar jaye) --- */
    .about-img-wrapper:hover .about-main-img {
        /* Image thodi upar uthegi */
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 30px 60px rgba(0,0,0,0.5);
        filter: brightness(1.05) contrast(1);
    }

    /* Peeche ka border thoda aur door jayega hover pe */
    .about-img-wrapper:hover::before {
        top: -35px;
        left: -35px;
        border-color: var(--bg-pink); /* Border dark ho jayega */
    }

        /* --- Right Side: Content --- */
        .about-content {
            padding-left: 40px;
            position: relative;
            z-index: 2; /* Content above background flower */
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

  
      .about-us  .sub-title {
            color: var(--accent-orange);
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 20px;
            display: block;
        }


     .about-us .main-heading {
    line-height: 2.2rem;
    margin-bottom: 12px;
    font-weight: 400;
}

        /* Paragraph Text */
      .about-us  .description {
            color: var(--text-grey);
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 40px;
            font-weight: 300;
        }

        /* Button Styling */
      .about-us  .btn-custom {
            background-color: var(--accent-orange);
            color: #fff;
            padding: 15px 35px;
            border-radius: 50px;
            font-weight: 500;
            text-transform: capitalize;
            border: none;
            transition: all 0.3s ease;
            width: fit-content;
        }

      .about-us  .btn-custom:hover {
            background-color: #bf785e; /* Slightly darker on hover */
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(214, 139, 112, 0.3);
            color: #fff;
        }

   .about-us .bg-flower-decoration {
    position: absolute;
    top: 40%;
    right: -200px;                 /* center horizontally */
    transform: translate(-50%, -50%) rotate(0deg);  /* no rotation at start */
    font-size: 40rem;
    color: rgba(255, 255, 255, 0.03);
    z-index: 0;
    pointer-events: none;
    transition: transform 0.1s linear; /* smooth rotation */
}

/* Variables for Easy Changes */
:root {
    --primary-purple: #6a1b9a;
    --light-purple: #9c4dcc;
    --card-bg: #ffffff;
    --text-dark: #2c3e50;
    --text-light: #666;
    --bg-section: #f3f4f6;
}

/* Section Styling */
.team-section {
    padding: 40px 0;
    background-color: var(--bg-section);

}

.team-section .sub-title {
    color: #fc3b36 ;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 10px;
}

.team-section .main-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

/* Title Underline Decoration */
.team-section .main-title::after {
    content: '';
    width: 60px;
    height: 3px;
    background: #fc3b36;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* CARD DESIGN */
.team-section .team-card {
   
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); /* Soft Shadow */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Bouncy effect */
    height: 100%; /* Equal height for all cards */
    display: flex;
    flex-direction: column;
}

.team-section .team-card:hover {

    box-shadow: 0 20px 40px rgba(106, 27, 154, 0.15); /* Purple tint shadow */
}


.team-section .team-img {
    width: 100%;
    height: 200px;

    object-fit: cover; /* Ensures image fills the box */
    object-position: top center; /* Focuses on faces/heads, avoids cutting tops */
    transition: transform 0.6s ease;
}

.team-section .team-card:hover .team-img {
    transform: scale(1.1); /* Smooth Zoom */
}

/* Floating Day Badge */
.team-section .day-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-purple);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 2;
}

/* INFO WRAPPER */
.team-section .info-wrapper {
    padding: 25px;
    flex-grow: 1; /* Pushes footer down */
    display: flex;
    flex-direction: column;
    text-align: center; /* Center align looks more balanced */
}

.team-section .team-name {
    font-size: 1.4rem;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 5px;
}

.team-section .team-role {
    color: #fc3b36;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.team-section .team-desc {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Limit text to 3 lines for neatness */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* BUTTON STYLE LINK */
.team-section .profile-link {
    margin-top: auto; /* Pushes button to very bottom */
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 50px;
    background-color: #f8f0fc; /* Very light purple bg */
    color: #fc3b36;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.team-section .team-card:hover .profile-link {
    background-color:#fc3b36;
    color: #fff;
}

.team-section .profile-link i {
    transition: transform 0.3s ease;
}

.team-section .team-card:hover .profile-link i {
    transform: translateX(5px);
}

      .next-step {
           
            padding: 80px 0; 
            
           
            background-image: 
                linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4)), 
                url('images/home-2-background-3.webp');
            
            
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: scroll;
        
            color: #fff;
            text-align: center;
        }

     
              .next-step  .top-icon {
            font-size: 3.5rem;
            margin-bottom: 25px;
            display: inline-block;
            opacity: 0.9;
        }

               .next-step .main-heading {

            font-size: 3.5rem;
            font-weight: 400;
            margin-bottom: 50px;
           
        }

        /* Buttons Container */
              .next-step  .btn-wrapper {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }

        /* Button Styling */
              .next-step  .btn-step {
            background-color: #fff;
            color: #555;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            padding: 18px 35px;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            border: 2px solid #fff;
        }

               .next-step .btn-step i {
            margin-left: 10px;
            transition: transform 0.3s ease;
        }

               .next-step  .btn-step:hover {
            background-color: transparent;
            color: #fff;
            border-color: #fff;
        }

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

              .next-step  .bottom-text {
            font-size: 1.1rem;
            font-weight: 300;
            opacity: 0.9;
            margin-top: 20px;
        }

        /* contact1 */

         :root {
            --bg-pink: #ba8f99; 
            --text-white: #ffffff;
        }

        .contact1 {
            position: relative;
        
            background-image: linear-gradient(rgba(0,0,0,0.3),rgba(0,0,0,0.3)), url('images/desktop-wallpaper-reiki-group.jpg'); 
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;

            
            padding:60px; 
            display: flex;
            align-items: center; 
            color: var(--text-white);
            overflow: hidden;
        }

        /* Dark Overlay for readability */
        .contact1::before {
            content: "";
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            /* Gradient overlay: Left side darker for text, Right side lighter */
            background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.1) 100%);
     
        }

        .contact1 .container {
            position: relative;
            z-index: 2; 
        }

        /* Typography */
               .contact1  .contact-sub-heading {
            font-size: 0.9rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 600;
            margin-bottom: 20px;
            display: block;
            opacity: 0.9;
        }

               .contact1  .contact-main-heading {
            font-size: 3.5rem; /* Badi heading */
            line-height: 1.2;
            font-weight: 400;
            margin-bottom: 50px;
  
        }

        /* Bottom Action Area (Button + Phone) */
              .contact1  .action-area {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 30px;
        }

        /* The Pink Button */
              .contact1  .btn-book-session {
            background-color: #fc3b36;
            color: #fff;
            padding: 15px 35px;
            border-radius: 50px; /* Pill shape */
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 1px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            display: inline-flex;
            align-items: center;
        }

               .contact1  .btn-book-session:hover {
            background-color: #a67c88; /* Slightly darker on hover */
            color: #fff;
            transform: translateY(-2px);
        }

        /* Vertical Divider Line */
               .contact1  .vertical-line {
            width: 1px;
            height: 50px;
            background-color: rgba(255,255,255,0.3);
        }

        /* Phone Details */
               .contact1 .phone-details {
            display: flex;
            flex-direction: column;
        }

              .contact1  .give-call-label {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0.8;
            margin-bottom: 5px;
            font-weight: 600;
        }

               .contact1  .phone-number {
            font-size: 1.5rem;
            font-weight: 400;
            letter-spacing: 0.5px;
        }

        /* contact2 */

          :root {
        --heading-purple: #7a4968; /* Exact Mauve/Purple */
        --label-grey: #a0a0a0;
        --text-dark: #444444;
    }

    .contact2 {
        padding: 40px 0;
        background-color: #fff;
        overflow: hidden;

    }

    /* --- Left Side Typography --- */
       .contact2  .contact-heading {
      
        font-size:3.5rem;
        color: var(--heading-purple);
        font-weight: 400;
        line-height: 1.1;
        margin-bottom: 30px;
    }

     .contact2    .contact-sub-text {
        font-size: 1.2rem;
        color: #40304b;
        margin-bottom: 50px;
        line-height: 1.6;
        max-width: 90%;
        font-weight: 300;
    }

    /* --- Info Labels (Address/Open) --- */
     .contact2    .info-label {
        font-size: 0.85rem;
        color: var(--label-grey);
        letter-spacing: 2px;
        text-transform: uppercase;
        font-weight: 600;
        margin-bottom: 15px;
        display: block;
    }

      .contact2   .info-content {
        font-size: 1.1rem;
        color: var(--text-dark);
        line-height: 1.6;
        font-weight: 400;
    }

    /* --- Right Side Map Styling --- */
     .contact2    .map-wrapper {
        position: relative;
        width: 100%;
        height: 100%;
        min-height: 400px; /* Map height fixed */
        overflow: hidden;
        border-radius: 30px; /* Rounded corners */
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }

      .contact2   .map-img {
        width: 100%;
        height: 100%;
        min-height: 400px;
        object-fit: cover;
        border-radius: 30px;
        filter: grayscale(100%) contrast(1.1); /* Black & White Effect */
    }

    /* The Pin Icon */
      .contact2   .map-pin {
        position: absolute;
        top: 45%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #333; /* Dark grey pin */
        z-index: 2;
        filter: drop-shadow(0 5px 5px rgba(0,0,0,0.3));
    }

    /* The dark overlay bar at the bottom */
       .contact2  .map-overlay-bar {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: rgba(50, 50, 50, 0.95);
        color: #fff;
        padding: 18px;
        text-align: center;
        font-size: 0.85rem;
        font-weight: 300;
        letter-spacing: 0.5px;
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px;
        z-index: 3;
    }



    /* abpout us */
        /* --- 1. Section Base --- */
.about-stunning {
    padding: 100px 0;
    background-color: #fff;
    overflow: visible; /* Allows the orb/shadows to flow outside the box */
}

/* --- 2. Image Area Setup --- */
.relative-holder {
    position: relative;
    padding-left: 30px; /* Moves image right to make room for badge */
}

/* Grey shape behind the image */
.about-stunning  .back-shape {
    position: absolute;
    top: -20px;
    left: 0;
    width: 70%;
    height: 90%;
    background-color: #f8f9fa;
    border: 2px solid #D90429; /* Thin red border */

}

/* The Main Image Container */
.about-stunning  .image-box {
    position: relative;

    overflow: hidden;
    box-shadow: 20px 20px 0px rgba(0,0,0,0.05);
}

.about-stunning .image-box img {
    width: 100%;
    display: block;
    transition: transform 0.6s ease;
}

.about-stunning .image-box:hover img {
    transform: scale(1.05); /* Smooth zoom on hover */
}

/* --- 3. The "Glowing Orb" Badge --- */
.about-stunning .badge-orb {
    position: absolute;
    bottom: -40px; /* Hangs off the bottom */
    left: -30px;   /* Hangs off the left */
    width: 150px;
    height: 150px;
    
    /* Modern Red Gradient */
    background: linear-gradient(135deg, #D90429 0%, #8d021f 100%);
    color: #fff;
    
    /* Circle Shape */
    border-radius: 50%;
    
    /* Centering Content */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    
    /* The "Cutout" Effect border */
    border: 8px solid #fff; 
    
    /* The Initial Glow */
    box-shadow: 0 10px 25px rgba(217, 4, 41, 0.5);
    
    
    /* The Pulse Animation */
    animation: float-pulse 3s infinite ease-in-out;
}

.about-stunning .orb-num {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.1);
}

.about-stunning .orb-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.2;
}

/* Badge Animation Keyframes */
@keyframes float-pulse {
    0% { transform: translateY(0px); box-shadow: 0 10px 25px rgba(217, 4, 41, 0.5); }
    50% { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(217, 4, 41, 0.3); }
    100% { transform: translateY(0px); box-shadow: 0 10px 25px rgba(217, 4, 41, 0.5); }
}

/* --- 4. Typography --- */
.about-stunning .accent-title {
    color: #D90429;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.about-stunning .accent-title::before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 2px;
    background: #D90429;
    vertical-align: middle;
    margin-right: 10px;
}

.about-stunning .main-heading {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    color: #222;
    margin-bottom: 25px;
}

.about-stunning .text-red {
    color: #D90429;
}

.about-stunning .intro-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 20px;
    border-left: 4px solid #eee;
    padding-left: 20px;
}

.about-stunning .body-text {
    color: #666;
    line-height: 1.8;
    margin-bottom: 0px;
}

/* --- 5. Button Style --- */
.about-stunning .btn-glow {
    display: inline-block;
    /* background: #222; */
    color: #000000;
    font-weight: bold;
    padding: 16px 0px;
    
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;

}

#packagerow{
    margin-top:25px;
}


.contact-main-heading {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
    letter-spacing: 1px;
}

.breadcrumb-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.breadcrumb-wrapper a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.breadcrumb-wrapper a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: #00eaff;
    transition: width 0.3s ease;
}

.breadcrumb-wrapper a:hover {
    color: #00eaff;
}

.breadcrumb-wrapper a:hover::after {
    width: 100%;
}

.breadcrumb-wrapper .separator {
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
}



.breadcrumb-wrapper .current {
    color: #ffa2aa;
    font-size:18px;
}




        
.meditation-more-info-link{
    display:inline-block;
    margin-top:20px;
    color: var(--gold-accent);
    font-weight:600;
    text-decoration:none;
    transition:0.3s;
    position:relative;
    z-index:99;
    cursor:pointer;
}

.meditation-more-info-link:hover{
    color:#fff;
    transform:translateX(4px);
}




/* ===== MODAL ===== */

.custom-modal{
    display:none;
    position:fixed;
    z-index:99999;
    left:0;
    top:0;
    width:100%;
    height:100%;
    overflow-y:auto;
  
    padding:30px 15px;
}

/* ===== MODAL BOX ===== */

.custom-modal-content{

    background:linear-gradient(180deg,#1b1b1b,#121212);
    color:#fff;

    width:100%;
    max-width:900px;

    margin:auto;

    padding:40px;

    border-radius:24px;

    border:1px solid rgba(255,255,255,0.08);

    position:relative;

    animation:popup 0.4s ease;

    box-shadow:0 20px 70px rgba(0,0,0,0.5);

}

/* ===== POPUP ANIMATION ===== */

@keyframes popup{

    from{
        transform:translateY(40px);
        opacity:0;
    }

    to{
        transform:translateY(0);
        opacity:1;
    }

}

/* ===== CLOSE BTN ===== */

.custom-close{

    position:absolute;

    right:22px;
    top:18px;

    font-size:30px;

    cursor:pointer;

    color:#888;

    transition:0.3s;

}

.custom-close:hover{
    color:#fff;
    transform:rotate(90deg);
}

/* ===== TITLE ===== */

.modal-title{

    color:var(--gold-accent);

    margin-bottom:30px;

    font-weight:800;

    font-size:2rem;

}

/* ===== CONTENT ===== */

.modal-section{
    margin-bottom:35px;
}

.modal-section h4{

    color:#fff;

    margin-bottom:16px;

    font-size:1.3rem;

    font-weight:700;

}

.modal-section ul{
    padding-left:20px;
}

.modal-section ul li{

    margin-bottom:12px;

    color:#cfcfcf;

    line-height:1.8;

    font-size:0.97rem;

}

/* ===== MEDIA SHOWCASE ===== */

.media-showcase{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:22px;

    margin:30px 0 40px;

}

/* ===== MEDIA BOX ===== */

.media-box{

    position:relative;

    overflow:hidden;

    border-radius:22px;

    background:#0f0f0f;

    border:1px solid rgba(255,255,255,0.08);

    box-shadow:0 10px 35px rgba(0,0,0,0.35);

    transition:0.45s ease;

}

.media-box:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 50px rgba(252,59,54,0.18);

}

/* ===== IMAGE & VIDEO ===== */

.media-box img,
.media-box video{

    width:100%;

    height:280px;

    object-fit:cover;

    display:block;

}

/* ===== OVERLAY ===== */

.media-box::after{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        to top,
        rgba(0,0,0,0.4),
        transparent
    );

    pointer-events:none;

}

/* Card text colors rectification */
.text-white {
    color: #ffffff !important;
}

/* Paragraphs aur timings ke liye thoda halka white taaki aankhon ko chubhe na */
.text-white-50 {
    color: rgba(255, 255, 255, 0.75) !important;
}

/* Card Number "03" ke liye ekdum light white shade */
.text-white-fade {
    color: rgba(255, 255, 255, 0.15) !important;
}

/* Schedule section ki border ko white transparent karne ke liye */
.border-white-fade {
    border-top: 1px dashed rgba(255, 255, 255, 0.2) !important;
}

/* Saturday highlight text in white theme */
.text-accent-white {
    color: #ffb366 !important; /* Halka warm orange-white shade jo dark background pe khilega */
    font-weight: 600;
}

/* --- White View Info Button Styling --- */
.view-info-btn-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff; 
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 2px;
}

/* Hover effect for white button */
.view-info-btn-white:hover {
    color: #ffb366; /* Hover karne pe light orange touch */
    border-bottom-color: #ffb366;
    text-decoration: none;
}

.view-info-btn-white i {
    transition: transform 0.3s ease;
}

.view-info-btn-white:hover i {
    transform: translateX(4px); /* Arrow movement */
}/* Custom Modal Customization */
#infoModal .modal-content {
    background-color: #1a1a1a !important; /* Premium dark background */
    border-radius: 16px;
}

/* Custom Nav Tabs for Photos/Videos switching */
#infoModal .nav-tabs .nav-link {
    color: rgba(255, 255, 255, 0.6);
    border: none;
    padding: 12px 24px;
    transition: all 0.3s ease;
}

#infoModal .nav-tabs .nav-link.active {
    background-color: transparent !important;
    color: #ff9933 !important; /* Custom Active Color (Orange) */
    border-bottom: 3px solid #ff9933;
}

#infoModal .nav-tabs .nav-link:hover {
    color: #ffffff;
}

/* Images Grid Styling inside modal */
.modal-media-card {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.modal-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.modal-media-card:hover .modal-img {
    transform: scale(1.05); /* Hover zoom effect for photos */
}

/* Video Responsive Box shadow */
.ratio-16x9 {
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.1);
    background: #000;
}

/* ===== MOBILE ===== */

@media(max-width:768px){

    .custom-modal-content{
        padding:28px 20px;
    }

    .modal-title{
        font-size:20px !important;
    }

    .media-showcase{
        grid-template-columns:1fr;
    }
    .modal-section h4{
        font-size:18px;
    }

    .media-box img,
    .media-box video{
        height:220px;
    }

}
@media screen and (min-width:300px) and (max-width:768px) {
    body,html{
        overflow-y: none;
        overflow-x: hidden;
    }
    .healing-wisdom-section{
        padding: 10px 0;
    }
    .counter-section{
        padding: 10px 0;
    }
    .counter-number {
    font-size: 2.5rem;
    }
    .conditions-section

 {
padding: 10px 0;
 }
 .conditions-section .main-heading{
    font-size: 25px;
 }
 .custom-accordion .accordion-button{
    font-size: 20px;
 }
 .custom-accordion .accordion-body{
    font-size: 14px;
 }
 .main-img{
    border-radius: 0px  !important;
   
    height: auto;
 }
 .image-wrapper{
    padding-left: 0px;
 }
 .about-us .main-heading {
font-size: 25px;

}
.about-content{
    padding-left: 0px;
}
.team-section .main-title{
    font-size: 25px;
    margin-bottom: 10px;
}
.next-step {
padding: 10px 0;
}
.about-us .sub-title{
    margin-top: 20px;
    margin-bottom: 10px;
}
.next-step .main-heading {
    font-size: 25px;
    font-weight: 400;
    margin-bottom: 13px;
}
    .chakra-section .content-col {
        padding: 20px 9px !important;
    }
    .newsletter-heading{
        font-size: 25px !important;
    }
    footer {

    color: var(--text-white);
    padding: 20px 0 18px !important;
}
.contact1 .contact-main-heading{
    font-size: 27px !important;
}
.reiki-section .section-title{
    font-size: 27px !important;
}
.training-section .main-title{
    font-size: 27px !important;
}
.training-section .sub-title-h2{
    font-size: 16px !important;
}
.contact1{
padding: 30px;

}
.contact1 .contact-main-heading{
    margin-bottom: 15px;;
}
.about-stunning .back-shape {

    top: -3px;
    left: 15px;
    width: 70%;
    height: 90%;
}
h1,h2{
    font-size: 27px !important;
}
.hero-section .carousel-item h1{
font-size: 27px !important;
}
.hero-section .carousel-item {
    padding: 0px;;
}
 .bg-layer{
        background-position: center;
        background-size: contain;
        height: 200px;
    }
.hero-section .carousel-item {
    height: auto;
}
.story-cinema{
    padding: 10px 0px !important;
}
.about-stunning {
padding: 10px 0px !important;
}
.story-heading {
font-size: 27px !important;
}
.highlight-text {
font-size: 15px !important;
}
.hero-section{
    height: auto;;
}
.hero-section .bg-layer {
height: 26vh !important;

}
.hero-section .hero-content{
    height: 60% !important;
}
.top-tag {
        font-size: 13px !important;
    }
    .btn-shine {
        padding: 10px 16px;
    }
.btn-learn, .btn-app{
    white-space: nowrap;
}
.contact-card {
margin-top: -275px;
}
}