@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
}

a {
    text-decoration: none;
    color: black;
}

:root {
    --primary-color: #17684F;
    --secoundary: #D4AF37;
    --third: white;
    --margin-block: 3rem;
    --padding-block: 3rem;

}



.my-btn {
    display: inline-block;
    position: relative;
    overflow: hidden;
    padding: 10px 30px;
    font-size: 18px;
    background-color: var(--secoundary);
    border: unset;

    color: white;
    cursor: pointer;
    border-radius: 5px;
    z-index: 1;
}

.my-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--primary-color);
    transition: all 0.3s linear;
    z-index: -1;
}



.my-btn:hover::before {
    width: 100%;
}

.my-btn:hover {
    color: white;
    z-index: 2;
}


p {
    margin: 0;
}

h2 {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
}

/* top_nav */
header {}

.top_nav {
    background-color: var(--primary-color);
    padding-block: 10px;

}


.top_nav a,
i {
    color: white;

}

.top_nav_right_box {
    text-align: end;
    display: none;
}

/* second_nav*/
.myNav {
    background-color: white;
    color: black;
    padding: 0 !important;

}

.navbar-brand {
    padding: 0 !important;

}

.myNav img {
    width: 180px;
    height: 120px;
    object-fit: contain;
    padding: 5px;

}

.heading2 {
    color: var(--secoundary);
}


.nav-link {

    margin-left: 20px;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    color: #000;



}

.nav-link:hover {
    color: var(--secoundary);
    border-color: var(--secoundary);

}

.nav-link.active {
    color: var(--secoundary);
    border-color: var(--secoundary);
}

.my_dropdown {
    background-color: var(--secoundary);
    border-radius: 0;
    padding-block: 0;
    width: 300px;

}


.dropdown-item {
    color: white;
    border-bottom: 1px dotted rgb(255, 255, 255);
    transition: all 0.3s ease;
    padding-block: 10px;


}

.dropdown-item:hover {
    color: white;
    background-color: var(--primary-color);
    padding-left: 20px;

}

.text-black {
    --bs-text-opacity: 1;
    /* color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important; */
    color: white !important;
}

/* banner section */
.my_carousel img {
    height: 600px;
    object-fit: cover;
    filter: brightness(30%);


}


.carousel-item {
    position: relative;
    overflow: hidden;
}



.carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 15.25rem;
    left: 15%;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: center;
}


.carousel-caption h5 {
    font-size: 45px;
    font-weight: 700;
}

.carousel-caption p {
    font-size: 18px;
}


/* about section */
.about_us {
    padding-block: var(--padding-block);
}






.common_btn {
    display: block;
    background-color: var(--secoundary);
    padding: 10px 25px;
    margin-top: 10px !important;
    width: max-content;
    border-radius: 10px;

}

.home_about_us {
    margin-block: var(--margin-block);
}

.about_imgs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-radius: 10px;
    overflow: hidden;
}

.about_imgs img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    border: 1px solid #fff;
}



/* VISSION MISSION SECTION */

.vission_mission_section {
    /* background-color: rgb(231, 239, 233); */
    background: linear-gradient(to right, rgb(231, 239, 233), rgb(200, 210, 205));

    /* background-color: #ccc; */
    width: 100%;
    margin-top: 20px;
    padding-block: var(--padding-block);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.visionHeading {
    width: 70%;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 2rem;
}

.custum_heading {
    color: var(--secoundary);


}



.vission_box i::before {
    transition: all 0.3s ease;
}

.vission_box:hover i::before {
    transform: scale(1.2);
    /* smoothly enlarge */

}


.custum_box,
.custum_box_1 {
    background-color: var(--primary-color);
    color: white;
    width: 100%;
    height: 180px;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    /* align-items: center; */
    gap: 20px;
    transition: all 0.3s ease;
    overflow: auto;
}

.add_box {
    display: flex;
    gap: 10px;

}



.subfooter {
    background-color: var(--primary-color);
    border-top: 2px solid #fff;
    text-align: center;
    padding: 0.5rem;
    color: #fff;
}

.custum_box i {
    font-size: 30px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: white;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;

}

.custum_circle i {
    font-size: 30px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border-radius: 50%;
    background-color: white;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}


.custum_box_1 {
    background-color: var(--secoundary);
}

.custum_box_1 i {
    color: var(--secoundary);
}

.v_m_img img {
    width: 100%;
    height: 180px;
    border-radius: 10px;
    border: 1px solid #000000;
    object-fit: cover;
    position: center;
    overflow: hidden;
}

/* swiper */

.service_section {
    padding-block: var(--padding-block);
    /* background-color: var(--primary-color); */
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service_section::before {
    content: '';
    width: 100%;
    height: 50%;
    background-color: var(--secoundary);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.service_section h2 {
    color: #fff;
}

.swiper {

    width: 100%;
    height: 100%;
    object-fit: cover;

}

.service_img {
    height: 250px;
    overflow: hidden;
    border-radius: 8px;


}

.service_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
    transition: all 0.4s ease;

}

.service_box :hover img {
    transform: scale(1.2);
}

.service_img_content_box {
    box-shadow: 0 0 25px #ccc;
    padding: 20px;
    border-radius: 10px;
}


element.style {}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: var(--swiper-pagination-bottom, 8px);
    top: var(--swiper-pagination-top, auto);
    left: 0;
    width: 100%;
    /* WHY COLOR IS NOT APPLYING */
    /* color: var(--primary-color) !important; */
    /* background-color: aqua; */
    margin-top: 50px;

}

.swiper-pagination-bullet {
    background-color: #fff;
}

.service_content h5 {
    padding-block: 10px;
}

.service_content {
    text-align: center;
    height: 200px;
}

.service_box {
    transition: all 0.3s ease;
    background-color: #fff;
    box-shadow: 0 0 10px #ccc;
    margin-bottom: 1rem;
    border: 2px solid var(--secoundary);


}

.service_box:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.service_box a {
    border: 2px solid #fff;
    transition: all 0.3s ease;

}

/* .service_box:hover {
    background-color: var(--secoundary);
    color: white;
}

.service_box:hover a {
    background-color: var(--primary-color);
}


.service_box a:hover {
    background-color: transparent;
    color: #fff;
}


.service_box a::before {
    display: none;
} */


/* product section */
.product_section {
    margin-block: var(--margin-block);
}

.product_content a {
    display: inline-block;
    padding-top: 10px;

}



.product_section .service_box a {
    border: unset;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
}

.product_section .swiper-button-next,
.product_section .swiper-button-prev {
    background-color: var(--secoundary);
}


.tagline2 {
    text-align: center;
    padding-block: 5rem;
    color: #fff;
    background: linear-gradient(135deg, #17684f, #d4af37);
    background-size: cover;
    background-color: var(--primary-color);



}

.tagBox h2 {

    margin: 0 auto;
    color: #fff;
}

.tagBox p {
    width: 86%;
    margin: 0 auto;
    padding-top: 15px;
}

/* Industries We Serve */
.we_serve {
    background: linear-gradient(135deg, rgba(28, 66, 55, 0.8)), url(../img/textiles.jpg) center fixed;


    /* background-color: var(--primary-color); */
    padding-block: var(--padding-block);
}

h5 {
    margin-bottom: 0;
}

.we_serve h2 {
    color: #fff;
}

.we_serve_box {
    background-color: #fff;
    color: #000;
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 15px;
    border-radius: 10px;
}

.we_serve_box i {
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    transition: all 0.3s ease;
}

.we_serve_box:hover i {
    transform: scale(1.05);
}

/* Strategic Advantages */

.strategic_adv {
    margin-block: var(--margin-block);
}


.strategic_box {
    background-color: var(--primary-color);
    color: #fff;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 170px;
    transition: all 0.3s ease;
}

.strategic_box i {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--secoundary);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    font-size: 35px;
    margin-bottom: 10px;
    transition: all 0.3s ease;

}

.strategic_box p {
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 95%;
    transition: all 0.3s ease;


}

.strategic_box h5 {
    transition: all 0.3s ease;

}

.strategic_box:hover {
    background-color: var(--secoundary);
}

.strategic_box:hover p {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);

}

.strategic_box:hover h5 {
    opacity: 0;
}

.strategic_box:hover i {
    opacity: 0;
}

/* footer */

footer {
    padding-block: var(--padding-block);

    background: linear-gradient(to right, var(--primary-color), var(--secoundary));

    color: white;
}


.footer_content a {
    display: inline-block;
    color: white;
    margin-block: 5px;
    font-size: 15px;
}

.footer_content h5 {
    padding-bottom: 10px;
}

.ft_contact i {
    margin-right: 5px;
}



.ft_logo img {
    width: 140px;
    object-fit: contain;
    background-color: var(--primary-color);
}

.ft_address {
    margin-bottom: 0.5rem;
}

.service_box img {
    width: 100%;
    object-fit: cover;


}

.service_box {
    padding: 20px;
    border-radius: 10px;

}




.swiper-button-next,
.swiper-button-prev {
    background-color: var(--primary-color);
    height: 35px;
    width: 35px;
    border-radius: 50%;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    /* position: absolute;
    top: 50%;
    transform: translateY(-50%); */
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px;
    color: #fff;
}


.product_section .service_box {
    box-shadow: unset !important;
    border: none !important;
    background-color: transparent !important;
    position: relative;
    padding: 0 !important;
}

.product_section a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    text-transform: capitalize
}

.product_section .service_box:hover img {
    filter: brightness(40%);
}

.product_section .service_box:hover a {
    opacity: 1;
}


/* contact_pg */
.get_in_touch_section {
    padding-block: var(--padding-block);
    background-color: #f8f9fa;

}


.address_box {


    display: flex;
    /* align-items: center;
   justify-content: center; */
    gap: 10px;

}

.address_box i {
    display: flex;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-color);

    color: white;
}

/* chemical_pg */
.chemical_pg_banner_section img {
    height: 400px;
    background-size: cover;
    position: relative;
}

.contact_us_pg {
    position: relative;
}

.banner_heading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: max-content;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px;
    font-weight: 600;
}

.common_strip {
    background-color: var(--secoundary);
    color: white;
    padding-block: 5px;
}

.common_strip a {
    color: white;
}

/*contact pg get_in_touch section */

.left_info_box {
    padding-block: 26px;
    background-color: #ffffff;
}

.left_info_box .form_heading h2 {
    font-size: 25px;

}

.get_in_touch_section .left_info_box {
    border: 1px solid #ccc;
    box-shadow: 0 0 25px #ccc;
    padding: 20px 25px;
    height: 500px;
}

.address_info {
    display: flex;
    gap: 20px;
    border-bottom: 1px solid #ccc;
    padding-block: 20px;


}

.form_btn {
    margin-top: 20px;
}

.address_info h5 {
    margin-bottom: 2px;
}

.address_info i {
    font-size: 25px;
}

.right_box .form_heading {
    text-align: center;
}

.address_info p {
    font-size: 16px;
    padding-bottom: 5px;
}

.icon_circle i {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: white;

}

.form_box input {
    width: 100%;
    margin-block: 10px;
    padding: 5px 10px;
    border: 0.5px solid #ccc;
}

.form_box .custum_width {
    display: flex;
    gap: 20px;
}

textarea {
    width: 100%;
    padding: 5px 10px;
    border: 0.5px solid #ccc;
}

/* service -pg */
/* services_banner */
.common_banner {
    height: 400px;
    width: 100%;
    background-size: cover;
    overflow: hidden;
    position: relative;

}

.agro_pg_banner_section {
    background: url(../img/agro-banner.jpg) center
}

.contact_us_pg_banner {
    background: url(../img/contact_banner.jpg) center;
    height: 400px;
}

.about_us_banner_section {
    background: url(../img/solar-banner.jpg) center;
    height: 400px;
    position: relative;
}

.metal_pg_banner_section {
    background: url(../img/metal-banner.jpg) right;
    height: 400px;

}

.solar_banner_section {
    background: url(../img/solar-banner.jpg) center;
    background-position: right;

}

.chemical_pg_banner_section {
    background: url(../img/bannerchemical.jpg) no-repeat center;
    background-size: cover;

}

.animal_fooder_banner_section {
    background: url(../img/animal_fodder_banner.jpg) right;
}

.plant_beans_pg_banner_section {
    background: url(../img/plant_banner.jpg) center;

}

.spare_parts_pg_banner_section {
    background: url(../img/spare_parts_banner1.jpg) center;
}

.electronic_pg_banner_section {
    background: url(../img/electronic-banner.jpg);

}

.textiles_pg_banner_section {
    background: url(../img/textiles_banner.jpg);
}

.food_beverage_pg_banner_section {
    background: url(../img/food-beverage-banner.jpg) center;
    height: 400px;
}
.industry_page_section {
    background: url(../img/Industrial-banner.jpg ) center;
    height: 400px;
}
.construction_pg_banner_section {
    background: url(../img/construction-banner.jpg ) center;
    height: 400px;
}
.lifestyle_pg_banner_section {
    background: url(../img/lifestyle=banner.jpg ) center;
    height: 400px;
}



/* about pg */
.ab_pg_vision_mission_section {
    padding-block: var(--padding-block);
    background-color: #eee;
}

.ab_pg_tagline {
    background: unset;
    background-color: var(--primary-color);
    border-bottom: 1px solid white;
}

.about_pg_imgs {
    width: 100%;
    height: 100%;
}

.ab_pg_welcome_big img {
    height: 600px;
    width: 80%;
    object-fit: cover;
    overflow: hidden;
    /* margin: 20px; */
    border-radius: 20px;
    /* float: right; */


}

.about_pg_imgs {
    position: relative;
}

.ab_pg_welcome_small_img img {
    width: 45%;
    height: 400px;
    object-fit: cover;
    overflow: hidden;
    position: absolute;
    bottom: -5%;
    left: 5%;
    z-index: 5;
    outline: 20px solid white;
    border-radius: 10px;


}

.ab_pg_vission_img {
    width: 100%;



}

.ab_pg_vission_img img {
    width: 97%;
    height: 250px;
    margin: 0 auto;
    object-fit: cover;
    overflow: hidden;
    border-radius: 10px;
    border: 5px solid white;
    padding: 5px;
    transition: all 0.3s ease;

}

.ab_pg_mission_img img {
    width: 97%;
    height: 250px;
    object-fit: cover;
    overflow: hidden;
    border-radius: 10px;
    border: 5px solid white;
    padding: 5px;
    float: left;
}


/* product pg */
.product_section {
    padding-block: var(--padding-block);
    background-color: #eee;
    margin: unset;
}

.product_box img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid;


}

.common_heading {
    text-align: center;
    padding-bottom: 20px;

}

.product_box {
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.product_box img {
    width: 100%;
    height: 250px;
    border-radius: 12px;
    transition: transform 0.4s ease, filter 0.4s ease;
}

/* Hover Effect */
.product_box:hover img {
    transform: scale(1.1);
    /* zoom in */
    filter: brightness(85%);
    /* darken slightly */
}

.product_section .service_content{
    height: auto;
}


/* food_beverage_section */

.food_beverage_section {
    padding-block: var(--padding-block);


}


.food_beverage_img {
    height: 100%;



}

.food_beverage_img img {
    width: 100%;
    height: 100%;
    border: 2px solid;
    border-radius: 10px;
    /* rounded corners */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    /* subtle shadow */
    object-fit: cover;
}



/* service_industerial_pg_section */
.service_industerial_pg_section {
    padding-block: var(--padding-block);
}

.service_industerial_img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    overflow: hidden;
    border: 2px solid var(--secoundary);
}

.industerial_heading {
    padding-top: 20px;

}

.service_industerial_box1 {
    padding: unset !important;
    padding-right: 20px !important;

}

.service_industerial_content {
    padding-left: 20px;
}

/* Construction & Building Materials page */
.service_construction_section {
    padding-block: var(--padding-block);

}


.service_construction_heading_box {
    text-align: center;
    margin: 0 auto;
    padding-bottom: 20px;
}

.service_construction_box {
    text-align: center;
    box-shadow: 0 0 25px #ccc;
    border: 1px solid var(--secoundary);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    /* align-items: center; */
}

.service_construction_box:hover {
    background-color: var(--primary-color);
    color: white;
}

.service_construction_box:hover h5 {
    color: white;

}

.service_contruction_img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    overflow: hidden;

}

.service_contruction_img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: all 0.3s ease;


}

.service_contruction_img img:hover {
    transform: scale(1.1);
    /* Zoom-in effect on hover */
}

.service_construction_content h5 {
    color: var(--primary-color);


    font-weight: 700;
    transition: all 0.3s ease;
    margin-bottom: 1rem;


}

.service_construction_content{
    padding: 20px;
    height: 330px;
}



.service_construction_box {
    position: relative;
}

.contact_btn a {
    display: block;
    position: absolute;
    bottom: 3%;
    left: 30%;
    transform: translate(-50% -50%);
}

/* consumer_life_style_section */
.consumer_life_style_section {
    padding-block: var(--padding-block);
}

.consumer_life_style_section h4{
    color: var(--primary-color);
    font-weight: 700;
    text-transform: capitalize;
}

.consumer_life_style_section h5{
    color: var(--primary-color);
    font-size: 19px;
    margin-bottom: 8px;
    font-weight: 600;
}

.lifestyle_good_img{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    margin-block: 20px;
}

.lifestyle_good_img img {
    height: 220px;
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
}

.consumer_life_style_top_content p{
    text-align: left;
}

.our_offering_box{
    margin-top: 20px;
}