@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden !important;
    /* background-color: #ececf3; */
    font-family: "Montserrat", sans-serif;
}

html {
    overflow-x: hidden !important;

}

a {
    text-decoration: none;
    color: #000;
}

li {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-bottom: 0;
}

:root {
    --primary: #1866a4;
    --primary-dark: #00173e;
    --secondary: #61ad35;
    --secondary-dark: #1a632d;
    --margin: 4rem;
    --padding: 4rem;
}

h2 {
    font-size: 45px;
    font-weight: 800;
    line-height: 0.99;
    margin-bottom: 10px;


}

h2 span {
    background: linear-gradient(to right, var(--secondary), var(--secondary-dark));
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

h6 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
}

h5 {
    font-size: 16px !important;
    font-weight: 600;
    color: var(--secondary);
}


.primary_btn {
    font-size: 15px;
    background: radial-gradient(circle, var(--secondary), var(--secondary-dark));
    padding: 10px 30px;
    border-radius: 5px;
    color: #fff;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-weight: 500;
}


.primary_btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: radial-gradient(circle, var(--primary), var(--primary-dark));
    transition: all 0.3s ease;
    z-index: -1;
}

.primary_btn:hover::before {
    z-index: -1;
    height: 100%;
}


/* HEADER START */
.navbar-toggler {
    box-shadow: unset !important;
    outline: none !important;
    border-radius: unset !important;
    background-color: var(--primary) !important;
    color: #fff !important;
}

header {
    position: static;
    top: 0;
    width: 100%;
    z-index: 9999;
    background: #fff;
    /* Must add */
    transition: top 0.4s ease;

}


.topStrip {
    background: linear-gradient(to right bottom, var(--secondary), var(--secondary-dark));
    position: relative;
    z-index: 9;
    transition: top 0.4s ease;

}



.topStrip,
.topStrip a {
    color: #ffffff;
}

.topStrip i {
    margin-right: 0.3rem;
    font-size: 18px;
}

.topLeft {
    display: flex;
    gap: 10px;
    align-items: center;
    height: 100%;
}

.topLeft a:hover {
    text-decoration: underline;
}

.topLeft>div:first-child {
    border-right: 1px solid #ffffff;
    padding-right: 10px;
    padding-block: 8px;
}

.topRight {
    display: flex;
    align-items: center;
    height: 100%;
}

.topRight a {
    display: inline-block;
    height: 100%;
    transition: all 0.3s ease;
}

.topRight i {
    font-size: 22px;
    height: 100%;
    width: 50px;
    border-right: 1px solid #ffffff;
    border-color: #fff !important;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    background-color: var(--secondary);
    transition: all 0.3s ease;

}

.topRight a i:hover {
    background-color: var(--secondary-dark);
    color: #fff;
}


/* Navbar */

.navbar .collapse>ul {
    display: flex;
    align-items: center;
}


.navbar {
    padding: 0;
}

.navbar .navbar-brand img {
    width: 150px;
}


.nav-item>a {
    color: #000;
    font-weight: 500;
    position: relative;
    z-index: 1;
    border-radius: 5px;
    padding: 0 !important;
    padding-bottom: 4px !important;
}

.navbar-nav {
    display: flex;
    gap: 30px;
}

.nav-item>a::before {
    content: '';
    position: absolute;
    bottom: -2.5px;
    left: 0;
    width: 0%;
    height: 2.5px;
    background-color: var(--primary);
    transition: all 0.3s ease;
    z-index: -1;
}

.nav-item>a:hover::before {
    width: 100%;
}

.homeLink::before {
    display: none !important;
}

.homeLink i {
    font-size: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.nav-item i {
    font-size: 20px;

}

.homeLink.active i {
    background-color: var(--primary);
    color: #fff;
}

nav a.active::before,
nav a:focus::before {

    width: 100%;
    color: var(--primary);
}

nav a.active,
nav a:focus {
    color: var(--primary) !important;

}

.nav-item>a:hover {
    color: var(--primary);
}

nav .dropdown-menu {
    width: 300px;
    border-radius: unset;
    padding: 0;
}

nav .dropdown-menu a {
    padding: 10px;
    border-bottom: 1px dashed var(--primary);
    transition: all 0.3s ease;
    font-size: 15px;
}

nav .dropdown-menu a:hover {
    padding-left: 15px;
    background-color: var(--primary);
    color: #fff;
}

.subDropdown a {
    display: block;
}



/* Hero Section */

.hero_banner {
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero_banner video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    filter: brightness(80%);
}

.banner_text {
    width: 90%;
    margin: 0 auto;
    text-align: center;
}

.banner_text h5 {
    background: linear-gradient(to left bottom, var(--primary), var(--primary));
    width: max-content;
    padding: 5px 10px;
    border-radius: 5px;
    margin: 0 auto;
    font-size: 16px;
}

.banner_text h2 {
    font-size: 4rem;
    line-height: 1;
    padding-inline: 50px;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 0 2px #000;
}

.banner_text p {
    font-size: 17px;
    padding-inline: 20px;
    text-shadow: 0 0 2px #000;

}

.banner_text strong {
    background-color: var(--primary);
    padding: 3px 7px;
    font-weight: 500;
}

.banner_text a {
    margin: 0 auto;
    margin-top: 1rem;
}


/*********-------category wrapper-------*********/
.category_wrapper {
    text-align: center;
    padding-block: var(--padding);
    width: 100%
}

.cat_about {
    float: left;
    width: 100%;
    background-color: #fff;
    position: relative;
    overflow: hidden;
    /*margin-top: -90px;*/
    z-index: 3;
    transition: .5s linear all;
    box-shadow: 0 0 10px #9a9999;
    border: 1px solid #e5e5e5;
    border-radius: 1rem;
    cursor: pointer;
}


.cat_about:hover .icon_wrapper:before {
    /* border-top: 120px solid #8ec54d; */
    background-color: var(--secondary);

    -webkit-transition: all .5s;
    -o-transition: all .5s;
    -ms-transition: all .5s;
    -moz-transition: all .5s;
    transition: all .5s
}

.cat_about:hover .cat_txt a {
    color: var(--secondary);
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    -ms-transition: all .5s;
    -moz-transition: all .5s;
    transition: all .5s
}





.cat_img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.cat_img i {
    font-size: 80px;
    opacity: 0.1;


    -webkit-transition: all .5s;
    -o-transition: all .5s;
    -ms-transition: all .5s;
    -moz-transition: all .5s;
    transition: all .5s
}

.cat_about:hover .cat_img i {
    opacity: 0.2;
    color: var(--secondary);


}

.cat_txt {
    padding: 20px;
}

.cat_txt h3 {
    color: var(--primary);
    font-size: 24px;
    font-weight: 700;
    padding-bottom: 10px;
    text-align: center;
    transition: all .3s
}

.cat_about:hover h3 {
    color: var(--secondary);
}

.cat_txt p {
    text-align: center;
    font-size: 16px;
    margin-bottom: 10px
}

.icon_wrapper {
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--primary);
    padding: 10px;
    border-bottom-right-radius: 50%;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    -ms-transition: all .5s;
    -moz-transition: all .5s;
    transition: all .5s
}

.cat_about:hover .icon_wrapper {
    background-color: var(--secondary);

}

.icon_wrapper i {
    font-size: 25px;
    color: #fff;
}


.cat_txt a {
    color: #565656;
    font-size: 16px;
    font-weight: 500;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    -ms-transition: all .5s;
    -moz-transition: all .5s;
    transition: all .5s
}

.cat_txt a:hover i {
    color: var(--secondary);
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    -ms-transition: all .5s;
    -moz-transition: all .5s;
    transition: all .5s
}

/* ABOUT SECTION START*/

.home_ab {
    margin-block: 20px calc(20px + var(--margin));
}

.home_ab_img {
    width: 100%;
    height: 100%;
    position: relative;
}

.home_ab_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* border-radius: 10px; */
}

.home_ab_img_overlay {
    content: '';
    width: 70%;
    height: calc(100% + 40px);
    background: linear-gradient(var(--primary), var(--secondary));
    position: absolute;
    top: -20px;
    left: -20px;
    z-index: -1;
    /* border-top-left-radius: 1rem;
    border-bottom-left-radius: 1rem; */

}

/* ABOUT SECTION END*/

/* PRODUCT START */

.commanHeading {
    width: 70%;
    margin: 0 auto;
}

.products_sec {
    padding-bottom: var(--padding);
    background-color: #fff;
}

.product_details {
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.product_details img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.two_product_dtls .product_details {
    height: 250px;
    margin-top: 1.5rem;
}

.product_details h4 {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    z-index: 2;
    transition: 0.3s all;

}



.product_details a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    transition: 0.3s all;
    z-index: 2;

}

.product_details a:hover {
    color: var(--secondary);
    text-decoration: underline;
}

.product_details:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    transition: 0.4s all;

}

.product_details::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0),
            rgba(0, 0, 0, 0),
            rgba(0, 0, 0, .75));
    transition: 0.4s all;


}

.product_details:hover a {
    transform: translate(-50%, -50%) scale(1);
}

.product_details:hover:before {
    transform: translate(-50%, -50%) scale(1);
}

.product_details:hover:after {
    transform: translateY(100%);
}

.product_details:hover h4 {
    bottom: -20%
}

/* PRODUCT END */

/* WHY CHOOSE START */

.why_choose_us {
    /* background-color: whitesmoke; */
    padding-bottom: var(--padding);
}

.why_choose_box {
    text-align: center;
    cursor: pointer;
}

.why_small,
.why_big {
    background-color: #fff;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    border: 2px dashed var(--primary);
    color: var(--primary);
    transition: all 0.3s ease;
    position: relative;
}

.why_choose_box span {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 0;
    top: 0;
    transform: translateX(-10px) scale(0);
    font-size: 16px;
    font-weight: 500;
    background-color: var(--secondary);
    color: #fff;
    padding: 5px;
    border-radius: 50px;
    transition: all 0.3s ease;

}

.why_big span {
    transform: translateX(-20px) scale(0);
}

.why_choose_box:hover .why_small,
.why_choose_box:hover .why_big {
    color: var(--secondary);
    border-color: var(--secondary)
}

.why_choose_box:hover .why_small span {
    transform: translateX(-10px) scale(1);
}

.why_choose_box:hover .why_big span {
    transform: translateX(-20px) scale(1);
}


.why_big {
    width: 180px;
    height: 180px;
}

.why_choose_box h4 {
    font-size: 20px;
    font-weight: 600;
    margin-block: 10px;
    color: var(--primary);
    transition: all 0.3s ease;
}

.why_choose_box i {
    transition: all 0.3s ease;

}

.why_choose_box:hover h4 {
    color: var(--secondary);
}

/* WHY CHOOSE END */

/* ==========================
   CTA Section
========================== */

.cta-section {
    background: var(--secondary-dark);
    padding-block: var(--padding);
}

.cta-title {
    color: #fff;
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 0;
}


.cta-section .primary_btn {
    background: var(--secondary);
}

.cta-section .primary_btn:hover {
    background: linear-gradient(to right, var(--secondary), var(--secondary-dark));

    color: #fff;
}

@media(max-width:991px) {

    .cta-section {
        text-align: center;
    }

    .cta-title {
        font-size: 1.7rem;
    }

    .cta-btn {
        margin-top: 10px;
    }
}



/* FOOTER START */


footer {
    background: radial-gradient(circle, var(--primary), var(--primary-dark));
    padding-block: var(--padding);
    color: #fff;
}

footer li {
    margin-bottom: 0.5rem;
}

footer ul {
    padding-left: 0;
}

.ft_heading {
    font-size: 20px;
    margin-bottom: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

footer i {
    margin-right: 0.3rem;
    font-size: 1.2rem;
}

footer a {
    color: #fff;
    transition: all 0.3s ease;
}

footer li i {
    font-size: 16px;
    margin-right: 5px;
}

footer a:hover {
    text-decoration: none;
    text-decoration: underline;
}

.ft_contact a:hover {
    padding-left: unset;
}

.copywrite {
    border-top: 2px solid #fff;
    padding-block: 10px;
    background: linear-gradient(to right, var(--secondary), var(--secondary-dark));
    display: flex;
    align-items: center;
    text-align: center;
}

.copywrite p {
    color: #fff;
    margin: 0;
}

.ft_media i {
    border: 1px solid #fff;
    border-radius: 50%;
    padding: 0.5rem;
    margin-right: 0;
    transition: all 0.3s;
    display: none;
}

.ft_media i:hover {
    color: #000;
    background-color: #fff;
    transform: rotate(360deg);
}

.ft_media img {
    width: 150px;
    background-color: #fff;
    box-sizing: unset;
    padding: 1rem;
    border-radius: 1rem;
}

.ft_media li {
    text-align: right;
}

.ft_media li p {
    font-size: 14px;
}

.footer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

/* FOOTER END */

/* COMMON BANNER START*/


/* Comman Banner */
.banner-area {
    width: 100%;
    text-align: center;
    height: auto;
    position: relative;
}

.banner-area img {
    display: block;
    width: 100%;
    margin: auto;
    height: 400px;
    object-fit: cover;
}

/* Comman Heading */

.abou-hed {
    width: 100%;
    height: 41px;
    position: absolute;
    z-index: 9;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.abou-hed h1 {
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    font-size: 37px;
    font-weight: 400;
    letter-spacing: 1px;
    background: rgba(0, 0, 0, 0.5);
    display: inline-block;
    padding: 5px 22px;
}

/* Comman Strip */
.breadcrumb_bg {
    background: linear-gradient(to right bottom, var(--secondary), var(--secondary-dark));
}

.breadcrumb {
    margin: 0;
    font-size: 16px;
    color: #fff;
    background: none;
    padding: 6px 0px;
    font-weight: 400;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
}

.breadcrumb a,
.breadcrumb a:visited,
.breadcrumb a:hover {
    font-weight: 500;
    color: #fff;
}

.breadcrumb li.active {
    color: #fff;
}

/* COMMON BANNER END*/



/* CONTACT PAGE START */

.contact_address_boxs {
    margin-top: var(--margin);

}

.address_box {
    background: radial-gradient(circle, var(--primary), var(--primary-dark));
    color: #fff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto;
    text-align: center;
    outline: 3px solid var(--primary);
    border: 3px solid #fff;
    border-radius: 1rem;
}

.address_box a {
    color: #fff;
}

.address_box a:hover {
    text-decoration: underline;
}

.address_box i {
    font-size: 30px;
    margin-bottom: 0.5rem;
    height: 70px;
    width: 70px;
    border-radius: 50%;
    background-color: #fff;
    color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.address_box:hover i {
    transform: scale(1.05);
}

.contact_deatils {
    margin-block: var(--margin);
}


.contact_deatils .contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background-color: rgb(235, 245, 245);
    padding: 30px;
    border-radius: 1rem;
}

.contact_deatils .form-row {
    display: flex;
    gap: 20px;
}

.contact_deatils .form-row.single {
    flex-direction: column;
}

.contact_deatils .form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact_deatils label {
    margin-bottom: 5px;
    font-weight: 500;
}

.contact_deatils label span {
    color: red;
}

.contact_deatils input,
.contact_deatils select,
.contact_deatils textarea {
    padding: 10px;
    border: 1px solid #333;
    border-radius: 4px;
    background: #f5f5f5;
}

.contact_deatils .form-group option {
    font-size: 15px;
    width: max-content;
}

.contact_deatils label::after {
    content: ' *';
    color: red;
}

.contact_deatils button {

    border: none;

    width: fit-content;
    transition: all 0.3s ease;
    font-weight: 500;
}

.map {
    border-radius: 1rem;
    overflow: hidden;
}

/* Responsive */
@media (max-width: 600px) {
    .contact_deatils .form-row {
        flex-direction: column;
    }
}

/* CONTACT PAGE END */


/* WHO WE ARE PAGE START */

.who_we_are_pg {
    margin-block: var(--margin);
}

.who_we_are_pg img {
    clip-path: polygon(0% 0%, 100% 0%, 100% 90%, 0% 100%);
}

.vision_mission_box {
    box-shadow: 0 0 25px #ccc;
    padding-block: 40px;
    padding-inline: 20px;
    border-radius: 10px;
    position: relative;
    margin-block: 20px var(--margin);
    background: linear-gradient(var(--primary), var(--primary-dark));
    color: white;
    text-align: center;
    height: 280px;


}

.vision_mission_box1 .icon_box {
    background-color: var(--primary);
}

.vision_mission_box2 .icon_box {
    background-color: var(--secondary);
}

.vision_mission_box3 .icon_box {
    background-color: var(--primary);
}

.vision_mission_box2 {
    background: linear-gradient(var(--secondary), var(--secondary-dark));
}

.vision_mission_box h4 {
    padding-top: 20px;
}



.icon_box {
    height: 90px;
    width: 90px;
    border-radius: 50%;
    background-color: black;
    color: white;
    font-size: 30px;
    border: 3px solid rgb(245, 245, 245);
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translate(-50%, -50%);
}


/* WHO WE ARE PAGE END */

/* PRODUCT PAGE START */

.prod_page {
    margin-top: 3rem;
    margin-bottom: var(--margin);
}

.prod_page h4 {
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--secondary-dark);
    font-size: 28px;
}

.prod_page h3{
    font-size:20px;
    font-weight:600;
    color:var(--primary);
    margin-bottom:10px
}

.prod_page ul{
    padding-left:1rem;
}

.prod_page li{
    list-style:disc;
}

.prod_page img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 90%);

}

.prod_other_imgs {
    margin-top: 2rem;
}

.prod_other_imgs img {
    width: 100%;
    height: 300px;
    clip-path: unset;

}

/* PRODUCT PAGE END */




/* SITEMAP */

.sitemap {
    margin-block: var(--margin);
}

.sitemap_links h3 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 2rem;
}

.sitemap_links ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-left: 0;
    justify-content: start;
    align-items: center;
    margin-top: 0.5rem;
}

.sitemap_links ul li {
    width: calc(33% - 20px);
}

.sitemap_links a {
    display: block;
    background: linear-gradient(to right bottom, var(--secondary), var(--secondary-dark));
    padding: 10px 15px;
    font-weight: 500;
    border-radius: 6px;
    color: #fff;
    transition: all 0.3s ease;
}


.sitemap_links a:hover {
    background: linear-gradient(to right bottom, var(--primary), var(--primary-dark));

}