/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark Charcoal for text */
    overflow-x: hidden;
    background-color: #ffffff; /* Changed to White background */
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Loading Animation */
.loading-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3B7A57 0%, #2E8B57 100%); /* Updated gradient to new green */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-container.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    color: white;
}

.spinner-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
}

.spinner {
    width: 120px;
    height: 120px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.spinner-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: bounce 1.5s ease-in-out infinite;
    opacity: 0.8;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes bounce {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

.loading-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    animation: pulse 2s ease-in-out infinite;
}
#contactPageForm {
        background-color: #ffffff;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    input,
    textarea {
        width: 100%;
        padding: 12px;
        border-radius: 5px;
        border: 1px solid #ccc;
        font-size: 16px;
        transition: border-color 0.3s ease;
    }
    input:focus,
    textarea:focus {
        border-color: #6a5acd;
        outline: none;
        box-shadow: 0 0 5px rgba(106, 90, 205, 0.5);
    }
    textarea {
        resize: none;
    }
    .btn {padding:10px;
        color: white;
        border:none;
        background-color: #007a3f;
    }
    @media (max-width: 480px) {
        #contactPageForm {
            padding: 15px;
        }
    }
.loading-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    animation: pulse 2s ease-in-out infinite 0.5s;
}

@keyframes pulse {
    0%, 100% { opacity: 0.9; }
    50% { opacity: 1; }
}

/* Main Content */
.main-content {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.main-content.visible {
    opacity: 1;
}

/* Hero Section */



/* Remove keyframe animation for discrete sliding */
/* @keyframes slideLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-300%);
    }
} */

.hero-content {
    display: block;
    padding-top: 60px;
    margin-top: 0;
}



@keyframes fadeInOut {
    0% { opacity: 0; }
    25% { opacity: 1; }
    75% { opacity: 1; }
    100% { opacity: 0; }
}



.hero-background {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff; /* Changed to White background */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    animation: parallax 20s ease-in-out infinite;
}

@keyframes parallax {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #333333; /* Dark Charcoal text */
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out 0.2s both;
    color: #4CAF50; /* Leaf Green */
}

.gradient-text {
    background: linear-gradient(135deg, #795548 0%, #92756e 100%); /* Earthy Brown gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap; /* Prevent breaking words */
    display: inline-block; /* Prevent line breaks inside */
}

.section-header h2 .gradient-text {
    display: block;
    width: 100%;
    white-space: nowrap;
    word-break: keep-all;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    margin-bottom: 15px;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.4s both;
    color: #333333; /* Dark Charcoal */
}

.hero-description {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin-bottom: 40px;
    opacity: 0.8;
    animation: fadeInUp 1s ease-out 0.6s both;
    color: #333333; /* Dark Charcoal */
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.8s both;
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        padding: 0 20px;
    }
    .hero-buttons .btn {
        width: 100%;
        font-size: 1.1rem;
        padding: 15px 0;
    }
}

.btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: #3B7A57; /* Updated to new green */
    color: white;
}

.btn-primary:hover {
    background: #2E8B57; /* Darker shade of new green */
    box-shadow: 0 15px 30px rgba(46, 139, 87, 0.6);
    transform: translateY(-2px);
}

.btn-secondary {
    background: #795548; /* Earthy Brown */
    color: white;
    border: 2px solid #5D4037; /* Darker Earthy Brown */
}

.btn-secondary:hover {
    background: #5D4037; /* Darker Earthy Brown */
    color: #4CAF50; /* Mustard Yellow */
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s ease-in-out infinite;
}

.scroll-line {
    width: 24px;
    height: 40px;
    border: 2px solid #795548; /* Earthy Brown */
    border-radius: 12px;
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-dot {
    width: 4px;
    height: 12px;
    background: #4CAF50; /* Mustard Yellow */
    border-radius: 2px;
    animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(20px); opacity: 0; }
}

/* Products Section */
.products-section {
    /* padding: 100px 0; */
    background: #FAF9F6; /* Off White / Ivory */
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    animation: fadeInUp 0.8s ease-out;
}

.section-header h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: #333333; /* Dark Charcoal */
    margin-bottom: 20px;
    white-space: normal;
    word-break: break-word;
    text-align: center;
}

@media (max-width: 768px) {
    .products-section .section-header h2 {
        text-align: center !important;
    }
}

.section-header p {
    font-size: 1.2rem;
    color: #795548; /* Earthy Brown */
    max-width: 600px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.product-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(121, 85, 72, 0.15); /* Earthy Brown shadow */
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }
.product-card:nth-child(5) { animation-delay: 0.5s; }

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(121, 85, 72, 0.3); /* Earthy Brown shadow */
}

.product-image {
    height: 350px; /* Increased height for more prominence */
    overflow: hidden;
    position: relative;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.product-image:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    border-radius: 16px;
}

.product-card:hover .product-image img {
    animation: popUpFromBack 0.8s forwards cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: box-shadow 0.3s ease;
}

@keyframes popUpFromBack {
    0% {
        transform: perspective(600px) translateZ(-40px) scale(0.85);
        opacity: 0.7;
    }
    100% {
        transform: perspective(600px) translateZ(0) scale(1.1);
        opacity: 1;
    }
}

/* Remove floating animation keyframes as no longer needed */

.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(121, 85, 72, 0.1) 100%);
}

.product-content {
    padding: 3px;
}

.product-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333333; /* Dark Charcoal */
    margin-bottom: -68px;
    transition: color 0.3s ease;
    min-height: 6.5rem; /* Further increased height to align all product names */
}

.product-card:hover .product-content h3 {
    color: #795548; /* Earthy Brown */
}

.product-content p {
    color: #795548; /* Earthy Brown */
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 10px; /* Reduced horizontal and vertical gap for tighter spacing */
    margin-bottom: 25px;
}

.feature-tag {
    background: #4CAF50; /* Mustard Yellow */
    color: #5D4037; /* Darker Earthy Brown */
    padding: 6px 12px; /* Reduced padding for smaller tags */
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin: 0; /* Remove margin to avoid extra space */
    display: inline-block;
}

.btn-product {
    background: #4CAF50; /* Leaf Green */
    color: white;
    width: 100%;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: auto;
}

.btn-product:hover {
    background: #388E3C; /* Darker Leaf Green */
    box-shadow: 0 10px 20px rgba(76, 175, 80, 0.3);
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #d9e2ec 100%);
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: background 0.3s ease;
}

.about-section:hover {
    background: linear-gradient(135deg, #e1e8f0 0%, #cbd6e2 100%);
}

.about-content {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
    justify-content: space-between;
}

.about-text {
    flex: 1.5;
}

.about-visual {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-top: 20px;
}

.about-text {
    animation: fadeInLeft 0.8s ease-out;
}

.about-text h2 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    color: #5D4037; /* Leaf Green */
    margin-bottom: 40px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px rgba(121, 85, 72, 0.3);
    white-space: nowrap;
}

.about-text p {
    font-size: 1.1rem;
    color: #000000; /* Earthy Brown */
    margin-bottom: 25px;
    line-height: 1.7;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.feature-box {
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(121, 85, 72, 0.1); /* Earthy Brown shadow */
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(121, 85, 72, 0.15);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #795548 0%, #5D4037 100%); /* Earthy Brown gradient */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.feature-icon i {
    color: white;
    font-size: 1.2rem;
}

.feature-box h3 {
    color: #333333; /* Dark Charcoal */
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-box p {
    color: #795548; /* Earthy Brown */
    font-size: 0.95rem;
}

/* Mission Section */
.mission-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #efefef 0%, #f6f0d9 100%); /* Cotton Bag Color gradient */
    color: #333333; /* Dark Charcoal */
    position: relative;
    overflow: hidden;
}

.mission-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.mission-section .section-header {
    color: #333333; /* Dark Charcoal */
    margin-bottom: 60px;
}

.mission-section .section-header h2 {
    color: #333333; /* Dark Charcoal */
    white-space: nowrap;
}

.mission-section .section-header p {
    color: #795548; /* Earthy Brown */
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.mission-card {
    background: rgba(121, 85, 72, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(121, 85, 72, 0.2);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
}

.mission-card:nth-child(1) { animation-delay: 0.2s; }
.mission-card:nth-child(2) { animation-delay: 0.4s; }

.mission-card:hover {
    transform: translateY(-5px);
    background: rgba(121, 85, 72, 0.15);
}

.mission-icon {
    background: linear-gradient(135deg, #3B7A57 0%, #2E8B57 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    width: 60px;
    height: 60px;
}

.mission-icon i {
    color: #FAF9F6; /* Off White / Ivory */
    font-size: 1.5rem;
}

.mission-card h3 {
    color: #333333; /* Dark Charcoal */
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.mission-card p {
    color: #795548; /* Earthy Brown */
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* CTA Banner */
.cta-banner {
    background: #f6f0d9; /* Off White / Ivory background */
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    animation: fadeInUp 0.8s ease-out 0.6s both;
    white-space: nowrap;
}

.cta-banner h3 {
    color: #333333; /* Dark Charcoal */
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .cta-banner {
        white-space: normal;
        padding: 20px;
    }
    .cta-banner h3 {
        font-size: 1.5rem;
        line-height: 1.3;
        white-space: normal;
        word-break: keep-all;
        overflow-wrap: normal;
    }
}

.cta-banner p {
    color: #795548; /* Earthy Brown */
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.btn-cta {
    background: #4CAF50; /* Leaf Green */
    color: #FAF9F6; /* Off White / Ivory */
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: #388E3C; /* Darker Leaf Green */
    color: #FAF9F6; /* Off White / Ivory */
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(76, 175, 80, 0.3);
}

/* Why Choose Section */
.why-choose-section {
    background: linear-gradient(135deg, #FAF9F6 0%, #F5F5F5 100%); /* Off White / Ivory gradient */
    padding: 100px 0;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.reason-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(121, 85, 72, 0.1);
    padding: 40px;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.reason-card:nth-child(1) { animation-delay: 0.1s; }
.reason-card:nth-child(2) { animation-delay: 0.2s; }
.reason-card:nth-child(3) { animation-delay: 0.3s; }
.reason-card:nth-child(4) { animation-delay: 0.4s; }
.reason-card:nth-child(5) { animation-delay: 0.5s; }
.reason-card:nth-child(6) { animation-delay: 0.6s; }

.reason-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(121, 85, 72, 0.15);
}

.reason-card::before {
    background: linear-gradient(135deg, #CBB994 0%, #A89F7E 100%);
    content: '';
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: opacity 0.3s ease;
}

.reason-card:hover::before {
    opacity: 0.05;
}

.reason-card::after {
    border-radius: 24px;
    border: 2px solid transparent;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: border-color 0.3s ease;
}

.reason-card:hover::after {
    border-color: #795548;
}

.reason-icon {
    color: #4CAF50;
    font-size: 4rem;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.reason-card:hover .reason-icon {
    color: #795548;
}

.reason-card h3 {
    color: #333333;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.reason-card:hover h3 {
    color: #795548;
}

.reason-card p {
    color: #795548;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.reason-card:hover p {
    color: #333333;
}

/* Contact Section */
.contact-section {
    background: #fff;
    color: #333;
    padding: 80px 0;
}

.contact-section .section-header {
    color: #333;
    margin-bottom: 40px;
    text-align: center;
}

.contact-section .section-header h2 {
    color: #4CAF50; /* Leaf Green */
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.contact-section .section-header p {
    color: #795548; /* Earthy Brown */
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.contact-form-container {
    background: #FAF9F6; /* Off White / Ivory */
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(121, 85, 72, 0.1);
    animation: fadeInLeft 0.8s ease-out;
}

.contact-form-container h3 {
    color: #4CAF50; /* Leaf Green */
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #795548; /* Earthy Brown */
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.form-group input,
.form-group textarea {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 12px;
    color: #333;
    font-size: 1rem;
    padding: 12px 16px;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #bbb;
}

.form-group input:focus,
.form-group textarea:focus {
    background: #fff;
    border-color: #4CAF50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.15);
    outline: none;
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.btn-submit {
    background: #4CAF50;
    color: #FAF9F6;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 15px 30px;
    margin-top: 10px;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-submit:hover {
    box-shadow: 0 10px 20px rgba(76, 175, 80, 0.3);
    transform: translateY(-2px);
}

/* Scroll Indicator */
.scroll-indicator {
    animation: bounce 2s ease-in-out infinite;
    bottom: 40px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
}

.scroll-line {
    border: 2px solid #795548;
    border-radius: 12px;
    display: flex;
    height: 40px;
    justify-content: center;
    padding-top: 6px;
    position: relative;
    width: 24px;
}

.scroll-dot {
    animation: scrollDot 2s ease-in-out infinite;
    background: #4CAF50;
    border-radius: 2px;
    height: 12px;
    width: 4px;
}

@keyframes scrollDot {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(20px); opacity: 0; }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-20 {
    margin-top: 20px;
}

.opacity-0 {
    opacity: 0;
}

.opacity-100 {
    opacity: 1;
}

/* Navigation Bar Styles */

/* Navigation Bar Styles */
.navbar {
    width: 100%;
    background-color: #007a3f; /* Earthy Brown */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    /* Removed box-shadow to eliminate line under navbar */
    box-shadow: none;
    border: none; /* Remove any border */
}

/* Hero Slider Pagination Dots */




.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 20px;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 900;
    color: white;
    text-decoration: none;
    user-select: none;
}

.navbar-menu {
    display: flex;
    gap: 1.5rem;
}

.nav-link {
    color: rgb(0, 0, 0);
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link:focus {
    color: #000000; /* Mustard Yellow */
    outline: none;
}

.navbar-toggle .bar {
    background-color: #000000; /* Mustard Yellow for hamburger bars */
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.navbar-toggle:focus {
    outline: none;
}

.bar {
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 2px;
}



/* Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    background: none;
    border: none;
    color: rgb(0, 0, 0);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.5rem 0;
    cursor: pointer;
    display: inline-block;
    line-height: 1.5;
    vertical-align: baseline;
    gap: 5px;
}

.dropdown-toggle:hover {
    color: #4CAF50;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    min-width: 200px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    color: #333;
    padding: 8px 20px;
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: rgba(59, 122, 87, 0.1);
    color: #3B7A57;
    padding-left: 25px;
}

/* Mobile Dropdown Styles */
@media (max-width: 768px) {
    .dropdown {
        width: 100%;
        position: relative;
    }
    
    .dropdown-toggle {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.75rem 0;
        text-align: left;
    }
    
    .dropdown-toggle i {
        transition: transform 0.3s ease;
    }
    
    .dropdown.active .dropdown-toggle i {
        transform: rotate(180deg);
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.1);
        display: none;
        margin-top: 0;
        width: 100%;
        border-radius: 0;
        padding: 0;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
        animation: slideDown 0.3s ease;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .dropdown-item {
        /* color: white; */
        padding: 0.75rem 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .dropdown-item:last-child {
        border-bottom: none;
    }
    
    .dropdown-item:hover {
        background: rgba(255, 255, 255, 0.2);
        padding-left: 1.5rem;
    }
}


/* Responsive Styles */
@media (max-width: 768px) {
    .navbar-menu {
        position: absolute;
        top: 70px;
        right: 0;
        background-color: rgba(255, 255, 255, 0.3);
        width: 100%;
        max-height: 0;
        overflow: hidden;
        flex-direction: column;
        padding: 0;
        gap: 0;
        transition: max-height 0.3s ease-in-out;
        box-shadow: none;
        border-radius: 0 0 10px 10px;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: white;
    }

    .navbar-menu.active {
        max-height: 500px; /* Adjust as needed */
        padding: 1rem;
        gap: 1rem;
        box-shadow: none;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .navbar-toggle {
        display: flex;
    }
}

/* Smaller Get Quote Button in Navbar */
.navbar-menu .btn-primary {
    padding: 9px 28px;
    font-size: 1.1rem;
    border-radius: 30px;
}


/* Contact Info and Business Hours Cards */
.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.info-card.impact-card {
    background: #FAF9F6; /* Match contact form background */
    border-radius: 24px;
    padding: 40px 50px;
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.3);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: 'Inter', sans-serif;
    color: #2e7d32;
}

.info-card.impact-card h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: #1b5e20;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
    white-space: nowrap;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.info-icon {
    font-size: 1.8rem;
    color: #388e3c;
    margin-top: 4px;
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #2e7d32;
}

.info-item p {
    font-size: 1rem;
    color: #3B7A57;
    line-height: 1.5;
}

.hours-list {
    margin-top: 30px;
    border-top: 2px solid #a5d6a7;
    padding-top: 25px;
}

.hours-list p {
    font-size: 1.1rem;
    color: #2e7d32;
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.info-card, .hours-card {
    background: white;
    border-radius: 24px;
    padding: 30px 40px;
    box-shadow: 0 10px 30px rgba(121, 85, 72, 0.1);
    transition: box-shadow 0.3s ease;
}

.info-card:hover, .hours-card:hover {
    box-shadow: 0 15px 40px rgba(121, 85, 72, 0.2);
}

.info-card h3, .hours-card h3 {
    margin-bottom: 20px;
    color: #3B7A57;
    font-weight: 700;
    font-size: 1.8rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.info-icon {
    font-size: 1.5rem;
    color: #4CAF50;
    margin-top: 3px;
}

.hours-list p {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #795548;
}

/* Our Impact Section Container with Shining Effect */
.impact-card {
    background: white;
    border-radius: 24px;
    padding: 35px 25px;
    box-shadow: 0 10px 30px rgba(121, 85, 72, 0.1);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    height: fit-content;
    border: 1px solid rgba(121, 85, 72, 0.1);
}

.impact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(121, 85, 72, 0.15);
}

.impact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.02) 0%, rgba(121, 85, 72, 0.02) 100%);
    border-radius: 24px;
    pointer-events: none;
}

/* Impact Card Elements */
.impact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #795548 0%, #5D4037 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.impact-icon i {
    color: white;
    font-size: 1.8rem;
}

.impact-card h3 {
    color: #333333;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.impact-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.impact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
}

.impact-dot {
    width: 10px;
    height: 10px;
    background: #4CAF50;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 6px;
}

.impact-item span {
    color: #795548;
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 500;
}

/* Responsive Design for About Section */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .about-text,
    .about-visual {
        flex: 1;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }

    /* Additional mobile responsiveness for about-text */
    .about-text h2 {
        font-size: clamp(2rem, 8vw, 3rem);
        white-space: normal;
        text-align: center;
    }

    .about-text p {
        font-size: 1rem;
        text-align: center;
    }

    /* Responsive styles for contact info */
    .contact-content {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .info-card.impact-card {
        padding: 30px 20px;
    }

    .info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .info-icon {
        font-size: 2rem;
        margin-top: 0;
    }

    .info-item h4 {
        font-size: 1.1rem;
    }

    .info-item p {
        font-size: 0.95rem;
    }

    /* Responsive styles for mission section */
    .mission-content {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    /* Mobile responsiveness for Our Signature Product Range heading */
    .products-section .section-header h2 {
        font-size: clamp(1.5rem, 3vw, 2rem);
        white-space: nowrap;
        word-break: keep-all;
        text-align: center;
    }
}




/* Footer Styles */
.footer-section {
    background: linear-gradient(135deg, #3B7A57 0%, #2E8B57 100%);
    color: white;
    padding: 60px 0 0;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: white;
}

.footer-brand p {
    opacity: 0.9;
    margin-bottom: 20px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.footer-links h4, 
.footer-contact h4,
.footer-newsletter h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after,
.footer-contact h4::after,
.footer-newsletter h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #4CAF50;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #4CAF50;
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: #4CAF50;
    width: 20px;
    text-align: center;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
}

.newsletter-form .btn {
    padding: 12px 20px;
    white-space: nowrap;
}

.footer-newsletter p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: #4CAF50;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
    }
    
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}