﻿:root {
    --primary: #16989A;
    --secondary: #16989A;
    --dark: #12263f;
    --light: #f9fbfd;
    --accent: #16989A;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
}

    /* Apply the gradient overlay */
    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: linear-gradient(to left, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.9));
        z-index: 1;
        pointer-events: none;
    }

/* Video behind gradient */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Content above gradient and video */
.hero-content {
    width: 100%;
    z-index: 2;
    position: relative; /* Required for pseudo-elements */
    display: inline-block; /* Ensures the lines wrap the text properly */
    padding: 10px 60px;
}

    .hero-content::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 3px; /* Thickness of the line */
        height: 100%; /* Length of the vertical part */
        background: white;
    }

.hero h1 {
    font-size: 3rem;
    font-weight: bolder;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease forwards 0.3s;
    color: white;
    position: relative; /* Required for pseudo-elements */
    display: inline-block; /* Ensures the lines wrap the text properly */
    padding: 10px 20px; /* Adds space around the text for the lines */
    max-width: 579px;
}

    /* Top-left corner line */
    .hero h1::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 20px; /* Length of the horizontal part */
        height: 3px; /* Thickness of the line */
        background: white;
    }

    /* Top-left vertical line */
    .hero h1::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 3px; /* Thickness of the line */
        height: 20px; /* Length of the vertical part */
        background: white;
    }

    /* Bottom-right corner line (requires an additional wrapper or another pseudo-element) */
    .hero h1 span::before {
        content: "";
        position: absolute;
        bottom: 0;
        right: 0;
        width: 20px;
        height: 3px;
        background: white;
    }

    .hero h1 span::after {
        content: "";
        position: absolute;
        bottom: 0;
        right: 0;
        width: 3px;
        height: 20px;
        background: white;
    }

    .hero h1 span {
        color: #009999;
    }

.hero p {
    font-size: 20px;
    color: white;
    font-weight: bolder;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.6s;
    text-align: justify;
    max-width: 579px;
    font-family: 'Segoe UI';
    line-height: 1.2;
}



/* Animation */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero {
        justify-content: center;
        text-align: center;
    }

    .hero-content {
        max-width: 90%;
    }

    .hero h1 {
        font-size: 2rem;
        color: white;
    }

    .hero p {
        font-size: 1rem;
        color: white;
    }
    .row {
        flex-direction: column;
    }
}


.our-vision {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

    .our-vision::before {
        content: '';
        filter: brightness(50%);
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 80%, rgba(0,0,0,0) 100%);
        mask-image: linear-gradient(to right, rgba(0,0,0,1) 10%, rgba(0,0,0,1) 30%, rgba(0,0,0,0) 100%);
    }

.vision-container {
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.vision-content {
    max-width: 800px;
    background: white;
    padding: 10px;
    border-radius: 10px;
}

    .vision-content p {
        color: rgba(119, 119, 119, 1);
        font-size: 1.2rem;
        line-height: 1.8;
        opacity: 0.9;
        position: relative;
        text-align: justify;
    }

.solutions-section-title {
    text-align: center;
    font-weight: bold;
    margin-bottom: 30px;
}



    .solutions-section-title h2 {
        font-size: 2.2rem;
        color: #086d6e;
        display: inline-block;
        background: #086d6e;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }



        .solutions-section-title h2::after {
            content: '';
            display: block;
            width: 100px;
            height: 4px;
            background: #086d6e;
            margin: 10px auto 0;
            border-radius: 2px;
        }


/* Fix for header visibility */
header {
    position: sticky;
    z-index: 1000; /* Ensure header stays above everything */
}

/* Benefits Section */

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    transform: translateY(5px);
    height: 330px;
    margin-bottom: 15px;
    width: 330px;
    margin-right: 30px;
}

    .benefit-card.animated {
        animation: fadeInUp 0.8s ease forwards;
    }

    .benefit-card:hover {
        transform: translateY(-1px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

.benefit-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.benefit-card h3 {
    margin-bottom: 1rem;
}

.benefit-card p {
    font-size: 1.2rem;
    font-family: 'Segoe UI';
    color: #707070;
}

.certi-title {
    font-size: 1.5rem;
    color: white;
    font-weight: bold;
}


.certiimages img {
    max-width: 100%;
    cursor: pointer;
    border: 2px solid #ccc;
    border-radius: 8px;
    transition: transform 0.3s;
    height: 400px;
    margin-right: 15px;
    margin-top: 20px;
}

    .certiimages img:hover {
        transform: scale(1.05);
    }

/* Prevent background scrolling when class is active */
body.no-scroll {
    overflow: hidden;
}

/* Modal setup */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
    cursor: zoom-out;
}

    /* Display modal when triggered */
    .lightbox-modal.active {
        display: flex;
    }

    /* Image in modal */
    .lightbox-modal img {
        max-width: 90%;
        max-height: 90%;
        border-radius: 10px;
        box-shadow: 0 0 20px rgba(255,255,255,0.2);
        margin-top: 100px;
    }


.core-values {
    align-items: center;
    justify-content: flex-end; /* Align content to the right */
    position: relative;
    overflow: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 100%;
    margin: 0 auto;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

    .core-values::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url(/assets/images/IMAGES/Aboutus/CV.jpg);
        background-size: cover;
        background-position: center;
        background-blend-mode: multiply; /* Darkens the image under the gradient */
        filter: brightness(30%);
    }


.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.value-card {
    background: #9b07072b;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(18, 38, 63, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(18, 38, 63, 0.05);
    position: relative;
    overflow: hidden;
    text-align: center;
}

    .value-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, var(--primary), var(--accent));
    }

    .value-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(18, 38, 63, 0.15);
    }

.value-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.value-card h3 {
    font-size: 1.5rem;
    color: #16989A;
    margin-bottom: 1rem;
    font-weight: bold;
    position: relative;
    padding-bottom: 0.8rem;
}

    .value-card h3::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 3px;
        background: linear-gradient(90deg, var(--primary), var(--accent));
        border-radius: 3px;
    }

.value-card p {
    color: #ffffff;
    line-height: 1.6;
    font-size: 1.2rem;
    margin-top: 1rem;
}

.hexagon-mask {
    -webkit-clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.hexagon-icon {
    font-size: 2.5rem;
    color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

    .section-header h2 {
        font-size: 2.8rem;
        color: var(--dark);
        font-weight: 800;
        position: relative;
        display: inline-block;
        background: linear-gradient(90deg, var(--primary), var(--accent));
        color: transparent;
    }

    .section-header p {
        color: rgba(119, 119, 119, 1);
        font-size: 1.4rem;
        max-width: 700px;
        margin: 0 auto;
        line-height: 1.6;
    }
/* Carousel styles */
.sliding-paragraphs-container {
    width: 579px;
    overflow: hidden;
    position: relative;
    height: 200px; /* Adjust as needed */
}

.sliding-paragraphs {
    display: flex;
    width: 300%;
    transition: transform 0.5s ease;
}

    .sliding-paragraphs p {
        font-size: 1.5rem;
        margin-bottom: 3rem;
        width: 33.33%;
        box-sizing: border-box;
        color: white; /* Changed from black to white */
        font-weight: bolder;
        text-align: justify;
        flex-shrink: 0;
        line-height: 1.5rem;
    }

.carousel-nav {
    position: absolute;
    bottom: 1px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

    .carousel-nav button {
        background: rgba(7, 102, 98, 0.5);
        border: none;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        color: white;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.3s;
    }

        .carousel-nav button:hover {
            background: rgba(7, 102, 98, 1);
        }

.features-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.top-features, .bottom-features {
    display: grid;
    gap: 2rem;
}

.top-features {
    grid-template-columns: repeat(4, 0fr);
    margin-bottom: 2rem;
    justify-content: center;
}

.bottom-features {
    grid-template-columns: repeat(3, 1fr);
    margin: 0 auto;
    max-width: 900px;
}

.feature-card {
    background: #4134ab42;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 5px 15px rgba(18, 38, 63, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    position: relative;
    overflow: hidden;
    text-align: center;
    z-index: 1;
    width: 280px;
    height: 335.5px;
}

    .feature-card:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 15px 30px rgba(18, 38, 63, 0.1);
    }

.feature-icon {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: #16989A;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.8rem;
}

    .feature-card h3::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 3px;
        background: linear-gradient(90deg, var(--primary), var(--accent));
        border-radius: 3px;
    }

.feature-card p {
    color: white;
    line-height: 1.6;
    font-size: 1.2rem;
    margin-top: 1rem;
}

.connector-line {
    position: absolute;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    height: 2px;
    width: 100%;
    left: 0;
    top: 50%;
    z-index: -1;
    opacity: 0.1;
}

@media (max-width: 1024px) {
    .top-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .bottom-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@@media (max-width: 768px) {
    .top-features, .bottom-features {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }
}

.section h3 {
    text-align: center;
    margin-bottom: 2rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.4rem;
    margin-top: 60px;
}

.section-content {
    max-width: 1600px;
    margin: 0 auto;
}

    .section-content h3 {
        color: rgba(119, 119, 119, 1);
        font-family: 'Segoe UI';
    }


.heading-container {
    position: relative;
    display: inline-block;
    background-color: white;
    border-radius: 10px;
    margin-left: -100px;
    width: 900px;
    margin-top: 185px;
}

    .heading-container h3 {
        font-family: 'Segoe UI', sans-serif;
        font-size: 20px;
        text-align: justify;
        color: rgba(119, 119, 119, 1);
        padding: 20px;
    }

.heading-container1 {
    position: relative;
    display: inline-block;
    background-color: white;
    border-radius: 10px;
    z-index: 1;
}

    .heading-container1 h3 {
        font-family: 'Segoe UI', sans-serif;
        font-size: 20px;
        text-align: justify;
        color: rgba(119, 119, 119, 1);
    }


.background-heading {
    font-size: 2.2rem;
    font-weight: bold;
    color: #086d6e; /* Very light color for background */
    font-family: 'Segoe UI', sans-serif;
    margin-left: 10px;
    margin-bottom: 20px;
    text-align: center;
}

.why-choose-us {
    align-items: center;
    justify-content: flex-end; /* Align content to the right */
    position: relative;
    overflow: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 100%;
    margin: 0 auto;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

    .why-choose-us::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url(/assets/images/IMAGES/Aboutus/wp.jpg);
        background-size: cover;
        background-position: center;
        background-blend-mode: multiply; /* Darkens the image under the gradient */
        filter: brightness(30%);
    }

/* Responsive adjustments */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 2.5rem; /* Adjusted for medium screens */
    }

    .hero p {
        font-size: 1.2rem; /* Adjusted for medium screens */
    }

    .benefit-card {
        width: 100%; /* Full width on smaller screens */
        margin-right: 0; /* Remove right margin */
    }

    .value-card {
        width: 100%; /* Full width on smaller screens */
    }

    .feature-card {
        width: 100%; /* Full width on smaller screens */
    }
}

@media (max-width: 992px) {
    .hero {
        flex-direction: column; /* Stack content vertically */
        justify-content: center; /* Center content */
    }

    .hero-content {
        padding: 20px; /* Adjust padding */
    }

    .heading-container, .heading-container1 {
        width: 90%; /* Adjust width for smaller screens */
        margin-left: 0; /* Center the container */
        margin-top: 0px !important;
    }

    .vision-content {
        padding: 20px; /* Adjust padding */
    }

    .certiimages img {
        width: 100%; /* Make images responsive */
        height: auto; /* Maintain aspect ratio */
        margin: 10px 0; /* Add margin for spacing */
    }
}

@media (max-width: 768px) {
    .solutions-section-title h2 {
        font-size: 1.8rem; /* Smaller font size */
    }

    .section-header h2 {
        font-size: 2rem; /* Smaller font size */
    }

    .hero h1 {
        font-size: 2rem; /* Smaller font size */
    }

    .hero p {
        font-size: 1rem; /* Smaller font size */
    }

    .value-card, .feature-card, .benefit-card {
        margin-bottom: 20px; /* Add margin for spacing */
    }

    .values-grid {
        grid-template-columns: 1fr; /* Single column layout */
    }

    .top-features, .bottom-features {
        grid-template-columns: 1fr; /* Single column layout */
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.5rem; /* Smaller font size */
    }

    .hero p {
        font-size: 0.9rem; /* Smaller font size */
    }

    .heading-container, .heading-container1 {
        width: 100%; /* Full width */
        margin-top: 0px !important;
    }

    .vision-content {
        padding: 10px; /* Adjust padding */
    }
}

/* Responsive CSS for stacking images above paragraphs in ABOUT US and OUR VISION sections */

@media (max-width: 768px) {
    /* Stack all .row children vertically */
    section > .row {
        display: flex !important;
        flex-direction: column !important;
    }
        /* Make all col-6 full width for stacking */
        section > .row > .col-6 {
            flex: 0 0 100% !important;
            max-width: 100% !important;
            margin: 0 !important;
            padding: 0 !important;
        }
    /* ABOUT US section: second section on the page */
    section:nth-of-type(2) > .row > .col-6.d-flex.justify-content-start {
        order: 0; /* Image column first */
    }

    section:nth-of-type(2) > .row > .col-6 > .heading-container1 {
        order: 1; /* Text column second */
    }
    /* Make sure text column order is after image */
    section:nth-of-type(2) > .row > .col-6:not(.d-flex.justify-content-start) {
        order: 1;
    }
    /* OUR VISION section: third section on the page (#vision) */
    #vision > .row > .col-6.d-flex.justify-content-end {
        order: 0; /* Image column first */
    }

    #vision > .row > .col-6 > .heading-container {
        order: 1; /* Text column second */
    }
    /* Make sure text column order is after image */
    #vision > .row > .col-6:not(.d-flex.justify-content-end) {
        order: 1;
    }
    /* Responsive images settings */
    section > .row > .col-6 img {
        width: 100% !important;
        height: auto !important;
        border-radius: 10px;
        margin-bottom: 1rem;
        object-fit: cover;
        display: block;
    }
    /* Text container adjustments */
    section > .row > .col-6 > div {
        padding: 15px 10px !important;
        margin-bottom: 40px;
    }
        /* Headings styles for better readability */
        section > .row > .col-6 > div h3 {
            font-size: 1.1rem !important;
            line-height: 1.4 !important;
            margin-top: 0 !important;
            margin-bottom: 0.8rem !important;
        }
        /* Paragraphs style */
        section > .row > .col-6 > div p {
            color: rgba(119, 119, 119, 1) !important;
            text-align: justify !important;
            margin-bottom: 1rem !important;
            font-size: 1rem;
            line-height: 1.5;
        }
}

@media (max-width: 480px) {
    /* Further font size reductions for small screens */
    section > .row > .col-6 > div h3 {
        font-size: 1rem !important;
        line-height: 1.3 !important;
    }

    section > .row > .col-6 > div p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }
}

/* Add these media queries at the end of your existing CSS */

/* Medium devices (tablets, 768px and below) */
@media (max-width: 768px) {
    /* Hero section adjustments */
    .hero {
        height: auto;
        padding: 100px 20px 50px;
    }

    .hero-content {
        padding: 20px !important;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 1rem;
    }
    /* About Us and Our Vision sections */
    section > .row {
        flex-direction: column !important;
    }

    .heading-container,
    .heading-container1 {
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-top: 20px !important;
    }

    .col-6 {
        width: 100% !important;
        padding: 0 15px !important;
    }

        .col-6 img {
            width: 100% !important;
            height: auto !important;
            margin-bottom: 20px;
        }
    /* Core Values section */
    .values-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    /* Why Choose Us section */
    .top-features,
    .bottom-features {
        grid-template-columns: 1fr !important;
    }

    .feature-card {
        width: 100% !important;
        margin-right: 0 !important;
        margin-bottom: 15px;
    }
    /* Quality section images */
    #vision .row {
        align-items: center;
    }

        #vision .row img {
            max-width: 100%;
            margin-bottom: 15px;
        }
    /* Sustainability section */
    .vision-content {
        padding: 20px !important;
    }

    .certiimages {
    }

        .certiimages img {
            max-width: 100px;
            height: auto;
            margin-right: 0 !important;
            margin-bottom: 15px;
        }
}

/* Small devices (phones, 576px and below) */
@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .background-heading {
        font-size: 1.8rem;
    }

    .heading-container h3,
    .heading-container1 h3 {
        font-size: 1rem !important;
        padding: 15px !important;
    }

    .solutions-section-title h2 {
        font-size: 1.8rem !important;
    }

    .section-header p {
        font-size: 1rem !important;
    }

    .value-card,
    .feature-card {
        padding: 1.5rem !important;
    }

        .value-card h3,
        .feature-card h3 {
            font-size: 1.3rem !important;
        }

        .value-card p,
        .feature-card p {
            font-size: 1rem !important;
        }
}

/* Extra small devices (phones, 400px and below) */
@media (max-width: 400px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .hero-content::after {
        display: none;
    }

    .background-heading {
        font-size: 1.5rem;
    }

    .solutions-section-title h2 {
        font-size: 1.5rem !important;
    }
}
/* Add this to your existing media queries */
@media (max-width: 768px) {
    /* Sustainability Section - Mobile Optimization */
    .our-vision#vision {
        padding: 2rem 1rem !important;
        margin-top: 30px !important;
        margin-bottom: 30px !important;
    }

    .vision-container {
        padding: 0 !important;
    }

    .vision-content {
        padding: 20px 15px !important;
        margin: 0 auto !important;
        width: 100% !important;
    }

        .vision-content p {
            font-size: 1rem !important;
            line-height: 1.6 !important;
            text-align: left !important;
            margin-bottom: 15px !important;
        }

    .certiimages {
        margin-top: 20px !important;
    }

        .certiimages img {
            height: auto !important;
            margin: 10px 0 !important;
        }
    /* Lightbox modal adjustments */
    .lightbox-modal img {
        max-width: 95% !important;
        max-height: 80vh !important;
        margin-top: 60px !important;
    }
}

@media (max-width: 576px) {
    /* Further adjustments for very small screens */
    .vision-content p {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
    }

    .solutions-section-title h2 {
        font-size: 1.5rem !important;
        margin-bottom: 15px !important;
    }
}

@media (max-width: 400px) {
    /* Tiny screen optimizations */
    .vision-content {
        padding: 15px 10px !important;
    }

        .vision-content p {
            font-size: 0.9rem !important;
        }
}
/* Add this to your existing media queries */
@media (max-width: 768px) {
    /* Sustainability Section - Match About Us/Vision Layout */
    .our-vision#vision .row {
        margin: 0 !important;
    }

    .our-vision#vision .col-6 {
        width: 100% !important;
        padding: 0 15px !important;
    }

    .our-vision#vision .vision-content {
        width: 100% !important;
        margin: 20px 0 !important;
        padding: 20px !important;
        order: 2; /* Text comes after image */
    }

    .our-vision#vision .certiimages {
        order: 1; /* Images come first */
        display: flex;
        margin: 0 auto 20px !important;
        width: 100% !important;
    }

        .our-vision#vision .certiimages img {
            width: 100% !important;
            max-width: 100px !important;
            height: auto !important;
            margin: 0 0 15px 25px !important;
        }
    /* Match the heading style */
    .our-vision#vision .solutions-section-title h2 {
        font-size: 1.8rem !important;
        margin-bottom: 1rem !important;
    }
    /* Match paragraph styling */
    .our-vision#vision .vision-content p {
        font-size: 1rem !important;
        line-height: 1.6 !important;
        color: rgba(119, 119, 119, 1) !important;
        text-align: justify !important;
        margin-bottom: 15px !important;
    }
}

@media (max-width: 576px) {
    .our-vision#vision .vision-content {
        padding: 15px !important;
    }

        .our-vision#vision .vision-content p {
            font-size: 0.95rem !important;
        }

    .our-vision#vision .solutions-section-title h2 {
        font-size: 1.6rem !important;
    }
}
