:root {
    --black: #080809;
    --white: #fff;
    --logo-color: #0a2472;
    --logo-bg: grey;
}

body {
    font-family: "Inter", sans-serif;
}

::-moz-selection {
    background-color: black;
    color: #fff;
}

::selection {
    background-color: black;
    color: #fff;
}


ul,
li {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    text-transform: uppercase;

}

a:focus,
a:hover {
    text-decoration: none;
}

p {
    margin-bottom: 5px;
    line-height: 1.7;
}

section {
    padding-top: 80px;
    padding-bottom: 80px;
}

svg,
img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}


/* **********************************************************************/
/* **********************************************************************/
/* **********************************************************************/
/* **********************************************************************/

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: var(--logo-color);
    border-radius: 6px;
    border: 2px solid white;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #555;
}

/* **********************************************************************/
/* **********************************************************************/
/* **********************************************************************/
/* **********************************************************************/





/* fixed-phone-btnn */
.fixed-phone-btnn,
.fixed-wtsapp-btnn {
    color: white;
    background-color: var(--logo--orange);
    background-color: rgb(44, 107, 178);
    border-radius: var(--border-radius);
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 10px 15px;
    z-index: 100;
    text-decoration: none;
}

.fixed-wtsapp-btnn {
    bottom: 95px;
    background: #81d742;
    border: 1px solid #81d742;
}

.fixed-phone-btnn i,
.fixed-wtsapp-btnn i {
    font-size: 25px;
}

.fixed-wtsapp-btnn:hover {
    color: #81d742;
    border: 1px solid #81d742;
    background-color: white;
    transition: 0.4s;
}

.fixed-phone-btnn:hover {
    color: rgb(44, 107, 178);
    border: 1px solid rgb(44, 107, 178);
    background-color: white;
    transition: 0.4s;
}



/* **********************************************************************/
/* **********************************************************************/
/* common  */
/* Title Section */
.title {
    margin-bottom: 30px;
    text-align: center;
}

/* Flex wrapper to keep h6 centered with lines */
.title-line-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

/* Left & right lines */
.title-line-wrapper .line {
    height: 1px;
    width: 60px;
    /* adjust length */
    background: rgba(0, 0, 0, 0.2);
}

/* Subtitle */
.title h6.sub-title {
    font-size: 16px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.384);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    white-space: nowrap;
}

/* Main title */
.title h5.main-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--logo-color);
    margin: auto;
    margin-top: 20px;
    max-width: 800px;
}



h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--logo-color);
}










/* **********************************************************************/
/* **********************************************************************/







/*/* ================= HEADER ================= */
header {
    width: 100%;
    height: 80px;
    background-color: var(--logo-color);
    background: #faf5f8;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

/* ================= LOGO ================= */
header .logo {
    height: 70%;
    display: flex;
    align-items: center;
}

header .logo a {
    height: 100%;;
}
header .logo image {
    height: 100%;;
}

/* ================= CONTAINER ================= */
header .container {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ================= CLOSE BUTTON ================= */
.close-btn {
    display: none;
}

/* ================= NAV ================= */
header nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    position: relative;
}

header nav ul li {
    position: relative;
}

/* NAV LINKS */
header nav ul li a {
    text-decoration: none;
    color: var(--logo-color);
    text-transform: capitalize;
    font-size: 16px;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
}

/* ================= DROPDOWN ================= */
.dropdown-toggle::after {
    display: none;
}

.dropdown-menu {
    position: absolute;
    top: 120%;
    left: -450px;
    width: 620px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: all 0.3s ease;
}

/* OPEN STATE */
.dropdown.active .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* DROPDOWN LINKS */
.dropdown-col a {
    display: block;
    padding: 8px 0;
    color: #333;
    font-size: 14px;
}

.dropdown-col a:hover {
    color: var(--logo-color);
}

/* ARROW ROTATION */
.dropdown.active .ri-arrow-down-s-line {
    transform: rotate(180deg);
    transition: 0.3s;
}

/* ================= HAMBURGER ================= */
header #hamburger-icon {
    display: none;
    font-size: 26px;
    color: white;
    cursor: pointer;
}

header .mobile-menu{
    display: none;
}

/* ================= MOBILE MENU ================= */

#mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 999;
    transition: 0.4s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -2px 0 15px rgba(0,0,0,0.2);
}

#mobile-menu.active {
    right: 0;
}

#mobile-menu .mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: var(--logo-color);
    color: #fff;
}

#mobile-menu .mobile-header h6 {
    margin: 0;
    font-size: 18px;
}

#mobile-menu .mobile-close {
    font-size: 26px;
    cursor: pointer;
}

#mobile-menu .mobile-list {
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 12px;
    overflow-y: auto;
}

#mobile-menu .mobile-list a {
    text-decoration: none;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

/* Mobile dropdown */
.mobile-dropdown {
    display: none;
    flex-direction: column;
    gap: 10px;
    margin-top: 5px;
    padding-left: 10px;
}

.mobile-dropdown.active {
    display: flex;
}
.mobile-dropdown.active a{
    color: #333333bf;

}


.mobile-toggle {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

























/* **********************************************************************/
/* banner */
#banner {
    padding: 0;
    height: 450px;
    width: 100%;
    position: relative;


    background-image: linear-gradient(
        to right,
        #0000004c,
        #051833
    ), url(../images/home/banner/banner1.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Apply background per slide */
#banner .carousel-item {
    height: 450px;
}

#banner .container {
    height: 100%;
}

#banner .banner-txt-cover {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
}

#banner .banner-txt {
    text-align: center;
}

#banner .banner-txt h1 {
    color: white;
    font-weight: bold;
    opacity: 0;
}

#banner .banner-txt p {
    color: white;
        max-width: 400px;
        opacity: 0;
}

#banner .banner-img {
    width: 45%;
}

#banner .banner-img img {
    width: 100%;
}





/* **********************************************************************/
/* About Section */


#about .title h5 {
    max-width: 600px;
    margin: auto;
    margin-top: 20px;
}

#about .about-content {
    margin-bottom: 30px;
}

#about .about-content p {
    color: #444;
    margin-bottom: 15px;
    line-height: 1.7;
}






/* Feature Boxes */
.about-features .feature-box {
    background: var(--logo-color);
    padding: 18px 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
    min-height: 150px;
}

.about-features .feature-box i {
    font-size: 22px;
    color: white;
    margin-top: 3px;
}

.about-features .feature-box p {
    margin: 0;
    font-weight: 500;
    font-size: 15px;
    color: white;
    line-height: 1.4;
}









#about .about-img img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}














/* **********************************************************************/
/* products */

/* #products {
    background: #f2f4f8;
} */

#products a {
    text-decoration: none;
}

/* Product cards */
.product-card {
    background: #ffffff;
    border: 1px solid #d5d5d5;
    padding: 15px 20px 30px 20px;
    text-align: center;
    border-radius: 10px;
    transition: 0.3s ease;
    height: 100%;
}


.product-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}


.product-card h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--logo-color);
}

/* Hover effects */
.product-card:hover {
    border-color: var(--logo-color);
    box-shadow: 0 4px 18px #0a2472c0;
    transform: translateY(-5px);
}















/* **********************************************************************/
/* industries */
/* Industries Section */
#industries {
    background: #f2f4f8;
    /* Light grey-blue */
}

#industries .industry-card {
    background: #fff;
    padding: 25px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: 0.3s ease;
    min-height: 160px;

    display: flex;
    flex-direction: column;
    justify-content: center;

}

#industries .industry-card i {
    font-size: 40px;
    color: #0a2472;
    /* Your primary color */
    margin-bottom: 10px;
}

#industries .industry-card h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--logo-color);
}

#industries .industry-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}
























/* **********************************************************************/
/* footer */
footer {
    background-color: var(--logo-color);
    padding-top: 50px;
}


footer h6 {
    color: white;
    margin-bottom: 20px;
}

footer p {
    color: #ffffffc2;
    margin-bottom: 20px;
}



footer li {
    list-style-type: none;
}

footer li a {
    color: #ffffffc2;
    text-decoration: none;
    margin-bottom: 10px;
}


footer .single-footer-contact a{
    color: white;
}


/* copyrights-body */
footer .copyrights-body {
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    margin-top: 30px;
    border-top: 1px solid white;
}
footer .copyrights-body a{
    color: white;
}









/* **********************************************************************/
/* **********************************************************************/
#other-page-bg {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    height: 200px;
    width: 100%;
}

/* **********************************************************************/
/* **********************************************************************/







/* about page  */
/* abt-page-bg-img */
.abt-page-bg-img {
    background-image: url(https://images.unsplash.com/photo-1684775622511-c76e31cd404b?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
    background-image: url(https://images.unsplash.com/photo-1542601906990-b4d3fb778b09?q=80&w=1313&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
}



#about-company .about-highlight-box {
    background-color: #f2f4f8;
    padding: 25px;
    border-left: 4px solid var(--logo-color);
}

#about-company .about-highlight-box li {
    margin-bottom: 10px;
    font-weight: 500;
}

#about-company .about-highlight-box i {
    color: var(--logo-color);
    margin-right: 8px;
}

#about-company .vm-card {
    background-color: #f2f4f8;
    padding: 30px;
    height: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgb(242 244 248);
}

#about-company .vm-card h5 {
    margin-bottom: 15px;
}








/* ================= WHY CHOOSE US ================= */
#why-choose-us {
    background-color: #f2f4f8;
}

#why-choose-us .choose-item {
    display: flex;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid #e5e5e5;
}

#why-choose-us .choose-item:last-child {
    border-bottom: none;
}

#why-choose-us .choose-item i {
    font-size: 34px;
    color: var(--logo-color);
    flex-shrink: 0;
}

#why-choose-us .choose-item h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 5px;
}

#why-choose-us .choose-item p {
    /* line-height: 1.6; */
}

#why-choose-us .choose-visual img {
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}











/* values */
#values {
    
}

#values .col-lg-4 {
    margin-bottom: 20px;

}

.value-card {
    background-color: #f2f4f8;
    padding: 30px 20px;
    text-align: center;
    height: 100%;
    border-radius: 8px;
}

.value-card i {
    font-size: 40px;
    color: var(--logo-color);
    margin-bottom: 10px;
}

.value-card h5 {
    margin: 10px 0;
}















/* **********************************************************************/
/* **********************************************************************/

/* standard-models h5 */
#standard-models {
    background: #f2f4f8;
}

#standard-models h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--logo-color);
    margin-bottom: 20px;
}




/* individual-product-name */
#standard-models .individual-product-name {
    margin-bottom: 50px;
}

#standard-models .individual-product-name h5 {
    font-size: 25px;
}





/* individual-card-img */
#standard-models .individual-card-img {
    position: sticky;
    top: calc((100vh - 80px) / 2 - 90px);
    border: none;
}






/* spec-box */
#standard-models .spec-box {
    background: white;
    height: 100%;
    padding: 20px 10px;
}















/* **********************************************************************/
/* **********************************************************************/


/* **********************************************************************/
/* **********************************************************************/
/* contact-page */


.contact-page-bg-img {
    background-image: url(https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
}


/* contact-info-box */
#contact-page-content .contact-info-box {
    min-height: 210px;
    background: var(--logo-color);
    padding: 10px;
    text-align: center;
    margin-bottom: 20px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* contact-info-icon */
#contact-page-content .contact-info-box .contact-info-icon {
    margin-bottom: 10px;
}

#contact-page-content .contact-info-box .contact-info-icon i {
    color: white;
    font-size: 40px;
}

/* contact-info-title */
#contact-page-content .contact-info-box .contact-info-title h5 {
    color: white;
    margin-bottom: 10px;
}

#contact-page-content .contact-info-box .contact-info-details p {
    color: white;
}
#contact-page-content .contact-info-box .contact-info-details p a{
    color: white;
    
}
#contact-page-content .map iframe{
    width: 100%;
    height: 350px;
}