/* Global Reset */
html{
    overflow-x: hidden;
    overflow-y: auto;
}

/* ==================== SMOOTH SCROLL & COMPLETE SECTION VIEW FIX ==================== */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

.page-scroll::-webkit-scrollbar {
    width: 8px;
}

.page-scroll::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 100px;
    margin: 8px 0;
}

.page-scroll::-webkit-scrollbar-thumb {
    background: linear-gradient(
        180deg,
        #043a07 0%,
        #43a047 45%,
        #043a07 100%
    );
    border-radius: 100px;
    border: 2px solid #f5faf5;
    box-shadow:
        inset 0 1px 2px rgba(255,255,255,.5),
        0 0 8px rgba(46,125,50,.25);
    transition: all .3s ease;
}

.page-scroll::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(
        180deg,
        #81c784,
        #4caf50,
        #1b5e20
    );
    box-shadow:
        0 0 12px rgba(67,160,71,.45),
        inset 0 1px 2px rgba(255,255,255,.6);
}

.page-scroll::-webkit-scrollbar-thumb:active {
    background: linear-gradient(
        180deg,
        #2e7d32,
        #1b5e20
    );
}

.page-scroll::-webkit-scrollbar-corner {
    background: transparent;
}

.service-row-item {
    scroll-margin-top: 100px; 
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f7f9f6;
    overflow-x: hidden;
}

/* Container */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ==================== 100% WORKING STICKY HEADER FIX ==================== */
.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: fixed; 
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    border-bottom: 2px solid #eaf2e8;
}

body {
    padding-top: 80px; 
}

@media screen and (max-width: 992px) {
    body {
        padding-top: 70px; 
    }
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 20px;
}

/* Logo Styling */
.logo img {
    height: 120px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.3s ease;
    margin-top: 35px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.logo img:hover {
    transform: scale(1.03);
}

/* Navigation Menu */
.navbar .menu-list {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.navbar .menu-list li a {
    text-decoration: none;
    color: #2c3e50;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
    white-space: nowrap;
    letter-spacing: 1px;
}

/* Hover Underline Effect */
.navbar .menu-list li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #2e7d32;
    transition: width 0.3s ease-in-out;
}

.navbar .menu-list li a:hover::after,
.navbar .menu-list li a.active::after {
    width: 100%;
}

.navbar .menu-list li a:hover,
.navbar .menu-list li a.active {
    color: #2e7d32;
}

/* Header Right */
.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Book Appointment Button */
.btn-appointment {
    background: linear-gradient(135deg, #2e7d32, #43a047);
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.25);
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-appointment:hover {
    background: linear-gradient(135deg, #1b5e20, #2e7d32);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
    transform: translateY(-2px);
}

/* Toggle Button */
.toggle-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #2c3e50;
    transition: color 0.3s ease;
}

.toggle-btn:hover {
    color: #2e7d32;
}

/* Overlay Background */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 998;
}

.overlay.active {
    visibility: visible;
    opacity: 1;
}

.has-dropdown {
    position: relative;
}

.drop-icon {
    font-size: 11px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.sub-menu {
    position: absolute;
    top: 250%;
    left: 0;
    min-width: 230px;
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    list-style: none;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #eaf2e8;
    z-index: 100;
}

.sub-menu li a {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 12px 22px !important;
    color: #2c3e50 !important;
    font-size: 14.5px !important;
    font-weight: 500 !important;
    transition: all 0.25s ease;
    width: 100%;
}

.sub-menu li a i {
    color: #2e7d32;
    font-size: 13px;
    width: 18px;
    text-align: center;
}

.sub-menu li a:hover {
    background-color: #f4f9f2;
    color: #2e7d32 !important;
    padding-left: 26px !important;
}

.mobile-back-header {
    display: none;
}

/* Desktop Hover Interaction */
@media screen and (min-width: 993px) {
    .has-dropdown:hover .sub-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .has-dropdown:hover .drop-icon {
        transform: rotate(180deg);
    }
}

/* Mobile Responsive Dropdown Styles */
@media screen and (max-width: 992px) {
    .sub-menu {
        position: static;
        box-shadow: none;
        border: none;
        background: #f1f7ef;
        width: 100%;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transform: none;
        border-radius: 0;
        transition: max-height 0.4s ease;
    }

    .has-dropdown.active-mobile .sub-menu {
        max-height: 280px;
        padding-bottom: 10px;
        margin-top: 10px;
        border-top: 1px solid #d8e8d3;
        border-bottom: 1px solid #d8e8d3;
    }

    .has-dropdown.active-mobile > a {
        color: #2e7d32 !important;
        font-weight: 600;
    }

    .has-dropdown.active-mobile .drop-icon {
        transform: rotate(180deg);
    }

    /* Mobile Back to Main Menu Button */
    .mobile-back-header {
        display: flex !important;
        align-items: center;
        gap: 10px;
        padding: 14px 20px;
        background-color: #e2ede0;
        color: #1b5e20;
        font-weight: 700;
        font-size: 14px;
        cursor: pointer;
        border-bottom: 1px solid #cfe2cb;
        margin-bottom: 8px;
        transition: background 0.2s;
    }

    .mobile-back-header:hover {
        background-color: #d2e4ce;
    }

    
    .navbar.sub-menu-open .menu-list > li:not(.has-dropdown) {
        display: none; 
    }
}

/* ==================== SERVICES DROPDOWN EXTENSION ==================== */
.services-sub-menu {
    max-height: 420px;
    overflow-y: auto;
}

/* Custom scrollbar for services dropdown */
.services-sub-menu::-webkit-scrollbar {
    width: 5px;
}
.services-sub-menu::-webkit-scrollbar-thumb {
    background: #c8e6c9;
    border-radius: 10px;
}

@media screen and (max-width: 992px) {
    .services-sub-menu {
        max-height: 0;
        overflow-y: auto;
    }
    
    .has-dropdown.active-mobile .services-sub-menu {
        max-height: 400px; 
    }
}

/* ==================== FULL WIDTH IMAGE BANNER SLIDER STYLING ==================== */
.fullwidth-image-banner {
    position: relative;
    width: 100%;
    min-height: 700px;
    height: calc(100vh - 80px);
    max-height: 850px;
    overflow: hidden;
    background-color: #0f1e14;
    display: flex;
    align-items: center;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    z-index: 1;
}

.banner-slide.active {
    visibility: visible;
    opacity: 1;
    z-index: 2;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(15, 30, 20, 0.8), rgba(15, 30, 20, 0.55));
    z-index: 1;
}

.banner-slide .container {
    position: relative;
    z-index: 3;
    width: 100%;
}

.banner-content-box {
    max-width: 800px;
    color: #ffffff;
    padding: 20px 0;
    margin-left: 40px; 
}

.banner-tag {
    display: inline-block;
    background-color: rgba(46, 125, 50, 0.9);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 0.8px;
}

.banner-content-box h1 {
    font-size: 46px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.banner-content-box p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #e2e8e0;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.banner-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.btn-banner-green {
    background-color: #2e7d32;
    color: #ffffff;
    padding: 12px 26px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.4);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    letter-spacing: 1px;
}

.btn-banner-green:hover {
    background-color: #1b5e20;
    transform: translateY(-2px);
}

.btn-banner-white {
    background-color: #ffffff;
    color: #2c3e50;
    padding: 12px 26px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    letter-spacing: 1px;
}

.btn-banner-white:hover {
    background-color: #f1f1f1;
    color: #2e7d32;
    transform: translateY(-2px);
}

/* Slider Arrows */
.banner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.3);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.banner-arrow:hover {
    background: rgba(255, 255, 255, 0.7);
    color: #2e7d32;
}

.prev-arrow { left: 25px; }
.next-arrow { right: 25px; }

/* ==================== BANNER SEQUENTIAL ANIMATION ==================== */
.banner-content-box .animate-tag,
.banner-content-box .animate-heading,
.banner-content-box .animate-para,
.banner-content-box .animate-btn {
    opacity: 0;
    transform: translateX(-60px);
    transition: none;
}

.banner-slide.active .animate-tag {
    animation: slideInFromLeft 0.7s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 0.3s;
}

.banner-slide.active .animate-heading {
    animation: slideInFromLeft 0.7s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 0.7s;
}

.banner-slide.active .animate-para {
    animation: slideInFromLeft 0.7s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 1.1s;
}

.banner-slide.active .animate-btn {
    animation: jumpInButton 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 1.5s;
}

@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-60px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes jumpInButton {
    0% {
        opacity: 0;
        transform: translateX(-60px);
    }
    60% {
        opacity: 1;
        transform: translateX(15px);
    }
    80% {
        transform: translateX(-8px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ==================== RESPONSIVE MEDIA QUERIES ==================== */
@media screen and (max-width: 1100px) {
    .navbar .menu-list {
        gap: 20px;
    }
    .navbar .menu-list li a {
        font-size: 14px;
    }
}

@media screen and (max-width: 992px) {
    .header-main {
        height: 70px;
    }

    .logo img {
        height: 80px;
        background: none;
        box-shadow: none;
        margin-top: 0px;
    }

    .toggle-btn {
        display: block;
    }

    .navbar {
        position: fixed;
        top: 70px;
        left: -280px;
        width: 270px;
        height: calc(100vh - 70px);
        background-color: #ffffff;
        box-shadow: 5px 15px 20px rgba(0, 0, 0, 0.08);
        padding: 25px 20px;
        transition: left 0.4s ease-in-out;
        z-index: 999;
        overflow-y: auto;
    }

    .navbar.active {
        left: 0; 
    }

    .navbar .menu-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        width: 100%;
    }

    .navbar .menu-list li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
        padding-bottom: 12px;
    }

    .navbar .menu-list li a {
        font-size: 16px;
        display: block;
        width: 100%;
    }

    .navbar .menu-list li a::after {
        display: none;
    }

    .fullwidth-image-banner {
        min-height: 550px;
        height: auto;
        padding: 50px 0;
        text-align: center;
    }

    .banner-content-box {
        margin-left: 0;
        max-width: 100%;
        padding: 0 10px;
    }

    .banner-content-box h1 {
        font-size: 32px;
    }

    .banner-content-box p {
        font-size: 15px;
    }

    .banner-btn-group {
        justify-content: center;
    }

    .banner-arrow {
        width: 36px;
        height: 36px;
        font-size: 13px;
        background: rgba(0, 0, 0, 0.4);
    }
    .prev-arrow { left: 10px; }
    .next-arrow { right: 10px; }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .logo img {
        height: 80px;
    }

    .btn-appointment {
        padding: 8px 14px;
        font-size: 12px;
    }

    .toggle-btn {
        font-size: 20px;
    }

    .fullwidth-image-banner {
        min-height: 350px;
    }

    .banner-content-box h1 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .banner-content-box p {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .banner-tag {
        font-size: 12px;
        padding: 4px 12px;
    }

    .banner-btn-group {
        flex-direction: column;
        gap: 10px;
    }

    .btn-banner-green, .btn-banner-white {
        justify-content: center;
        width: fit-content;
        padding: 10px 18px;
        font-size: 13px;
        margin: 0 auto;
    }

    
    .banner-arrow {
        width: 32px;
        height: 32px;
        font-size: 12px;
        top: auto;
        bottom: 15px;
        transform: none;
    }
    .prev-arrow { left: 30%; margin-left: -35px; }
    .next-arrow { right: 30%; margin-right: -35px; }
}

/* ==================== STANDARD ABOUT US SECTION STYLING ==================== */
.standard-about-section {
    position: relative;
    width: 100%;
    padding: 30px 0;
    background-color: #ffffff;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    align-items: center;
}

/* Left Image Styling */
.about-img-col {
    position: relative;
}

.about-image-frame {
    width: 100%;
    height: 650px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 4px solid #eaf2e8;
}

.about-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.about-image-frame img:hover {
    transform: scale(1.03);
}

/* Right Content Styling */
.about-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #eaf2e8;
    color: #2e7d32;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.about-text-col h2 {
    font-size: 40px;
    font-weight: 800;
    color: #1a3022;
    /* line-height: 1.25; */
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.about-desc-main {
    font-size: 18px;
    font-weight: 500;
    color: #2e7d32;
    line-height: 1.5;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.about-desc-sub {
    font-size: 18px;
    color: #556058;
    line-height: 1.5;
    margin-bottom: 25px;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Features List */
.about-features-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    color: #2c3e50;
    letter-spacing: 1px;
}

.about-feature-item i {
    color: #2e7d32;
    font-size: 18px;
}

/* Button */
.btn-about-read {
    background: linear-gradient(135deg, #2e7d32, #43a047);
    color: #ffffff;
    padding: 13px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.btn-about-read:hover {
    background: linear-gradient(135deg, #1b5e20, #2e7d32);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
}

/* ==================== RESPONSIVE MEDIA QUERIES ==================== */
@media screen and (max-width: 992px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .about-subtitle {
        margin: 0 auto 15px auto;
    }

    .about-image-frame {
        height: 380px;
        max-width: 450px;
        margin: 0 auto;
    }

    .about-features-list {
        align-items: center;
    }

    .about-btn-box {
        display: flex;
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .standard-about-section {
        padding: 60px 0;
    }

    .about-text-col h2 {
        font-size: 28px;
    }

    .about-desc-main, .about-desc-sub {
        font-size: 14px;
    }

    .about-image-frame {
        height: 280px;
    }

    .about-feature-item {
        font-size: 13px;
    }
}

/* ==================== MINIMALIST UNIQUE COUNTER SECTION ==================== */
.minimal-counter-section {
    position: relative;
    width: 100%;
    padding: 30px 0;
    background-color: #f7f9f6;
}

.minimal-counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.mini-counter-item {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid #eaf2e8;
    transition: all 0.3s ease;
}

.mini-counter-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(46, 125, 50, 0.08);
    border-color: #2e7d32;
}

.mini-icon-wrap {
    width: 60px;
    height: 60px;
    background: #eaf2e8;
    color: #2e7d32;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.mini-counter-item:hover .mini-icon-wrap {
    background: #2e7d32;
    color: #ffffff;
}

.mini-text-wrap h2 {
    font-size: 32px;
    font-weight: 900;
    color: #1a3022;
    line-height: 1.1;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.mini-text-wrap p {
    font-size: 14px;
    color: #556058;
    font-weight: 500;
    margin: 0;
    letter-spacing: 1px;
}

/* ==================== RESPONSIVE MEDIA QUERIES ==================== */
@media screen and (max-width: 1100px) {
    .minimal-counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media screen and (max-width: 600px) {
    .minimal-counter-section {
        padding: 50px 0;
    }
    .minimal-counter-grid {
        grid-template-columns: 1fr;
    }
    .mini-counter-item {
        padding: 22px 20px;
    }
}

/* ==================== WHY CHOOSE US SECTION STYLING ==================== */
.why-choose-section {
    position: relative;
    width: 100%;
    padding: 30px 0;
    background: white;
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #eaf2e8;
    color: #2e7d32;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.section-header-center h2 {
    font-size: 38px;
    font-weight: 800;
    color: #1a3022;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.section-header-center p {
    font-size: 16px;
    color: #556058;
    line-height: 1.6;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Grid Layout */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Unique Modern Card Styling */
.why-card {
    position: relative;
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 22px;
    border: 1px solid #e2ebd9;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2e7d32, #43a047);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(46, 125, 50, 0.12);
    border-color: #2e7d32;
    background: #ffffff;
}

.why-card:hover::before {
    opacity: 1;
}

.why-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.why-icon {
    width: 60px;
    height: 60px;
    background-color: #f1f8ef;
    color: #2e7d32;
    font-size: 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.why-card:hover .why-icon {
    background-color: #2e7d32;
    color: #ffffff;
    transform: scale(1.08) rotate(5deg);
}

.card-number {
    font-size: 18px;
    font-weight: 800;
    color: #c8e6c9;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.why-card:hover .card-number {
    color: #2e7d32;
}

.why-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a3022;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.why-card p {
    font-size: 14px;
    color: #556058;
    line-height: 1.5;
    margin: 0;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ==================== RESPONSIVE MEDIA QUERIES ==================== */
@media screen and (max-width: 992px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media screen and (max-width: 768px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    .section-header-center h2 {
        font-size: 28px;
    }
    .why-card {
        padding: 25px 20px;
    }
}

/* ==================== PREMIUM TREATMENTS CARD DESIGN ==================== */
.premium-treatments {
    position: relative;
    padding: 30px 0;
    background: linear-gradient(135deg, #f7fff5, #eef9ec, #ffffff);
}

/* Title Styling */
.premium-title {
    text-align: center;
    margin-bottom: 30px;
}

.premium-title span {
    display: inline-block;
    background: #2e7d32;
    color: #fff;
    padding: 8px 22px;
    border-radius: 40px;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 18px;
    font-weight: 600;
}

.premium-title h2 {
    font-size: 46px;
    color: #17361d;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: 1PX;
}

.premium-title p {
    max-width: 700px;
    margin: auto;
    color: #666;
    line-height: 1.8;
    letter-spacing: 1px;
    font-weight: 600;

}

/* Grid Layout */
.premium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}


.premium-card {
    position: relative;
    overflow: visible; 
    border-radius: 25px;
    background: #ffffffcc;
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 40px rgba(0,0,0,.07);
    transition: .5s;
    /* animation: cardFloat 5s ease-in-out infinite; */
    margin-bottom: 20px; 
}

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

/* Animated Border */
.premium-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 25px;
    background: linear-gradient(45deg, #4caf50, #8bc34a, #4caf50);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: .4s;
    z-index: 3;
    pointer-events: none;
}

.premium-card:hover::before {
    opacity: 1;
}

/* Image Box */
.card-image {
    position: relative;
    height: 230px;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s;
}

.premium-card:hover .card-image img {
    transform: scale(1.15) rotate(2deg);
}

/* Icon Box Fix - Proper positioning */
.icon {
    position: absolute;
    width: 65px;
    height: 65px;
    background: #fff;
    border-radius: 50%;
    right: 25px;
    bottom: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #2e7d32;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
    transition: .5s;
    z-index: 10;
}

.premium-card:hover .icon {
    background: #2e7d32;
    color: #fff;
    transform: rotate(360deg);
}

/* Content Box */
.card-content {
    padding: 45px 30px 30px;
}

.card-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #18371d;
    transition: .3s;
    letter-spacing: 1px;
    font-weight: 700;
}

.premium-card:hover h3 {
    color: #2e7d32;
    letter-spacing: 1px;
    font-weight: 600;
}

.card-content p {
    color: #666;
    line-height: 1.7;
    font-size: 14.5px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Link Button - Pointer & Cursor Fix */
.card-content a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #2e7d32;
    text-decoration: none;
    font-weight: 700;
    cursor: pointer; 
    transition: .4s;
}

.card-content a i {
    transition: .4s;
}

.card-content a:hover {
    color: #1b5e20;
}

.card-content a:hover i {
    transform: translateX(8px);
}

.card-content a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: #2e7d32;
    transition: .4s;
}

.card-content a:hover::before {
    width: 100%;
}

/* Shine Effects */
.card-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.6) 50%, transparent 100%);
    transform: skewX(-25deg);
    z-index: 2;
    pointer-events: none;
}

.premium-card:hover .card-image::before {
    animation: shine 1s ease;
}

@keyframes shine {
    100% { left: 150%; }
}

.shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.35), rgba(0,0,0,.05));
    transition: .5s;
    z-index: 1;
    pointer-events: none;
}

.premium-card:hover .shine {
    background: linear-gradient(to top, rgba(46,125,50,.45), rgba(255,255,255,.05));
}

.premium-card::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(76,175,80,.25);
    filter: blur(60px);
    top: -80px;
    right: -80px;
    opacity: 0;
    transition: .6s;
    pointer-events: none;
}

.premium-card:hover::after {
    opacity: 1;
}

/* Keyframe Animations */
@keyframes floatShape {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-35px) rotate(180deg); }
    100% { transform: translateY(0px) rotate(360deg); }
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Stagger Delays for Cards */
.premium-card:nth-child(1) { animation-delay: .1s; }
.premium-card:nth-child(2) { animation-delay: .2s; }
.premium-card:nth-child(3) { animation-delay: .3s; }
.premium-card:nth-child(4) { animation-delay: .4s; }
.premium-card:nth-child(5) { animation-delay: .5s; }
.premium-card:nth-child(6) { animation-delay: .6s; }
.premium-card:nth-child(7) { animation-delay: .7s; }
.premium-card:nth-child(8) { animation-delay: .8s; }
.premium-card:nth-child(9) { animation-delay: .9s; }
.premium-card:nth-child(10) { animation-delay: 1s; }
.premium-card:nth-child(11) { animation-delay: 1.1s; }
.premium-card:nth-child(12) { animation-delay: 1.2s; }

/* Responsive Media Queries */
@media(max-width: 991px) {
    .premium-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px 25px;
    }
    .premium-title h2 { font-size: 38px; }
}

@media(max-width: 767px) {
    .premium-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .premium-title h2 { font-size: 30px; }
}

/*==================================================
            AYURVEDA TESTIMONIAL SWIPER
==================================================*/

.ayu-review-section {
    padding: 30px 0;
    background: #fff;
    overflow: hidden;
}

/* Swiper */

.ayuReviewSlider {
    width: 100%;
    overflow: hidden;
    padding: 15px 5px 70px;
}

.ayuReviewSlider .swiper-wrapper {
    display: flex;
}

.ayuReviewSlider .swiper-slide {
    display: flex;
    height: auto;
    box-sizing: border-box;
}

/* Card */

.ayu-review-card {
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;

    padding: 30px;

    background: #f8faf7;
    border: 1px solid #dce7d6;
    border-radius: 22px;

    /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05); */

    transition: all .4s ease;
}

.ayu-review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Top */

.ayu-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.ayu-quote {
    font-size: 30px;
    color: #2e7d32;
    opacity: .2;
}

.ayu-stars {
    display: flex;
    gap: 3px;
    font-size: 13px;
    color: #ffb400;
}

/* Text */

.ayu-text {
    flex: 1;

    margin-bottom: 25px;

    font-size: 15px;
    line-height: 1.5;
    /* font-style: italic; */
    color: #555;
    letter-spacing: 1px;
    font-weight: 500;
}

/* User */

.ayu-user {
    display: flex;
    align-items: center;
    gap: 15px;

    padding-top: 20px;
    border-top: 1px solid #e8eee5;
}

.ayu-user img {
    width: 58px;
    height: 58px;

    border-radius: 50%;
    object-fit: cover;

    border: 3px solid #2e7d32;
}

.ayu-user h4 {
    margin-bottom: 3px;

    font-size: 18px;
    font-weight: 700;
    color: #17361d;
    letter-spacing: 1px;

}

.ayu-user span {
    font-size: 13px;
    font-weight: 600;
    color: #2e7d32;
    letter-spacing: 1px;
}

/*==================================================
                PAGINATION
==================================================*/

.ayu-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;

    background: #2e7d32;
    opacity: .3;

    transition: .3s;
}

.ayu-pagination .swiper-pagination-bullet-active {
    width: 28px;

    border-radius: 20px;

    opacity: 1;
}

/*==================================================
                NAVIGATION
==================================================*/

.ayu-next,
.ayu-prev {
    color: #2e7d32;
}

.ayu-next::after,
.ayu-prev::after {
    font-size: 24px;
    font-weight: 700;
}

/*==================================================
                RESPONSIVE
==================================================*/

@media (max-width: 991px) {

    .ayu-review-section {
        padding: 70px 0;
    }

    .ayu-review-card {
        padding: 25px;
    }

}

@media (max-width: 767px) {

    .ayu-review-section {
        padding: 60px 0;
    }

    .ayu-review-card {
        padding: 22px;
    }

    .ayu-user img {
        width: 50px;
        height: 50px;
    }

    .ayu-user h4 {
        font-size: 16px;
    }

    .ayu-text {
        font-size: 14px;
    }

}
/* ==================== GALLERY SECTION STYLING ==================== */
.gallery-section {
    position: relative;
    padding: 30px 0;
    background: #f7f9f6;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gallery-item {
    position: relative;
    height: 260px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2ebd9;
    background: #ffffff;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item:hover img {
    transform: scale(1.12);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 48, 34, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none; 
}

.gallery-overlay i {
    color: #ffffff;
    font-size: 24px;
    background: rgba(46, 125, 50, 0.85);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.6);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* ==================== LIGHTBOX POPUP MODAL STYLING ==================== */
.lightbox-modal {
    position: fixed;
    inset: 0;
    background: rgba(10, 20, 14, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-img {
    max-width: 85%;
    max-height: 80vh;
    border-radius: 12px;
    object-fit: contain;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    animation: zoomInLight 0.4s ease;
}

@keyframes zoomInLight {
    0% { transform: scale(0.85); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #ffffff;
    font-size: 30px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.lightbox-close:hover {
    background: #2e7d32;
}

.lightbox-nav {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    pointer-events: none;
}

.lightbox-nav button {
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.lightbox-nav button:hover {
    background: #2e7d32;
}

/* ==================== RESPONSIVE MEDIA QUERIES ==================== */
@media screen and (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media screen and (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-section {
        padding: 60px 0;
    }
    .lightbox-nav {
        padding: 0 15px;
    }
    .lightbox-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 22px;
    }
}
/* =========================================
   POINTER & CURSOR FIX FOR FOOTER
========================================= */
.footer-pointer,
.footer-card ul li a,
.footer-social a,
.call-btn,
.book-btn,
.footer-bottom a {
    cursor: pointer !important;
}

/* =========================================
   PREMIUM FOOTER STYLING
========================================= */
.premium-footer {
    position: relative;
    background: linear-gradient(135deg, #0b1f14, #123123, #1b5e20);
    padding: 30px 0;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.container1 {
    width: 100%;
    /* max-width: 1400px; */
    margin: 0 auto;
    padding: 0 30px;
    box-sizing: border-box;
}

/* =========================================
   BACKGROUND FLOATING LEAVES ANIMATION
========================================= */
.leaves-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.leaves-container .leaf {
    position: absolute;
    bottom: -60px;
    opacity: 0;
    user-select: none;
    animation: floatLeafUp linear infinite;
}

/* Individual Leaf Positions, Sizes, & Durations */
.leaves-container .leaf:nth-child(1)  { left: 5%;  font-size: 28px; animation-duration: 9s;  animation-delay: 0s; }
.leaves-container .leaf:nth-child(2)  { left: 15%; font-size: 22px; animation-duration: 13s; animation-delay: 2s; }
.leaves-container .leaf:nth-child(3)  { left: 28%; font-size: 32px; animation-duration: 10s; animation-delay: 5s; }
.leaves-container .leaf:nth-child(4)  { left: 40%; font-size: 20px; animation-duration: 12s; animation-delay: 1s; }
.leaves-container .leaf:nth-child(5)  { left: 52%; font-size: 30px; animation-duration: 9s;  animation-delay: 4s; }
.leaves-container .leaf:nth-child(6)  { left: 65%; font-size: 24px; animation-duration: 14s; animation-delay: 3s; }
.leaves-container .leaf:nth-child(7)  { left: 75%; font-size: 34px; animation-duration: 11s; animation-delay: 6s; }
.leaves-container .leaf:nth-child(8)  { left: 85%; font-size: 22px; animation-duration: 10s; animation-delay: 2s; }
.leaves-container .leaf:nth-child(9)  { left: 92%; font-size: 28px; animation-duration: 13s; animation-delay: 7s; }
.leaves-container .leaf:nth-child(10) { left: 48%; font-size: 26px; animation-duration: 11s; animation-delay: 8s; }

@keyframes floatLeafUp {
    0% {
        transform: translateY(0) rotate(0deg) translateX(0);
        opacity: 0;
    }
    15% {
        opacity: 0.35;
    }
    85% {
        opacity: 0.35;
    }
    100% {
        transform: translateY(-950px) rotate(360deg) translateX(40px);
        opacity: 0;
    }
}

/* Wave & Blobs */
.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 2;
}

.footer-wave svg {
    width: 100%;
    height: 130px;
    display: block;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: blobMove 12s linear infinite;
    z-index: 1;
}

.blob1 { width: 280px; height: 280px; background: #4caf5045; left: -100px; top: 80px; }
.blob2 { width: 240px; height: 240px; background: #81c78440; right: -80px; bottom: 80px; }
.blob3 { width: 180px; height: 180px; background: #66bb6a30; left: 50%; top: 45%; }

@keyframes blobMove {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
    100% { transform: translateY(0) rotate(360deg); }
}

/* Grid & Content Placement */
.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
    gap: 35px;
    position: relative;
    z-index: 2;
    /* margin-bottom: 30px; */
}

.footer-card {
    position: relative;
    padding: 30px;
    border-radius: 25px;
    transition: .45s;
    overflow: hidden;
    z-index: 2;
    height: fit-content;
    box-sizing: border-box;
}

.footer-card:hover {
    transform: translateY(-12px);
    border-color: #4caf50;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
    background: rgba(255, 255, 255, .07);
}

.footer-logo {
    width: 220px;
    max-width: 100%;
    background: #fff;
    padding: 10px;
    border-radius: 15px;
    margin-bottom: 20px;
    transition: .5s;
}

.footer-card:hover .footer-logo {
    transform: rotate(-5deg) scale(1.08);
}

.footer-card h3 {
    font-size: 26px;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: 1px;
    font-weight: 700;
}

.footer-card h4 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    letter-spacing: 1px;
    font-weight: 700;
}

.footer-card h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 45px;
    height: 3px;
    background: #4caf50;
    border-radius: 20px;
}

.footer-card p {
    color: #d9e7d8;
    line-height: 1.5;
    font-size: 15px;
    letter-spacing: 1px;
    font-weight: 500;
    word-break: break-word;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.footer-social a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .09);
    color: #fff;
    font-size: 17px;
    transition: .4s;
    text-decoration: none;
}

.footer-social a:hover {
    background: #4caf50;
    transform: translateY(-8px) rotate(360deg);
    box-shadow: 0 10px 25px rgba(76, 175, 80, .5);
}

.footer-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-card ul li {
    margin: 14px 0;
}

.footer-card ul li a {
    text-decoration: none;
    color: #d5e4d3;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: .35s;
    letter-spacing: 1px;
    font-weight: 500;
    word-break: break-word;
}

.footer-card ul li a i {
    color: #4caf50;
    transition: .35s;
    flex-shrink: 0;
}

.footer-card ul li a:hover {
    padding-left: 10px;
    color: #fff;
}

.footer-card ul li a:hover i {
    transform: translateX(6px);
}

.contact-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
    color: #dce8db;
    width: 100%;
    box-sizing: border-box;
}

.contact-box i {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .08);
    color: #4caf50;
    font-size: 18px;
    flex-shrink: 0;
    transition: .4s;
}

.contact-box span {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: 1px;
    font-weight: 500;
    word-break: break-word;
    overflow-wrap: break-word;
    flex: 1;
    min-width: 0;
}

/* Email text break fix */
.email-text {
    word-break: break-all !important;
}

.footer-btns {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.call-btn,
.book-btn {
    flex: 1;
    text-align: center;
    padding: 14px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: .4s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.call-btn {
    background: #43a047;
    color: #fff;
}

.call-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(76, 175, 80, .4);
}

.book-btn {
    background: #fff;
    color: #1b5e20;
}

.book-btn:hover {
    background: #4caf50;
    color: #fff;
    transform: translateY(-5px);
}

.footer-map {
    margin-top: 10px;
    border-radius: 25px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, .12);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .25);
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.footer-map iframe {
    width: 100%;
    height: 280px;
    border: 0;
    display: block;
    filter: grayscale(.2);
    transition: .4s;
}

.footer-map:hover iframe {
    filter: grayscale(0);
    transform: scale(1.02);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    margin: 0 auto;
    color: #dce8db;
    font-size: 15px;
    word-break: break-word;
}

.footer-bottom a {
    color: #7CFC00;
    font-weight: 700;
    text-decoration: none;
    transition: .3s;
}

.footer-bottom a:hover {
    color: #fff;
}

/* Responsive */
@media(max-width: 1200px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media(max-width: 768px) {
    .premium-footer { 
        padding: 40px 15px 60px 15px !important; 
    }
    .container1 {
        padding: 0 10px;
    }
    .footer-grid { 
        grid-template-columns: 1fr; 
        gap: 25px; 
    }
    .footer-card { 
        padding: 20px; 
    }
    .footer-btns { 
        flex-direction: column; 
    }
    .footer-map iframe { 
        height: 220px; 
    }
    .footer-bottom { 
        justify-content: center; 
        text-align: center; 
        flex-direction: column; 
        gap: 10px;
        padding-bottom: 20px;
    }
}
/* ==================== FLOATING ACTION BUTTONS & BACK TO TOP ==================== */
.floating-action-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.float-btn {
    width: 50px;
    height: 50px;
    background-color: #2e7d32;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    cursor: pointer;
}

.float-btn:hover {
    background-color: #1b5e20;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
}

/* ==================== BACK TO TOP BUTTON STYLING ==================== */
.back-to-top-btn {
    width: 50px;
    height: 50px;
    background-color: #2e7d32;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.back-to-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top-btn:hover {
    background-color: #1b5e20;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
}

@media screen and (max-width: 768px) {
    .floating-action-buttons {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        transform: none;
        flex-direction: row;
        justify-content: center;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        padding: 8px 15px;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
        border-top: 2px solid #eaf2e8;
        gap: 15px;
        z-index: 999;
    }

    .float-btn {
        width: 42px;
        height: 42px;
        font-size: 16px;
        box-shadow: 0 2px 8px rgba(46, 125, 50, 0.3);
    }

    
    .back-to-top-btn {
        position: fixed;
        right: 20px;
        bottom: 75px;
        width: 42px;
        height: 42px;
        font-size: 16px;
        z-index: 1000;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }
}

/* ==================== NISARG AYURVEDA MODAL STYLING ==================== */
/* ==================== NISARG AYURVEDA MODAL STYLING ==================== */
.nisarg-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 25, 16, 0.82);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 16px;
}

.nisarg-modal-overlay.active-modal {
    opacity: 1;
    visibility: visible;
}

.nisarg-modal-container {
    background: #ffffff;
    width: 100%;
    max-width: 700px;
    border-radius: 28px;
    padding: 35px;
    position: relative;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(20px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid #dcebd4;
}

.nisarg-modal-overlay.active-modal .nisarg-modal-container {
    transform: scale(1) translateY(0);
}

.nisarg-modal-container::-webkit-scrollbar {
    width: 5px !important;
}

.nisarg-modal-container::-webkit-scrollbar-track {
    background: transparent;
}

.nisarg-modal-container::-webkit-scrollbar-track-piece:start {
    margin-top: 20px;   
}

.nisarg-modal-container::-webkit-scrollbar-track-piece:end {
    margin-bottom: 20px;   
}

.nisarg-modal-container::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #2e7d32, #43a047);
    border-radius: 20px;
}

/* Close Button */
.nisarg-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 38px;
    height: 38px;
    background: #f1f8ef;
    color: #2e7d32;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
box-shadow: none;
    transition: all 0.3s ease;
}

.nisarg-close-btn:hover {
    background: #2e7d32;
    color: #ffffff;
    transform: rotate(90deg);
}

/* Modal Header */
.nisarg-modal-header {
    text-align: center;
    margin-bottom: 25px;
}

.nisarg-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #eaf2e8;
    color: #2e7d32;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 10px;
}

.nisarg-modal-header h2 {
    font-size: 26px;
    font-weight: 800;
    color: #1a3022;
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}

.nisarg-modal-header p {
    font-size: 13.5px;
    color: #556058;
}

/* ==================== FORM ROW (FLEX LAYOUT) ==================== */
.nisarg-grid-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.nisarg-grid-row .nisarg-field {
    flex: 1 1 calc(50% - 8px);
    min-width: 240px;
}

.nisarg-field {
    margin-bottom: 18px;
}

.nisarg-field label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #1a3022;
    margin-bottom: 6px;
}

.nisarg-field label i {
    color: #2e7d32;
}

.nisarg-field input, 
.nisarg-field select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2ebd9;
    border-radius: 14px;
    font-size: 14px;
    background: #f9fbf8;
    color: #1a3022;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.nisarg-field input:focus, 
.nisarg-field select:focus {
    border-color: #2e7d32;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.12);
}

/* ==================== CF7 TIME SLOTS (FLEX LAYOUT) ==================== */
.nisarg-slots-grid .wpcf7-radio {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.nisarg-slots-grid .wpcf7-list-item {
    margin: 0;
    flex: 1 1 calc(50% - 6px);
    min-width: 220px;
}

/* Label Card Container */
.nisarg-slots-grid .wpcf7-list-item label {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px 12px;
    background-color: #f7f9f6;
    border: 2px solid #e2ebd9;
    border-radius: 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.35s ease;
    font-size: 13px;
    font-weight: 700;
    color: #1a3022;
    box-sizing: border-box;
}

/* Hide default CF7 radio input circle */
.nisarg-slots-grid input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

/* Circular Icon Badge using FontAwesome Pseudoelements */
.nisarg-slots-grid .wpcf7-list-item label::before {
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    font-size: 15px;
    color: #2e7d32;
    width: 38px;
    height: 38px;
    background-color: #eaf2e8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

/* Morning Shift Icon (fa-sun) */
.nisarg-slots-grid .wpcf7-list-item:nth-child(1) label::before {
    content: "\f185";
}

/* Afternoon Shift Icon (fa-cloud-sun) */
.nisarg-slots-grid .wpcf7-list-item:nth-child(2) label::before {
    content: "\f6c4";
}

/* Time Subtext */
.nisarg-slots-grid .wpcf7-list-item label::after {
    font-size: 14px;
    font-weight: 600;
    color: #66776b;
    letter-spacing: 1.5px;
}

.nisarg-slots-grid .wpcf7-list-item:nth-child(1) label::after {
    content: "9:00 AM - 12:30 PM";
}

.nisarg-slots-grid .wpcf7-list-item:nth-child(2) label::after {
    content: "2:30 PM - 6:00 PM";
}

/* Active / Checked State */
.nisarg-slots-grid .wpcf7-list-item label:has(input:checked) {
    background: #eaf2e8;
    border-color: #2e7d32;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.15);
}

.nisarg-slots-grid .wpcf7-list-item label:has(input:checked)::before {
    background: #ffffff;
    color: #2e7d32;
}

/* Hover Effect */
.nisarg-slots-grid .wpcf7-list-item label:hover {
    border-color: #2e7d32;
}

/* ==================== SUBMIT BUTTON ==================== */
.nisarg-submit-btn,
input[type="submit"].nisarg-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #2e7d32, #43a047);
    color: #ffffff;
    border: none;
    padding: 14px;
    border-radius: 50px;
    font-size: 14.5px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(46, 125, 50, 0.3);
    transition: all 0.35s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.nisarg-submit-btn:hover,
input[type="submit"].nisarg-submit-btn:hover {
    background: linear-gradient(135deg, #1b5e20, #2e7d32);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(46, 125, 50, 0.4);
}

/* ==================== RESPONSIVE ADJUSTMENTS ==================== */
@media (max-width: 576px) {
    .nisarg-modal-container {
        padding: 20px;
        border-radius: 20px;
    }

    .nisarg-modal-header h2 {
        font-size: 22px;
    }

    .nisarg-modal-header p {
        font-size: 12.5px;
    }

    /* Stack fields and slots on small mobile screens */
    .nisarg-grid-row .nisarg-field,
    .nisarg-slots-grid .wpcf7-list-item {
        flex: 1 1 100%;
    }

    .nisarg-close-btn {
        top: 15px;
        right: 15px;
        width: 34px;
        height: 34px;
        font-size: 14px;
    }
}




/* Container in Top-Right */
#mwt-toast-container {
    position: fixed !important;
    top: 25px !important;
    right: 25px !important;
    z-index: 9999999 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    pointer-events: none !important;
}

/* Base Toast Card */
.mwt-toast-card {
    min-width: 320px !important;
    max-width: 420px !important;
    padding: 16px 20px !important;
    border-radius: 8px !important;
    font-family: 'Segoe UI', Arial, sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25) !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    pointer-events: auto !important;
    opacity: 0 !important;
    transform: translateX(120%) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

/* Active Display Trigger */
.mwt-toast-card.mwt-show {
    opacity: 1 !important;
    transform: translateX(0) !important;
}

/* SUCCESS PALETTE - Solid Green */
.mwt-toast-card.mwt-success {
    background-color: #2e7d32ad !important;
    border-left: 6px solid #02181191 !important;
    color: #ffffff !important;
    backdrop-filter: blur(10px);
}

/* ERROR PALETTE - Solid Red */
.mwt-toast-card.mwt-error {
    background-color: #a40e0e99 !important;
    border-left: 6px solid #991b1b !important;
    color: #ffffff !important;
    backdrop-filter: blur(10px);
}

/* Icon Styling */
.mwt-toast-icon {
    font-size: 20px !important;
    line-height: 1 !important;
}

/* Message Body */
.mwt-toast-text {
    flex: 1 !important;
    color: #ffffff !important;
}

/* Close ('X') Button Styling */
.mwt-toast-card.mwt-error .mwt-toast-close {
    background: #540b0b8a !important;
    border: none !important;
    color: #ffffff !important;
    font-size: 18px !important;
    cursor: pointer !important;
    opacity: 0.8 !important;
    line-height: 1 !important;
    padding: 5px !important;
    border-radius: 5px !important;
}
.mwt-toast-card.mwt-success .mwt-toast-close{
    border: none !important;
    color: #ffffff !important;
    font-size: 18px !important;
    cursor: pointer !important;
    opacity: 0.8 !important;
    padding: 0 !important;
    line-height: 1 !important;
    padding: 5px !important;
    background: #0a500e !important;
    border-radius: 5px !important;
}

.mwt-toast-close:hover {
    opacity: 1 !important;
}

/* Hide native CF7 output box beneath the form */
.wpcf7-response-output {
    display: none !important;
}

