* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.5;
    color: #333;
    overflow-x: hidden;
    background-color: #fcfcfc;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    color: #2d5a27;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    position: relative;
    font-weight: 600;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    text-align: center;
    max-width: 600px;
    margin: 1rem auto 3rem;
    line-height: 1.6;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #4a6647;
}

@media screen and (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }

    .section-title {
        margin-bottom: 1rem;
    }

    .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
        margin-bottom: 2rem;
    }
}
@media screen and (max-width: 900px) {
    .section-title {
        font-size: 2.2rem;
    }
}
@media screen and (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
        padding: 0;
        margin-bottom: 1.5rem;
    }
}
@media screen and (max-width: 375px) {
    .section-title {
        font-size: 1.5rem;
    }
}
/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: transparent !important;
}

/* Logo Styles */
.logo {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo img {
    height: 90px;
    width: 90px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.logo:hover {
    transform: scale(1.1);
}

/* Enhanced Navigation Menu */
.nav-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 265px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    padding: 2rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    box-shadow: -2px 0 20px rgba(0,0,0,0.1);
    overflow-y: auto;
}

.nav-menu.active {
    right: 0;
}

.nav-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-menu ul li {
    margin: 0;
    padding: 0;
}

.nav-menu ul li a {
    color: #2d5a27;
    text-decoration: none;
    font-size: 16px;
    padding: 15px 10px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.nav-menu ul li a i {
    margin-right: 12px;
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.nav-menu ul li a:hover {
    background: #f8f9fa;
    color: #1a472a;
    border-left: 4px solid #2d5a27;
    padding-left: 35px;
}

/* Overlay */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    backdrop-filter: blur(3px);
    transition: all 0.3s ease;
}

.overlay.active {
    display: block;
}


/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    text-align: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Ensures background stays behind content */
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    animation: zoomBackground 20s infinite alternate ease-in-out;
}

.hero-content {
    max-width: 1200px;
    padding: 2rem;
    color: white;
}

.hero-text {
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

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

    .hero-content {
        padding: 1rem;
    }
    
    .hero-text {
        margin-bottom: 1rem;
    }
}

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

    .hero-content {
        padding: 1rem;
    }
}

/* Farm Section Styles */
.farm-section {
    background: #f4f8f4;
    text-align: center;
}

.farm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

/* Farm grid part-1 */
.farm-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-block {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: left;
}

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

.feature-block h3 {
    color: #2d5a27;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.feature-block p {
    color: #666;
    line-height: 1.6;
}

/* Farm grid part-2 */
.farm-image {
    height: 40%;
    width: 90%;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.farm-content {
    text-align: left;
}

.fade-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.farm-description {
    font-size: 1.1rem;
    color: #555;
    text-align: justify;
}
/* Farm Stats - Modified */
.farm-stats {
    display: grid;
    /* Adjust minmax value to better fit cards */
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem; /* Reduced gap for better spacing */
    margin-top: 2rem;
    justify-content: center;
    align-items: stretch; /* Changed to stretch to ensure uniform height */
}

.farm-stat-card {
    background: linear-gradient(135deg, #f4f8f4, #d4eacd);
    padding: 1rem; /* Slightly reduced padding */
    border-radius: 15px;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    height: 100%; /* Ensure all cards have same height */
}

/* Adjust font sizes for better fit */
.stat-icon {
    font-size: 1.5rem; /* Slightly reduced */
    color: #2d5a27;
}

.stat-number {
    font-size: 1.5rem; /* Slightly reduced */
    color: #1e4620;
}

.stat-label {
    color: #555;
    font-size: 1rem; /* Slightly reduced */
    /* Add word-wrap to prevent text overflow */
    word-wrap: break-word;
}


.farm-stats .farm-stat-card,
.farm-features .feature-block {
    transition: transform 0.3s ease-in-out;
    text-align: center;
}

.farm-stat-card:hover, .feature-block:hover {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .farm-section {
        padding: 2rem;
    }
    .farm-image {
        height: auto;
        width: 100%;
    }
    .farm-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .farm-stats {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 0.75rem;
    }
    
    .farm-stat-card {
        padding: 1rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .farm-description {
        font-size: 1rem;
    }
    
    .feature-block {
        padding: 1.5rem;
    }
    
    .feature-block h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .farm-section {
        padding: 2rem 0;
    }

    .stat-number {
        font-size: 1.5rem;
    }
    
    .feature-block {
        padding: 1rem;
    }
}

/* types of Avocados section */
.avocado-section {
    text-align: center;
    background-color: #f4f8f4;
}

.avocado-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.avocado-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.avocado-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.avocado-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.avocado-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.avocado-image img.active {
    display: block;
}

.avocado-content {
    padding: 1.5rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.avocado-title {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.avocado-description {
    font-size: 1rem;
    color: #7f8c8d;
    margin-bottom: 1rem;
}

.avocado-features {
    list-style: none;
    padding: 0;
    margin-top: auto;
    margin-bottom: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two columns */
    gap: 0.5rem; /* Space between items */
}

.avocado-features li {
    font-size: 0.9rem;
    color: #34495e;
    margin-bottom: 0.5rem;
    padding: 0.5rem;
    background: rgba(239, 245, 231, 0.8); /* Light background for each item */
    border-radius: 5px; /* Rounded corners */
    text-align: center; /* Center text */
}

@media screen and (max-width: 1024px) {   
    .avocado-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }

    .avocado-card {
        max-width: none;
    }

    .avocado-image {
        height: 200px;
    }

    .avocado-title {
        font-size: 1.5rem;
    }

    .avocado-description {
        font-size: 0.95rem;
    }

    .avocado-features {
        gap: 0.4rem;
    }

    .avocado-features li {
        font-size: 0.85rem;
        padding: 0.4rem;
    }
}

@media screen and (max-width: 786px) {
    .avocado-section {
        padding: 2rem 0;
    }

    .avocado-grid {
        gap: 1rem;
    }

    .avocado-image {
        height: 180px;
    }

    .avocado-content {
        padding: 1.2rem;
    }

    .avocado-title {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }

    .avocado-description {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }

    .avocado-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.3rem;
    }

    .avocado-features li {
        font-size: 0.8rem;
        padding: 0.3rem;
    }

    /* Improve touch targets for mobile */
    .avocado-card {
        margin-bottom: 0.5rem;
    }

    .avocado-card:hover {
        transform: translateY(-3px);
    }
}

@media screen and (max-width: 530px) {
    .avocado-grid {
        grid-template-columns: 1fr;
        padding: 2rem;
    }
}

@media screen and (max-width: 450px){
    .avocado-grid {
        padding: 1rem;
    }
}

@media screen and (max-width: 375px) {
    .avocado-grid {
        padding: 0;
    }
    .avocado-features {
        gap: 0.25rem;
    }

    .avocado-features li {
        padding: 0.4rem;
        font-size: 0.85rem;
    }

    .avocado-image {
        height: 160px;
    }

    .avocado-title {
        font-size: 1.3rem;
    }
}

/*oils section*/
.our-oils{
    background: #f4f8f4;
    padding: 2rem 0;
    text-align: justify;
}

.our-oils .container{
    padding: 0;
}

.product-showcase {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 0 3rem;
    max-width: 1200px;
    margin-top: 2rem;
}

.product-image {
    flex: 0 0 40%;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}

.product-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.product-image img:hover {
    transform: scale(1.05);
}

.product-description {
    flex: 0 0 55%;
    padding-right: 1rem;
}

.product-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem;
}

.feature-card {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform: translateY(10px);
    text-align: center;
}
.feature-card:hover{
    transform: translateY(-1px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 2.5rem;
    color: #2d5a27;
}

.feature-title {
    font-size: 1.25rem;
    color: #2d5a27;
}

.feature-text {
    color: #333333;
}

@media (max-width: 768px) {
    .our-oils{
        padding: 2rem;
    }
    .product-showcase {
        flex-direction: column;
        padding: 1rem;
        gap: 2rem;
    }
    .product-image {
        flex: 0 0 100%;
    }
    .product-description {
        flex: 0 0 100%;
        padding-right: 0;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 480px) {
    .our-oils {
        padding: 0;
    }
    .product-description p{
        font-size: 14px;
    }

    .features-grid {
        gap: 1rem;
        padding: 1rem;
    }
}
/*Refined oil */
.refined-oil{
    background-color: #f4f8f4;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.step-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.98);
}

.step-number {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: linear-gradient(145deg, #5CBF60, #4CAF50);
    color: white;
    text-align: center;
    line-height: 35px;
    border-radius: 50%;
    margin-bottom: 1rem;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.step-card h3 {
    color: #2d5a27;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.step-card p {
    color: #4a4a4a;
}

/* Responsive Breakpoints */

@media screen and (max-width: 768px) {
    .process-steps {
        padding: 1rem;
        margin-top: 2rem;
    }
}

@media screen and (max-width: 480px) {
    .process-steps {
        padding: 0.5rem;
        margin-top: 1rem;
    }
    .step-card {
        margin-bottom: 1rem;
    }
    .refined-oil{
        padding-top: 1rem;
    }
}

/* Ensure text remains readable on smaller screens */
@media screen and (max-width: 375px) {
    .step-card h3 {
        font-size: 1.1rem;
    }

    .step-card p {
        font-size: 0.9rem;
    }
}    

/* Certification section */
.certification {
    width: 100%;
    padding: 2rem 3rem 3rem;
    background-color: #f4f8f4;
}

.certification-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items:center;
    padding:1rem;
}

.certification-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}        
.commitment-image0,
.commitment-image1,
.commitment-image2 {
    height:80px
}
.commitment-image0 img{
    width: 80px;
}
.commitment-image1 img{
    width: 60px;
}
.commitment-image2 img{
    width: 100px;
}

.certification-card:hover img {
    transform: scale(1.1);
}

.certification-title {
    color: #2d5a27;
    font-size: 1.4rem;
    padding: 1rem 1.5rem 0.5rem;
    text-align: center;
}

.certification-text {
    color: #4a4a4a;
    font-size: 1rem;
    padding: 1rem;
    text-align: justify;
}

/* Responsive Breakpoints */


/* Small Screens: Single column */
@media screen and (max-width: 786px) {
    .certification {
        padding: 2rem 0.5rem;
    }

    .certification-title {
        font-size: 1.2rem;
    }

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

/* Sustainability Section */
.sustainability{
    background-color: #f4f8f4;
}
.commitment-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 4rem 0 2rem;
}

.commitment-content {
    font-size: 1.1rem;
    color: #555;
    text-align: justify;
}

.commitment-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.commitment-image img {
    width: 100%;
    height: auto;
    display: block;
}

.initiatives-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1rem 0;
}

.initiative-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 600px; 
    margin: 0 auto; 
}

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

.initiative-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 1.5rem;
    max-width: 100%;
    width: 100%;
}

.initiative-image {
    width: 100%;
    height: auto; 
    overflow: hidden;
}

.initiative-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.initiative-title {
    font-size: 1.25rem;
    color: #1a472a;
    margin-bottom: 1rem;
    width: 100%;
}

.initiative-content p {
    width: 100%;
    line-height: 1.6;
    color: #333;
}

/* Tablet and Desktop Styles */
@media screen and (min-width: 768px) {

    .initiative-card {
        max-width: none; 
    }

    .initiative-image {
        height: 300px;
    }
}

@media screen and (max-width: 768px) {
    .sustainability{
        padding: 0 2rem;
    }
    .initiatives-grid {
        grid-template-columns: 1fr;
    }
    .commitment-section {
        grid-template-columns: 1fr;
    }
    .commitment-image {
        width:90%;
        margin: 0 auto;
    }
    .commitment-content{
        width: 90%;
        margin: 0 auto;
    }
}
/* Ensure full responsiveness */
@media screen and (max-width: 480px) {
    .sustainability{
        padding: 0.5rem;
    }
    .initiative-card {
        border-radius: 5px;
    }

    .initiative-image {
        height: 200px;
    }

    .initiative-content {
        padding: 1rem;
    }

    .initiative-title {
        font-size: 1.1rem;
    }

    .initiative-content p {
        font-size: 0.9rem;
    }
    .commitment-section {
        gap: 1rem;
        margin: 0;
    }
    .commitment-image{
        width: 100%;
        margin: 0;
    }
    .commitment-content{
        width: 100%;
        margin: 0;
        font-size: 14px;
    }
}

/* Stats for sustainability */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
    margin-top: 1.5rem;
}

.stats-card {
    cursor: pointer;
    padding: 1.5rem;
    text-align: center;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.stats-number {
    font-size:1.5rem;
    color: #2f855a;
    margin-bottom: 0.5rem;
}

/* Overlay styles */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Modal styles */
.modal {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    max-width: 800px;
    position: relative;
    transform: scale(0.7);
    opacity: 0;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

/* Show modal animations */
.overlay.active {
    display: flex;
}

.modal.active {
    transform: scale(1);
    opacity: 1;
}

/* Close button styles */
.close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    border: none;
    background: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
}
.close-btn:hover {
    color: #333;
}

/* Content styles */
.modal-title {
    font-size: 1.5rem;
    color: #2f855a;
    margin-bottom: 1.5rem;
    padding-right: 2rem;
}

.modal-content {
    color: #4a5568;
    line-height: 1.6;
}

.feature-list {
    margin: 1.5rem 0;
    padding-left: 1.2rem;
}

.feature-list li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.feature-list li::before {
    content: "•";
    color: #2f855a;
    position: absolute;
    left: 0;
    top: 0;
}

.highlight-box {
    background-color: #f0fdf4;
    padding: 1rem;
    border-radius: 6px;
    margin-top: 1.5rem;
    text-align: justify;
}

@media (max-width: 968px) {
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* About Section */
.about {
    background: #f4f8f4;
    padding: 2rem 0;
    text-align: justify;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 2rem 0 0;
}

.statement{
    margin: 1rem;
    padding: 1rem;
    text-align: center;
    font-family: Papyrus;
    font-size: 130%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform: translateY(5px);
}

.statement:hover{
    transform: translateY(-10px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.info{
    padding: 1.5rem 0;
    font-size: 1.1rem;
}

.image-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
}
@media (max-width: 768px) {  
    .about-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 480px){
    .info{
        padding: 0;
        font-size: 14px;
    }
}

/* Exports Section */

.Exports-section {
    padding: 1rem 0;
    background-color: #f4f8f4;
}

.exports-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 1rem;
}

.export-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: justify;
    color: #555;
    margin: 0;
}

.image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.stat-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 1rem 4rem;
}

.stat-box {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform: translateY(10px);
    text-align: center;
}
.stat-box:hover{
    transform: translateY(-1px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.stat-number {
    color: #2d5a27;
}

.stat-label {
    color: #333333;
}

@media (max-width: 768px) {
    .exports-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .stat-container{
        margin: 1rem 2rem;
    }
    .stat-box {
        padding: 1.5rem;
    }
}

@media (max-width: 550px) {
    .stat-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px){
    .export-description p {
        font-size: 14px;
        line-height: 1.5;
    }
}

/* Contact Section Styles */
.contact{
    background: #f4f8f4;
    padding-bottom: 1rem;
}
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.form-section, .info-section {
    padding: 1.5rem 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-top: 0.25rem;
}

.submit-button {
    background-color: #4CAF50;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    font-weight: 500;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #45a049;
}

.contact-card {
    height: 100%;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    min-width: 2rem;
}

.detail h4 {
    margin: 0;
    color: #333;
    font-weight: 500;
}

.detail a {
    margin: 0.25rem 0 0;
    color: #666;
    text-decoration: none;
}

.business-hours {
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

.business-hours h4 {
    margin-bottom: 1rem;
    color: #333;
}

.business-hours p {
    margin: 0.5rem 0;
    color: #666;
}

/* Notification Banner for contact */
.slide-notification {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background-color: #4CAF50;
    color: white;
    padding: 1rem 2rem;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    animation: slideDown 0.5s ease-out;
}
@media (max-width: 768px) {
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    .form-section, .info-section {
        padding: 1.5rem;
    }
}

/* Animation for smooth transitions */

@keyframes moveRight {
    0% {
        left: -30px;
        transform: rotate(0deg);
    }
    100% {
        left: calc(100% + 30px);
        transform: rotate(360deg);
    }
}

@keyframes slideIn {
    from { right: -200px; }
    to { right: 0; }
}

@keyframes slideOut {
    from { right: 0; }
    to { right: -200px; }
}

@keyframes slideDown {
    from {
        transform: translate(-50%, -100%);
        opacity: 0;
    }
    to {
        transform: translate(-50%, 0);
        opacity: 1;
    }
} 

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

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomBackground {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}