
/* Body / General text */
body, p, li, a, span, .navbar-nav li a, .footer, .footer p, .footer li a, .hero-btn, .about-btn, .btn {
          font-family: 'Open Sans', sans-serif;

    font-weight: 400;
}

/* Headings */
h2 {
  
  font-family: 'Lobster', cursive;
  font-weight: 600; /* bold headings */
}

/* Footer */

html, body{
height:100%;
margin:0;
}

body{
display:flex;
flex-direction:column;
min-height:100vh;
}

main{
flex:1;
}


/* --- 1. HEADER & LOGO LAYOUT --- */
header {
    position: relative;
    z-index: 1050; /* Keeps header above hero animations */
}

/* Force Logo Left and Toggler Right */
.navbar > .container {
    display: flex !important;
    justify-content: space-between !important;
    flex-direction: row !important;
    align-items: center !important;
    position: relative;
}

.navbar-brand {
    margin-right: auto !important;
    margin-left: 0 !important;
    order: 1;
    display: inline-block;
}

.navbar-toggler {
    margin-left: auto !important;
    margin-right: 0 !important;
    order: 2;
}

.custom-logo {
    max-height: 90px;
    width: auto;
    display: block;
    margin-left: 0 !important;
}

/* --- 2. MENU LINKS (Shared) --- */
#primary-menu-wrap ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#primary-menu-wrap ul li a {
    font-weight: 700;
    color: #fff;
    text-decoration: none !important;
    display: block;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

#primary-menu-wrap ul li a:hover {
    color: #F8AD10;
}

/* --- 3. DESKTOP STYLES (992px and up) --- */
@media (min-width: 992px) {
    .navbar-nav {
        display: flex;
        flex-direction: row;
        align-items: center;
    }
    
    .navbar-nav li {
        margin-left: 10px;
    }

    /* Desktop Dropdowns */
    .navbar-nav .sub-menu {
        position: absolute;
        top: 100%;
        right: 0;
        background: #fff;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        display: none;
        min-width: 180px;
        z-index: 1000;
    }

    .navbar-nav li:hover > .sub-menu {
        display: block;
    }
}

/* --- 4. MOBILE STYLES (Below 992px) --- */
@media (max-width: 991.98px) {
    /* Mobile Menu Overlay - Fix: Does not push Hero down */
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 9999;
        background-color: #fff;
        padding: 1rem;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .navbar-nav li {
        text-align: right;
        border-bottom: 1px solid #f0f0f0;
    }

    .navbar-nav li:last-child {
        border-bottom: none;
    }

    .sub-menu {
        background-color: #f9f9f9;
        padding-right: 15px;
    }

    /* Fix for smaller mobile logos */
    .custom-logo {
        max-height: 70px; 
    }
}
/* --- CENTER MENU + SOCIAL ICONS --- */

/* social icons right */
.navbar .social-icons{
display:flex;
gap:18px;
}

.navbar .social-icons a{
color:#fff;
font-size:18px;
transition:0.3s;
}


@media (max-width: 600px) {
#primary-menu-wrap ul li a {
    color: #333;

}

.navbar .social-icons a{
    color: #2E5A12;
}

}


.navbar .social-icons a:hover{
color:#F8AD10;
}

/* mobile */
@media (max-width:991.98px){

.menu-center{
width:100%;
justify-content:flex-end;
margin-top:10px;
}

.navbar .social-icons{
justify-content:flex-end;
margin-top:10px;
}

}
/* Footer CSS */

/* Footer */

.footer{
background:#2E5A12;
padding-bottom:0;
}

.footer h5{
margin-bottom:15px;
}

.footer p{
margin-bottom:5px;
}

.footer-menu li{
margin-bottom:8px;
}

.footer-menu li a{
color: #fff;
text-decoration:none;
}

.footer-menu li a:hover{
color:#FFC107;
}

.social-icons a{
color:#fff;
text-decoration:none;
}

.social-icons a i:hover{
color:#FFC107;
}

.footer .text-center p{
margin-bottom:0;
}

/* Footer CSS */


/* Home Page */

/* HERO SLIDER */


.hero-slider .carousel-item.active img {
    transform: scale(1);            /* zoom out to normal size */
}

.hero-slider .carousel-item {
    height: 80vh;
    min-height: 400px;
    position: relative;
    transition: transform .7s ease-in-out, opacity .7s ease-in-out;

}

.hero-slider .carousel-item img {
    object-fit: cover;
    height: 100%;
    transform: scale(1.1);          /* start slightly zoomed in */
    transition: transform 10s ease; /* smooth zoom out */
}

.hero-slider .carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 700px; /* constrain heading width */
    width: 90%; /* responsive */
    text-align: center;
    color: #fff;
}

.hero-slider .carousel-caption h1,.hero-slider .carousel-caption h2 {
        
    font-family: 'Open Sans', sans-serif;
    font-size: 30px!important;
    font-weight : 900;
    line-height: 1.2; /* reduce line height to keep heading 2 lines */
}

.hero-slider .carousel-caption p {
    font-size: 1.25rem;
    margin-top: 10px;
}

/* Button in caption */
.hero-slider .carousel-caption .btn {
   border-radius: 30px;
    font-weight: 600;
    padding: 10px 25px;
    background-color: #FEAE01;
    color: #fff;
    text-decoration: none;

}

.hero-slider .carousel-caption .btn:hover {
    background-color: #2E5A12;
    color: #FEAE01;
}

/* Responsive text */
@media (max-width: 992px) {
    .hero-slider .carousel-caption h1 {
        font-size: 2rem;
    }
    .hero-slider .carousel-caption p {
        font-size: 1rem;
    }
}
@media (max-width: 576px) {
    .hero-slider .carousel-caption h1 {
        font-size: 1.5rem;
    }
    .hero-slider .carousel-caption p {
        font-size: 0.9rem;
    }
}


/* About Us */

/* About Us Section */
.about-section {
    position: relative;
    background: #F5E1C9;
    overflow: hidden;
    padding: 80px 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.about-section .about-image-wrapper {
    flex: 1;
    min-width: 300px;
}

.about-section .about-image {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    width: 100%;
    height: 400px; /* Fixed height for balance */
    object-fit: cover; /* Ensures image scales properly */
}

.about-section .about-text {
    flex: 1;
    min-width: 300px;
}

/* Heading and Paragraph */
.about-section .about-text h2 {
      
    font-weight: 700;
    color: #2E5A12;
    margin-bottom: 20px;
}

.about-section .about-text p {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #333 !important;
}

/* Button */
.about-section .about-btn {
    border-radius: 30px;
    font-weight: 600;
    padding: 10px 25px;
    background-color: #FEAE01;
    color: #fff;
    text-decoration: none;
}

.about-section .about-btn:hover {
    background-color: #2E5A12;
    color: #FEAE01;
}
/* Decorative shapes */
.about-section .shape {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.about-section .shape-circle {
    width: 150px;
    height: 150px;
    background: rgba(30, 115, 60, 0.1);
    top: -30px;
    left: -30px;
}

.about-section .shape-blob {
    width: 200px;
    height: 200px;
    background: rgba(249, 168, 37, 0.1);
    bottom: -50px;
    right: -50px;
}

/* Responsive */
@media (max-width: 992px) {
    .about-section {
        flex-direction: column;
        text-align: center;
        padding: 60px 5%;
    }

    .about-section .about-image {
        height: 300px;
        margin-bottom: 30px;
    }

    .about-section .shape-circle,
    .about-section .shape-blob {
        display: none;
    }
}

/* Our Produts */

/* Make the section full width */
.products-section {
    background-color: #fff;
    padding: 60px 20px;
    width: 100%;
}

/* Make the container inside centered but not limiting bg */
.products-grid {
    max-width: 1200px; /* keeps grid centered */
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.products-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}


.product-card {
    position: relative;
    flex: 1 1 calc(33% - 20px); /* 3 per row */
    max-width: 350px;
    border: 2px solid #ddd;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.product-image img {
    width: 100%;
    height:320px;
    display: block;
}

.product-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 10px;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
}

/* Adjust 2nd row for 2 products */


/* Responsive */
@media (max-width: 768px) {
    .product-card {
        flex: 1 1 100%;
    }
}
/* Home Page */

/* CTA Strip */
.cta-strip {
   background-color: #D4DBB1;
    color: #fff;
    padding: 40px 20px; /* inner spacing */
    position: relative;
    text-align: center;
    overflow: hidden;
    margin: 0; /* removed top/bottom margin */
}
/* Decorative line */
.cta-strip::before {
    top: 90%; /* move line closer to bottom */
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255,255,255,0.2);
    transform: none; /* remove translate */
    z-index: 1;
}

/* Text and button container */
.cta-strip .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* CTA Text */
.cta-strip .cta-text h3 {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 600;
    color: #2E5A12;
}

/* Button */
.cta-strip .cta-button .btn {
  border-radius: 30px;
    font-weight: 600;
    padding: 10px 25px;
    background-color: transparent;
    color: #2E5A12;
    text-decoration: none;
}

.cta-strip .cta-button .btn:hover {
    background-color: transparent;
    color: #fff;
    text-decoration: none;
}

.cta-strip a.btn {
    text-decoration: none;   /* remove underline */
    border: 2px solid #2E5A12; /* if you want a border */
    background-color: transparent; /* optional */
    color: #FEAE01; /* button text color */
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
}

/* Responsive */
@media(max-width:768px) {
    .cta-strip .container {
        flex-direction: column;
    }
    .cta-strip .cta-text h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
}


/* WHY CHOOSE US */
.why-choose-us {
    background-color: #f9f9f9;
}

.why-choose-us h2 {
    font-weight: 700;
    color: #2E5A12;
}

.feature-card {
    background: #fff;
    padding: 25px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.feature-card i {
    color: #2E5A12;
}

.feature-card h5 {
    margin-top: 15px;
    font-weight: 700;
    font-size: 1.2rem;
}

.feature-card p {
    font-size: 0.95rem;
    margin-top: 10px;
    color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .feature-card {
        margin: 0 auto;
    }
    .feature-card h5 {
        font-size: 1.1rem;
    }
    .feature-card p {
        font-size: 0.9rem;
    }
}

/* 3-Tier Quality Control Section */
.quality-control-section {
    background-color:#F5E1C9;
    background-size: cover;          /* makes image cover entire area */
    background-position: center;     /* centers image */
    background-repeat: no-repeat;    /* avoids repeating image */
    width: 100%;                     /* full width */
    min-height: 80vh;                /* adjust height as needed */
    position: relative;

}



.quality-control-section .section-title {
    font-weight: 900;
    font-size: 2.5rem;
    color: #2E5A12;
    margin-bottom: 50px;
}

.quality-control-section p {
    color: #2E5A12;
}



/* Cards */
.qc-card {
    height: 330px;
    background: #fff;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.4s, box-shadow 0.4s;
    position: relative;
}

.qc-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* Icon circle */
.qc-icon {
    font-size: 3rem;
    color: #fff;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    background-color: #2E5A12;
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Titles */
.qc-card h4 {
    font-weight: 700;
    color: #1b5e20;
    margin-bottom: 15px;
}

/* Description */
.qc-card p {
    font-size: 15px;
    color: #333;
    line-height: 1.5;
}

/* Stagger effect (zig-zag) */
.qc-card:nth-child(2n) {
    margin-top: 40px;
}

/* Responsive */
@media (max-width: 992px) {
    .qc-card:nth-child(2n) {
        margin-top: 0;
    }
    .qc-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .qc-card p {
        font-size: 0.9rem;
    }
    .qc-icon {
        width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 2rem;
    }
}

/* LICENSE / CERTIFICATIONS SECTION */
.license-section {
    background-color: #f9f9f9;
}

.license-section .section-title {
    font-weight: 700;
    font-size: 2.5rem;
    color: #2E5A12;
}

.license-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
}

.license-item {
    flex: 1 1 150px;
    max-width: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.license-item img {
    max-width: 100%;
    height: 149px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.license-item img:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Responsive */
@media(max-width:768px){
    .license-item {
        flex: 1 1 45%;
        margin-bottom: 20px;
    }
}

@media(max-width:480px){
    .license-item {
        flex: 1 1 80%;
    }
}

/* --- ABOUT US PAGE OPTIMIZED CSS --- */

/* 1. HERO SECTION */


/* 2. OVERVIEW SECTION */
.about-overview {
    padding: 80px 0;
    overflow: hidden;
}

.about-overview h2 {

    color: #2E5A12;
    font-weight: 700;
    margin-bottom: 25px;
}

.lead-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

/* Image Container */
.about-image-container {
    width: 100%;
    max-height: 550px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.about-image-container img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.about-image-container:hover img {
    transform: scale(1.05);
}

/* 3. CORE COMPETENCIES */
.competencies-section {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.title-underline {
    width: 60px;
    height: 4px;
    background: #FEAE01;
    border-radius: 2px;
    margin-bottom: 20px;
}

.competency-card {
    background: #f8ad10;
    border-radius: 15px;
    padding: 30px 20px;
    border: 1px solid #eee !important;
    height: 100%;

    /* existing + scroll animation */
    transition: transform 0.5s ease, box-shadow 0.5s ease, opacity 0.7s ease;
    
    opacity: 0;
    transform: translateY(40px);
}

/* When visible */
.competency-card.show {
    opacity: 1;
    transform: translateY(0);
}

/* Hover still works */
.competency-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15) !important;
    border-color: #1B5E20 !important;
}

.comp-icon-wrap {
    width: 80px;
    height: 80px;
    background: #2E5A12;
    color: #F8AD10;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.4rem;
}

.competency-card h4, 
.competency-card p {
    color: #fff;
}

/* 4. CORE VALUES */
.values-section i {
    color: #FEAE01;
    margin-bottom: 20px;
}

.values-section h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* 5. CONSOLIDATED MOBILE RESPONSIVENESS (991px and down) */
@media (max-width: 991.98px) {
    
    .about-overview h2 {
    text-align: center;
    }
    /* Target the text container in the overview */
    .about-overview .col-lg-6 {
        padding-left: 20px !important;  /* Creates breathing room on left */
        padding-right: 20px !important; /* Creates breathing room on right */
    }

    .about-text, 
    .about-content, 
    .lead-text, 
    .lead-text p {
        text-align: center !important;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%; /* Ensures it doesn't overflow */
    }

    /* Prevent the text from touching the very bottom of the image */
    .ps-lg-5 {
        padding-left: 0 !important;
        margin-top: 40px; 
    }
}
/* Smaller mobile fix (768px) */
/* --- CONTACT PAGE FULL STYLES --- */

/* Hero Banner */
/* ===============================
CONTACT PAGE
=============================== */

/* HERO SECTION */

.contact-hero{
position:relative;
width:100%;
height:50vh; /* increased height */
display:flex;
align-items:center;
justify-content:center;
text-align:center;
background-size:cover;
background-position:center;
background-repeat:no-repeat;
}

/* overlay */
.contact-hero .hero-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.55);
z-index:1;
}

/* container center fix */
.contact-hero .container{
position:relative;
z-index:2;
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
min-height:75vh;
}

/* heading */
.contact-hero h1{
font-family:'Lobster', cursive;
font-size:3.5rem;
color:#fff;
margin-bottom:10px;
text-shadow:2px 4px 12px rgba(0,0,0,0.4);
}

/* breadcrumb */
.contact-hero .breadcrumb{
background:none;
margin:0;
}

.contact-hero .breadcrumb-item,
.contact-hero .breadcrumb-item a{
color:#fff;
font-weight:500;
}

.contact-hero .breadcrumb-item.active{
color:#FEAE01;
}


/* CONTACT CONTENT SECTION */

.contact-content{
padding:80px 0;
background:#f8f9fa;
}

/* wrappers */

.contact-info-wrapper,
.contact-form-wrapper{
background:#fff;
border-radius:16px;
padding:40px;
border:1px solid rgba(0,0,0,0.05);
box-shadow:0 10px 40px rgba(0,0,0,0.04);
display:flex;
flex-direction:column;
height:100%;
}

/* headings */

.contact-info-wrapper h2,
.contact-form-wrapper h3{
font-family:'Lobster', cursive;
margin-bottom:25px;
color:#2E5A12;
}


/* CONTACT DETAILS */

.contact-details .d-flex{
align-items:flex-start;
}

.contact-details h5{
font-weight:600;
margin-bottom:5px;
}

.contact-details p{
font-size:0.95rem;
color:#555;
}


/* ICON CIRCLES */

.icon-circle{
width:45px;
height:45px;
background:rgba(27,94,32,0.1);
color:#1B5E20;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
flex-shrink:0;
font-size:1.1rem;
}


/* SOCIAL ICONS */

.contact-social-icons a{
display:inline-flex;
align-items:center;
justify-content:center;
width:38px;
height:38px;
background:#f8f9fa;
color:#1B5E20;
border-radius:50%;
margin-right:10px;
transition:all .3s ease;
text-decoration:none;
}

.contact-social-icons a:hover{
background:#1B5E20;
color:#FEAE01;
transform:translateY(-3px);
}


/* FORM FIELDS */

.wpcf7-form-control:not(.wpcf7-submit){
background-color:#fcfcfc;
border:1px solid #e2e8f0;
padding:12px 15px;
border-radius:8px;
width:100%;
margin-bottom:10px;
font-size:0.95rem;
}

/* focus */

.wpcf7-form-control:focus{
border-color:#1B5E20;
background:#fff;
outline:none;
}


/* SUBMIT BUTTON */

.wpcf7-submit{
background:#1B5E20;
color:#fff;
border:none;
padding:12px 30px;
border-radius:30px;
font-weight:600;
transition:.3s;
cursor:pointer;
}

.wpcf7-submit:hover{
background:#2E5A12;
transform:scale(1.05);
}


/* ===============================
TABLET RESPONSIVE
=============================== */

@media(max-width:992px){

.contact-hero{
min-height:55vh;
}

.contact-hero .container{
min-height:55vh;
}

.contact-hero h1{
font-size:2.6rem;
}

.contact-content{
padding:60px 0;
}

}


/* ===============================
MOBILE RESPONSIVE
=============================== */

@media(max-width:768px){

.contact-info-wrapper{
text-align:center;
margin-bottom:30px;
padding:30px 20px;
}

.contact-info-wrapper .d-flex{
flex-direction:column;
align-items:center;
}

.icon-circle{
margin-right:0;
margin-bottom:10px;
}

.contact-social-icons{
display:flex;
justify-content:center;
}

.contact-form-wrapper{
padding:30px 20px;
}

}


/* SMALL MOBILE */

@media(max-width:576px){

.contact-hero{
min-height:45vh;
}

.contact-hero .container{
min-height:45vh;
}

.contact-hero h1{
font-size:2rem;
}

}
/* Base Wrapper Styles (Shared for Left and Right) */
.contact-info-wrapper,
.contact-form-wrapper {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04) !important;
    display: flex;
    flex-direction: column;
}

.contact-info-wrapper h2,
.contact-form-wrapper h3 {
    font-family: 'Lobster', cursive;
    margin-bottom: 25px;
}

/* Icon Circles */
.icon-circle {
    width: 45px;
    height: 45px;
    background: rgba(27, 94, 32, 0.1);
    color: #1B5E20;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}

/* Social Icons */
.contact-social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: #f8f9fa;
    color: #1B5E20;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-social-icons a:hover {
    background: #1B5E20;
    color: #FEAE01;
    transform: translateY(-3px);
}

/* Form Input Styling */
.wpcf7-form-control:not(.wpcf7-submit) {
    background-color: #fcfcfc;
    border: 1px solid #e2e8f0;
    padding: 12px 15px;
    border-radius: 8px;
    width: 100%;
    margin-bottom: 10px;
}

.wpcf7-form-control:focus {
    border-color: #1B5E20;
    background-color: #fff;
    outline: none;
}

.wpcf7-submit {
    background: #1B5E20;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.wpcf7-submit:hover {
    background: #2E5A12;
    transform: scale(1.05);
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 991.98px) {
    .contact-hero { min-height: 300px; }
    .contact-hero h1 { font-size: 2.2rem; }

    /* Remove flex stretch for stacking */
    .contact-content .row { display: block; }
    
    .contact-info-wrapper {
        text-align: center;
        margin-bottom: 30px;
        padding: 30px 20px;
    }

    .contact-info-wrapper .d-flex {
        flex-direction: column;
        align-items: center;
    }

    .icon-circle {
        margin-right: 0 !important;
        margin-bottom: 10px;
    }

    .contact-social-icons {
        display: flex;
        justify-content: center;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }
}

.herbal-product{
    background-color: #fff;
}

.herbal-product .card{
    
        background-color: #F5E1C9;

}


/* Change the Arrow Icon Color to #198754 */
.custom-carousel-control .carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23198754'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.custom-carousel-control .carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23198754'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* Optional: Add a subtle circular background to make arrows easier to click */
.custom-carousel-control {
    width: 10%; /* Makes the clickable area smaller/cleaner */
    opacity: 0.8;
}

.custom-carousel-control:hover {
    opacity: 1;
}

/* Adds a circular shadow/glow effect on hover */
.custom-carousel-control .carousel-control-prev-icon,
.custom-carousel-control .carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-size: 60%;
    background-color: rgba(25, 135, 84, 0.1); /* Very light green circle */
    border-radius: 50%;
    border: 1px solid #198754;
}

.custom-carousel-control:hover .carousel-control-prev-icon,
.custom-carousel-control:hover .carousel-control-next-icon {
    background-color: rgba(25, 135, 84, 0.2);
}

/* CSS to enhance the layout */
.single-product-wrapper .carousel-item img {
    transition: transform 0.5s ease;
}
.benefits-content ul {
    columns: 2; /* Split benefits into two columns on desktop */
    list-style-type: none;
    padding-left: 0;
}
.benefits-content ul li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
}
.benefits-content ul li::before {
    content: "\f058"; /* FontAwesome check-circle */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #198754;
}
@media (max-width: 768px) {
    .benefits-content ul { columns: 1; }
    .single-product-wrapper .carousel-item img { height: 350px !important; }
}

/* Prevent buttons from breaking into two lines on mobile */
@media (max-width: 575.98px) {
    .actions .btn {
        font-size: 0.9rem !important; /* Slightly smaller text for mobile */
        padding-left: 10px !important;
        padding-right: 10px !important;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 45px;
    }
    
    .actions {
        /* This stacks them vertically but keeps the text in 1 line per button */
        grid-template-columns: 1fr; 
    }
}

/* Ensure text never wraps */
.text-nowrap {
    white-space: nowrap !important;
}
.gallery-section .row:first-child{
display:flex;
align-items:flex-end;
}

.gallery-section img{
height:auto;
display:block;
}

.gallery-section .second-row .col-md-4{
flex:0 0 30%;
max-width:30%;
}

.second-row-first{
margin-left:5%;
}

@media (max-width:768px){

.gallery-section{
display:none;
}


}


/* Navbar after scroll */
.navbar.scrolled{
background:#ffffff;
box-shadow:0 4px 15px rgba(0,0,0,0.08);
}

.navbar.scrolled #primary-menu-wrap ul li a{
    color: #333;
}

.navbar.scrolled .social-icons a{
    color: #2E5A12;
}

.navbar-toggler{
border-color: rgba(255,255,255,0.6);
}

.navbar-toggler-icon{
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar.scrolled .navbar-toggler{
border-color: rgba(0,0,0,0.4);
}

.navbar.scrolled .navbar-toggler-icon{
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280,0,0,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.about-image{
    position: relative;
}

.founder-info{
    position:absolute;
    bottom:4px;
    right:17px;
    text-align:right;
    background:rgba(0,0,0,0.6);
    padding:8px 12px;
    border-radius:4px;
}


@media (max-width:768px){

.founder-info{
    position:absolute;
    bottom:42px;
    right:17px;
 text-align:right;
    background:rgba(0,0,0,0.6);
    padding:8px 12px;
    border-radius:4px;


}
}


.founder-name{
    display:block;
    color:#fff;
    font-size:16px;
    font-weight:600;
    line-height:1.2;
}

.founder-title{
    color:#ddd;
    font-size:12px;
}