*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    width: 100%;
    height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    font-size: 16px;
}

.wrapper{
    width: 100%;
    margin: auto;
}

:root{
    --theme-color1: #0d8402;
    --theme-color2: #fc0301;
    --bg-color1: #f3f3f3;
    --bg-color2: rgba(255, 255, 255, 0.6);
}

.bg1{
    background: var(--bg-color1);
}

.th-color1{
    color: var(--theme-color1);
}

.th-color2{
    color: var(--theme-color2);
}

.th-border-color1 {
    border-color: var(--theme-color1) !important;
}

.th-border-color2 {
    border-color: var(--theme-color2) !important;
}

.th-bg1{
    background: var(--theme-color1);
}

.th-bg2{
    background: var(--theme-color2);
}

.text-justify{
    text-align: justify;
}

.button{
    text-decoration: none;
    background: var(--theme-color2);
    color: white;
    padding: 15px 15px;
    transition: all .6s ease;
    display: inline-block;
    width: 150px;
    text-align: center;
    border: none;
    font-size: 18px;
}

.button:hover{
    background: var(--theme-color1);
}

.video-overlay{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0d84029c;
    color: white;
    text-decoration: none;
    opacity: 0;
    transition: all .6s ease;
    font-size: 20px;
}

.video-overlay:hover{
    opacity: 1;
}

.video-overlay::before{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid white;
}

.img-title {
    padding: 8px 18px;
    background-color: rgba(25, 135, 84, 0.15);
    color: #198754;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
}

.img-title2 {
    padding: 18px;
    background-color: rgb(141 57 21);
    color: white;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    border-radius: 8px;
}

.loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000000ad;
    z-index: 9999;
    backdrop-filter: blur(2px);
}

    .loader::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 50px;
        height: 50px;
        border: 5px solid #666666;
        border-top-color: white;
        border-radius: 50%;
        animation: rotate 1s linear infinite;
    }

    .hover-red:hover{
        color: var(--theme-color2)!important;
    }

@keyframes rotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.heading{
    display: flex;
}

.heading.center{
    justify-content: center;
}

.heading > h2 {
    padding-left: 15px;
    position: relative;
    line-height: 40px
}

.heading > h2::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 5px;
    background: var(--theme-color2);
}

.heading > h2 > span{
    color: var(--theme-color1);
    font-weight: 600;
}

/* <Inner Header> */
.inner_header {
    width: 100%;
    position: relative;
    float: left;
}

.class-baner {
    width: 100%;
    
    object-fit: cover;
}

.factorycrumbs-area {
    position: absolute;
    bottom: -35px;
    left: 0;
    text-align: center;
    width: 100%;
    z-index: 1;
}

.factorycrumbs {
    background: #0d8301 none repeat scroll 0 0;
    color: #fff;
    padding: 20px 40px;
    display: inline-block;
    min-width: 260px;
    font-size: 20px;
    font-weight: 600;
    position: relative;
}

.factorycrumbs:before, .factorycrumbs:after {
    border-bottom: 0 solid #005998;
    border-left: 15px solid #ffc300;
    border-top: 35px solid transparent;
    content: "";
    height: 0;
    position: absolute;
    right: -15px;
    top: 0;
    width: 0;
    z-index: 1;
}

.factorycrumbs:before, .factorycrumbs:after {
    border-left-color: #0d8301;
    opacity: 0.8;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
}

.factorycrumbs:before {
    border-right: 15px solid #0d8301;
    right: auto;
    left: -15px;
    border-left: none;
}
/* </Inner Header> */

/* <Header> */
@media (max-width: 802px) {
    .header-r > div > strong{
        display: none;
    }
}

@media (max-width: 650px) {
    .header-r > a,
    .header-r > span{
        display: none;
    }
}

@media (max-width: 405px) {
    .header-r {
        display: none !important;
    }
}

.header-l{
    white-space: nowrap;
}

.contact-op {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .contact-op > a {
        text-decoration: none;
        background: var(--theme-color1);
        color: white;
        border: 2px solid;
        height: 50px;
        width: 50px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 20px;
        transition: all .6s ease;
    }

        .contact-op > a:hover {
            background: white;
            color: var(--theme-color1);
        }

    .contact-op > button {
        padding: 0;
        background: none;
        border: none;
        outline: none;
    }
/* </Header> */
/* <Mobile View> */
.mobile-view {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    display: none;
    transition: all .6s ease;
}

.logo-sm{
    max-width: 200px;
}

.btn-menu{
    background: var(--theme-color1);
    color: white;
    border: none;
    height: 30px;
    width: 30px;
    display: none;
    transition: all .6s ease;
}
/* </Mobile View> */

/* <Nav> */
.nav{
    display: flex;
    justify-content: space-between;
    background: var(--theme-color1);
    margin-top: 40px;
    transition: all .6s ease;
    position: relative;
    width: 100%;
    z-index: 9;
}

.nav a{
    text-decoration: none;
    color: white;
    line-height: 60px;
}

.nav ul{
    list-style: none;
}

nav > ul{
    display: flex;
    gap: 20px;
    margin: 0;
}

.nav .dropdown{
    position: relative;
}

.nav .dropdown > ul{
    position: absolute;
    z-index: 1;
    background-color: var(--theme-color2);
    padding: 0;
    min-width: 250px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .6s;
    height: auto;
}

.nav .dropdown > ul a{
    display: inline-block;
    width: 100%;
    border-bottom: 1px dotted white;
    line-height: 40px;
    padding: 0 15px;
    transition: background .6s;
}

.nav .dropdown > ul a:hover{
    background: var(--theme-color1);
}

@media (min-width: 786px){
    .nav .dropdown:hover > ul{
        max-height: 500px;
    }
}

@media (max-width: 785px) {
    .nav{
        gap: 0 !important;
        max-height: 0;
        overflow: hidden;
        flex-wrap: nowrap;
        position: absolute;
        top: 114px;
    }

    .nav.active{
        max-height: 1000px;
    }

    .nav, nav > ul{
        flex-direction: column;
    }

    nav > ul{
        gap: 0;
        padding: 0;
    }

    .nav a{
        line-height: 40px;
        padding: 0 15px;
        border-bottom: 1px dotted white;
        display: inline-block;
        width: 100%;
    }

    .nav .dropdown > ul{
        position: static;
    }

    .nav .dropdown.active > ul{
        max-height: 1000px;
    }

    .btn-menu{
        display: block;
    }

    .mobile-view{
        justify-content: space-between;
    }
}

.logo-lg{
    left: 50%;
    top: 0;
    position: absolute;
    transform: translate(-50%, -50%);
}

@media (max-width: 1040px){
    .logo-lg{
        display: none;
    }

    .nav{
        justify-content: center;
        gap: 20px;
        margin-top: 10px;
    }

    .nav > ul{
        padding: 0
    }

    .mobile-view{
        display: flex;
    }
}
/* </Nav> */

/* <Product Category> */
.product-category{
    background: url('/Static/Site/Images/shutterstock_1037763571-min.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.pc-card{
    background: var(--bg-color2);
    transition: all .6s ease;
}

.pc-card a{
    text-decoration: none;
    transition: all .6s ease;
}

.pc-card:hover{
    background: var(--theme-color2);
    color: white;
}

.pc-card:hover a{
    color: white;
}
/* </Product Category> */

/* <Our Team> */
.our-team{
    background: var(--bg-color1);
}

.our-team .content{
    padding: 100px 30px 100px 200px;
}

.our-team .info{
    border: 2px solid var(--theme-color1);
    width: 100%;
    height: auto;
    padding: 60px;
    background: #fff;
    border-radius: 20px;
}

.our-team img{
    width: 80%;
}

@media (max-width: 1375px) {
    .our-team .content{
        padding: 50px;
    }
}

@media (max-width: 1190px) {
    .our-team img{
        width: 100%;
    }
}

@media (max-width: 767px) {
    .our-team .img-wrapper{
        display: none;
    }
}
/* </Our Team> */

/* <Why choose us> */
.wcu-card{
    width: 100%;
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #00923f;
    background: #fff;
    box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.11);
    display: flex;
    gap: 30px;
}

.wcu-card > img{
    aspect-ratio: 1/1;
}
/* </Why choose us> */

/* <Vision Mission Value> */
.vmv-card {
    border: none;
    border-left: 6px solid;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.vmv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.vmv-icon {
    width: 55px;
    height: 55px;
    background: rgba(25,135,84,0.1);
    color: #198754;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.vmv-title {
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 1px;
}
/* <Vision Mission Value> */

/* <Leader Section> */
.leader-section {
    padding: 70px 0;
}

.leader-section .details {
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 0     12px #00000000;
}

.leader-section .border-l {
    border-left: 5px solid var(--theme-color2);
}

.leader-section .border-r {
    border-right: 5px solid var(--theme-color2);
}

.leader-section.bg-light {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.leader-img {
    max-height: 320px;
    min-height: 300px;
    width: auto;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
    border: 2px solid var(--theme-color1);
}

.leader-role {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6c757d;
}

.leader-name {
    font-weight: 700;
    margin-bottom: 15px;
}
/* </Leader Section> */

/* <MOU Section> */
.slider {
    overflow: hidden;
    position: relative;
}

.slider-track {
    display: flex;
    gap: 50px;
    width: calc(200px * 16); /* logo width � total logos */
    animation: mou_scroll 30s linear infinite;
}

.slider-track.reverse {
    animation-direction: reverse;
}

.slide {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.slider.sm .slide {
    height: 120px;
}

.slider.lg .slide {
    height: 400px;
}

.slider.with-title .slide {
    height: auto;
}

.slide > a {
    height: 100%;
}

.slider.with-title .slide > a{
    width: 300px;
}

.slide img {
    max-height: 100%;
    object-fit: contain;
}

.slider.with-title .slide img {
    max-width: 100%;
}

.slider.with-hover-effect .slide img {
    filter: grayscale(100%);
    opacity: 0.8;
    transition: 0.3s ease;
}

.slider.with-hover-effect .slide img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.slider.with-title .img-title2 {
    max-width: 300px;
}

@keyframes mou_scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}
/* </MOU Section> */

/* Gallery Section */
.gallery-section {
    background: #f8f9fa;
    padding: 60px 0;
}

/* <Masonry Layout> */
.masonry-gallery {
    column-count: 4;
    column-gap: 20px;
}

@media (max-width: 1200px) {
    .masonry-gallery {
        column-count: 3;
    }
}

@media (max-width: 768px) {
    .masonry-gallery {
        column-count: 2;
    }
}

@media (max-width: 576px) {
    .masonry-gallery {
        column-count: 1;
    }
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: 0.4s ease;
    border: 1px solid #b7b7b7;
}

    .masonry-item img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.5s ease;
    }

    .masonry-item:hover img {
        transform: scale(1.05);
    }
/* </Masonry Layout> */

/* <Certificates> */
.certificates {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.certificate > a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}

.certificates img {
    height: 150px;
    border: none;
}
/* </Certificates> */

/* <Messages> */
/*.messages-slider {
    overflow: hidden;
    width: 100%;
    padding: 40px 0;
}

.messages-track {
    display: flex;
    animation: scroll 10s linear infinite;
    will-change: transform;
}

.messages-wrapper {
    flex: 0 0 auto;
    width: 260px;
    height: 320px;
    margin-right: 40px;
}

    .messages-wrapper a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        border-radius: 12px;
        transition: all 0.3s ease;
        text-decoration: none;
        padding: 0;
    }

    .messages-wrapper img {
        max-height: 100%;
        max-width: 100%;
        object-fit: contain;
        box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    }

    .messages-wrapper img:hover {
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}*/
/* </Messages> */

/* <Footer> */
/*.footer{
    background: linear-gradient(#0d8301de, #0d8301de),
                url('/Static/Site/images/bg-footer.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}*/
.ft-logo {
    max-width: 300px;
}
/* </Footer> */

.title2 {
    color: #a70000;
}

.hover-color-white:hover{
color: white !important;
}

.fixed-element{
    position: fixed;
    bottom: 10px;
    right: 10px;
}

.fixed-element > a{
    text-decoration: none;
    color: white;
    background: var(--theme-color1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
	z-index: 1;
}

.scroll-top{
    position: relative;
    width: 40px;
    height: 40px;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

#scrollTopBtn{
    position: absolute;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: var(--theme-color2);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    bottom: 6px;
    right: 6px;
}

.progress-circle{
    transform: rotate(-90deg);
}

.progress-circle circle{
    fill: none;
    stroke: var(--theme-color2);
    stroke-linecap: round;
    stroke-dasharray: 163;
    stroke-dashoffset: 163;
    transition: stroke-dashoffset .2s linear;
}