* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

header {
    background-image: url(images/in-header-background.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 8px 0;
}

/* General Styles */
header .head1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
}

header .head1 img {
    width: 180px;
    height: auto;
}

header .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

header .hamburger span {
    height: 3px;
    width: 25px;
    background-color: #0D8E45;
    margin: 4px 0;
    transition: 0.3s;
}

header nav ul {
    display: flex;
    align-items: center;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

header nav ul li a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
}

header nav ul li a:hover {
    color: #0D8E45;
}

header nav ul li .active {
    font-weight: 500;
    color: #0d8e45;
}

/* Sticky Navbar */
header {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: #fff;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
}

header .head-mail {
    display: flex;
    align-items: center;
    gap: 10px;
}

.head-mail a {
    text-decoration: none;
    color: #000;
}

.head-mail p {
    margin-bottom: 0px;
    font-size: 14px;
    font-weight: 500;
}

header .help-p {
    color: #0D8E45;
    animation: text-scale 5s ease-out infinite;


}

header .nav-link {
    padding: 0;
    color: #000;
}

header .nav-link:hover {
    color: #0D8E45;
}

header .nav-link:hover {
    color: #0D8E45;
}

header .nav-link:focus {
    color: #000000;
}

header .dropdown-menu li a:hover {
    background-color: #0d8e45;
    color: #F7F7F7;
    border-left: 5px solid #194e5b;
}

header .dropdown-menu.show {
    transform: translate(-33px, 40px) !important;
}

header .dropdown-item {
    text-align: center;
}


@media (max-width: 768px) {

    header .head1 img {
        width: 130px;
        padding: 10px;
    }

    header .head-mail {
        display: none;
    }

    header .hamburger {
        display: flex;
        order: 3;
    }

    header nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 40px;
        right: 0;
        width: 100%;
        background-color: #0D8E45;
        text-align: center;
        padding: 10px 0;
    }

    header nav ul li {
        margin: 10px 0;
    }

    header nav ul li a {
        color: #fff;
        padding: 10px;
    }

    header nav ul li a:hover {
        color: #fff;
        background-color: #194e5b;
    }

    header nav ul.show {
        display: flex;
    }

    header .nav-link {
        padding: 0;
        color: #ffffff;
    }

    header .dropdown-menu.show {
        transform: translate3d(-113px, 25px, 0px) !important;
    }

    header .dropdown-menu {
        min-width: 19rem;
    }

    header nav ul li .active {
        font-weight: 600;
        color: #fff;
    }
}


/* --------------------banner------------------- */

.home-banner .slider {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.home-banner .slides {
    width: 500%;
    height: 100%;
    display: flex;
}

.home-banner .slides input {
    display: none;
}

/* Slide images */
.home-banner .slide {
    width: 20%;
    transition: 1s;
    position: relative;
}

.home-banner .slide img {
    width: 100%;
    height: 93%;
    /* border-radius: 10px; */
    object-fit: cover;
}

/* Banner content */
.home-banner .banner-content {
    position: absolute;
    top: 50%;
    left: 31%;
    transform: translate(-50%, -50%);
    text-align: left;
    color: white;
}


.home-banner .banner-content h2 {
    font-size: 46px;
    margin-bottom: 20px;
}

.home-banner .banner-content p {
    padding-bottom: 10px;
}

.home-banner .banner-btn {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: transparent;
    color: white;
    text-decoration: none;
    font-size: 16px;
    border-radius: 50px;
    border: 1px solid #fff;
}

.home-banner .banner-btn:hover {
    background-color: #0d8e45;
}

/* Auto navigation dots */
.home-banner .navigation-auto {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: -40px;
}

.home-banner .navigation-auto div {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    margin: 10px;
    cursor: pointer;
    transition: background 0.5s;
}

.home-banner #radio1:checked~.first {
    margin-left: 0;
}

.home-banner #radio2:checked~.first {
    margin-left: -20%;
}

.home-banner #radio3:checked~.first {
    margin-left: -40%;
}

.home-banner #radio4:checked~.first {
    margin-left: -60%;
}

/* Manual navigation buttons */
.home-banner .navigation-manual {
    position: absolute;
    width: 100%;
    margin-top: -100px;
    display: flex;
    justify-content: center;
}

.home-banner .manual-btn {
    border: 2px solid white;
    padding: 5px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.5s;
    margin: 10px;
}

.home-banner .manual-btn:hover {
    background: white;
}

/* Automatic navigation */
.home-banner .auto-btn1,
.auto-btn2,
.auto-btn3,
.auto-btn4 {
    background: #fff;
}

@media (max-width: 768px) {
    .home-banner .banner-content h2 {
        font-size: 38px;
        margin-bottom: 0px;
    }

    .home-banner .banner-content {
        left: 45%;
    }

    .home-banner .banner-btn {
        font-size: 14px;
    }

    .home-banner .slider {
        height: 450px;
    }

}

/* ========about======= */
.home-about .img-div {
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-about .img-div img {
    width: 90%;
}

.home-about {
    margin: 100px 0;
}

.home-about .data-div {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
}




@keyframes text-scale {
    0% {
        transform: scale(.6);
    }

    50% {
        transform: scale(1.0);
    }

    100% {
        transform: scale(.8);
    }
}

.h2-image {
    animation: text-scale 8s ease-in-out infinite;
}



.h2-image img {
    width: 15px;
    height: auto;
    margin-right: 5px;
}

.h2-image {
    font-size: 18px;
    color: #0d8e45;
}

.home-about .data-div h3 {
    font-size: 30px;
    font-weight: 600;
    line-height: 45px;
}


/* ---------------- */
.home-about .data-div .tab-container {
    width: 100%;
}

.home-about .data-div .tabs {
    display: flex;
    border: 1px solid #ccc;
    border-radius: 50px;
}

.home-about .data-div .tab-button {
    flex: 1;
    padding: 10px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.home-about .data-div .tab-button:hover {
    color: #1D8F2C;
}

.home-about .data-div .tab-button.active {
    background-color: #0d8e45;
    color: #fff;
    border-radius: 50px 0px 50px 50px;
}

.home-about .data-div .tab-content p {
    font-size: 13px;
    line-height: 35px;
    font-weight: 400;
    text-align: justify;
}

.home-about .data-div .tab-content {
    display: none;
    padding: 20px 10px;
    border-top: none;
}

.home-about .data-div .tab-content.active {
    display: block;
}

/* ------------ */
@media (max-width: 768px) {

    .home-about {
        margin: 20px 0;
    }

    .home-about .data-div {
        align-items: center;
        margin-top: 40px;
        text-align: center;
    }

    .home-about .data-div h3 {
        font-size: 24px;
    }
}

/*  */
.home-products {
    background-color: #F7F7F7;
    padding-top: 80px;
    padding-bottom: 150px;
    text-align: center;
}

.home-products h3 {
    font-size: 30px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 50px;
}

.home-products .carousel-container {
    margin: auto;
    overflow: hidden;
    width: 100%;
    position: relative;
}

.home-products .carousel-slide {
    display: flex;
    gap: 40px;
    transition: transform 15.1s linear;
    /* Smooth continuous transition */
    width: 100%;
}


.home-products .carousel-slide .product {
    min-width: calc(32.333% - 10px);
    /* 3 items per view */
    /* margin: 0 5px; */
    /* background-color: #fff; */
    border-radius: 10px;
}

.home-products .carousel-slide img {
    width: 100%;
    border-radius: 10px;
    height: auto;
}

.home-products .products-details {
    padding: 20px;
    text-align: center;
    /* background-color: #0d8e45; */
    color: #000000;
}


.home-products .products-details h5 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0;
}

.home-products .carousel-buttons {
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    float: right;
    gap: 10px;
}

.home-products .carousel-buttons button {
    background: none;
    border: none;
    cursor: pointer;
}

.home-products .carousel-buttons button svg {
    color: #0d8e45;
    width: 40px;
    height: 40px;
}




/* --------------------------- */
.happy-client {
    background-image: url(images/background.webp);
    padding: 80px;
}

.happy-client h6 {
    font-size: 40px;
    color: #fff;
    font-weight: 600;
}

.happy-client h6:hover {
    color: #86ffbb;
}

.happy-client p {
    font-size: 16px;
    color: #fff;
    margin-bottom: 0;
    font-weight: 600;
}

.happy-client .experiance {
    display: flex;
    align-items: center;
    gap: 10px
}

.happy-client .experiance svg {
    width: 55px;
    height: auto;
}

.happy-client .experiance svg:hover {
    scale: 1.07;
}

.happy-client .all-client {
    display: flex;
    align-items: center;
    justify-content: space-around;
}




@media (max-width: 768px) {
    .home-products .carousel-slide .product {
        min-width: 85%;
    }

    .home-products {
        padding: 60px 0;
        text-align: center;
    }

    .happy-client {
        padding: 50px;
        background-image: url(images/call-to-vacction.webp) !important;
    }

    .happy-client .all-client {
        flex-direction: column;
        gap: 106px;
        align-items: center;
        justify-content: center;
    }

    .home-products .carousel-buttons {
        padding-top: 30px;
    }

    .home-products .carousel-slide {

        transition: transform 10.1s linear;
        /* Smooth continuous transition */
        width: 100%;
    }

}

/* ----------------- */
.home-commitments {
    background-image: url(images/background2.webp);
    padding: 100px 0;
    text-align: center;
}

.home-commitments h3 {
    font-size: 30px;
    font-weight: 600;
    padding: 15px 0;
}

.committ {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
    bottom: 90px;
}

.committ1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    gap: 30px;
    padding: 40px 0;
    width: 20%;
}

.committ1:hover {
    transform: translateY(-3%);
    animation: text-scale 3s ease-out;


}

.committ1 p {
    text-align: center;
    font-size: 15px;
    font-weight: 400;
}

.committ svg {
    width: 50px;
    height: auto;
}

@media (max-width: 768px) {

    .home-commitments {
        padding: 50px 0;
    }

    .home-commitments h3 {
        font-size: 21px;
    }

    .committ {
        flex-direction: column;
        bottom: 0;

    }

    .committ1 {
        width: 80%;
    }

}


/* ----------projects--------- */
.home-projects {
    margin: 100px 0;
    text-align: center;
}

.home-projects h3 {
    font-size: 32px;
    font-weight: 600;
    padding: 10px 0;
}

.home-projects p {
    font-size: 17px;
    font-weight: 400;
}

/* ================ */
.home-projects .all-projects {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.home-projects .category {
    font-size: 14px !important;
    margin-bottom: 0;
    text-align: start;
}

.home-projects .title {
    font-size: 12px !important;
    margin-bottom: 0;
    text-align: start;
}

.home-projects .grid-item {
    position: relative;
}

.home-projects .grid-item img {
    width: 100%;
    height: 250px;
}



.home-projects .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: #fff;
    padding: 10px;
    display: flex;
    flex-direction: column;
    background: linear-gradient(0deg, black, transparent);
}

.home-projects .category {
    font-size: 14px;
    text-transform: uppercase;
}

.home-projects .title {
    font-size: 18px;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .home-projects .all-projects {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .home-projects .all-projects {
        grid-template-columns: 1fr;
    }
}

/* ------------ */
.callto {
    background-image: url(images/call-banner.webp);
    color: #fff;
}

.callto .image {
    align-items: center;
    display: flex;
    justify-content: center;
}

.callto .image img {
    width: 140%;

}

.callto .image img:hover {
    scale: 1.08;
}

.callto .data {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    padding: 50px 0;
}

.call-btn {
    padding: 8px 15px;
    background-color: transparent;
    color: white;
    text-decoration: none;
    font-size: 14px;
    border-radius: 50px;
    border: 1px solid #fff;
}

.call-btn:hover {
    background-color: #fff;
    color: #1D8F2C;
}

.callto p {
    font-size: 14px;
    line-height: 30px;
    padding-top: 10px;
}

@media (max-width: 768px) {
    .callto .image {
        display: none;
    }

    .callto .data {
        padding: 20px;
    }

    .home-projects {
        margin: 50px 0;
    }

}

/* ------------------------ */
.keypioints {
    margin: 100px 0;
    text-align: center;
}

.keypioints h3 {
    font-size: 30px;
    font-weight: 600;
    padding: 10px 0;
}

.keypioints .one img {
    width: 100%;
    height: 280px;
}

.keypioints .one img:hover {
    animation: text-scale 5s ease-out infinite;

}

.keypioints .one h4 {
    color: #0D8E45;
    font-size: 18px;
    text-transform: capitalize;
    padding-top: 10px;
}

.keypioints .one p {
    font-size: 14px;
    font-weight: 500;
    padding: 10px 0;
    line-height: 32px;
}

.keypioints .one h4:hover {
    color: #194e5b;
}

.keypioints .one .view {
    padding: 10px 20px;
    background-color: transparent;
    color: #0d8e45;
    text-decoration: none;
    font-size: 12px;
    border-radius: 50px;
    border: 1px solid #0d8e45;
    font-weight: 600;
    text-transform: uppercase;
}

.keypioints .one .view:hover {
    color: #fff;
    background-color: #0d8e45;
}

.keypioints .one {
    text-align: left;
}

.keypioints svg {
    width: 20px;
}

.keypioints svg:hover {
    width: 22px;
}

@media (max-width: 768px) {
    .keypioints {
        margin: 50px 0;
    }

    .keypioints .one {
        text-align: left;
        margin: 20px 0;
    }
}


footer {
    background-color: #0d8e45;
    padding-top: 50px;
    color: #fff;
}

footer .first .logo {
    width: 200px;
    height: auto;
    margin-bottom: 20px;
}

footer p {
    font-size: 14px;
    line-height: 32px;
    margin-bottom: 0px;

}

footer .social {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 15px;
    margin-top: 20px;
}

footer .social img:hover {
    scale: 1.2;
}

footer h6 {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    padding-bottom: 20px;
}

footer a {
    font-size: 14px;
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    color: #194e5b;
    font-weight: 600;

}
footer .second {
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;

}
footer .links {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
    padding-left: 15px;
}

footer .line {
    border-bottom: 1px solid #fff;
    padding: 20px;
}

footer .foot2 p {
    text-align: center;
    padding: 10px;
    margin-bottom: 0;
}



footer .add {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

footer .add i {
    font-size: 20px;
    color: #fff;
}

footer .add i:hover {
    color: #194e5b;
}

footer .add.one {
    display: flex;
    align-items: start;
}

footer .add.one i {
    margin-top: 10px;
}

@media (max-width: 768px) {
    footer .second {
        align-items: start;
        padding: 20px 10px;
    }

    footer .links {
        padding-left: 0;
    }
}


/* about.html */
.banner {
    background-image: url(images/banner.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 40vh;
    display: flex;
    align-items: end;
    justify-content: center;
}

.banner h2 {

    font-size: 38px;
    color: #fff;
    text-align: center;
    padding-bottom: 20px;
    font-weight: 600;

}

.about-us img {
    width: 100%;
    height: auto;
}

.about-us {
    margin: 50px 0;
}

.about-us h1 {
    font-size: 28px;
    line-height: 45px;
    font-weight: 600;
    margin-top:30px ;
    margin-bottom: 15px;
    text-align: center;
}

.about-us p {
    font-size: 13px;
    line-height: 35px;
    font-weight: 400;
    text-align: left;
}

.about-us h3 {
    color: #0D8E45;
    font-size: 24px;
}

.about-us h5 {
    font-size: 16px;
}

.missions,
.vissions {
    margin-bottom: 20px;
}

.mission-data {
    display: flex;
    align-items: start;
}

.mission-data svg {
    width: 60px;
    margin-top: 10px;
}

@media (max-width: 768px) {

    .about-us img {
        width: 100%;
    }

    .banner {
        height: 15vh;
    }

    .banner h2 {
        font-size: 28px;
    }

    .vissions {
        display: flex;
        flex-direction: column-reverse;

    }


}

/* ---certifiactions */
.banner.certifications {
    background-image: url(images/certificates.webp) !important;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 40vh;
    display: flex;
    align-items: end;
    justify-content: center;
}

.certification-img img {
    width: 70%;
    height: auto;
}

.certification-img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.certification {
    margin: 50px 0;
}

.certification p {
    font-size: 13px;
    line-height: 35px;
    font-weight: 400;
}

.certification-one {
    display: flex;
    align-items: start;
    gap: 10px;
}

.certification-one svg {
    width: 70px;
    margin-top: 8px;
    height: auto;
}

/* capabilites */
.Capabiliti {
    margin-top: 50px;
}

.Capabiliti img {
    width: 100%;
    height: auto;
}

.Capabiliti h3 {
    font-size: 20px;
    font-weight: 600;
}

.Capabiliti h4 {
    font-size: 24px;
    font-weight: 600;
    color: #0d8e45;
    line-height: 40px;
}

.Capabiliti p {
    font-size: 14px;
    line-height: 35px;
}

.Capabiliti .data {
    display: flex;
    align-items: left;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

.capa {
    margin-bottom: 100px;
}

.histo {
    display: flex;
    align-items: start;
    gap: 10px;
}

.histo svg {
    width: 70px;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .capa {
        margin-bottom: 10px;
    }

    .Capabiliti img {
        margin-bottom: 20px;
    }

    .capa {
        flex-direction: column-reverse;
    }

    .capa.reverse {
        flex-direction: row;
    }

    .Capabiliti h4 {
        font-size: 22px;
    }

    .Capabiliti h3 {
        font-size: 18px;
    }

    .Capabiliti svg {
        width: 20px;
    }

    .certification-img {
        margin-bottom: 20px;
    }
}

.banner.Distinctivenes {
    background-image: url(images/distictiveness-banner.webp) !important;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 40vh;
    display: flex;
    align-items: end;
    justify-content: center;
}

.Distinctive {
    margin: 50px 0;
}

.Distinctive img {
    width: 100%;
}

.Distinctive h3 {
    color: #0d8e45;
    font-size: 23px;
    font-weight: 600;
}

.Distinctive p {
    font-size: 14px;
    line-height: 34px;
}

.Distinctive .points {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 10px;
}

.Distinctive .points p {
    margin-bottom: 0;
}

.Distinctive .disti {
    margin: 50px 0;
}

.Distinctive .contents {
    display: flex;
    justify-content: center;
    flex-direction: column;

}

.Distinctive .contents {
    display: flex;
    justify-content: center;
    flex-direction: column;

}

.Distinctive .contents p {
    margin-bottom: 0px;
}

@media (max-width: 768px) {

    .banner.Distinctivenes {
        height: 15vh;
    }

    .Distinctive img {
        margin: 20px 0;
    }

    .Distinctive .disti {
        margin: 10px;
        padding: 10px !important;
    }

    .Distinctive .disti p {
        text-align: justify;
    }

    .Distinctive h3 {
        font-size: 18px;
        line-height: 30px;
        text-align: center;
    }

    .Distinctive .disti.one {
        display: flex;
        flex-direction: column-reverse;
    }

}

/* commitments */
.banner.Commitments {
    background-image: url(images/committment-banner.webp) !important;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 40vh;
    display: flex;
    align-items: end;
    justify-content: center;
}

.Commit {
    margin: 50px 0;
}

.Commit img {
    width: 100%;
    height: 95%;
}

.Commit img:hover {
    animation: text-scale 2s ease-in-out infinite;

}

.Commit h4 {
    color: #0d8e45;
    font-size: 23px;
    font-weight: 600;
}

.Commit h5 {
    color: #1D8F2C;
    font-size: 17px;
    font-weight: 400;
}

.Commit .boxes {
    display: flex;
    gap: 20px;

}

.Commit .boxes p {
    text-align: justify;
    margin-bottom: 0;
    line-height: 33px;


}

.Commit p {
    font-size: 14px;
    line-height: 38px;
    text-align: justify;
}

.Commit .box {
    padding: 10px 30px;
    border-radius: 10px !important;
    height: 335px;
}


.Commit .points p {
    margin-bottom: 0px !important;
}

.Commit .cards {
    margin-top: 80px;
}

@media (max-width: 768px) {
    .Commit .boxes {
        flex-direction: column;
    }

    .banner.Commitments {
        height: 15vh;
    }

    .Commit .first {
        display: flex;
        flex-direction: column-reverse;
    }

    .Commit .cards {
        margin-top: 40px;
    }

    .Commit .cards.one {
        display: flex;
        flex-direction: column-reverse;
    }
}

/* solutions */
.banner.Solutions {
    background-image: url(images/solutions-banner.webp) !important;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 40vh;
    display: flex;
    align-items: end;
    justify-content: center;
}

/* new solutions style */


.services-section {
    margin: 80px 0;
    /* text-align: center; */
}

.services-section h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;

}

.services-section p {
    font-size: 13px;
    line-height: 35px;
    font-weight: 400;
    margin-bottom: 40px;
    /* text-align: center; */
}

.services-grid {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.service-card {
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: auto;
    display: block;
}

.service-card h3 {
    margin: 1rem 0;
    font-size: 1.1rem;
    color: #333;
}

.service-card a {
    text-decoration: none;
}

.service-card a:hover {
    color: #0d8e45;
}

/* ------------end--------- */
@media (max-width: 768px) {
    .banner.Solutions {
        height: 15vh;
    }

    .products {
        grid-template-columns: 1fr;
    }
}

/* ------------------------- */

.banner.Projects {
    background-image: url(images/products-banner.webp) !important;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 40vh;
    display: flex;
    align-items: end;
    justify-content: center;
}

.our-Projects .full-projects {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
    align-items: center;
    justify-content: left;
}

/* Styling for tab buttons */
.our-Projects .tab-button {
    padding: 12px;
    cursor: pointer;
    text-align: center;
    border: none;
    outline: none;
    background-color: #fff;
    color: #1D8F2C;
    font-size: 12px;
    font-weight: 600;
}

.our-Projects .tab-button.active {
    background-color: #1D8F2C;
    /* Green background for active tab */
    color: #fff;
    padding: 10px;

}


/*  */


/* Modal styling */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.8); /* Black background with opacity */
    justify-content: center;
    align-items: center;
}

/* Modal content (image) */
.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    /* border-radius: 10px; */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: zoomIn 0.3s ease-in-out; /* Smooth zoom effect */
}

/* Close button */
.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    transition: color 0.3s ease-in-out;
}

.close:hover {
    color: #ccc;
}

/* Zoom animation */
@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}




/*  */
@keyframes text-scale {
    0% {
        transform: scale(.9);
    }

    50% {
        transform: scale(1.0);
    }

    100% {
        transform: scale(.9);
    }
}

.our-Projects .tab-button.active {
    animation: text-scale 3s ease-in-out infinite;
}

.our-Projects .tab-container {
    padding: 10px 0;
    border-bottom: .5px solid #789688;
}

.our-Projects .tab-content.active {
    display: block;
}

.our-Projects .tab-content {
    margin: 20px 0;
}


/* ------------------ */

.projects-images {
    position: relative;
    width: 370px;
    height: auto;
    overflow: hidden;
    /* Ensures image scaling stays within the container */
}

/* Image styling */
.card-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Overlay styling */
.hover-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 0.3);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
    box-sizing: border-box;

}

/* Text styles */
/* .hover-content h2 {
    margin: 0;
    font-size: 20px;
    font-weight: bold;
}

.hover-content p {
    font-size: 14px;
    text-align: center;
    margin: 10px 0 0;
} */

 
 .projects-images:hover .card-image {
    transform: scale(1.1);
}

.projects-images:hover .hover-content {
    opacity: 1;
}  



/* -----------------------*/

.our-Projects {
    margin: 50px 0;
}

@media (max-width: 768px) {

    .banner.Projects {
        height: 15vh;
    }

    .our-Projects .tab-content img {
        width: 100%;
        height: auto;
    }

    .our-Projects .tab-button {
        padding: 8px;
        text-align: unset;
        font-size: 11px;
    }

    .projects-images {
        gap: 10px;
    }

    .our-Projects {
        margin: 10px 0;
    }
}

/* downloads */
.banner.Downloads {
    background-image: url(images/downloads-banner.webp) !important;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 40vh;
    display: flex;
    align-items: end;
    justify-content: center;
}

.Download {
    margin: 50px 0;
}

.download-1 {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border-radius: 8px;
    padding: 15px;
    width: 350px;
    height: 460px;
    display: flex;
    /* align-items: center; */
    flex-direction: column;
    justify-content: space-evenly;
}

.download-1 h3 {
    font-size: 18px;
    line-height: 35px;
    margin-top: 10px;
    font-weight: 400;
}

.download-1 p {
    font-size: 14px;
    line-height: 30px;
}



.down-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    color: #0D8E45;
    border-radius: 5px;
    justify-content: center;
    border: 1px solid #0D8E45;

}

.down-btn a {
    text-decoration: none;
    color: #0D8E45;
}

.pdf-download {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 30px;
    flex-wrap: wrap;
}

/* .upload {
    background-color: #fff;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
    border-radius: 10px;
    padding: 30px 40px;
    margin-bottom: 50px;
}

.upload h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 30px;
}

.upload button {
    background-color: #0d8e45;
    padding: 8px 10px;
    border-radius: 4px;
    border: none;
    color: #fff;
    font-weight: 600;
} */

@media (max-width: 768px) {
    /* .upload h2 {
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 10px;
        line-height: 30px;
    }

    .Download {
        margin: 20px 0;
    }

    .upload {
        margin-bottom: 20px;
    }

    .banner.Downloads {
        height: 15vh;
    } */

    .modal-content {
        top: -150px;
    }
}

/* Contact */
.banner.Contacts {
    background-image: url(images/contacts-banner.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 40vh;
    display: flex;
    align-items: end;
    justify-content: center;
}

.Contact-Us .address {
    display: flex;
    align-items: center;
    gap: 15px;

}

.Contact-Us .address svg {
    width: 30px;
}

.Contact-Us .address svg:hover {
    scale: 0.9;
}

.Contact-Us .address p {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 32px;
    padding: 30px 0;
    border-bottom: 1px solid #789688;
    width: 70%;
}

.Contact-Us h5 {
    font-size: 16px;
    color: #0d8e45;
    margin-bottom: 20px;
}

.Contact-Us h6 {
    font-size: 24px;
    font-weight: 600;
}

.Contact-Us .social-icons i {
    background-color: #0d8e45;
    padding: 5px;
    border-radius: 3px;
}

.Contact-Us .social-icons i:hover {
    background-color: #194e5b;
    padding: 5px;
    border-radius: 3px;
}

.Contact-Us .social-icons {
    display: flex;
    gap: 10px;
    margin: 30px 0;
    padding-left: 30px;
}

.Contact-Us .details {
    margin: 50px 0;
}

.Contact-Us .forms h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.Contact-Us .send-request {
    text-decoration: none;
    color: #fff;

}

.Contact-Us button {
    background-color: #0d8e45;
    width: 100%;
    border: none;
    padding: 10px;
    border-radius: 8px;
}

.Contact-Us button:hover {
    background-color: #194e5b;
}

.Contact-Us input,
textarea {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #789688;
}

.Contact-Us input,
textarea::placeholder {
    font-size: 13px;
    font-weight: 400;
}

.Contact-Us .forms {
    display: flex;
    /* align-items: center; */
    justify-content: center;
    flex-direction: column;

}

@media (max-width: 768px) {

    .banner.Contacts {
        height: 15vh;
    }

    .Contact-Us .details {
        margin-top: 20px;
    }

    .Contact-Us .forms {
        margin-bottom: 20px;
    }
}

/* Careers */
.banner.Careers {
    background-image: url(images/careers-banner.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 40vh;
    display: flex;
    align-items: end;
    justify-content: center;
}

.Career {
    margin: 50px 0;
}

.Career h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.Career .send-request {
    text-decoration: none;
    color: #fff;

}

.Career .send-button {
    background-color: #0d8e45;
    width: 100%;
    border: none;
    padding: 10px;
    border-radius: 8px;
}

.Career .send-button:hover {
    background-color: #194e5b;
}

.Career input,
textarea,
.choose-file {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 10px;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #789688;
    align-items: center;

}

.Career input,
textarea::placeholder {
    font-size: 13px;
    font-weight: 400;
}

.Career .forms {
    display: flex;
    /* align-items: center; */
    justify-content: center;
    flex-direction: column;

}

.Career img {
    width: 100%;

}

/* .braches-details .all-branches .brach-1 .detail {
    display: flex;
    gap: 10px;
    align-items: center;
}

.braches-details .all-branches .brach-1 .detail.add {
    display: flex;
    align-items: start;
}

.braches-details .all-branches .brach-1 .detail a {
    text-decoration: none;
    color: #000;
    font-size: 14px;

}

.braches-details .all-branches .brach-1 .detail p {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 25px;


}

.braches-details .all-branches .brach-1 .detail i {
    color: #2e2e2e;
}

.braches-details .all-branches .brach-1 .detail i:hover {
    color: #0d8e45;
}

.braches-details .all-branches .brach-1 {
    border: 1px solid #0d8e45;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: space-between;
}

.braches-details .all-branches {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;
}

.braches-details .all-branches h5 {
    font-size: 16px;
    color: #0d8e45;
    text-transform: uppercase;
    font-weight: 600;
}

.braches-details {
    margin-top: 100px;
} */

@media (max-width: 768px) {
    .banner.Careers {
        height: 15vh;
    }

    /* .braches-details .all-branches {
        grid-template-columns: 1fr;
    }

    .braches-details {
        margin-top: 30px;
    } */
}


#fileInput {
    display: none;
}

/* Style the custom file input container */
.file-container {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    color: #000000;
    margin-bottom: 20px;
}

.file-container i,
.file-container p {
    margin: 0;
    color: #686468;
    font-size: 14px;
}

.file-container {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #789688;

}

.Contact-Us .address svg {
    animation: text-scale 2s ease-in-out infinite;

}

.banner h2 {
    animation: text-scale 3s ease-out infinite;
}

#fileButton svg {
    animation: text-scale 1s ease-out infinite;
}

footer .first .logo {
    animation: text-scale 5s ease-out infinite;

}


/* -------------roof panel-------- */
.roof-panel {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 48px;
    margin: 80px 0;
}

.roof-panel .column {
    flex: 1 1 300px;
    /* Grow and shrink with a minimum width of 300px */
    max-width: 340px;
    text-align: center;
}

.roof-panel .column img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.roof-panel .column img:hover {
    transform: scale(1.05);
}

.roof-panel .column .btn {
    font-size: 18px;
    background-color: transparent;
    color: #198754;
    padding: 10px;
    border-radius: 8px;
    margin-top: 20px;
    border: 1px solid #198754;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.roof-panel .btn p {
    margin-bottom: 0;
}

.roof-panel .column a {
    text-decoration: none;
}

.roof-panel .column i {
    width: 20px;
    height: auto;
    box-shadow: unset;

}

/* Responsive styling for smaller screens */
@media (max-width: 768px) {
    .roof-panel {
        flex-direction: column;
        align-items: center;
    }
}

/* -----------wall panel---------- */



.wall-panel {
    margin: 80px 0;
}


.wall-panel .column img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.wall-panel .column img:hover {
    transform: scale(1.05);
}

.wall-panel .btn {
    background-color: transparent;
    color: #198754;
    padding: 10px;
    border-radius: 8px;
    margin-top: 20px;
    border: 1px solid #198754;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;

}

.wall-panel .btn p {
    font-size: 18px;
}

.wall-panel a {
    font-size: 24px;
    text-decoration: none;
}

.wall-panel p {
    font-size: 13px;
    line-height: 35px;
    font-weight: 400;
    text-align: justify;
    margin-bottom: 0;


}

.wall-panel .middle-p {
    font-weight: 600;
    margin: 10px 0;
}

.wall-panel .points {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
    margin-bottom: 10px;
}

.wall-panel .points img {
    width: 20px;
    height: auto;
}

/* ------------cold room--- */

.wall-panel.cold h3 {
    font-size: 18px;
    background-color: transparent;
    color: #198754;
    padding: 10px;
    border-radius: 8px;
    margin-top: 20px;
    border: 1px solid #198754;
}



/* Responsive styling for smaller screens */
@media (max-width: 768px) {
    .wall-panel {
        flex-direction: column;
        align-items: center;
    }

    .wall-panel {
        margin: 30px 0;
    }

    .wall-panel h3 {
        font-size: 20px;
        text-align: center;
    }

    .wall-panel.cold h4 {
        display: none;
    }
}

/* products new slider */

.home-products #slider-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    overflow: hidden;
    position: relative;
}

.home-products #slider {
    display: flex;
    transition: transform 26.5s linear;
}

.home-products .slide {
    flex-shrink: 0;
    /* Prevent shrinking */
    width: 100%;
    /* Make each slide take the full container width */
    text-align: center;
    opacity: 0.5;
    /* Start with lower opacity */
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.home-products .slide img {
    width: 100%;
    height: auto;
    /* Maintain aspect ratio */
    border-radius: 10px;
}

/* Navigation button styling */
.home-products button {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 24px;
    padding: 10px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.home-products #prev {
    left: 10px;
    /* Adjust button position */
}

.home-products #next {
    right: 10px;
    /* Adjust button position */
}

/* -------------roof panel-------- */
.accessories-roof {
    margin: 50px 0;
}

.accessories-roof h3 {
    font-size: 22px;
    margin: 50px 0;
    color: #0d8e45;
}

.accessories-roof-panel {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.accessories-roof-panel .column {
    flex: 1 1 300px;
    /* Grow and shrink with a minimum width of 300px */
    max-width: 250px;
    text-align: center;
    margin-bottom: 20px;
}

.accessories-roof-panel .column img {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.accessories-roof-panel.a2 .column img {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.accessories-roof-panel .column img:hover {
    transform: scale(1.05);
}

.banner.Solutions.corrugated {
    background-image: url(images/corrugated-sheets-banner.webp) !important;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 40vh;
    display: flex;
    align-items: end;
    justify-content: center;
}

.banner.wall {
    background-image: url(images/wall-panel-banner.webp) !important;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 40vh;
    display: flex;
    align-items: end;
    justify-content: center;
}

.banner.roof {
    background-image: url(images/roof-panel-banner.webp) !important;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 40vh;
    display: flex;
    align-items: end;
    justify-content: center;
}

.banner.cold {
    background-image: url(images/cold-room-banner.webp) !important;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 40vh;
    display: flex;
    align-items: end;
    justify-content: center;
}

.banner.accessories {
    background-image: url(images/accessories-banner.webp) !important;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 40vh;
    display: flex;
    align-items: end;
    justify-content: center;
}
.banner.history {
    background-image: url(images/history-banner.webp) !important;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 40vh;
    display: flex;
    align-items: end;
    justify-content: center;
}
.banner.Capabilities {
    background-image: url(images/capability-banner.webp) !important;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 40vh;
    display: flex;
    align-items: end;
    justify-content: center;
}
.banner.mission {
    background-image: url(images/mission-vission-banner.webp) !important;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 40vh;
    display: flex;
    align-items: end;
    justify-content: center;
}

.wall-panel h3 {
    font-size: 18px;
    background-color: transparent;
    color: #198754;
    padding: 10px;
    border-radius: 8px;
    margin-top: 20px;
    border: 1px solid #198754;
}

@media (max-width: 768px) {
    .accessories-roof-panel {
        flex-direction: column;
        align-items: center;
    }

    .banner.cold {
        height: 20vh !important;
    }

    .home-about .data-div .tab-button {
        font-size: 10px;
    }

    .home-products h3 {
        font-size: 24px;
    }

    .services-section {
        margin: 30px 0;
    }

    .roof-panel {
        margin: 30px 0;
    }

    .wall-panel p {
        line-height: 32px;
    }

    .banner.Solutions.corrugated {
        height: 20vh;
    }

    .wall-panel.corrugated h4 {
        display: none;
    }

    .accessories-roof {
        margin: 20px 0;
    }

    .accessories-roof h3 {
        margin: 20px 0;
        text-align: center;
        font-size: 20px;
        font-weight: 500;
    }

    .accessories-roof-panel .column {
        flex: unset;
    }
    .banner.history {
        height: 20vh;
    }
    .banner.Capabilities {
        height: 20vh;
    }
    .banner.mission {
        height: 20vh;
    }
}


/* 3 rib roof panel */
.three-rib-roof-panel {
    margin: 50px 0;
}

.three-rib-roof-panel h3 {
    font-size: 20px;
    font-weight: 400;
    color: #0D8E45;
    margin-bottom: 20px;
}

.three-rib-roof-panel .column-1 img {
    width: 100%;
    height: auto;
}

.three-rib-roof-panel .column-1 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.three-rib-roof-panel .column-1 p {
    font-size: 14px !important;
    line-height: 35px;
    font-weight: 400;
    text-align: left;
    padding-right: 50px;
}

.three-rib-roof-panel {
    margin: 50px 0;
}

.three-rib-roof-panel table,
th,
tr,
td {
    border: 1px solid #fff;
    padding: 5px;
    text-align: center;
    background-color: #e0e0e0;
    margin: 0;
}

.three-rib-roof-panel table td {
    background-color: #eeeeee !important;
}

.three-rib-roof-panel table .th1 {
    width: 14%;
    font-size: 13px;
    font-weight: 600;
}

.three-rib-roof-panel .column-3 table .th2 {
    width: 12%;
    font-size: 13px;
    font-weight: 600;
}

.three-rib-roof-panel .column-3 table .th3 {
    width: 15%;
    font-size: 13px;
    font-weight: 600;
}

.three-rib-roof-panel .column-3 table .th4 {
    width: 12%;
    font-size: 13px;
    font-weight: 600;
}

.three-rib-roof-panel .column-3 table .th5 {
    width: 19%;
    font-size: 13px;
    font-weight: 600;
}

.three-rib-roof-panel .column-3 table td {
    font-size: 11px;
}

.three-rib-roof-panel .two p {

    font-size: 18px;
    color: #0D8E45;
}

.three-rib-roof-panel .three p {

    font-size: 18px;
    color: #0D8E45;
}

.three-rib-roof-panel .column-4 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.three-rib-roof-panel .column-2 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.three-rib-roof-panel .column-6 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.three-rib-roof-panel .column-4 img {
    width: 95%;
}

.three-rib-roof-panel .column-2 img {
    width: 100%;
}

.three-rib-roof-panel .column-6 img {
    width: 80%;
}

.three-rib-roof-panel .two {
    margin: 80px 0;

}

.three-rib-roof-panel .column-5 .data-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    background-color: #f9f9f9;
}

.three-rib-roof-panel .column-5 .data-table th,
.data-table td {
    border: 1px solid #fff;
    padding: 8px;
}

.three-rib-roof-panel .column-5 .data-table th {
    background-color: #e0e0e0;
    font-weight: 600;
    font-size: 10px;
}

.three-rib-roof-panel .column-5 .data-table td {
    font-size: 10px;
}

/* Span header styling */
.three-rib-roof-panel .column-5 .span-header {
    font-weight: bold;
    text-align: center;
    background-color: #f4f4f4;
}

.u-value {
    width: 10%;
}

.head-img {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.head-img img {
    width: 40%;
    height: auto;
}



/* Mobile-specific styling */
@media (max-width: 768px) {
    .three-rib-roof-panel table {
        width: 100%;
        /* Set a fixed width that is wider than the screen */
        overflow-x: auto;
        display: block;
    }

    .three-rib-roof-panel table,
    .three-rib-roof-panel th,
    .three-rib-roof-panel td {
        font-size: 11px;
        /* Adjust font size for better readability on smaller screens */
        padding: 5px;
    }

    .three-rib-roof-panel .column-3 table .th1,
    .three-rib-roof-panel .column-3 table .th2,
    .three-rib-roof-panel .column-3 table .th3,
    .three-rib-roof-panel .column-3 table .th4,
    .three-rib-roof-panel .column-3 table .th5 {
        width: auto;
    }

    .three-rib-roof-panel .column-5 .data-table-wrapper {
        overflow-x: auto;
        display: block;
    }

    .three-rib-roof-panel .column-5 .data-table {
        width: 100%;
        /* Set a fixed width */
    }

    .three-rib-roof-panel .column-1 p {
        padding-right: 0px;
        text-align: justify;
    }

    .head-img {
        flex-direction: column;
        gap: 10px;
    }

    .three-rib-roof-panel .column-4 img {
        width: 100%;
        padding-top: 20px;
    }

    .banner.roof {
        height: 20vh;
    }

    .banner.accessories {
        height: 20vh;
    }

    .banner.Downloads {
        height: 20vh;
    }
    .co-images img {
        width: 100% !important;
        height: auto;
    }
    .banner a {
        font-size: 18px;
        color: #fff;
        text-decoration: none;
    }
    .pdf-download {
        justify-content: center;
    }
    .certification-one svg {
        width: 100px;
    }
    .banner.certifications {
        height: 20vh;
    }
    .services-section h2 {
        font-size: 26px;
        margin-bottom: 15px;
        text-align: left;
    }
}

.three-rib-roof-panel .column-5 .data-table.twoo th {
    font-size: 11px !important;
}

.three-rib-roof-panel .column-5 .data-table.twoo td {
    font-size: 11px !important;
}

.three-rib-roof-panel .column-1 ul li {
    font-size: 13px;
    line-height: 35px;
    margin-left: 20px;
}

.three-rib-roof-panel .column-1 ul p {
    font-weight: 600;
    font-size: 13px !important;
}

.co-images {
    margin: 50px 0;
}

.co-images img {
    width: 100%;
    height: auto;
}

.banner a {
    font-size: 20px;
    color: #fff;
    text-decoration: none;
}

.banner a i {
    font-size: 14px;
    color: #fff;
    text-decoration: none;
}

/* image gallery */
.image-gallery {
    margin: 50px 0;
}

.image-gallery .gallery {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.image-gallery .gallery .images img {
    width: 300px;
    height: 200px;
}

/*  video-gallery */
.video-gallery {
    margin: 50px 0;
}

.video-gallery .videos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.video-gallery .videos .video-one video {
    width: 300px;
    height: 200px;
}
.disti .image{
    display: flex;
    align-items: center;
    justify-content: center;
}
.tag-detail-box {
    border: 1px solid #cdcdcd;
    padding: 20px 15px
  }
  
  .tag-description {
    margin: auto 0
  }
  
  .box-margin {
    margin: 10px 0
  }
  
  .tag-detail-img {
    text-align: center;
    position: relative;
    display: inline-block;
    min-width: 145px
  }
  
  .tag-detail-img img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 200px;
    vertical-align: middle
  }
  
