:root {
    --primary-color: #106648;
    --primary-light: #1a7d5a;
    --primary-dark: #0c4e37;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --text-dark: #2c3e50;
    --text-light: #ffffff;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

/* Navbar Styles */
.navbar {
    background-color: var(--white);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.navbar.scroll-down {
    transform: translateY(-100%);
}

.navbar.scroll-up {
    transform: translateY(0);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    /* padding: 0.5rem 5%; */
    padding: 0.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.logo {
    height: 60px;
    width: auto;
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
}

.nav-link:hover {
    color: var(--primary-color);
    background-color: rgba(16, 102, 72, 0.1);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 5px 0;
    transition: var(--transition);
    border-radius: 3px;
}

@media (max-width: 1500px) {
    .nav-container {
        padding: 0.5rem 5%;
    }
}

/* Responsive Navbar */
@media (max-width: 768px) {
    .language-switcher {
        top: -20%;
        position: relative;
    }

    .nav-link {
        top: -20%;
        position: relative;
    }

    .nav-container {
        padding: 0.5rem 1rem;
    }

    .logo {
        height: 45px;
        /* Smaller logo on mobile */
    }

    .mobile-menu-btn {
        display: block;
        z-index: 101;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: var(--transition);
        z-index: 100;
    }

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

    /* Hamburger menu animation */
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* Larger screens */
@media (min-width: 1400px) {
    .logo {
        height: 80px;
        /* Larger logo on bigger screens */
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    margin-top: 60px;
    /* Add space for fixed navbar */
}

.hero-slider {
    height: 100%;
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.hero-content {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.589), rgba(0, 0, 0, 0.253));
}

.hero-text {
    position: relative;
    text-align: center;
    color: var(--white);
    padding: 0 2rem;
    max-width: 900px;
    animation: fadeIn 0.5s ease-in-out;
}

.hero-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-transform: capitalize;
    text-align: left;
}

.hero-text p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    opacity: 0.9;
    text-align: justify;
}

.slider-navigation {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    box-shadow: 50px 0px 200px 200px rgba(16, 102, 72, 0.7);
    background: rgba(16, 102, 72, 0.67);
}

.slide-dots {
    display: flex;
    gap: 0.8rem;
    padding: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.dot.active {
    background: var(--white);
    transform: scale(1.2);
    border-color: var(--primary-color);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Hero */
@media (max-width: 1200px) {
    .hero-text h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {

    .hero-content::before {
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(16, 102, 72, 0.8));
    }

    .hero {
        /* margin-top: 45px; */
        height: 70vh;
    }

    .hero-text h1 {
        font-size: 1.2rem;
    }

    .hero-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        text-align: left;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .slider-navigation {
        box-shadow: 50px 0px 100px 100px rgba(16, 102, 72, 0.7);
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-text {
        padding: 0 1rem;
    }
}

/* Product Grid */
.products-section {
    padding: 6rem 5%;
    background-color: var(--light-gray);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem 0;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 5%;
}

.product-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(16, 102, 72, 0.2);
}

.product-image {
    height: 250px;
    width: 100%;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-info {
    padding: 2rem;
    text-align: center;
}

.product-info h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.product-info p {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: justify;
}

.product-link {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.product-link:hover {
    background-color: var(--primary-dark);
}

/* Specifications Section */
.specifications {
    padding: 6rem 5%;
    background-color: var(--white);
}

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

.spec-item {
    padding: 2rem;
    border-radius: var(--border-radius);
    background-color: var(--light-gray);
    transition: var(--transition);
}

.spec-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(16, 102, 72, 0.1);
}

.spec-item h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

/* Footer */
.footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 4rem 0 1rem 0;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-section h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-person {
    margin-bottom: 1rem;
}

.contact-person h4 {
    color: var(--white);
    font-size: 1.1rem;
    /* margin-bottom: 0.3rem; */
    display: inline-flex;
}

.contact-person h4 p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 400;
}

.whatsapp-link {
    color: #25D366;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.whatsapp-link:hover {
    opacity: 0.8;
}

.company-name {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    margin-top: 0.5rem;
}

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

.social-links a {
    color: var(--white);
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-links a:hover {
    transform: translateY(-3px);
}

.social-links a:hover i {
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
}


.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer {
        padding: 3rem 0 1rem 0;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-bottom p {
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.8rem;
    }

    .social-links {
        justify-content: center;
    }

    .whatsapp-link {
        justify-content: center;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.5rem;
        text-align: left;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }
}

body.menu-open {
    overflow: hidden;
}

/* Product Category Sections */
.product-category {
    padding: 4rem 5%;
    position: relative;
    justify-content: center;
    display: flex;
}

.product-category .container {
    max-width: 1400px;
}

.bg-light {
    background-color: var(--light-gray);
}

.category-header {
    text-align: center;
    margin-bottom: 4rem;
}

.category-header h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.category-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.category-header p {
    color: var(--text-dark);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

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

.category-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.category-image:hover {
    /* transform: translateY(-10px); */
    box-shadow: 0 8px 25px rgba(16, 102, 72, 0.2);
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-image:hover img {
    transform: scale(1.1);
}

.category-action {
    text-align: center;
}

.view-all-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--primary-color);
}

.view-all-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(16, 102, 72, 0.2);
}

/* Responsive Design for Category Sections */
@media (max-width: 968px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .product-category {
        padding: 2rem 1rem;
    }

    .category-header h2 {
        font-size: 2rem;
    }

    .category-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .category-image {
        aspect-ratio: 16/9;
    }
}

/* Add these to your existing nav-link styles */
.nav-link.active {
    color: var(--primary-color);
    background-color: rgba(16, 102, 72, 0.1);
    font-weight: 600;
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background-color: var(--primary-color);
}

/* Update the hover effect */
.nav-link:hover:not(.active) {
    color: var(--primary-color);
    background-color: rgba(16, 102, 72, 0.05);
}

/* Product Page Styles */
.product-page {
    padding-top: 60px;
}

.product-hero {
    height: 70vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-bottom: 2rem;
}

.product-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(16, 102, 72, 0.7), rgba(16, 102, 72, 0.8));
}

.product-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 2rem;
}

.product-hero-content h1 {
    font-size:2.5rem;
    margin-bottom: 1rem;
    animation: fadeInDown 1s ease;
}

.product-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    animation: fadeIn 1s ease 0.5s forwards;
    opacity: 0;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem 0;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 5%;
}

.product-item {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(16, 102, 72, 0.2);
}

.product-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.view-details {
    padding: 0.8rem 1.5rem;
    background: var(--white);
    color: var(--primary-color);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transform: translateY(20px);
    transition: var(--transition);
}

.product-item:hover .view-details {
    transform: translateY(0);
}

.product-info {
    padding: 1.5rem;
    text-align: center;
}

.product-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}


/* Responsive Design */
@media (max-width: 768px) {

.product-hero {
    height: 60vh;
}

    .product-hero-content h1 {
        font-size: 1.5rem;
    }

    .product-hero-content p {
        font-size: 1rem;
    }

    .modal-body {
        grid-template-columns: 1fr;
    }

    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

/* Update responsive design for product grid */
@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem 1rem;
    }
}

/* Footer Styles */
.footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 4rem 0 1rem 0;
}

/* Footer Header Styles */
.footer-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 5%;
}

.footer-header h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.footer-header h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.footer-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    margin-top: 1.5rem;
}

/* Responsive Footer Header */
@media (max-width: 768px) {
    .footer-header h2 {
        font-size: 2rem;
    }

    .footer-header p {
        font-size: 1rem;
        text-align: justify;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 80px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}




/* Scroll to Top Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #25d366;
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.whatsapp-btn.visible {
    opacity: 1;
    visibility: visible;
}

.whatsapp-btn:hover {
    background-color: #15aa4b;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}

/* About Page Styles */
.about-page {
    padding-top: 60px;
}

.about-hero {
    height: 70vh;
    background-image: linear-gradient(rgba(16, 102, 72, 0.8), rgba(16, 102, 72, 0.9)), url('/images/about/1.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.about-hero-content {
    max-width: 800px;
    padding: 0 2rem;
}

.about-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    animation: fadeInDown 1s ease;
}

.about-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.about-section {
    padding: 6rem 5%;
    justify-content: center;
    display: flex;
}

.about-section .container {
    max-width: 1400px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

.about-content h2:first-child {
    margin-top: 0;
}

.about-content p {
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    transform: scale(1.05);
}

.about-image:hover img {
    transform: scale(1.30);
}

/* Features Section */
.features-section {
    background-color: var(--light-gray);
    padding: 6rem 5%;
    text-align: center;
    justify-content: center;
    display: flex;
}

.features-section .container {
    max-width: 1400px;
}

.features-section h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(16, 102, 72, 0.2);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Values Section */
.values-section {
    padding: 6rem 5%;
    text-align: center;
    justify-content: center;
    display: flex;
}

.values-section .container {
    max-width: 1400px;
}

.values-section h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-item {
    padding: 2rem;
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.value-item:hover {
    background-color: var(--primary-color);
    color: var(--white);
    cursor: pointer;
}

.value-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-item:hover h3 {
    color: var(--white);
}

/* Responsive Design */
@media (max-width: 768px) {

.about-hero {
    height: 60vh;
}

    .about-hero-content h1 {
        font-size: 2.5rem;
    }

    .about-hero-content h1 {
        font-size: 1.5rem;
    }

    .about-hero-content p {
        font-size: 1rem;
    }

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

    .about-content {
        text-align: center;
    }

    .about-content p {
        text-align: justify;
    }

    .about-section,
    .features-section,
    .values-section {
        padding: 4rem 1rem;
    }
}

/* About Image Slider */
.about-slider {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.about-slider .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.05);
    transition: all 0.5s ease;
    object-fit: cover;
}

.about-slider .slide.active {
    opacity: 1;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(16, 102, 72, 0.8);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.slider-btn:hover {
    background: var(--primary-color);
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

@media (max-width: 768px) {
    .about-slider {
        height: 300px;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
    }
}

/* Remove the old language-dropdown styles and add these new styles */
.language-switcher {
    display: flex;
    gap: 5px;
    align-items: center;
    margin-left: 15px;
}

.lang-btn {
    padding: 5px 10px;
    border: 1px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: rgba(16, 102, 72, 0.1);
}

.lang-btn.active {
    background: var(--primary-color);
    color: white;
}

/* Update mobile styles */
@media (max-width: 768px) {
    .language-switcher {
        margin: 10px 0;
        justify-content: center;
    }
    
    .lang-btn {
        padding: 8px 15px;
        font-size: 16px;
    }
}