:root {
    --primary-green: #2d5a27;
    --light-green: #4a7c59;
    --accent-green: #6b8e23;
    --background-green: #f0f8f0;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --border-color: #e9ecef;
    --gold: #ffd700;
    --orange: #ff8c00;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
 #notify.active {
            bottom: 20px;
        }


#notify {
    border-radius: 10px;
    width: 260px;
    padding: 10px;
    text-align: center;
    background: #000;
    display: block;
    color: white;
    z-index: 99999;
    margin: auto;
    font-weight: 700;
    font-size: 15px;
    position: fixed;
    right: 5%;
    bottom: -115px;
    transform: translate(0%, 0%);
    padding: 10px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
/* Scroll Top Left initial hidden state */
.scroll-top-left {
    opacity: 0;
    pointer-events: none;
}
.scroll-top-left.show {
    opacity: 1;
    pointer-events: auto;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}
/*...........testimonial.........*/
/*.testimonial-section {*/
/*    background: var(--background-green);*/
    /*padding: 80px 0;*/
/*}*/
.testimonial-card {
    height:450px!important;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--primary-green);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

/*.testimonial-card:hover {*/
/*    transform: translateY(-15px);*/
/*    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);*/
/*}*/
/* Enhanced Video Wrapper */
.video-wrapper {
    position: relative;
    width: 90%;
    height:60%;
    margin: 15px auto 0;
    aspect-ratio: 1 / 1; /* Square look for multi-video */
    border-radius: 16px;
    background-color: #1a1a1a; /* Dark background before video loads */
    overflow: hidden;
}

/* Using object-fit: cover to remove black "brackets" */
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Prevents black bars */
    display: block;
}

/* Content Area */
.testimonial-content {
    padding: 20px 25px 25px;
    text-align: left;
}

.testimonial-content .client-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--primary-green);
}


.testimonial-content .client-quote {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555555;
    margin: 0;
    border-left: 3px solid var(--primary-green);
    padding-left: 15px;
}
/* Carousel Navigation Dots */
.owl-dots {
    margin-top: 40px !important;
}

.owl-dot span {
    background: #e2e8e4 !important;
    width: 10px !important;
    height: 10px !important;
    transition: all 0.3s ease !important;
}

.owl-dot.active span {
    background: var(--primary-green) !important;
    width: 30px !important;
    border-radius: 20px !important;
}

.owl-nav {
    display: none !important;
}
        
        
/*................end testimonial..........*/
/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-green) !important;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.brand-text {
    font-weight: 700;
    margin-left: 0.5rem;
}

.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin: 0 1rem;
    transition: color 0.3s
ease;
    font-size: 14px;
}
.navbar-nav .nav-link:hover {
    color: var(--primary-green) !important;
}

/* Services dropdown styling */
.navbar-nav .dropdown-menu {
  border-radius: 12px;
  border: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  padding: 0.5rem;
  transform-origin: top center;
  animation: dropdownFadeIn 200ms ease;
}

/* Open on hover (desktop) */
@media (min-width: 992px) {
  .services-dropdown:hover > .dropdown-menu { display: block; }
  .services-dropdown .dropdown-toggle { display: inline-flex; align-items: center; }
  .services-dropdown .dropdown-toggle::after { margin-left: 0.35rem; transition: transform 0.2s ease; border-top-color: var(--primary-green); }
  .services-dropdown:hover .dropdown-toggle::after { transform: rotate(180deg); }
}
/* Also rotate caret when dropdown is opened via click/tap */
.services-dropdown.show .dropdown-toggle::after { transform: rotate(180deg); }

/* Dropdown items */
.dropdown-menu .dropdown-item {
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    font-size: 14px;
}
.dropdown-menu .dropdown-item i { font-size: 1rem; }
.dropdown-menu .dropdown-item:hover { background: rgba(76, 175, 80, 0.08); }

@keyframes dropdownFadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.contact-info {
    color: var(--text-dark);
    font-weight: 500;
}

.contact-info i {
    color: #fff;
}
button.btn2 {
    border: 0;
    background: #fff;
    padding: 0 20px;
    border-radius: 26px;
}
button.btn2:hover {
    border: 0;
    background: #dfdede;
    padding: 0 20px;
    border-radius: 26px;
}
/* Hero Section with Carousel */
.hero-section {
    background: linear-gradient(135deg, #e8f5e8, #f0f8f0);
    padding-top: 100px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="leaves" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="%234a7c59" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23leaves)"/></svg>');
    opacity: 0.3;
}

.hero-section .carousel-indicators {
    bottom: 30px;
}

.hero-section .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-light);
    border: none;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.hero-section .carousel-indicators button.active {
    background: var(--primary-green);
    transform: none;
    width: 10px !important;
    height: 10px !important;
    border-radius: 50%;
}

.hero-subtitle {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-description {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 500px;
}

.btn-primary {
    background: var(--primary-green);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--light-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(45, 90, 39, 0.3);
}

.hero-image {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Features Section */
.features-section {
    background: var(--white);
    padding: 80px 0;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: 100%;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

.feature-card h4 {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.1rem;
}

/* How Works Section */
.how-works-section {
    background: var(--background-green);
    padding: 80px 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.section-description {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.herbal-display {
    position: relative;
    height: 400px;
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.herb-ingredient {
    position: absolute;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.spoon-herbs {
    width: 80px;
    height: 200px;
    background: linear-gradient(45deg, #4a7c59, #6b8e23);
    border-radius: 40px 40px 20px 20px;
    top: 20px;
    left: 20px;
    transform: rotate(-15deg);
}

.mortar-herbs {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #8b4513, #a0522d);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.leaves-herbs {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #228b22, #32cd32);
    border-radius: 50%;
    top: 20px;
    right: 20px;
    transform: rotate(15deg);
}

/* Nature & Science Section */
.nature-science-section {
    background: var(--white);
    padding: 80px 0;
}

.features-list {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.feature-item i {
    color: var(--primary-green);
    margin-right: 1rem;
    font-size: 1.2rem;
}

.feature-item span {
    font-weight: 500;
    color: var(--text-dark);
}

.ingredients-display {
    position: relative;
    height: 400px;
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.ingredient {
    position: absolute;
    border-radius: 10px;
}

.ginger {
    width: 60px;
    height: 40px;
    background: #d2691e;
    top: 20px;
    right: 20px;
    transform: rotate(15deg);
}

.turmeric {
    width: 50px;
    height: 30px;
    background: #ffd700;
    top: 80px;
    right: 30px;
    transform: rotate(-10deg);
}

.mortar-pestle {
    width: 80px;
    height: 80px;
    background: #8b4513;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.capsules-yellow {
    width: 40px;
    height: 20px;
    background: #ffd700;
    border-radius: 10px;
    top: 200px;
    left: 30px;
}

.capsules-green {
    width: 40px;
    height: 20px;
    background: #4a7c59;
    border-radius: 10px;
    top: 230px;
    left: 50px;
}

.tomato {
    width: 30px;
    height: 30px;
    background: #ff6347;
    border-radius: 50%;
    bottom: 20px;
    right: 20px;
}

/* Services Section */
.services-section {
    background: var(--background-green);
    padding: 80px 0;
}

.service-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: 100%;
}

.service-item:hover {
    transform: translateY(-5px);
}
.service-image {
    height: 150px;
    background: #def0e5;
    border-radius: 10px;
    margin-bottom: 1rem;
    display: flex
;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.service-herbs {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.herbal-herbs {
    background: linear-gradient(45deg, #4a7c59, #6b8e23);
}

.herb-products-herbs {
    background: linear-gradient(45deg, #8b4513, #d2691e);
}

.medicine-herbs {
    background: linear-gradient(45deg, #ffd700, #ffa500);
}

.treatments-herbs {
    background: linear-gradient(45deg, #228b22, #32cd32);
}

.ayurvedic-herbs {
    background: linear-gradient(45deg, #4a7c59, #6b8e23);
}

.theta-healing-herbs {
    background: linear-gradient(45deg, #8b4513, #a0522d);
}

.consultations-herbs {
    background: linear-gradient(45deg, #ff69b4, #ff1493);
}

.chemical-less-herbs {
    background: linear-gradient(45deg, #228b22, #32cd32);
}

.service-item h4 {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.1rem;
}

/* How It Works Section */
.how-it-works-section {
    background: var(--white);
    padding: 80px 0;
}

.natural-ingredients-display {
    position: relative;
    height: 400px;
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.large-leaf {
    position: absolute;
    width: 200px;
    height: 150px;
    background: linear-gradient(45deg, #4a7c59, #6b8e23);
    border-radius: 0 100% 0 100%;
    top: 50px;
    left: 50px;
    transform: rotate(-20deg);
}

.mortar-capsules {
    position: absolute;
    width: 100px;
    height: 100px;
    background: #8b4513;
    border-radius: 50%;
    top: 150px;
    left: 100px;
}

.spices-arrangement {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #d2691e;
    border-radius: 50%;
    top: 200px;
    right: 50px;
}

.steps-list {
    margin: 2rem 0;
}

.step-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}


.step-item h4 {
    color: var(--text-dark);
    font-weight: 600;
    margin: 0;
}

.contact-help {
    margin-top: 2rem;
}

.btn-circle {
    border-radius: 50px;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Video Section */
.video-section {
    background-image: url("../img/video-bg.jpg"); /* <-- apni image ka path yahan do */
    background-size: cover;
    background-attachment: fixed; /* Parallax magic */
    background-position: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    color: #fff;
    z-index: 1;
}
.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23pattern)"/></svg>');
    opacity: 0.3;
}

.video-banner {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
}

.video-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.video-subtitle {
    font-size: 2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2rem;
}

.play-button {
    width: 100px;
    height: 100px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(255,255,255,0.3);
}

.play-button i {
    font-size: 2rem;
    color: var(--primary-green);
    margin-left: 5px;
}

.video-features {
    position: relative;
    z-index: 2;
}

.video-feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    height: 100%;
}

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

.video-feature-card h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.video-feature-card p {
    color: var(--text-light);
}

/* Products Section */
.products-section {
    background: var(--white);
    padding: 80px 0;
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

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

.product-image {
    height: 200px;
    background: var(--light-gray);
    border-radius: 10px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-herbs {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.muscle-gain-herbs {
    background: linear-gradient(45deg, #8b4513, #d2691e, #ffd700);
}

.immunity-kids-herbs {
    background: linear-gradient(45deg, #8b4513, #d2691e);
}

.blood-pressure-herbs {
    background: linear-gradient(45deg, #4a7c59, #6b8e23);
}

.blood-sugar-herbs {
    background: linear-gradient(45deg, #8fbc8f, #4a7c59);
}

.green-tea-powder-herbs {
    background: linear-gradient(45deg, #ffd700, #ffa500);
}

.green-tea-lemon-herbs {
    background: linear-gradient(45deg, #4a7c59, #6b8e23);
}

.triphala-wheatgrass-herbs {
    background: linear-gradient(45deg, #228b22, #32cd32);
}

.constipation-digestion-herbs {
    background: linear-gradient(45deg, #8b4513, #d2691e);
}

.product-card h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.product-description {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.price {
    color: var(--primary-green);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Promotional Section */
.promotional-section {
    background: var(--background-green);
    padding: 80px 0;
}

.promo-banner {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    height: 300px;
}

.promo-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promo-badge {
    background: var(--primary-green);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.promo-banner h3 {
    color: var(--primary-green);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.promo-banner h4 {
    color: var(--primary-green);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.promo-banner p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.promo-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    opacity: 0.1;
}

.winter-herbs {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #4a7c59, #6b8e23);
    border-radius: 0 15px 15px 0;
}

.summer-herbs {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ffd700, #ffa500);
    border-radius: 0 15px 15px 0;
}

/* Research Section */
.research-section {
    background: var(--white);
    padding: 80px 0;
}

.research-image {
    position: relative;
    height: 400px;
}

.stone-mortar {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #696969, #a9a9a9);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.accordion-button {
    background: var(--white);
    border: none;
    font-weight: 600;
    color: var(--text-dark);
    padding: 1.5rem;
    /* Accordion arrow color customization */
    --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='black'%3e%3cpath fill-rule='evenodd' d='M1.646 5.646a.5.5 0 0 1 .708 0L8 11.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'/%3e%3c/svg%3e");
    --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 5.646a.5.5 0 0 1 .708 0L8 11.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'/%3e%3c/svg%3e");
}
.accordion-button::after {
    background-image: var(--bs-accordion-btn-icon);
}
.accordion-button:not(.collapsed)::after {
    background-image: var(--bs-accordion-btn-active-icon);
}

.accordion-button {
    background: var(--primary-green);
    color: var(--white);
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    background: var(--light-gray);
    padding: 1.5rem;
    color: var(--text-dark);
}

/* Testimonial Section */
/*.testimonial-section {*/
/*    background: var(--background-green);*/
/*    padding: 80px 0;*/
/*}*/

/*.testimonial-card {*/
/*    background: var(--white);*/
/*    padding: 3rem;*/
/*    border-radius: 15px;*/
/*    text-align: center;*/
/*    position: relative;*/
/*    box-shadow: 0 10px 30px rgba(0,0,0,0.1);*/
/*}*/

/*.testimonial-text {*/
/*    font-size: 1.2rem;*/
/*    line-height: 1.8;*/
/*    margin-bottom: 2rem;*/
/*    color: var(--text-dark);*/
/*    font-style: italic;*/
/*}*/

/*.testimonial-author h5 {*/
/*    color: var(--text-dark);*/
/*    font-weight: 600;*/
/*    margin-bottom: 0.5rem;*/
/*}*/

/*.testimonial-author p {*/
/*    color: var(--text-light);*/
/*    margin: 0;*/
/*}*/

/* Duplicate testimonial indicators removed; using scoped rules below */

/* Duplicate Blog Section rules removed to avoid redefining the same styles twice */

/* Newsletter Section */
.newsletter-section {
    background: var(--primary-green);
    padding: 80px 0;
}

.newsletter-title {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 1rem;
}

.newsletter-form .form-control {
    border: none;
    border-radius: 25px;
    padding: 15px 20px;
    font-size: 1rem;
}

.newsletter-form .form-control:focus {
    box-shadow: none;
    border: none;
}

.newsletter-form .btn {
    border-radius: 25px;
    padding: 15px 30px;
    white-space: nowrap;
}

/* Footer */
.footer {
    background: var(--primary-green);
    color: var(--white);
    padding: 80px 0 20px;
}
.contact-info p {
    margin-bottom: 0.5rem;
    display: flex
;
    align-items: flex-start;
    color: #fff;
}
.footer-title {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #a8d5a8;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-logo i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.footer-description {
    color: rgba(255,255,255,0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--white);
    color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-green);
    color: var(--white);
    transform: translateY(-2px);
}

.contact-info i {
    margin-right: 0.5rem;
    width: 20px;
    margin-top: 0.2rem;
}

.footer-divider {
    border-color: rgba(255,255,255,0.2);
    margin: 2rem 0 1rem;
}

.footer-bottom {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

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

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1.5rem;
    }

    .hero-image {
        height: 300px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .video-title {
        font-size: 2rem;
    }

    .video-subtitle {
        font-size: 1.5rem;
    }

    .play-button {
        width: 80px;
        height: 80px;
    }

    .play-button i {
        font-size: 1.5rem;
    }

    /*.testimonial-card {*/
    /*    padding: 2rem;*/
    /*}*/

    /*.testimonial-text {*/
    /*    font-size: 1rem;*/
    /*}*/
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1.3rem;
    }

    .hero-image {
        height: 250px;
    }

    /*.testimonial-card {*/
    /*    padding: 1.5rem;*/
    /*}*/

    .testimonial-text {
        font-size: 0.9rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Hover Effects */
.btn-primary {
    position: relative;
    overflow: hidden;
}

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

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--light-green);
}

/* Hero Visual Panel (deduplicated) */
.hero-visual {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-spoon {
  position: absolute;
  width: 45%;
  height: auto;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}
.spoon-1 { left: 0; transform: rotate(-6deg); z-index: 1; }
.spoon-2 { right: 0; transform: rotate(6deg); z-index: 2; }
.spoon-3 { top: 15%; left: 27%; transform: rotate(0deg); z-index: 3; width: 50%; }

@media (max-width: 768px) {
  .hero-visual { height: 320px; }
  .hero-spoon { width: 55%; border-radius: 12px; }
  .spoon-3 { width: 60%; top: 10%; left: 20%; }
}
@media (max-width: 576px) {
  .hero-visual { height: 260px; }
  .hero-spoon { width: 70%; border-radius: 10px; }
  .spoon-1 { left: -5%; }
  .spoon-2 { right: -5%; }
  .spoon-3 { width: 75%; top: 8%; left: 15%; }
}

.hero_2 {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top:90px;
}

/* Each slide as background */
.hero_2 .carousel-item {
  height: 95vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Faded overlay for better text visibility */
.hero_2 .carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  z-index: 1;
}

/* Text container above overlay */
.hero_2 .container {
  position: relative;
  z-index: 2;
}

/* Button */
.hero_2 .btn-dark {
  background-color: #002d2b;
  border: none;
  transition: 0.3s;
}
.hero_2 .btn-dark:hover {
  background-color: #004d40;
}

/* Indicators */
.hero_2 .carousel-indicators [data-bs-target] {
  background-color: #004d40;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

/* Responsive typography */
@media (max-width: 767px) {
  .hero_2 h1 {
    font-size: 1.8rem;
  }
  .hero_2 p {
    font-size: 0.9rem;
  }
  .hero_2 .btn {
    padding: 8px 20px;
  }
}
.why-choose {
  background-color: #fff;
}

/* Feature Box Style */
.feature-box {
  background: linear-gradient(145deg, #b2ce4c, #2ca76c);
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Mobile Responsive */
@media (max-width: 767px) {
  .feature-box {
    padding: 1.5rem;
  }
  .why-choose h2 {
    font-size: 1.6rem;
  }
  .why-choose p {
    font-size: 0.95rem;
  }
  /*.why-choose img {*/
  /*  width: 80px;*/
  /*}*/
}

/* Nature & Science: screenshot-style layout */
.features-list {
  position: relative;
}
.feature-icon-img {
  width: 22px;
  height: 22px;
  margin-right: 12px;
}
.leaf-overlay {
  position: absolute;
  right: 12%;
  bottom: -18px;
  width: 160px;
  height: auto;
  pointer-events: none;
}
.ns-image-panel {
  width: 100%;
  height: 420px;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
@media (max-width: 992px) {
  .ns-image-panel { height: 360px; }
}
@media (max-width: 768px) {
  .ns-image-panel { height: 300px; margin-top: 1rem; }
  .leaf-overlay { right: 4%; width: 120px; bottom: -12px; }
}
@media (max-width: 576px) {
  .ns-image-panel { height: 240px; }
  .leaf-overlay { right: 2%; width: 100px; bottom: -10px; }
}
/* Tighten feature-item spacing on mobile */
@media (max-width: 576px) {
  .feature-item { margin-bottom: 0.75rem; }
}

/* Duplicate rules removed below to avoid redefining feature-item, ingredients-display, and herbs variants */

/* How It Works Section */
.how-it-works-section {
    background: var(--white);
    padding: 80px 0;
}

.natural-ingredients-display {
    position: relative;
    height: 400px;
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.large-leaf {
    position: absolute;
    width: 200px;
    height: 150px;
    background: linear-gradient(45deg, #4a7c59, #6b8e23);
    border-radius: 0 100% 0 100%;
    top: 50px;
    left: 50px;
    transform: rotate(-20deg);
}

.mortar-capsules {
    position: absolute;
    width: 100px;
    height: 100px;
    background: #8b4513;
    border-radius: 50%;
    top: 150px;
    left: 100px;
}

.spices-arrangement {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #d2691e;
    border-radius: 50%;
    top: 200px;
    right: 50px;
}

.steps-list {
    margin: 2rem 0;
}

.step-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.step-number {
    width: 32px;
    height: 32px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex
;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    margin-right: 1rem;
}
.step-item h4 {
    color: var(--text-dark);
    font-weight: 600;
    margin: 0;
}

.contact-help {
    margin-top: 2rem;
}

.btn-circle {
    border-radius: 50px;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Video Section (duplicate removed) */

/* Products Section */
.products-section {
    background: var(--white);
    padding: 80px 0;
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

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

.product-image {
    height: 200px;
    background: var(--light-gray);
    border-radius: 10px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-herbs {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.muscle-gain-herbs {
    background: linear-gradient(45deg, #8b4513, #d2691e, #ffd700);
}

.immunity-kids-herbs {
    background: linear-gradient(45deg, #8b4513, #d2691e);
}

.blood-pressure-herbs {
    background: linear-gradient(45deg, #4a7c59, #6b8e23);
}

.blood-sugar-herbs {
    background: linear-gradient(45deg, #8fbc8f, #4a7c59);
}

.green-tea-powder-herbs {
    background: linear-gradient(45deg, #ffd700, #ffa500);
}

.green-tea-lemon-herbs {
    background: linear-gradient(45deg, #4a7c59, #6b8e23);
}

.triphala-wheatgrass-herbs {
    background: linear-gradient(45deg, #228b22, #32cd32);
}

.constipation-digestion-herbs {
    background: linear-gradient(45deg, #8b4513, #d2691e);
}

.product-card h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.product-description {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.price {
    color: var(--primary-green);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Promotional Section */
.promotional-section {
    background: var(--background-green);
    padding: 80px 0;
}

.promo-banner {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    height: 300px;
}

.promo-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promo-badge {
    background: var(--primary-green);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.promo-banner h3 {
    color: var(--primary-green);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.promo-banner h4 {
    color: var(--primary-green);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.promo-banner p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.promo-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    opacity: 0.1;
}

.winter-herbs {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #4a7c59, #6b8e23);
    border-radius: 0 15px 15px 0;
}

.summer-herbs {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ffd700, #ffa500);
    border-radius: 0 15px 15px 0;
}

/* Research Section */
.research-section {
    background: var(--white);
    padding: 80px 0;
}

.research-image {
    position: relative;
    height: 400px;
}

.stone-mortar {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #696969, #a9a9a9);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.accordion-button {
    background: var(--white);
    border: none;
    font-weight: 600;
    color: var(--text-dark);
    padding: 1.5rem;
}

.accordion-button {
    background: var(--primary-green);
    color: var(--white);
}
.accordion-button:not(.collapsed) {
    background: var(--primary-green);
    color: var(--white);
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    background: var(--light-gray);
    padding: 1.5rem;
    color: var(--text-dark);
}

/* Testimonial Section */
/*.testimonial-section {*/
/*    background: var(--background-green);*/
/*    padding: 80px 0;*/
/*}*/

/*.testimonial-card {*/
/*    background: var(--white);*/
/*    padding: 3rem;*/
/*    border-radius: 15px;*/
/*    text-align: center;*/
/*    position: relative;*/
/*    box-shadow: 0 10px 30px rgba(0,0,0,0.1);*/
/*}*/

/*.testimonial-text {*/
/*    font-size: 1.2rem;*/
/*    line-height: 1.8;*/
/*    margin-bottom: 2rem;*/
/*    color: var(--text-dark);*/
/*    font-style: italic;*/
/*}*/

/*.testimonial-author h5 {*/
/*    color: var(--text-dark);*/
/*    font-weight: 600;*/
/*    margin-bottom: 0.5rem;*/
/*}*/

/*.testimonial-author p {*/
/*    color: var(--text-light);*/
/*    margin: 0;*/
/*}*/

/*.testimonial-section .carousel-indicators {*/
/*    position: static;*/
/*    margin-top: 2rem;*/
/*}*/
/*.testimonial-section .carousel-indicators button {*/
/*    width: 12px;*/
/*    height: 12px;*/
/*    border-radius: 50%;*/
/*    background: var(--text-light);*/
/*    border: none;*/
/*    margin: 0 5px;*/
/*    transition: all 0.3s ease;*/
/*}*/

/*.testimonial-section .carousel-indicators button.active {*/
/*    background: var(--primary-green);*/
/*    transform: none;*/
/*}*/

/* Blog Section */
.blog-section {
    background: var(--white);
    padding: 80px 0;
}

.blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

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

.blog-image {
    height: 200px;
    background: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.blog-herbs {
    width: 100%;
    height: 100%;
}

.spices-blog {
    background: linear-gradient(45deg, #d2691e, #ffd700, #8b4513);
}

.bottles-blog {
    background: linear-gradient(45deg, #8b4513, #d2691e);
}

.green-blog {
    background: linear-gradient(45deg, #4a7c59, #6b8e23);
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h4 {
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.blog-date {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.blog-excerpt {
    color: var(--text-dark);
    line-height: 1.6;
}

/* Newsletter Section */
.newsletter-section {
    background: var(--primary-green);
    padding: 80px 0;
}

.newsletter-title {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 1rem;
}

.newsletter-form .form-control {
    border: none;
    border-radius: 25px;
    padding: 15px 20px;
    font-size: 1rem;
}

.newsletter-form .form-control:focus {
    box-shadow: none;
    border: none;
}

.newsletter-form .btn {
    border-radius: 25px;
    padding: 15px 30px;
    white-space: nowrap;
}

/* Footer */
.footer {
    background: #313231;
    color: var(--white);
    padding: 80px 0 20px;
}
.footer-brand {
    padding: 20px;
    border: 1px solid #7a7878;
    border-radius: 5px;
    height: 100%;
}

.contact-info p {
    margin-bottom: 0.5rem;
    display: flex
;
    align-items: flex-start;
    color: #fff;
}
.footer-title {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #a8d5a8;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    background-color: #fff;
    justify-content: center;
    padding:10px;
}

.footer-logo i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.footer-description {
    color: rgba(255,255,255,0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--white);
    color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-green);
    color: var(--white);
    transform: translateY(-2px);
}

.contact-info i {
    margin-right: 0.5rem;
    width: 20px;
    margin-top: 0.2rem;
}

.footer-divider {
    border-color: rgba(255,255,255,0.2);
    margin: 2rem 0 1rem;
}

.footer-bottom {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

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

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1.5rem;
    }

    .hero-image {
        height: 300px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .video-title {
        font-size: 2rem;
    }

    .video-subtitle {
        font-size: 1.5rem;
    }

    .play-button {
        width: 80px;
        height: 80px;
    }

    .play-button i {
        font-size: 1.5rem;
    }

    .testimonial-card {
        padding: 2rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.6rem;
    }
    button.btn2 {
    margin: 0 0;
    border: 0;
    background: #fff;
    padding: 16px 20px;
    border-radius: 26px;
}
    .newsletter-title {
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 2rem;
}
    .section-subtitle {
        font-size: 1.3rem;
    }

    .hero-image {
        height: 250px;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Hover Effects */
.btn-primary {
    position: relative;
    overflow: hidden;
}

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

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--light-green);
}

/* Floating Action Buttons (Bottom Right) */
.fab-container {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}
.fab {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  background-size: 28px 28px;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.fab:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(0,0,0,0.2); }
.fab-whatsapp { background-color: #25D366; background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M20.52 3.48A11.86 11.86 0 0012 0C5.37 0 0 5.37 0 12c0 2.11.55 4.12 1.6 5.9L0 24l6.25-1.64A11.93 11.93 0 0012 24c6.63 0 12-5.37 12-12 0-3.2-1.25-6.22-3.48-8.52zM12 22c-1.78 0-3.5-.48-5.02-1.4l-.36-.21-3.71.97.99-3.62-.23-.37A9.94 9.94 0 012 12C2 6.48 6.48 2 12 2s10 4.48 10 10-4.48 10-10 10zm5.59-6.4c-.3-.16-1.78-.88-2.06-.98-.28-.1-.48-.16-.69.16-.2.32-.79.98-.97 1.18-.18.2-.36.22-.66.08-.3-.14-1.26-.46-2.41-1.47-.89-.79-1.49-1.76-1.67-2.06-.18-.3-.02-.46.14-.62.14-.14.32-.36.48-.54.16-.18.22-.3.34-.5.12-.2.06-.38-.03-.54-.08-.16-.69-1.66-.95-2.27-.25-.6-.5-.52-.69-.52h-.59c-.2 0-.52.08-.79.38s-1.04 1.02-1.04 2.5 1.06 2.9 1.22 3.1c.16.2 2.08 3.18 5.04 4.46.7.3 1.26.48 1.7.62.72.23 1.38.2 1.9.12.58-.09 1.78-.72 2.03-1.42.25-.7.25-1.3.17-1.42-.08-.12-.28-.2-.58-.36z"/></svg>'); }
.fab-call { background-color: #2e7d32; background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M6.62 10.79a15.053 15.053 0 006.59 6.59l2.2-2.2a1 1 0 011.05-.24 11.36 11.36 0 003.56.57 1 1 0 011 1v3.61a1 1 0 01-1 1A18 18 0 013 6a1 1 0 011-1h3.61a1 1 0 011 1 11.36 11.36 0 00.57 3.56 1 1 0 01-.24 1.05l-2.32 2.18z"/></svg>'); }

@media (max-width: 576px) {
  .fab { width: 48px; height: 48px; background-size: 24px 24px; }
}

/* Scroll-to-top button (Left side, full styles) */
.scroll-top-left {
  position: fixed;
  left: 18px;
  bottom: 18px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--primary-green);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.scroll-top-left:hover { filter: brightness(1.1); }
@media (max-width: 576px) { .scroll-top-left { width: 42px; height: 42px; } }
.header-info {
    background: #e9e9e9;
    padding: 9px 20PX;
    border-left: 4px solid #4f8460;
}

.inner_01 {
  background: url('https://sktperfectdemo.com/themepack/naturopathy/wp-content/themes/skt-naturopathy/images/default-header-img.jpg') no-repeat center center/cover;
  min-height: 250px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Optional: overlay for readability */
.inner_01::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.3); /* हल्का white overlay */
}

.inner_01 h1 {
  position: relative;
  z-index: 1;
  font-size: 2rem;
  font-weight: 700;
  color: #000;
}

@media (max-width: 767px) {
  .inner_01 {
    min-height: 180px;
  }
  .inner_01 h1 {
    font-size: 1.5rem;
  }
}

/* Preloader Styles */
#preloader {
  position: fixed;
  inset: 0;
  background: linear-gradient(145deg, #b2ce4cec, #2ca76cec);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}
#preloader .loader-text {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  animation: fadeScale 1s ease-in-out forwards;
}
@keyframes fadeScale {
  0% { opacity: 0; transform: scale(0.9); }
  20% { opacity: 1; transform: scale(1.05); }
  80% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(0.98); }
}
.active>.page-link, .page-link.active {
    z-index: 3;
    color: var(--bs-pagination-active-color);
    background-color: #145b2b !important;
    border-color: #005c2f !important;
}
.page-link {
    position: relative;
    display: block;
    padding: var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);
    font-size: var(--bs-pagination-font-size);
    color: #000000;
    text-decoration: none;
    background-color: var(--bs-pagination-bg);
    border: var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);
    transition: color .15s
ease-in-out, background-color .15s
ease-in-out, border-color .15s
ease-in-out, box-shadow .15s
ease-in-out;
}
.page-link:focus {
    z-index: 3;
    color: var(--bs-pagination-focus-color);
    background-color: var(--bs-pagination-focus-bg);
    outline: 0;
    box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.25) !important;
}
article.blog-detail {
    position: sticky;
    top: 78px;
}
.blog_card {
    background: #e9e9e9;
    border: 0;
}
.in-di{
    position: relative !important;
}
.card.policy_card {
    background: #e9e9e9;
    border: 0;
    border-left: 3px solid #007f39;
}
.active_border {
    border: 0;
    background: #e9e9e9;
}
.blog_card  .list-group-flush>.list-group-item {
    border-width: 0 0 var(--bs-list-group-border-width);
    background: #f1f1f1;
}
.co_card{
    background-color: #f1f1f1;
}
.form-control:focus {
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    border-color: #e1e1e1;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgb(13 110 253 / 0%);
}
/* Hide scroll while preloader visible */
html.preloader-active, body.preloader-active { overflow: hidden; }
