

:root {
    --color_base:87,83,77; /* #57534D */
    --primary1:219,35,37; /* #DB2322 */
    --primary2:4,121,68; /* #047944 */
    --primary3:45,45,45; /* #2D2D2D */
    --color_black: 0, 0, 0;
    --color_white: 255, 255, 255;
    --baseFont: "Inter", sans-serif;
    --imgBase: invert(29%) sepia(14%) saturate(265%) hue-rotate(357deg) brightness(101%) contrast(88%);
    --imgPrimary1:invert(16%) sepia(81%) saturate(4156%) hue-rotate(352deg) brightness(95%) contrast(89%);
    --imgPrimary2:invert(17%) sepia(78%) saturate(6685%) hue-rotate(159deg) brightness(93%) contrast(97%);
    --imgPrimary3:invert(9%) sepia(3%) saturate(8%) hue-rotate(329deg) brightness(101%) contrast(79%);
    --imgWhite: invert(100%) sepia(100%) saturate(0%) hue-rotate(13deg) brightness(103%) contrast(102%);
    --imgBlack: invert(0%) sepia(100%) saturate(0%) hue-rotate(108deg) brightness(93%) contrast(103%);
    --radius:24px;
}

html {
    scroll-behavior: auto !important;
}

body {
    font-family: var(--baseFont);
    color: rgb(var(--color_base));
}

a,
a:hover,
a:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    text-decoration: none;
}
button:focus {
    outline: none;
}

.content p {
    line-height: 22px;
    color: rgb(var(--color_base));
    margin-bottom: 1.5rem;
    font-weight: 250;
}
.content p:last-child{margin-bottom: 0;}

.content p a{
    color: inherit;
    text-decoration: none;
}

.content h3{
    margin: 0 0 12px;
}
.content ul{
    color: rgb(var(--color_base));
    margin: 0 0 1rem;
    padding: 0;
    padding-left: 1.5rem;
}
.content ul li{margin-bottom: 0.4rem;
    font-weight: 250;
}

.radius{border-radius: var(--radius);}
.radius-half{border-radius: calc(var(--radius) / 2);}

.padding {
    padding: 80px 0;
}
.padding-sm{
    padding: 50px 0;
}


h2.title, h2{
    font-size: clamp(1.5rem, 1.2857rem + 1.0714vw, 2.25rem);
    margin-bottom: 12px;
    font-weight: 600;
    color: rgb(var(--primary1));
}
div.title{
    margin-bottom: 12px;
    font-weight: 600;
    color: rgb(var(--primary1));
}


hr{
    margin: clamp(0.9375rem, 0.75rem + 0.9375vw, 1.875rem) 0 0;
}
.btn-custom{
    color: rgb(var(--primary1));
    padding: 12px 24px;
    border-radius: calc(var(--radius) / 2);
    line-height: normal;
    position: relative;
    border: 1px solid rgb(var(--primary1));
    margin-top: 1.5rem;
    font-weight: 500;
    text-decoration: none !important;
}

.btn-custom:hover, .btn-custom:focus,.btn-custom:active{outline: none;
    color: rgb(var(--color_white)) !important;
    background-color: rgb(var(--primary1)) !important;
    border-color: rgb(var(--primary1)) !important;
}
.btn-custom.btn-fill{
    background-color: rgb(var(--primary1));
    color: rgb(var(--color_white));
}
.btn-custom.btn-fill:hover, .btn-custom.btn-fill:focus,.btn-custom.btn-fill:active{
    color: rgb(var(--primary1)) !important;
    background-color: rgb(var(--color_white)) !important;
    border-color: rgb(var(--primary1)) !important;
}


#wrapper{max-width: 1920px; margin: 0 auto;}
.container{max-width: 1400px;}

/* header */
.header {
    padding: 24px 0;
}

/* Nav Links */
#main-menu .navbar-nav .nav-link {
    font-weight: 500;
    color: #44403B;
    margin: 0 15px;
    padding: 10px 0;
    position: relative;
}

#main-menu .navbar-nav .nav-link::before{
    content: "";
    width: 0;
    height: 2px;
    background-color: rgb(var(--primary1));
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    transition: all .3s linear;
}

#main-menu .navbar-nav .nav-link:hover {
color: #44403B;
}
#main-menu .navbar-nav .nav-item.active .nav-link::before{
    width: 100%;
}

/* Phone Icon */
.phone-btn {
    width: 42px;
    height: 42px;
    border: 2px solid #047944;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.phone-btn:hover {
    background: #047944;
    color: #fff;
}
.phone-btn:hover img{
    filter: brightness(0) invert(1);
}
.navbar-toggler{padding: 0; border: none;}
.navbar-toggler:focus,.navbar-toggler:active{box-shadow: none;}
.navbar-toggler-icon{filter: var(--imgPrimary1);}

/* banner */
.hero-section {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 85vh;
    min-height: 640px;
}

/* Background Video */
.hero-section video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
    border-radius: var(--radius);
}

/* Dark Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(var(--primary1),0.2);
    z-index: 2;
}

/* Content */
.hero-content {
    position: relative;
    z-index: 3;
    color: rgb(var(--color_white));
    text-align: center;
    overflow: hidden;
}

.hero-content h1 {
    font-weight: 700;
}

.hero-content p {
    font-size: clamp(14px, 2vw, 18px);
    opacity: 0.9;
}

/* Small Heading */
.tagline {
    color: rgb(var(--primary2));
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
}

/* about-content */
.about-content p {
    font-size: clamp(1.125rem, 1.0893rem + 0.1786vw, 1.25rem);
}
/* Bottom Green Lines */
.bottom-lines {
    margin-top: 60px;
}

.bottom-lines span {
    display: block;
    height: 2px;
    background: rgb(var(--primary2));
    margin-bottom: 10px;
}

/* highlights-section */
.highlight-img {
    border-radius: 30px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* List Styling */
.bullet-style {
    list-style: none;
    padding-left: 0;
}

.bullet-style li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 1rem;
    font-size: clamp(1.125rem, 1.0893rem + 0.1786vw, 1.25rem);
}
.bullet-style li:last-child{margin-bottom: 0;}

.bullet-style li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    background: rgb(var(--primary2));
    border-radius: 50%;
}




.pic-outer{overflow: hidden; z-index: 1; background-color: #E5E5E5;}
.pic-outer *{ transition: all .3s linear;}
.pic-outer:hover img{transform: scale(1.1);}


/* industries-wrapper */
.industries-wrapper {
    background: rgb(var(--primary1));
    border-radius: var(--radius);
    padding: 80px 36px 0;
    transition: all .3s linear;
}
.industry-card {
    border-radius: calc(var(--radius) / 2);
    overflow: hidden;
    display: block;
}
.industry-card .card-footer {
    background: rgb(var(--primary2));
    color: rgb(var(--color_white));
    font-weight: 700;
    font-size: clamp(1.125rem, 1.0893rem + 0.1786vw, 1.25rem);
    padding: 1.5rem;
    border: none;
}

/* Owl Nav Styling */
.industry-carousel .owl-nav {
    position: absolute;
    top: -94px;
    right: 0;
}

.nav-style .owl-nav button {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgb(var(--color_white)) !important;
    background: transparent !important;
    margin-left: 10px;
    transition: 0.3s;
}
.nav-style .owl-nav button .arrow{
    background-image: url('../images/arrow.png');
    width: 24px; height: 24px;  background-repeat: no-repeat;
    background-size: contain;
    display: block;
    position: relative;
    margin: auto;
    transition: all .2s linear;
    flex-shrink: 0;
    margin: auto;
    filter: var(--imgWhite);
}
.nav-style .owl-nav button .prev-arrow{ transform: rotate(180deg); }
.nav-style .owl-nav button:hover span{
    filter: var(--imgPrimary1);
}
.nav-style .owl-nav button:hover {
    background-color: rgb(var(--color_white)) !important;
}


.owl-flex.owl-carousel .owl-stage{display: flex;}
.owl-flex.owl-carousel .item {
    display: flex;
    flex: 1 0 auto;
    height: 100%;
}


/* application-slider */
.application-wrapper .half-height{
    background-color: rgb(var(--primary3));
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
}
.application-slider .item .pic-outer {
    border-radius: calc(var(--radius) / 2);
}

/* footer */
.footer {
    background: rgb(var(--primary3));
}


.footer h5 {
    font-size: clamp(1.125rem, 1.0893rem + 0.1786vw, 1.25rem);
    font-weight: 400;
    color: rgb(var(--color_white));
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    color: #D6D3D1;
    text-decoration: none;
    margin-bottom: 10px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: rgb(var(--color_white));
    padding-left: 5px;
}

.footer-contact p {
    color: #D6D3D1;
    margin-bottom: 24px;
    word-wrap: break-word;
}
.footer-contact p a{
    color: inherit;
    text-underline-offset: 10px;
    transition: all .3s linear;
}
.footer-contact p a:hover{
    text-decoration: underline;
    text-underline-offset: 5px;
}

.footer-contact p:last-child{
    margin-bottom: 0;
}

.footer-divider {
    border-top: 1px solid rgba(var(--color_white),0.25)
}

.footer-bottom {
    color: rgba(var(--color_white),0.5);
}

.footer-bottom a {
    color: rgba(var(--color_white),0.5);
    text-decoration: underline;
    text-underline-offset: 5px;
}

.footer-bottom a:hover {
    color: rgb(var(--color_white));
}

.totop{bottom: 30px; cursor: pointer; display: flex; align-items: center; justify-content: center;
    width: 42px; height: 42px; position: fixed; right: -60px; z-index: 99; background-color: rgb(var(--primary2)); text-align: center; opacity: 0; border-radius: 50%; }
.totop img{filter : var(--imgWhite); transform: rotate(-90deg); width: 20px;}






/* inner page styles */
.inner-banner {padding-top: 23.33%; background-position: center top; background-size: cover; background-repeat: no-repeat;}
.inner-banner:before {content: ''; border-radius: var(--radius); position: absolute; inset: 0;
     background: rgba(72,11,11,0.5); z-index: 1;}
.inner-banner .container {position: absolute; inset: 0; z-index: 1; transition: all .3s linear; display: flex; align-items: center; justify-content: center; flex-direction: column; }
.inner-banner h1{font-size: clamp(1.75rem, 1.5357rem + 1.0714vw, 2.5rem); margin-bottom: 12px; font-weight: 700;}

.breadcrumb {color: rgb(var(--color_white));}
.breadcrumb li{font-weight: 400;}
.breadcrumb li a{font-weight: 400;}
.breadcrumb li,.breadcrumb li a{font-size: clamp(1.125rem, 1.0893rem + 0.1786vw, 1.25rem);}
.breadcrumb li.active,.breadcrumb li a{color: rgb(var(--color_white));}
.breadcrumb li a:hover{opacity: 0.8;}
.breadcrumb-item+.breadcrumb-item::before{ content: "•"; color: rgb(var(--color_white));}

.bg{background:url('../images/bg.jpg') no-repeat 0 0; background-size: cover; width: 100%; height: 100%;}
.commitment-wrapper {
    border-radius: var(--radius);
    padding: 80px 36px;
    transition: all .3s linear;
}


.left-column{border-right: 1px solid #D6D3D1;}
.vision-mission .block{max-width: 350px; margin: 0 auto;}
.vision-mission .icon{width: 82px;}

.facility-card .bullet-style li{font-size: 1rem; margin-bottom: 6px;}

/* Quality Cards */
.quality-card {
    border-radius: var(--radius);
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    align-items: flex-end;
    font-size: clamp(1.125rem, 1.0893rem + 0.1786vw, 1.25rem);
    font-weight: 500;
}

.card-gradient-red {
    background: linear-gradient(180deg, #FEF2F2, #FFA2A2);
}

.card-gradient-green {
    background: linear-gradient(180deg, #ECFDF5, #5EE9B5);
}

.card-number {
    position: absolute;
    right: 30px;
    bottom: -17px;
    font-size: clamp(3.75rem, 2.5357rem + 6.0714vw, 8rem);
    font-weight: 500;
    color: rgba(var(--color_white),0.25);
    line-height: 1;
}

/* Center Image Card */
.center-image-card {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    background-color: rgb(var(--color_black));
}

.center-image-card img {
    width: 100%;

 }

.center-overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(
        to top,
        rgba(var(--color_black),1) 0%,
        rgba(var(--color_black),1) 60%,
        rgba(var(--color_black),0) 100%
    );
    padding: 150px 30px 40px;
    color: rgb(var(--color_white));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.center-overlay h5 {
    font-size: clamp(1.125rem, 1.0893rem + 0.1786vw, 1.25rem);
    margin-bottom: 1.5rem;
}

.center-overlay p {
    margin-bottom: 8px;
}
.center-overlay p:last-child{margin-bottom: 0;}
.quality-card .text{max-width: 70%;}

/* address-block */
.address-block h5{ color: rgb(var(--primary1)); font-size: clamp(1.125rem, 1.0893rem + 0.1786vw, 1.25rem);}
.address-block p{font-size: clamp(1.125rem, 1.0893rem + 0.1786vw, 1.25rem); margin-bottom: 1.5rem;}
.address-block p a{color: inherit;}
.address-block p a:hover{color: rgb(var(--primary1));}


/* cust-form */
.cust-form .form-control{
    border: 1px solid #ADADAD;
    border-radius: calc(var(--radius) / 2);
    padding: 12px 24px;
    color: rgb(var(--color_black));
}

.cust-form .form-control:focus{box-shadow: none; border-color: rgb(var(--primary1));}
.cust-form textarea.form-control{resize: none; height: 100px;}

.form-control::-webkit-input-placeholder {color: #ADADAD; }
.form-control::-moz-placeholder {color: #ADADAD; }
.form-control:-ms-input-placeholder { color: #ADADAD;  }
.form-control:-moz-placeholder { color: #ADADAD; }