.navbar-brand img {
    height: 70px;
}
.discover-btn {
    background-color: #f3b817;
    color: #fff;
    font-weight: 500;
    font-size: 1.25rem;
    padding: 0.5rem 2rem;
    border-radius: 6px;
    transition: background 0.2s;
}
.discover-btn:hover {
    background-color: #e65c00;
    color: #fff;
}
.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
}

.about_ushero-overlay {
    background-color: rgba(0, 0, 0, 0.5); /* dark overlay for text contrast */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.about_ushero-content {
    position: relative;
    z-index: 2;
}

.btn-orange {
    background-color: #f3b817;
    border: none;
    transition: all 0.3s ease;
}

.btn-orange:hover {
    background-color: #ceb05e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(243, 184, 23, 0.4);
}

.section-title {
    color: #1a4c6d;
    font-weight: bold;
}
.section-subtitle {
    color: #1a4c6d;
    font-weight: 600;
}
.section-padding {
    padding: 60px 0;
}
.herb-image {
    border-radius: 10px;
    max-width: 100%;
}
.feature-card {
    background-color: #eef9f0;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.feature-card:hover {
    border-color: #166d2f;
    box-shadow: 5px 5px 0 #166d2f;
}

.feature-icon {
    font-size: 2rem;
    color: #ff7f00;
    margin-bottom: 15px;
}

.feature-title {
    color: #1a4c6d;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-text {
    color: #1d1d1d;
}

.quality-section {
    background-color: #a4c3d8; /* Light green background */
}
.quality-title {
    color: #1a4c6d;
    font-weight: 700;
}
.text-dark {
    color: black;
}
.text-green {
    color: #1a4c6d;
}
.bg-green {
    background-color: #1a4c6d;
}
.border_radius_50 {
    border-radius: 50%;
}
.quality-text {
    color: #333;
    line-height: 1.7;
}
.wrapper {
    width: 100%;
    padding-top: 20px;
    text-align: center;
}
.carousel {
    width: 90%;
    margin: 0px auto;
}
.slick-slide {
    margin: 10px;
}
.slick-slide img {
    width: 100%;
    border: 2px solid #fff;
}
.wrapper .slick-dots li button:before {
    font-size: 10px;
    color: white;
}
.testimonial-section {
    background-color: #1a4c6d; /* Deep green background */
    color: white;
    padding: 60px 0;
}

.testimonial-section h3 {
    color: #f3b817; /* Orange/gold color */
    font-size: 2rem;
}

.testimonial-section h4 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 400;
}

.testimonial {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px 30px;
    margin: 15px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(243, 184, 23, 0.5);
}

.testimonial blockquote {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #fff;
    font-style: italic;
    margin-bottom: 25px;
    position: relative;
    padding: 0 20px;
    flex-grow: 1;
}

.testimonial blockquote::before {
    content: '"';
    font-size: 4rem;
    color: #f3b817;
    position: absolute;
    left: -10px;
    top: -20px;
    font-family: Georgia, serif;
    opacity: 0.5;
}

.testimonial blockquote::after {
    content: '"';
    font-size: 4rem;
    color: #f3b817;
    position: absolute;
    right: -10px;
    bottom: -40px;
    font-family: Georgia, serif;
    opacity: 0.5;
}

.testimonial h5 {
    color: #f3b817;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 5px;
    margin-top: 20px;
}

.testimonial small {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    display: block;
}

.testimonial-author {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-section .carousel {
    padding: 20px 0;
}

.testimonial-section .slick-dots li button:before {
    color: #f3b817;
    font-size: 12px;
}

.testimonial-section .slick-dots li.slick-active button:before {
    color: #fff;
}

.testimonial-section .slick-prev,
.testimonial-section .slick-next {
    z-index: 1;
}

.testimonial-section .slick-prev:before,
.testimonial-section .slick-next:before {
    color: #f3b817;
    font-size: 30px;
}

@media (max-width: 768px) {
    .testimonial-section h3 {
        font-size: 1.5rem;
    }
    
    .testimonial-section h4 {
        font-size: 1.1rem;
    }
    
    .testimonial {
        padding: 30px 20px;
        min-height: 250px;
    }
    
    .testimonial blockquote {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .testimonial blockquote::before,
    .testimonial blockquote::after {
        font-size: 3rem;
    }
}

.stats-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(21, 94, 36, 0.7); /* green overlay */
    z-index: 1;
}

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

.stat {
    margin-bottom: 30px;
}

.stat-number {
    font-size: 60px;
    font-weight: bold;
}

.stat-label {
    color: #f97316; /* orange */
    font-size: 1.2rem;
    font-weight: bold;
}
.footer {
    background-color: #f8f9fa;
    padding: 40px 0 20px;
    text-align: center;
    font-size: 14px;
    color: #222;
}

.footer .logo {
    max-height: 100px;
    margin-bottom: 20px;
}

.footer-nav a {
    color: #1a4c6d;
    margin: 0 10px;
    text-decoration: none;
    font-weight: 500;
}

.footer-nav a:hover {
    text-decoration: underline;
}

.footer hr {
    border-top: 1px solid #1a4c6d;
    margin: 30px 0 20px;
}

.footer-bottom {
    font-size: 13px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.about_ushero-section {
    background-color: #1a4c6d; /* Deep green */
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.about_ushero-section h5 {
    font-weight: 600;
    margin-bottom: 15px;
}

.about_ushero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.about_ushero-section p {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.btn-orange {
    background-color: #f3b817;
    color: white;
    border: none;
}

.btn-orange:hover {
    background-color: #e65c00;
}

.btn-outline-light {
    border-color: white;
    color: white;
}

.btn-outline-light:hover {
    background-color: white;
    color: #1a4c6d;
}
.about-section {
    padding: 60px 20px;
}

.about-section h2 {
    font-weight: 700;
    color: #1a4c6d; /* Dark green */
}

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

.btn-outline-green {
    border: 1px solid #1a4c6d;
    color: #1a4c6d;
}

.btn-outline-green:hover {
    background-color: #1a4c6d;
    color: white;
}

.about-img {
    max-width: 100%;
    border-radius: 5px;
}
.features-section {
    background-color: #a4c3d8;
    padding: 60px 20px;
}

.feature-box {
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.feature-box_div:hover {
    transform: scale(0.9);
}

.feature-icon {
    font-size: 100px;
    color: #ff6a00;
    transition: color 0.3s;
}

.feature-box_div:hover .feature-icon {
    color: #d94d00;
}

.feature-title {
    margin-top: 20px;
    font-weight: 700;
    color: #1a4c6d;
    font-size: 1.25rem;
}
.contact-section {
    background-color: #f9f9f9;
    padding: 60px 20px;
}

.contact-header {
    background-color: #a4c3d8;
    padding: 40px 0 20px;
    text-align: center;
}

.contact-header h2 {
    font-size: 48px;
    font-weight: bold;
    color: #1a4c6d;
}

.form-control {
    border-radius: 4px;
    box-shadow: none;
}

.send-btn {
    background-color: #f3b817;
    color: #fff;
    font-weight: 500;
    padding: 12px;
    border: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.send-btn:hover {
    background-color: #e65500;
}

.contact-info i {
    font-size: 24px;
    color: #fff;
}

.icon-circle-div {
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #1a4c6d;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.info-text h5 {
    font-weight: bold;
    color: #1a4c6d;
    margin-bottom: 4px;
    text-align: justify;
}

.social-icons a {
    color: #1a4c6d;
    border: 1px solid #1a4c6d;
    margin-right: 10px;
    border-radius: 50%;
    transition: background 0.3s, color 0.3s;
    display: inline-block;
    height: 40px;
    width: 40px;
    vertical-align: middle;
    line-height: 42px;
}

.social-icons i {
    color: #1a4c6d;
}
.shophero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(184, 205, 219,0.92); /* Light green overlay with opacity */
    z-index: 1;
}
.shophero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}
.shophero-section h1 {
    font-size: 3rem;
    font-weight: bold;
    color: #1a4c6d;
}

.shophero-section p {
    font-size: 1.2rem;
    font-weight: 500;
    color: #222;
    max-width: 600px;
    margin: 20px auto 0;
}
.auto_slider_container_div {
    margin: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.auto_slider_container {
    width: 100%;
    display: flex;
    margin: auto;
    overflow: hidden;
}
.auto_slider {
    padding: 0px;
    margin: 0px;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: rotation 30s linear infinite;
}
.auto_slider li {
    font: 16px/1.2 "Roboto";
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    width: 100%;
    box-sixing: border-box;
    border-radius: 25px;
}
.auto_slider img {
    min-width: 350px;
    min-height: 350px;
    width: 100%;
    border-radius: 25px;
}
.header_green h2 {
    font-weight: bold;
    color: #1a4c6d;
}
@keyframes rotation {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Optional white overlay to help text contrast */
.benefits-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 0;
}

.benefit-item {
    position: relative;
    z-index: 1;
    padding: 10px 15px;
}

.icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.1));
}
.carousel-control-next-icon_shop,
.carousel-control-prev-icon_shop {
    background-size: 50% 50% !important;
}
.carousel-indicators_shop {
    margin-bottom: -4% !important;
}
.carousel-indicators_shop [data-bs-target] {
    background-color: #1a4c6d;
}
.hero-overlay {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgb(78 78 78 / 53%);
    z-index: 1;
    animation: fadeIn 1s ease-in;
}
.hero-content.container {
    z-index: 1;
    animation: fadeInUp 1.2s ease-out;
}

/* Animation Keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

/* Scroll Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transition: all 0.8s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
}

.fade-in-up {
    transform: translateY(50px);
}

.fade-in-up.animated {
    transform: translateY(0);
}

.fade-in-down {
    transform: translateY(-50px);
}

.fade-in-down.animated {
    transform: translateY(0);
}

.slide-in-left {
    transform: translateX(-50px);
}

.slide-in-left.animated {
    transform: translateX(0);
}

.slide-in-right {
    transform: translateX(50px);
}

.slide-in-right.animated {
    transform: translateX(0);
}

.scale-in {
    transform: scale(0.8);
}

.scale-in.animated {
    transform: scale(1);
}

/* Staggered Animation Delays */
.animate-delay-1 {
    transition-delay: 0.1s;
}

.animate-delay-2 {
    transition-delay: 0.2s;
}

.animate-delay-3 {
    transition-delay: 0.3s;
}

.animate-delay-4 {
    transition-delay: 0.4s;
}

.animate-delay-5 {
    transition-delay: 0.5s;
}

.animate-delay-6 {
    transition-delay: 0.6s;
}

/* Floating Animation for Icons */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.floating {
    animation: float 3s ease-in-out infinite;
}

/* Pulse Animation */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}
.all-title {
    font-weight: 700;
    color: #1a4c6d; /* Dark green */
}
/* .desc-div table {
    spacing: 0.5px;
    color: var(--bg-1);
    text-align: left;
    table-layout: fixed;
    width: 100%;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(233, 233, 233);
    border-image: initial;
    background: var(--dark-2);
    border-spacing: 0px;
    margin: 0px 0px 20px;
    caption-side: bottom;
    border-collapse: collapse;
} */
.desc-div table td {
    border: 1px solid rgba(149, 157, 165, 0.2);
    padding: 8px 10px;
}
@media (max-width: 767px) {
    .shophero-section h1 {
        font-size: 2rem;
    }

    .shophero-section p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .about_ushero-section h1 {
        font-size: 2.2rem;
    }

    .about_ushero-section p {
        font-size: 1rem;
    }

    .about_ushero-section .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    .about-section {
        text-align: center;
    }

    .about-section .btn {
        width: 100%;
        margin-top: 20px;
    }
}
@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}
.expertise-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.expertise-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.expertise-card:hover {
    border-color: #1a4c6d;
    box-shadow: 0 8px 25px rgba(3, 96, 43, 0.15);
    transform: translateY(-5px);
}

.expertise-icon {
    font-size: 3.5rem;
    color: #1a4c6d;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.expertise-card:hover .expertise-icon {
    color: #f3b817;
    transform: scale(1.1);
}

.expertise-title {
    color: #1a4c6d;
    font-weight: 600;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.expertise-text {
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
}

.trust-section {
    background: linear-gradient(135deg, #a4c3d8 0%, #f0f9f1 100%);
    padding: 60px 0;
}

.trust-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #e8f5e9;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(3, 96, 43, 0.1), transparent);
    transition: left 0.5s;
}

.trust-card:hover::before {
    left: 100%;
}

.trust-card:hover {
    border-color: #1a4c6d;
    box-shadow: 0 10px 30px rgba(3, 96, 43, 0.2);
    transform: translateY(-8px);
}

.trust-icon {
    font-size: 3rem;
    color: #1a4c6d;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.trust-card:hover .trust-icon {
    color: #f3b817;
    transform: scale(1.15) rotate(5deg);
}

.trust-title {
    color: #1a4c6d;
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.trust-text {
    color: #555;
    line-height: 1.7;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

@media (max-width: 767px) {
    .quality-image {
        margin-bottom: 20px;
    }
    
    .expertise-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .expertise-icon {
        font-size: 2.5rem;
    }
    
    .trust-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .trust-icon {
        font-size: 2.5rem;
    }
}
