:root {
    --dark-green: #1a472a;
    --medium-green: #2e7d32;
    --light-green: #4caf50;
    --earth-brown: #8d6e63;
    --light-brown: #d7ccc8;
    --white: #ffffff;
    --off-white: #f9f9f9;
    --gray: #f5f5f5;
    --text-dark: #333333;
    --text-light: #666666;
    --shadow: rgba(0, 0, 0, 0.08);
    --shadow-hover: rgba(0, 0, 0, 0.15);
    --leaf-green: rgba(76, 175, 80, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.section-title h2 {
    font-size: 2.8rem;
    color: var(--dark-green);
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--light-green), var(--medium-green));
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-title p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 750px;
    margin: 20px auto 0;
    font-weight: 300;
}

.btn {
    display: inline-block;
    padding: 16px 38px;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: width 0.4s ease;
    z-index: -1;
}

.btn:hover::after {
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--medium-green), var(--light-green));
    color: var(--white);
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(46, 125, 50, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--dark-green);
    border: 2px solid var(--dark-green);
}

.btn-secondary:hover {
    background-color: var(--dark-green);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--shadow-hover);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-icon {
    color: var(--medium-green);
    font-size: 2.8rem;
    margin-right: 15px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.logo-text h1 {
    font-size: 1.8rem;
    color: var(--dark-green);
    line-height: 1.2;
    font-weight: 700;
}

.logo-text span {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 400;
    letter-spacing: 1px;
}

nav {
    display: flex;
    align-items: center;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 35px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

nav ul li a:hover {
    color: var(--medium-green);
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background: linear-gradient(to right, var(--light-green), var(--medium-green));
    left: 0;
    bottom: 0;
    transition: width 0.4s ease;
    border-radius: 2px;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--dark-green);
    transition: all 0.3s ease;
    background: none;
    border: none;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-btn:hover {
    color: var(--medium-green);
}


.logo-img img {
    width: 70px;
    height: auto;
    max-height: 70px;
    object-fit: contain;
    display: block;
}

/* Tablet */
@media (max-width: 1024px) {
    .logo-img img {
        width: 60px;
        max-height: 60px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .logo-img img {
        width: 50px;
        max-height: 50px;
    }

    .logo-text h1 {
        font-size: 1.4rem;
    }

    .logo-text span {
        font-size: 0.75rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .logo-img img {
        width: 45px;
        max-height: 45px;
    }

    .logo-text h1 {
        font-size: 1.2rem;
    }
}

.hero {
    height: 100vh;
    min-height: 800px;
    max-height: 1200px;
    background: linear-gradient(rgba(26, 71, 42, 0.85), rgba(46, 125, 50, 0.8)), url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
    position: relative;
    padding-top: 80px;
}

.hero-content {
    max-width: 950px;
    margin: 0 auto;
    padding: 20px;
    animation: fadeUp 1.2s ease;
    position: relative;
    z-index: 2;
    width: 100%;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 700;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    opacity: 0.95;
    padding: 0 10px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.about {
    background-color: var(--off-white);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 70px;
    position: relative;
    z-index: 2;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--dark-green);
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.about-text h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--light-green), var(--medium-green));
    bottom: -10px;
    left: 0;
    border-radius: 2px;
}

.about-text p {
    margin-bottom: 25px;
    color: var(--text-light);
    font-size: 1.1rem;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
    background: var(--white);
    padding: 25px 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    flex: 1;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.counter {
    font-size: 3rem;
    font-weight: 700;
    color: var(--medium-green);
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.counter-text {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
}

.about-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px var(--shadow);
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(46, 125, 50, 0.1));
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.about-image:hover::before {
    opacity: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.about-image:hover img {
    transform: scale(1.08);
}

.products {
    position: relative;
}

.product-categories {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 35px;
    position: relative;
    z-index: 2;
}

.product-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
    border-top: 4px solid transparent;
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px var(--shadow-hover);
    border-top-color: var(--light-green);
}

.product-icon {
    height: 140px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(46, 125, 50, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--medium-green);
    transition: all 0.4s ease;
}

.product-card:hover .product-icon {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(46, 125, 50, 0.15));
}

.product-content {
    padding: 30px;
}

.product-content h3 {
    font-size: 1.4rem;
    color: var(--dark-green);
    margin-bottom: 20px;
}

.product-content p {
    color: var(--text-light);
    font-size: 1rem;
}

.why-choose-us {
    background-color: var(--gray);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 35px;
    position: relative;
    z-index: 2;
}

.feature {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 25px var(--shadow);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--light-green), var(--medium-green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.feature:hover::before {
    transform: scaleX(1);
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-hover);
}

.feature-icon {
    font-size: 3rem;
    color: var(--medium-green);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.feature:hover .feature-icon {
    transform: scale(1.1);
}

.feature h3 {
    font-size: 1.4rem;
    color: var(--dark-green);
    margin-bottom: 20px;
}

.feature p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.certifications {
    position: relative;
}

.cert-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.cert-logo {
    width: 140px;
    height: 140px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px var(--shadow);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.cert-logo::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(46, 125, 50, 0.05));
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.5s ease;
}

.cert-logo:hover::before {
    transform: scale(1);
}

.cert-logo:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px var(--shadow-hover);
}

.cert-logo i {
    font-size: 3.5rem;
    color: var(--medium-green);
    transition: all 0.3s ease;
}

.cert-logo:hover i {
    transform: scale(1.1);
}

.gallery {
    background-color: var(--off-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    position: relative;
    z-index: 2;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    height: 280px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(26, 71, 42, 0.8), rgba(46, 125, 50, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: var(--white);
    font-size: 2.5rem;
    transform: scale(0);
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}



.contact {
    background-color: var(--gray);
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 60px;
    position: relative;
    z-index: 2;
}

.contact-info h3 {
    font-size: 1.8rem;
    color: var(--dark-green);
    margin-bottom: 35px;
    position: relative;
    display: inline-block;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 4px;
    background: linear-gradient(to right, var(--light-green), var(--medium-green));
    bottom: -10px;
    left: 0;
    border-radius: 2px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    background: linear-gradient(135deg, var(--medium-green), var(--light-green));
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.3);
}

.contact-details h4 {
    font-size: 1.2rem;
    color: var(--dark-green);
    margin-bottom: 10px;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    width: 100%;
    justify-content: center;
    text-align: center;
}

.whatsapp-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn i {
    margin-right: 12px;
    font-size: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 18px 20px;
    margin-bottom: 25px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    background-color: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--medium-green);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
}

.contact-form textarea {
    /* min-height: 180px; */
    min-height: 140px;
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
    max-width: 100%;
    padding: 18px;
}

footer {
    background: linear-gradient(to bottom, var(--dark-green), #153322);
    color: var(--white);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.footer-column h3 {
    font-size: 1.4rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--light-green), var(--medium-green));
    bottom: 0;
    left: 0;
    border-radius: 2px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links li a {
    color: #ddd;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 5px 0;
}

.footer-links li a:hover {
    color: var(--light-green);
    transform: translateX(5px);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--light-green);
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
    color: #ddd;
    position: relative;
    z-index: 2;
}

@media (max-width: 1200px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .hero p {
        font-size: 1.4rem;
    }
}

@media (max-width: 992px) {
    section {
        padding: 80px 0;
    }

    .hero {
        min-height: 700px;
        max-height: 900px;
        padding-top: 80px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.3rem;
    }

    .about-content {
        flex-direction: column;
        gap: 50px;
    }

    .about-image {
        order: -1;
    }

    .section-title h2 {
        font-size: 2.5rem;
    }

    .about-stats {
        gap: 25px;
    }

    .contact-container {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 12px 15px;
        min-height: 70px;
    }

    .logo-icon {
        font-size: 2.2rem;
        margin-right: 12px;
    }

    .logo-text h1 {
        font-size: 1.5rem;
    }

    .logo-text span {
        font-size: 0.75rem;
    }

    .mobile-menu-btn {
        display: block;
    }

    nav ul {
        position: fixed;
        top: 90px;
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        padding: 25px 0;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        z-index: 999;
        height: auto;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    nav ul.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        height: 100vh;
    }

    nav ul li {
        margin: 15px 0;
        margin-left: 0;
        width: 100%;
        text-align: center;
    }

    nav ul li a {
        display: block;
        padding: 12px 20px;
        font-size: 1.1rem;
    }

    .hero {
        min-height: 600px;
        max-height: 800px;
        padding-top: 70px;
        background-attachment: scroll;
    }

    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 20px;
        margin-top: 70px;
        padding: 0 10px;
    }

    .hero p {
        font-size: 1.2rem;
        margin-bottom: 40px;
        padding: 0 10px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
        padding: 0 15px;
    }

    .btn {
        width: 100%;
        max-width: 320px;
        padding: 18px 30px;
        font-size: 1.1rem;
    }

    .section-title {
        margin-bottom: 50px;
    }

    .section-title h2 {
        font-size: 2.2rem;
        padding-bottom: 15px;
    }

    .section-title p {
        font-size: 1.1rem;
        padding: 0 15px;
    }

    .about-stats {
        flex-direction: column;
        gap: 20px;
        margin-top: 40px;
    }

    .stat-item {
        margin-bottom: 10px;
        padding: 20px 15px;
    }

    .counter {
        font-size: 2.5rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }

    .contact-icon {
        margin-right: 0;
        margin-bottom: 15px;
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .contact-form {
        width: 100%;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 16px;
        font-size: 1rem;
    }

    .whatsapp-btn {
        padding: 14px 25px;
        font-size: 1.05rem;
    }
}

@media (max-width: 576px) {
    section {
        padding: 70px 0;
    }

    .header-container {
        padding: 10px 15px;
    }

    .hero {
        min-height: 550px;
        max-height: 700px;
        padding-top: 70px;
    }

    .hero h1 {
        font-size: 2.2rem;
        margin-bottom: 15px;
        margin-top: 70px;
    }

    .hero p {
        font-size: 1.1rem;
        margin-bottom: 35px;
        line-height: 1.5;
    }

    .hero-buttons {
        gap: 12px;
    }

    .btn {
        padding: 16px 25px;
        font-size: 1.05rem;
        max-width: 100%;
    }

    .section-title h2 {
        font-size: 2rem;
        padding-bottom: 12px;
    }

    .section-title p {
        font-size: 1rem;
        padding: 0 10px;
    }

    .about-text h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .about-text p {
        font-size: 1rem;
    }

    .product-categories,
    .features,
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .product-card {
        margin-bottom: 10px;
    }

    .feature {
        padding: 30px 20px;
    }

    .contact-container {
        gap: 30px;
    }

    .contact-info h3 {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }

    .contact-item {
        padding: 18px;
    }

    .cert-logos {
        gap: 25px;
    }

    .cert-logo {
        width: 110px;
        height: 110px;
    }

    .cert-logo i {
        font-size: 2.8rem;
    }


}

@media (max-width: 400px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .logo-text h1 {
        font-size: 1.3rem;
    }

    .logo-icon {
        font-size: 1.8rem;
    }

    .btn {
        padding: 14px 20px;
        font-size: 1rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }
}

.about-hero {
    height: 100vh;
    min-height: 800px;
    background: linear-gradient(rgba(26, 71, 42, 0.85), rgba(46, 125, 50, 0.8)), url("https://images.unsplash.com/photo-1500382017468-9049fed747ef?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
    position: relative;
}

.about-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    animation: fadeUp 1.2s ease;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text {
    flex: 1;
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.about-hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    font-weight: 300;
    opacity: 0.95;
    max-width: 600px;
}

.hero-stats {
    display: flex;
    gap: 10px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px;
    border-radius: 10px;
    min-width: 150px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat .number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    font-family: "Poppins", sans-serif;
}

.hero-stat .label {
    font-size: 1rem;
    opacity: 0.9;
}

.hero-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.our-story {
    background-color: var(--off-white);
}

.story-content {
    display: flex;
    align-items: center;
    gap: 70px;
    position: relative;
    z-index: 2;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 2.5rem;
    color: var(--dark-green);
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.story-text h2::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--light-green), var(--medium-green));
    bottom: -10px;
    left: 0;
    border-radius: 2px;
}

.story-text p {
    margin-bottom: 25px;
    color: var(--text-light);
    font-size: 1.1rem;
}

.story-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.story-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.story-feature i {
    color: var(--medium-green);
    font-size: 1.5rem;
    margin-top: 5px;
}

.story-feature h4 {
    font-size: 1.1rem;
    color: var(--dark-green);
    margin-bottom: 5px;
}

.story-feature p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.story-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px var(--shadow);
    position: relative;
}

.story-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(46, 125, 50, 0.1));
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.story-image:hover::before {
    opacity: 1;
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.story-image:hover img {
    transform: scale(1.08);
}

.mission-vision {
    position: relative;
}

.mv-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 50px;
    position: relative;
    z-index: 2;
}

.mission-card,
.vision-card {
    background-color: var(--white);
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 15px 40px var(--shadow);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border-top: 5px solid transparent;
}

.mission-card {
    border-top-color: var(--medium-green);
}

.vision-card {
    border-top-color: var(--light-green);
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px var(--shadow-hover);
}

.mv-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: var(--medium-green);
}

.vision-card .mv-icon {
    color: var(--light-green);
}

.mv-content h3 {
    font-size: 1.8rem;
    color: var(--dark-green);
    margin-bottom: 20px;
}

.mv-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
}

.journey-section {
    background-color: var(--off-white);
}

.journey-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.journey-stat {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 25px var(--shadow);
    transition: all 0.4s ease;
    border-bottom: 5px solid transparent;
}

.journey-stat:nth-child(1) {
    border-bottom-color: #2e7d32;
}

.journey-stat:nth-child(2) {
    border-bottom-color: #4caf50;
}

.journey-stat:nth-child(3) {
    border-bottom-color: #8d6e63;
}

.journey-stat:nth-child(4) {
    border-bottom-color: #1a472a;
}

.journey-stat:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-hover);
}

.journey-stat .number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--medium-green);
    margin-bottom: 10px;
    font-family: "Poppins", sans-serif;
}

.journey-stat h4 {
    font-size: 1.3rem;
    color: var(--dark-green);
    margin-bottom: 10px;
}

.journey-stat p {
    color: var(--text-light);
    font-size: 1rem;
}

.our-values {
    position: relative;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 35px;
    position: relative;
    z-index: 2;
}

.value-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 25px var(--shadow);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--light-green), var(--medium-green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-hover);
}

.value-icon {
    font-size: 3rem;
    color: var(--medium-green);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
}

.value-card h3 {
    font-size: 1.5rem;
    color: var(--dark-green);
    margin-bottom: 20px;
}

.value-card p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.technology-section {
    background-color: var(--off-white);
}

.tech-content {
    display: flex;
    align-items: center;
    gap: 70px;
    position: relative;
    z-index: 2;
}

.tech-text {
    flex: 1;
}

.tech-text h2 {
    font-size: 2.5rem;
    color: var(--dark-green);
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.tech-text h2::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--light-green), var(--medium-green));
    bottom: -10px;
    left: 0;
    border-radius: 2px;
}

.tech-features {
    margin-top: 40px;
}

.tech-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.tech-feature i {
    background: linear-gradient(135deg, var(--medium-green), var(--light-green));
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.3);
}

.tech-feature h4 {
    font-size: 1.3rem;
    color: var(--dark-green);
    margin-bottom: 10px;
}

.tech-feature p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.tech-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px var(--shadow);
    position: relative;
}

.tech-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.tech-image:hover img {
    transform: scale(1.08);
}

.manufacturing-section {
    position: relative;
}

.manufacturing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 35px;
    position: relative;
    z-index: 2;
}

.manufacturing-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px var(--shadow);
    transition: all 0.4s ease;
    height: 100%;
}

.manufacturing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px var(--shadow-hover);
}

.manufacturing-img {
    height: 220px;
    overflow: hidden;
}

.manufacturing-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.manufacturing-card:hover .manufacturing-img img {
    transform: scale(1.1);
}

.manufacturing-content {
    padding: 30px;
}

.manufacturing-content h3 {
    font-size: 1.4rem;
    color: var(--dark-green);
    margin-bottom: 15px;
}

.manufacturing-content p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.team-section {
    background-color: var(--off-white);
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.team-intro p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
}

.team-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.team-highlight {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 25px var(--shadow);
    transition: all 0.4s ease;
}

.team-highlight:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-hover);
}

.team-highlight i {
    font-size: 3rem;
    color: var(--medium-green);
    margin-bottom: 25px;
}

.team-highlight h3 {
    font-size: 1.5rem;
    color: var(--dark-green);
    margin-bottom: 20px;
}

.team-highlight p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.about-cta {
    background: linear-gradient(135deg, rgba(26, 71, 42, 0.9), rgba(46, 125, 50, 0.85)), url("https://images.unsplash.com/photo-1500382017468-9049fed747ef?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
}

.about-cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.about-cta p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    font-weight: 300;
    opacity: 0.95;
}

@media (max-width: 1200px) {
    .about-hero h1 {
        font-size: 3rem;
    }

    .about-hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        order: 1;
    }

    .hero-image {
        order: 2;
        max-width: 600px;
    }
}

@media (max-width: 992px) {
    section {
        padding: 80px 0;
    }

    .about-hero {
        height: auto;
        min-height: auto;
        padding: 120px 0 80px;
    }

    .about-hero h1 {
        font-size: 2.5rem;
        margin-top: 50px;
    }

    .story-content {
        flex-direction: column;
    }

    .story-image {
        order: -1;
    }

    .section-title h2 {
        font-size: 2.5rem;
    }

    .mv-container {
        grid-template-columns: 1fr;
    }

    .tech-content {
        flex-direction: column;
    }

    .tech-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.2rem;
        margin-top: 40px;
    }

    .about-hero p {
        font-size: 1.2rem;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .story-features {
        grid-template-columns: 1fr;
    }

    .manufacturing-grid {
        grid-template-columns: 1fr;
    }

    .team-highlights {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-stat {
        min-width: 120px;
        padding: 15px;
    }

    .hero-stat .number {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    section {
        padding: 70px 0;
    }

    .about-hero {
        padding: 100px 0 60px;
    }

    .about-hero h1 {
        font-size: 2rem;
    }

    .about-hero p {
        font-size: 1.1rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .section-title p {
        font-size: 1.1rem;
    }

    .mv-container {
        grid-template-columns: 1fr;
    }

    .mission-card,
    .vision-card {
        padding: 35px 25px;
    }

    .journey-stats {
        grid-template-columns: 1fr;
    }

    .hero-stat {
        min-width: 100px;
        padding: 12px;
    }

    .hero-stat .number {
        font-size: 1.8rem;
    }
}

.certifications-hero {
    height: 100vh;
    min-height: 800px;
    background: linear-gradient(rgba(26, 71, 42, 0.85), rgba(46, 125, 50, 0.8)), url("https://images.unsplash.com/photo-1500382017468-9049fed747ef?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
    position: relative;
}

.certifications-hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    animation: fadeUp 1.2s ease;
    position: relative;
    z-index: 2;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.certifications-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.certifications-hero p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    opacity: 0.95;
}

.certifications-section {
    background-color: var(--white);
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.certification-card {
    background-color: var(--white);
    padding: 50px 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 35px var(--shadow);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border-top: 5px solid var(--light-green);
}

.certification-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05), rgba(46, 125, 50, 0.03));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.certification-card:hover::before {
    opacity: 1;
}

.certification-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px var(--shadow-hover);
}

.certification-icon {
    font-size: 4rem;
    color: var(--medium-green);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.certification-card:hover .certification-icon {
    transform: scale(1.1);
}

.certification-card h3 {
    font-size: 1.6rem;
    color: var(--dark-green);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.certification-card p {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.certification-id {
    display: inline-block;
    background-color: rgba(76, 175, 80, 0.1);
    color: var(--medium-green);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 15px;
    position: relative;
    z-index: 2;
}

.validity {
    display: block;
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--medium-green);
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.standards-section {
    background-color: var(--off-white);
}

.standards-container {
    display: flex;
    align-items: center;
    gap: 70px;
    position: relative;
    z-index: 2;
}

.standards-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px var(--shadow);
    position: relative;
}

.standards-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.standards-image:hover img {
    transform: scale(1.08);
}

.standards-content {
    flex: 1;
}

.standards-content h2 {
    font-size: 2.5rem;
    color: var(--dark-green);
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.standards-content h2::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--light-green), var(--medium-green));
    bottom: -10px;
    left: 0;
    border-radius: 2px;
}

.standards-list {
    margin-top: 40px;
}

.standard-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.standard-icon {
    background: linear-gradient(135deg, var(--medium-green), var(--light-green));
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.3);
}

.standard-text h4 {
    font-size: 1.3rem;
    color: var(--dark-green);
    margin-bottom: 10px;
}

.standard-text p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.testing-section {
    background-color: var(--white);
}

.testing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 35px;
    position: relative;
    z-index: 2;
}

.testing-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px var(--shadow);
    transition: all 0.4s ease;
    height: 100%;
}

.testing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px var(--shadow-hover);
}

.testing-icon {
    height: 150px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(46, 125, 50, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
}

.testing-icon i {
    font-size: 4rem;
    color: var(--medium-green);
}

.testing-content {
    padding: 30px;
}

.testing-content h3 {
    font-size: 1.5rem;
    color: var(--dark-green);
    margin-bottom: 15px;
}

.testing-content p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.testing-list {
    margin-top: 20px;
}

.testing-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.testing-list li i {
    color: var(--light-green);
    margin-right: 10px;
    font-size: 0.9rem;
}

.compliance-section {
    background-color: var(--off-white);
}

.compliance-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.compliance-table {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px var(--shadow);
}

.compliance-header {
    background: linear-gradient(135deg, var(--medium-green), var(--light-green));
    color: var(--white);
    padding: 30px;
    text-align: center;
}

.compliance-header h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.compliance-rows {
    padding: 0;
}

.compliance-row {
    display: flex;
    border-bottom: 1px solid #eee;
}

.compliance-row:last-child {
    border-bottom: none;
}

.compliance-title {
    flex: 1;
    padding: 25px 30px;
    font-weight: 600;
    color: var(--dark-green);
    background-color: rgba(76, 175, 80, 0.05);
    font-size: 1.1rem;
}

.compliance-content {
    flex: 2;
    padding: 25px 30px;
}

.compliance-content h4 {
    font-size: 1.1rem;
    color: var(--dark-green);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.compliance-content h4 i {
    color: var(--light-green);
    margin-right: 10px;
}

.compliance-content p {
    color: var(--text-light);
    font-size: 1rem;
}

.awards-section {
    background-color: var(--white);
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 35px;
    position: relative;
    z-index: 2;
}

.award-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 35px var(--shadow);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.award-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--light-green), var(--medium-green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.award-card:hover::before {
    transform: scaleX(1);
}

.award-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px var(--shadow-hover);
}

.award-icon {
    font-size: 3.5rem;
    color: var(--medium-green);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.award-card:hover .award-icon {
    transform: scale(1.1);
}

.award-card h3 {
    font-size: 1.5rem;
    color: var(--dark-green);
    margin-bottom: 15px;
}

.award-card p {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.award-year {
    display: inline-block;
    background-color: rgba(76, 175, 80, 0.1);
    color: var(--medium-green);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 15px;
}

.certifications-cta {
    background: linear-gradient(135deg, rgba(26, 71, 42, 0.9), rgba(46, 125, 50, 0.85)), url("https://images.unsplash.com/photo-1500382017468-9049fed747ef?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
}

.certifications-cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.certifications-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.certifications-cta p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    font-weight: 300;
    opacity: 0.95;
}

@media (max-width: 1200px) {
    .certifications-hero h1 {
        font-size: 3rem;
    }

    .standards-container {
        flex-direction: column;
    }

    .standards-image {
        order: -1;
    }
}

@media (max-width: 992px) {
    section {
        padding: 80px 0;
    }

    .certifications-hero {
        height: auto;
        min-height: auto;
        padding: 120px 0 80px;
    }

    .certifications-hero h1 {
        font-size: 2.5rem;
        margin-top: 40px;
    }

    .section-title h2 {
        font-size: 2.5rem;
    }

    .certifications-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }

    .compliance-row {
        flex-direction: column;
    }

    .compliance-title {
        border-bottom: 1px solid #eee;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    nav ul {
        position: fixed;
        top: 90px;
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        padding: 25px 0;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.4s ease;
        z-index: 999;
    }

    nav ul.active {
        transform: translateY(0);
        opacity: 1;
    }

    nav ul li {
        margin: 5px 0;
    }

    .certifications-hero h1 {
        font-size: 2.2rem;
    }

    .certifications-hero p {
        font-size: 1.2rem;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }

    .certifications-grid {
        grid-template-columns: 1fr;
    }

    .testing-grid {
        grid-template-columns: 1fr;
    }

    .awards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    section {
        padding: 70px 0;
    }

    .certifications-hero {
        padding: 100px 0 60px;
    }

    .certifications-hero h1 {
        font-size: 2rem;
        margin-top: 40px;
    }

    .certifications-hero p {
        font-size: 1.1rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .section-title p {
        font-size: 1.1rem;
    }

    .certification-card {
        padding: 40px 25px;
    }

    .award-card {
        padding: 35px 25px;
    }
}


.contact-hero {
    height: 100vh;
    min-height: 800px;
    background: linear-gradient(rgba(26, 71, 42, 0.85), rgba(46, 125, 50, 0.8)), url("https://images.unsplash.com/photo-1500382017468-9049fed747ef?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
    position: relative;
}

.contact-hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    animation: fadeUp 1.2s ease;
    position: relative;
    z-index: 2;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-hero p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    opacity: 0.95;
}

.contact-info-section-custom {
    background-color: var(--white);
}

.contact-info-grid-custom {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.contact-info-card-custom {
    background-color: var(--white);
    padding: 50px 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 35px var(--shadow);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-info-card-custom::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--light-green), var(--medium-green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.contact-info-card-custom:hover::before {
    transform: scaleX(1);
}

.contact-info-card-custom:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px var(--shadow-hover);
}

.contact-icon-custom {
    font-size: 4rem;
    color: var(--medium-green);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.contact-info-card-custom:hover .contact-icon-custom {
    transform: scale(1.1);
}

.contact-info-card-custom h3 {
    font-size: 1.6rem;
    color: var(--dark-green);
    margin-bottom: 20px;
}

.contact-info-card-custom p {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 25px;
}

.contact-details-custom {
    margin-top: 20px;
}

.contact-details-custom p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-details-custom p i {
    color: var(--light-green);
    font-size: 1.1rem;
}

.contact-form-section-custom {
    background-color: var(--off-white);
}

.contact-form-container-custom {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 60px;
    position: relative;
    z-index: 2;
}

.form-side-custom {
    background-color: var(--white);
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: 0 15px 35px var(--shadow);
}

.form-side-custom h3 {
    font-size: 1.8rem;
    color: var(--dark-green);
    margin-bottom: 10px;
}

.form-side-custom p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-form-custom {
    margin-top: 30px;
}

.form-group-custom {
    margin-bottom: 25px;
}

.form-group-custom label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-green);
}

.form-group-custom input,
.form-group-custom select,
.form-group-custom textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: "Open Sans", sans-serif;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    background-color: var(--white);
}

.form-group-custom input:focus,
.form-group-custom select:focus,
.form-group-custom textarea:focus {
    outline: none;
    border-color: var(--medium-green);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
}

.form-group-custom textarea {
    min-height: 150px;
    resize: vertical;
}

.info-side-custom {
    padding: 20px 0;
}

.info-side-custom h3 {
    font-size: 1.8rem;
    color: var(--dark-green);
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.info-side-custom h3::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 4px;
    background: linear-gradient(to right, var(--light-green), var(--medium-green));
    bottom: -10px;
    left: 0;
    border-radius: 2px;
}

.business-hours-custom {
    margin-bottom: 40px;
}

.business-hours-custom h4 {
    font-size: 1.3rem;
    color: var(--dark-green);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.business-hours-custom h4 i {
    color: var(--medium-green);
}

.hours-list-custom {
    list-style: none;
}

.hours-list-custom li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    color: var(--text-light);
}

.hours-list-custom li:last-child {
    border-bottom: none;
}

.day-custom {
    font-weight: 500;
}

.time-custom {
    color: var(--dark-green);
    font-weight: 500;
}

.quick-contact-section-custom {
    background-color: var(--white);
}

.quick-contact-grid-custom {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 35px;
    position: relative;
    z-index: 2;
}

.quick-contact-card-custom {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 35px var(--shadow);
    transition: all 0.4s ease;
}

.quick-contact-card-custom:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px var(--shadow-hover);
}

.quick-contact-card-custom i {
    font-size: 3.5rem;
    color: var(--medium-green);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.quick-contact-card-custom:hover i {
    transform: scale(1.1);
}

.quick-contact-card-custom h4 {
    font-size: 1.5rem;
    color: var(--dark-green);
    margin-bottom: 15px;
}

.quick-contact-card-custom p {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.location-section-custom {
    background-color: var(--off-white);
}

.location-container-custom {
    display: flex;
    align-items: center;
    gap: 70px;
    position: relative;
    z-index: 2;
}

.location-map-custom {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px var(--shadow);
    height: 500px;
}

.location-map-custom iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.location-info-custom {
    flex: 1;
}

.location-info-custom h2 {
    font-size: 2.5rem;
    color: var(--dark-green);
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.location-info-custom h2::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--light-green), var(--medium-green));
    bottom: -10px;
    left: 0;
    border-radius: 2px;
}

.location-details-custom {
    margin-top: 40px;
}

.location-item-custom {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.location-icon-custom {
    background: linear-gradient(135deg, var(--medium-green), var(--light-green));
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.3);
}

.location-text-custom h4 {
    font-size: 1.3rem;
    color: var(--dark-green);
    margin-bottom: 10px;
}

.location-text-custom p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.faq-section-custom {
    background-color: var(--white);
}

.faq-container-custom {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-item-custom {
    background-color: var(--white);
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 10px 25px var(--shadow);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item-custom:hover {
    box-shadow: 0 15px 35px var(--shadow-hover);
}

.faq-question-custom {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--white);
    border-left: 5px solid var(--light-green);
}

.faq-question-custom h4 {
    font-size: 1.3rem;
    color: var(--dark-green);
    margin: 0;
}

.faq-question-custom i {
    color: var(--medium-green);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-answer-custom {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer-custom p {
    padding: 20px 0;
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
    border-top: 1px solid #eee;
}

.faq-item-custom.active .faq-answer-custom {
    max-height: 500px;
}

.faq-item-custom.active .faq-question-custom i {
    transform: rotate(180deg);
}

.contact-cta-custom {
    background: linear-gradient(135deg, rgba(26, 71, 42, 0.9), rgba(46, 125, 50, 0.85)), url("https://images.unsplash.com/photo-1500382017468-9049fed747ef?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
}

.contact-cta-content-custom {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-cta-custom h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.contact-cta-custom p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    font-weight: 300;
    opacity: 0.95;
}

@media (max-width: 1200px) {
    .contact-hero h1 {
        font-size: 3rem;
    }

    .location-container-custom {
        flex-direction: column;
    }

    .location-map-custom {
        order: -1;
        height: 400px;
    }
}

@media (max-width: 992px) {
    section {
        padding: 80px 0;
    }

    .contact-hero {
        height: auto;
        min-height: auto;
        padding: 120px 0 80px;
    }

    .contact-hero h1 {
        font-size: 2.5rem;
        margin-top: 40px;
    }

    .section-title h2 {
        font-size: 2.5rem;
    }

    .contact-info-grid-custom {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }

    .contact-form-container-custom {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    nav ul {
        position: fixed;
        top: 90px;
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        padding: 25px 0;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.4s ease;
        z-index: 999;
    }

    nav ul.active {
        transform: translateY(0);
        opacity: 1;
    }

    nav ul li {
        margin: 5px 0;
    }

    .contact-hero h1 {
        font-size: 2.2rem;
    }

    .contact-hero p {
        font-size: 1.2rem;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }

    .contact-info-grid-custom {
        grid-template-columns: 1fr;
    }

    .quick-contact-grid-custom {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    section {
        padding: 70px 0;
    }

    .contact-hero {
        padding: 100px 0 60px;
    }

    .contact-hero h1 {
        font-size: 2rem;
        margin-top: 40px;
    }

    .contact-hero p {
        font-size: 1.1rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .section-title p {
        font-size: 1.1rem;
    }

    .contact-info-card-custom {
        padding: 40px 25px;
    }

    .form-side-custom {
        padding: 40px 25px;
    }

    .location-map-custom {
        height: 300px;
    }
}

.why-hero {
    height: 100vh;
    min-height: 800px;
    background: linear-gradient(rgba(26, 71, 42, 0.85), rgba(46, 125, 50, 0.8)), url("https://images.unsplash.com/photo-1500382017468-9049fed747ef?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
    position: relative;
}

.why-hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    animation: fadeUp 1.2s ease;
    position: relative;
    z-index: 2;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.why-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.why-hero p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    opacity: 0.95;
}

.advantages-section {
    background-color: var(--white);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.advantage-card {
    background-color: var(--white);
    padding: 50px 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 35px var(--shadow);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--light-green), var(--medium-green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.advantage-card:hover::before {
    transform: scaleX(1);
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px var(--shadow-hover);
}

.advantage-icon {
    font-size: 4rem;
    color: var(--medium-green);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.1);
}

.advantage-card h3 {
    font-size: 1.6rem;
    color: var(--dark-green);
    margin-bottom: 20px;
}

.advantage-card p {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 25px;
}

.advantage-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(76, 175, 80, 0.1);
    font-family: 'Poppins', sans-serif;
}

.comparison-section {
    background-color: var(--off-white);
}

.comparison-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.comparison-table {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px var(--shadow);
}

.comparison-header {
    background: linear-gradient(135deg, var(--medium-green), var(--light-green));
    color: var(--white);
    padding: 30px;
    text-align: center;
}

.comparison-header h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.comparison-rows {
    padding: 0;
}

.comparison-row {
    display: flex;
    border-bottom: 1px solid #eee;
}

.comparison-row:last-child {
    border-bottom: none;
}

.row-title {
    flex: 1;
    padding: 25px 30px;
    font-weight: 600;
    color: var(--dark-green);
    background-color: rgba(76, 175, 80, 0.05);
    font-size: 1.1rem;
}

.row-content {
    flex: 2;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
}

.our-side {
    flex: 1;
    padding-right: 20px;
}

.others-side {
    flex: 1;
    padding-left: 20px;
    border-left: 1px dashed #ddd;
}

.row-content h4 {
    font-size: 1.1rem;
    color: var(--dark-green);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.row-content h4 i {
    margin-right: 10px;
}

.our-side h4 i {
    color: var(--light-green);
}

.others-side h4 i {
    color: #ff6b6b;
}

.row-content p {
    color: var(--text-light);
    font-size: 1rem;
}

.expertise-section {
    background-color: var(--white);
}

.expertise-container {
    display: flex;
    align-items: center;
    gap: 70px;
    position: relative;
    z-index: 2;
}

.expertise-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px var(--shadow);
    position: relative;
}

.expertise-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.expertise-image:hover img {
    transform: scale(1.08);
}

.expertise-content {
    flex: 1;
}

.expertise-content h2 {
    font-size: 2.5rem;
    color: var(--dark-green);
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.expertise-content h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--light-green), var(--medium-green));
    bottom: -10px;
    left: 0;
    border-radius: 2px;
}

.expertise-list {
    margin-top: 40px;
}

.expertise-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.expertise-icon {
    background: linear-gradient(135deg, var(--medium-green), var(--light-green));
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.3);
}

.expertise-text h4 {
    font-size: 1.3rem;
    color: var(--dark-green);
    margin-bottom: 10px;
}

.expertise-text p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.qa-cert-section {
    background-color: var(--off-white);
    position: relative;
}

.qa-cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 35px;
    position: relative;
    z-index: 2;
}

.qa-cert-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px var(--shadow);
    transition: all 0.4s ease;
    height: 100%;
    text-align: center;
}

.qa-cert-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px var(--shadow-hover);
}

.qa-cert-icon {
    height: 150px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(46, 125, 50, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
}

.qa-cert-icon i {
    font-size: 4rem;
    color: var(--medium-green);
}

.qa-cert-content {
    padding: 30px;
}

.qa-cert-content h3 {
    font-size: 1.5rem;
    color: var(--dark-green);
    margin-bottom: 15px;
}

.qa-cert-content p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.6;
}

.partnership-section {
    background-color: var(--off-white);
}

.partnership-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.partnership-content h2 {
    font-size: 2.5rem;
    color: var(--dark-green);
    margin-bottom: 25px;
}

.partnership-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.partnership-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.partnership-feature {
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    width: 250px;
    transition: all 0.3s ease;
}

.partnership-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--shadow);
}

.partnership-feature i {
    font-size: 2.5rem;
    color: var(--medium-green);
    margin-bottom: 20px;
}

.partnership-feature h4 {
    font-size: 1.3rem;
    color: var(--dark-green);
    margin-bottom: 15px;
}

.partnership-feature p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.why-cta {
    background: linear-gradient(135deg, rgba(26, 71, 42, 0.9), rgba(46, 125, 50, 0.85)), url("https://images.unsplash.com/photo-1625246333195-78d9c38ad449?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
}

.why-cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.why-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.why-cta p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    font-weight: 300;
    opacity: 0.95;
}

@media (max-width: 1200px) {
    .why-hero h1 {
        font-size: 3rem;
    }

    .expertise-container {
        flex-direction: column;
        gap: 50px;
    }

    .expertise-image {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 992px) {
    section {
        padding: 80px 0;
    }

    .why-hero {
        height: auto;
        min-height: auto;
        padding: 150px 0 80px;
    }

    .why-hero h1 {
        font-size: 2.8rem;
    }

    .why-hero p {
        font-size: 1.2rem;
    }

    .section-title h2 {
        font-size: 2.5rem;
    }

    .advantages-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 30px;
    }

    .qa-cert-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 25px;
    }

    .row-content {
        flex-direction: column;
        gap: 20px;
    }

    .our-side,
    .others-side {
        padding: 10px 0;
        border-left: none;
        border-bottom: 1px dashed #eee;
        width: 100%;
    }

    .others-side {
        border-bottom: none;
    }

    .comparison-row {
        flex-direction: column;
    }

    .row-title {
        border-bottom: 1px solid #eee;
        padding: 20px;
        font-size: 1.2rem;
    }

    .row-content {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .why-hero h1 {
        font-size: 2.4rem;
    }

    .why-hero p {
        font-size: 1.1rem;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }

    .section-title p {
        font-size: 1.1rem;
        padding: 0 15px;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .advantage-card {
        padding: 40px 30px;
    }

    .qa-cert-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .qa-cert-card {
        max-width: 400px;
        margin: 0 auto;
    }

    .qa-cert-icon {
        height: 120px;
    }

    .qa-cert-icon i {
        font-size: 3.5rem;
    }

    .qa-cert-content {
        padding: 25px;
    }

    .qa-cert-content h3 {
        font-size: 1.4rem;
    }

    .expertise-content h2 {
        font-size: 2.2rem;
    }

    .expertise-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .expertise-icon {
        margin-right: 0;
        align-self: center;
    }

    .expertise-text h4 {
        font-size: 1.2rem;
    }

    .partnership-features {
        flex-direction: column;
        align-items: center;
    }

    .partnership-feature {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 576px) {
    .why-hero {
        padding: 130px 0 60px;
    }

    .why-hero h1 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .why-hero p {
        font-size: 1rem;
    }

    .section-title h2 {
        font-size: 2rem;
        padding-bottom: 15px;
    }

    .section-title p {
        font-size: 1rem;
        margin-top: 15px;
    }

    .btn {
        padding: 12px 30px;
        font-size: 0.95rem;
    }

    .advantage-card {
        padding: 35px 25px;
    }

    .advantage-icon {
        font-size: 3.5rem;
        margin-bottom: 20px;
    }

    .advantage-card h3 {
        font-size: 1.4rem;
    }

    .advantage-number {
        font-size: 2.5rem;
    }

    .comparison-header {
        padding: 25px 20px;
    }

    .comparison-header h3 {
        font-size: 1.5rem;
    }

    .row-title {
        padding: 15px 20px;
        font-size: 1.1rem;
    }

    .row-content {
        padding: 20px;
    }

    .row-content h4 {
        font-size: 1rem;
    }

    .row-content p {
        font-size: 0.95rem;
    }

    .qa-cert-icon {
        height: 100px;
    }

    .qa-cert-icon i {
        font-size: 3rem;
    }

    .qa-cert-content {
        padding: 20px;
    }

    .qa-cert-content h3 {
        font-size: 1.3rem;
    }

    .qa-cert-content p {
        font-size: 0.95rem;
    }

    .expertise-content h2 {
        font-size: 1.8rem;
    }

    .expertise-content p {
        font-size: 1rem;
    }

    .expertise-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .expertise-text h4 {
        font-size: 1.1rem;
    }

    .expertise-text p {
        font-size: 0.95rem;
    }

    .partnership-content h2 {
        font-size: 2rem;
    }

    .partnership-content p {
        font-size: 1rem;
    }

    .partnership-feature {
        padding: 25px 20px;
    }

    .partnership-feature i {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .partnership-feature h4 {
        font-size: 1.2rem;
    }

    .partnership-feature p {
        font-size: 0.95rem;
    }

    .why-cta h2 {
        font-size: 2.2rem;
    }

    .why-cta p {
        font-size: 1.1rem;
    }
}

@media (max-width: 400px) {
    .why-hero h1 {
        font-size: 1.8rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .advantage-card {
        padding: 30px 20px;
    }

    .qa-cert-card {
        padding: 0;
    }
}

/* Products Page Start */

/* Products Hero Section */
.products-hero {
    height: 100vh;
    min-height: 800px;
    max-height: 1200px;
    background: linear-gradient(rgba(26, 71, 42, 0.85), rgba(46, 125, 50, 0.8)), url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
    position: relative;
    padding-top: 80px;
}

.products-hero-content {
    max-width: 950px;
    margin: 0 auto;
    padding: 20px;
    animation: fadeUp 1.2s ease;
    position: relative;
    z-index: 2;
    width: 100%;
}


.products-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.products-hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    opacity: 0.95;
}



/* Products Filter */
.products-filter {
    background-color: var(--off-white);
    padding: 40px 0;
    position: relative;
    z-index: 100;
}

.filter-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.filter-btn {
    padding: 10px 25px;
    background-color: var(--white);
    border: 2px solid var(--light-green);
    color: var(--dark-green);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--light-green);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.search-box {
    width: 100%;
    max-width: 500px;
    margin: 20px auto 0;
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 15px 20px 15px 50px;
    border: 2px solid #ddd;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: var(--white);
}

.search-box input:focus {
    outline: none;
    border-color: var(--medium-green);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
}

.search-box i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--medium-green);
    font-size: 1.2rem;
}

/* Products Grid */
.products-section {
    background-color: var(--white);
}



.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.product-item {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px var(--shadow-hover);
}
/* change */
.product-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit:cover;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Hide placeholder when image is loaded */
.product-image img.loaded + .placeholder-image,
.product-image img.loaded ~ .placeholder-image {
    opacity: 0;
    visibility: hidden;
}
.product-image img.loaded {
    opacity: 1;
}

.product-item:hover .product-image img {
    transform: scale(1.1);
}

.product-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--medium-green), var(--light-green));
    color: var(--white);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.product-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-content h3 {
    font-size: 1.4rem;
    color: var(--dark-green);
    margin-bottom: 10px;
    line-height: 1.3;
}

.product-description {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.product-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.product-spec {
    background-color: rgba(76, 175, 80, 0.1);
    color: var(--medium-green);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-green);
}

.product-price span {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 400;
}

.product-action {
    display: flex;
    gap: 10px;
}

.product-action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-green);
    color: var(--white);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.product-action-btn:hover {
    background-color: var(--medium-green);
    transform: scale(1.1);
}

/* Loading Placeholder */
.placeholder-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    z-index: 1;
}


/* No Products Message */
.no-products {
    text-align: center;
    padding: 60px 20px;
    grid-column: 1 / -1;
}

.no-products i {
    font-size: 4rem;
    color: var(--light-green);
    margin-bottom: 20px;
}

.no-products h3 {
    font-size: 1.8rem;
    color: var(--dark-green);
    margin-bottom: 15px;
}

.no-products p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}


/* Responsive Design */
@media (max-width: 1200px) {
    .products-hero h1 {
        font-size: 2.7rem;
    }


}

@media (max-width: 992px) {

    .products-hero {
        height: auto;
        min-height: auto;
        padding: 120px 0 80px;
    }

    .products-hero h1 {
        font-size: 2.5rem;

    }

    .products-hero p {
        font-size: 1.2rem;
    }


    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 25px;
    }


}

/* Mobile Responsive */
@media (max-width: 768px) {

    .products-hero {
        height: 100vh;
        min-height: 400px;
        padding-top: 70px;
        background-attachment: scroll;
    }

    .products-hero h1 {
        font-size: 2.2rem;
        margin-bottom: 20px;

    }

    .products-hero p {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    /* Mobile Filter Styling - Show only 3 buttons initially */
    .products-filter {
        padding: 30px 0;
    }

    .filter-container {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 8px;
        padding: 0 15px 8px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .filter-container::-webkit-scrollbar {
        display: none;
    }

    .filter-btn {
        padding: 10px 18px;
        font-size: 0.85rem;
        white-space: nowrap;
        flex-shrink: 0;
        min-width: max-content;
        background-color: var(--white);
        border: 1.5px solid var(--light-green);
    }

    .filter-btn:hover,
    .filter-btn.active {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
    }

    /* Show only first 3 filter buttons on mobile initially */
    .filter-btn {
        display: none;
    }

    .filter-btn:nth-child(1),
    .filter-btn:nth-child(2),
    .filter-btn:nth-child(3) {
        display: inline-block;
    }

    .search-box {
        max-width: 100%;
        padding: 0 15px;
        margin-top: 15px;
    }

    .search-box input {
        padding: 12px 20px 12px 45px;
        font-size: 0.95rem;
    }

    .search-box i {
        left: 15px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .product-item {
        max-width: 400px;
        margin: 0 auto;
    }

    .product-content {
        padding: 20px;
    }

    .product-content h3 {
        font-size: 1.3rem;
    }

    .product-price {
        font-size: 1.3rem;
    }

}

@media (max-width: 576px) {

    .products-hero {
        padding: 100px 0 60px;
    }

    .products-hero h1 {
        font-size: 1.8rem;

    }

    .products-hero p {
        font-size: 1rem;
    }

    .filter-btn {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

}

@media (max-width: 400px) {
    .products-hero h1 {
        font-size: 1.6rem;
    }

    .section-title h2 {
        font-size: 1.6rem;
    }

}

/* Products Page End */

/* Testimonials Section Styles */
.testimonials {
    background-color: var(--off-white);
}

/* Testimonial Card */
.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(76, 175, 80, 0.1);
    transition: all 0.3s ease;
    margin: 0 15px;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

/* Client Image */
.client-img-wrapper {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    padding: 5px;
    background: linear-gradient(135deg, var(--light-green), var(--medium-green));
    position: relative;
    box-shadow: 0 10px 20px rgba(46, 125, 50, 0.2);
}

.client-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid white;
}

/* Quote Icon */
.quote-icon {
    font-size: 3rem;
    color: rgba(76, 175, 80, 0.2);
    margin-bottom: 20px;
    display: block;
}

/* Rating */
.rating {
    font-size: 1.2rem;
}

/* Carousel Controls Customization */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--medium-green), var(--light-green));
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.carousel-control-prev {
    left: -25px;
}

.carousel-control-next {
    right: -25px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
    background: linear-gradient(135deg, var(--light-green), var(--medium-green));
}

/* Carousel Indicators Customization */
.carousel-indicators {
    bottom: -60px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--light-green);
    opacity: 0.5;
    transition: all 0.3s ease;
    margin: 0 5px;
}

.carousel-indicators button.active {
    opacity: 1;
    transform: scale(1.2);
    background-color: var(--medium-green);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .testimonial-card {
        padding: 30px;
    }

    .carousel-control-prev {
        left: 10px;
    }

    .carousel-control-next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: 25px;
        margin: 0 5px;
    }

    .client-img-wrapper {
        width: 120px;
        height: 120px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }

    .carousel-indicators {
        bottom: -50px;
    }
}

@media (max-width: 576px) {
    .testimonial-card {
        padding: 20px 15px;
    }

    .testimonial-content p {
        font-size: 1rem !important;
        line-height: 1.6;
    }

    .carousel-control-prev {
        left: 5px;
    }

    .carousel-control-next {
        right: 5px;
    }
}

/* Testimonials Section End */
/* Gallery Section Start */

/* Hero Section */
.gallery-hero {
    height: 100vh;
    min-height: 800px;
    max-height: 1200px;
    background: linear-gradient(rgba(26, 71, 42, 0.85), rgba(46, 125, 50, 0.8)), url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
    position: relative;
    padding-top: 80px;
}

.gallery-hero-content {
    max-width: 950px;
    margin: 0 auto;
    padding: 20px;
    animation: fadeUp 1.2s ease;
    position: relative;
    z-index: 2;
    width: 100%;
}

.gallery-hero h1 {
    font-size: 4rem;
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 700;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.gallery-hero p {
    font-size: 1.5rem;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    opacity: 0.95;
    padding: 0 10px;
}

/* Video Gallery */
.video-gallery-section {
    background-color: var(--off-white);
}

.video-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.video-item {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 25px var(--shadow);
    transition: all 0.4s ease;
    height: 250px;
    opacity: 0;
    transform: translateY(30px);
}

.video-item.show {
    opacity: 1;
    transform: translateY(0);
}

.video-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-hover);
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--medium-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    opacity: 0.9;
}

.video-item:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(26, 71, 42, 0.9), transparent);
    color: var(--white);
    transform: translateY(20px);
    transition: transform 0.5s ease;
}

.video-item:hover .video-overlay {
    transform: translateY(0);
}

@media (max-width: 992px) {
    .video-gallery {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .video-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .video-item {
        height: 200px;
    }
}