/* कस्टम आयुर्वेद और मॉडर्न लुक थीम */
        .custom-navbar {
            background-color: #12372a; /* प्रीमियम डार्क ग्रीन कलर */
            padding: 12px 0;
            transition: all 0.3s ease;
        }
        
        /* ब्रांड नाम/लोगो स्टाइल */
        .navbar-brand .brand-title {
            color: #fbfada;
            font-weight: 700;
            letter-spacing: 0.5px;
        }

        /* नेविगेशन लिंक्स की स्टाइलिंग */
        .custom-navbar .nav-link {
            color: #adbc9f !important;
            font-weight: 500;
            font-size: 16px;
            padding: 8px 16px !important;
            transition: color 0.3s ease;
        }

        /* होवर करने पर रंग बदलेगा */
        .custom-navbar .nav-link:hover,
        .custom-navbar .nav-link.active {
            color: #fbfada !important;
        }

        /* ड्रापडाउन मेनू स्टाइल */
        .dropdown-menu {
            background-color: #fbfada;
            border: none;
            border-radius: 8px;
            box-shadow: 0px 8px 24px rgba(223, 218, 218, 0.15);
        }
        .dropdown-item {
            color: #12372a;
            font-weight: 500;
        }
        .dropdown-item:hover {
            background-color: #436850;
            color: #ffffff;
        }

        /* मोबाइल टॉगल बटन (हम्बेर्गर) */
       /* --- 3 आड़ी लाइनों वाले बटन का स्टाइल --- */
.custom-horizontal-toggler {
    background: transparent;
    border: none;
    padding: 8px 4px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 30px; /* बटन का कुल आकार */
    outline: none;
}

/* डिफ़ॉल्ट फोकस आउटलाइन हटाने के लिए */
.custom-horizontal-toggler:focus {
    box-shadow: none;
    outline: none;
}

/* तीनों लाइनों की कॉमन कोडिंग */
.custom-horizontal-toggler .h-line {
    display: block;
    width: 100%;
    height: 3px; /* लाइन की मोटाई */
    background-color: #0f613b; /* आपकी थीम का गहरा हरा रंग */
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* --- ऐनिमेशन: क्लिक करने पर Cross (X) बनना --- */

/* जब मेनू खुला हो (not collapsed) तो ऊपर वाली लाइन घूमेगी */
.custom-horizontal-toggler:not(.collapsed) .line-top {
    transform: translateY(7px) rotate(45deg);
}

/* बीच वाली लाइन गायब हो जाएगी */
.custom-horizontal-toggler:not(.collapsed) .line-middle {
    opacity: 0;
    transform: translateX(-10px);
}

/* नीचे वाली लाइन उल्टी घूमेगी */
.custom-horizontal-toggler:not(.collapsed) .line-bottom {
    transform: translateY(-8px) rotate(-45deg);
}

/* डार्क स्क्रीन या बड़ी स्क्रीन पर मोबाइल व्यू में बटन छिपाने के लिए बूटस्ट्रैप इसे खुद हैंडल करता है */
@media (min-width: 992px) {
    .custom-horizontal-toggler {
        display: none;
    }
}

        /* अपॉइंटमेंट बटन */
        .btn-appointment {
            background-color: #436850;
            color: #fbfada;
            font-weight: 600;
            border: 1px solid #adbc9f;
            border-radius: 50px;
            padding: 16px 24px;
            transition: all 0.3s ease;
        }
        .btn-appointment:hover {
            background-color: #fbfada;
            color: #12372a;
            border-color: #fbfada;
        }

        /* मोबाइल स्क्रीन के लिए कुछ जरूरी एडजस्टमेंट */
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: #12372a;
                padding: 20px;
                border-radius: 10px;
                margin-top: 10px;
                box-shadow: 0px 10px 20px rgba(0,0,0,0.2);
            }
            .btn-appointment {
                width: 100%;
                text-align: center;
                margin-top: 15px;
            }
        }
        .vitiligo-section {
        background-color: #f4f7f5; /* हल्का सुखदायक हरा-सफेद बैकग्राउंड */
        border-top: 1px solid #e2e8f0;
        border-bottom: 1px solid #e2e8f0;
    }

    /* आइकन स्टाइलिंग */
    .feature-icon {
        width: 36px;
        height: 36px;
        flex-shrink: 0;
    }

    /* पोस्टर रैपर और इफेक्ट्स */
    .poster-wrapper {
        border: 1px solid #dee2e6;
        transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    .poster-wrapper:hover {
        transform: translateY(-5px);
        box-shadow: 0 1rem 3rem rgba(0,0,0,.175)!important;
    }

    .poster-img {
        width: 100%;
        max-width: 480px;
        height: auto;
    }

    /* मोबाइल स्क्रीन रिस्पॉन्सिव सपोर्ट */
    @media (max-width: 991.98px) {
        .vitiligo-section {
            text-align: center;
        }
        .feature-icon {
            margin-left: auto;
            margin-right: auto;
        }
        .d-flex {
            flex-direction: column;
            align-items: center !important;
        }
        .d-flex div {
            text-align: center;
            margin-top: 8px;
        }
        .poster-img {
            max-width: 100%;
            margin-top: 30px;
        }
    }
   /* --- Premium Vitiligo Section Styles --- */
.vitiligo-section {
    background: linear-gradient(135deg, #fdfbf7 0%, #f4f7f4 100%);
}

/* Background Abstract Shapes */
.bg-shape-1 {
    width: 300px;
    height: 300px;
    background: #198754;
    top: -10%;
    left: -10%;
    filter: blur(120px);
}
.bg-shape-2 {
    width: 250px;
    height: 250px;
    background: #ffc107;
    bottom: -5%;
    right: -5%;
    filter: blur(100px);
}

/* Gradient Text For Heading */
.gradient-text {
    background: linear-gradient(45deg, #dc3545, #b30012);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

/* Soft Icon Box */
.bg-success-soft {
    background-color: rgba(25, 135, 84, 0.12) !important;
    width: 50px;
    height: 50px;
}

/* Feature Item Hover Effect */
.feature-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-left-width: 5px !important;
}
.feature-item:hover {
    transform: translateX(8px);
    background-color: #ffffff !important;
    box-shadow: 0 0.5rem 1.5rem rgba(25, 135, 84, 0.1) !important;
}

/* Poster Glow and Animation */
.poster-container {
    z-index: 1;
}
.poster-glow {
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(45deg, #198754, #ffc107);
    filter: blur(25px);
    opacity: 0.25;
    z-index: -1;
    transition: all 0.5s ease;
}
.poster-container:hover .poster-glow {
    opacity: 0.4;
    filter: blur(35px);
}
.poster-img {
    transition: transform 0.5s ease;
}
.poster-container:hover .poster-img {
    transform: scale(1.02);
}

/* WhatsApp Premium Button & Animation */
.btn-whatsapp-premium {
    background: linear-gradient(135deg, #25D366 0%, #10b943 100%);
    border: none;
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}
.btn-whatsapp-premium:hover {
    background: linear-gradient(135deg, #20ba5a 0%, #0d9636 100%);
    transform: translateY(-3px);
    box-shadow: 0 1rem 2rem rgba(37, 211, 102, 0.3) !important;
    color: #fff !important;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.animate-pulse-slow {
    animation: pulse-slow 3s infinite;
}
@keyframes pulse-slow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.85; }
}
/* --- Ultra Premium Services Section CSS --- */
.services-section {
    background: #ffffff;
}

/* Decorative Background element */
.srv-blur-shape-1 {
    width: 400px;
    height: 400px;
    background: #198754;
    bottom: -10%;
    left: -10%;
    filter: blur(140px);
    z-index: 0;
}

/* Icon Box sizing and styling */
.srv-icon-box {
    width: 60px;
    height: 60px;
    transition: all 0.3s ease;
}
.bg-success-soft {
    background-color: rgba(25, 135, 84, 0.08) !important;
}
.bg-danger-soft {
    background-color: rgba(220, 53, 69, 0.08) !important;
}

/* Premium Card Interaction and Micro-animations */
.service-premium-card {
    border-color: #eef2f6 !important;
    background-color: #f8fafc !important;
    cursor: pointer;
    z-index: 1;
}
.service-premium-card:hover {
    transform: translateY(-6px);
    background-color: #ffffff !important;
    border-color: #198754 !important;
    box-shadow: 0 1rem 3rem rgba(25, 135, 84, 0.08) !important;
}

/* Featured Vitiligo Skin Card Accentuation */
.featured-skin-card {
    border-color: rgba(220, 53, 69, 0.2) !important;
}
.featured-skin-card:hover {
    border-color: #dc3545 !important;
    box-shadow: 0 1rem 3rem rgba(220, 53, 69, 0.08) !important;
}
.rounded-bl-4 {
    border-bottom-left-radius: 1rem !important;
}

/* Media Widget Container */
.media-hub-card {
    border-color: #eef2f6 !important;
    background-color: #ffffff !important;
    position: sticky;
    top: 90px; /* Kepps widget visible during screen scroll */
}

/* Subtle animation loops */
.animate-pulse-subtle {
    animation: pulse-subtle 2s infinite;
}
@keyframes pulse-subtle {
    0% { transform: scale(1); }
    50% { transform: scale(0.97); opacity: 0.95; }
    100% { transform: scale(1); }
}

.transform-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.transform-hover:hover {
    transform: scale(1.03);
    box-shadow: 0 0.8rem 2rem rgba(25, 135, 84, 0.2) !important;
}
    /* Footer Links Style & Hover Effect */
    .footer-links a {
        transition: all 0.2s ease;
    }
    .footer-links a:hover {
        color: #198754 !important; /* Ayurvedic Green Color on Hover */
        padding-left: 4px;
    }

    /* Mobile Floating Buttons Styling */
    .floating-buttons {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 9999;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .btn-float {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white !important;
        font-size: 24px;
        text-decoration: none;
        transition: transform 0.3s ease;
    }

    .btn-float:hover {
        transform: scale(1.1);
    }

    .whatsapp-float {
        background-color: #25d366;
    }

    .call-float {
        background-color: #0d6efd;
    }


    /* --- About Us Section Styles --- */
.py-6 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

/* Background Soft Green for Badges */
.bg-success-soft {
    background-color: rgba(25, 135, 84, 0.08) !important;
}

/* Image container and glow effect */
.about-img-container {
    z-index: 1;
}
.about-glow-bg {
    top: -15px; left: -15px; right: 15px; bottom: 15px;
    background: linear-gradient(135deg, rgba(25, 135, 84, 0.15), rgba(255, 193, 7, 0.15));
    z-index: -1;
    filter: blur(10px);
}
.about-main-img {
    max-height: 450px;
    width: 100%;
    object-fit: cover;
}

/* Floating Experience Badge */
.floating-exp-badge {
    bottom: -20px;
    right: -10px;
    width: 120px;
    height: 120px;
    border: 4px solid #ffffff;
}
.floating-exp-badge .small-text {
    font-size: 11px;
    font-weight: 600;
    text-autospace: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive fixes for Badge */
@media (max-width: 576px) {
    .floating-exp-badge {
        bottom: 10px;
        right: 10px;
        width: 100px;
        height: 100px;
    }
}

/* Info Box */
.about-info-box {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02) !important;
}

/* Button Custom Padding */
.py-2-5 {
    padding-top: 0.65rem !important;
    padding-bottom: 0.65rem !important;
}

/* Micro interaction */
.transition-all {
    transition: all 0.3s ease;
}
.transition-all:hover {
    transform: translateY(-2px);
}
