/* =========================
    GLOBAL CSS
========================= */
html,
body{
    overflow-x: hidden !important;
    max-width: 100%;
}


/* =========================
    GOOGLE FONT
========================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');


body{
   font-family:'Montserrat',sans-serif !important;
       overflow-x: hidden;  
}

p{font-weight: 500; line-height: 1.8;}

/* =========================
    TOPBAR CSS
========================= */

.topbar{
    background: #f5f5f5;
    padding: 0px 0;
    border-bottom: 1px solid #e5e5e5;
}

/* LOGO */

.logo-area img{
    max-width: 170px;
}

/* RIGHT SIDE */

.top-contact-wrapper{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 70px;
    flex-wrap: wrap;
}

/* CONTACT BOX */

.contact-box{
    display: flex;
    align-items: center;
    gap: 15px;
}

/* ICON */

.icon-box{
    width: 44px;
    height: 44px;
    background: #d91f26;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: 0.4s;
}

.contact-box:hover .icon-box{
    transform: translateY(-5px);
}

.icon-box i{
    color: #fff;
    font-size: 23px;
}

/* TEXT */

.contact-text h6{
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #111;
}

.contact-text a{
    color: #111;
    font-size: 16px;
    
    transition: 0.3s; text-decoration: none; font-weight: 600;
}

.contact-text a:hover{
    color: #d91f26;
}

/* PHONE LIST */

.phone-list{
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* =========================
    RESPONSIVE CSS
========================= */

@media(max-width:991px){

    .topbar{
        text-align: center;
    }

    .logo-area{
        margin-bottom: 25px;
    }

    .top-contact-wrapper{
        justify-content: center;
        gap: 30px;
    }

}

@media(max-width:767px){

    .topbar{
        padding:2px 0; display: none;
    }

    .top-contact-wrapper{
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .contact-box{
        flex-direction: column;
        text-align: center;
    }

    .phone-list{
        justify-content: center;
    }

    .contact-text a{
        font-size: 14px;
    }

}


/* =========================
    NAVBAR CSS
========================= */

.custom-navbar{
    background: #0b3557;
    position: relative;
    z-index: 999;
    padding: 0;
}

/* CONTAINER */

.custom-navbar .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* NAVBAR MENU */

.navbar-collapse{
    display: flex;
    align-items: center;
    width: 100%;
}

/* MENU */

.navbar-nav{
    display: flex;
    align-items: center;
    gap: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* LINKS */

.navbar-nav .nav-link{
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding:15px 10px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover{
    color: #ffd34d;
}

.navbar-nav .nav-link.active{
    color: #ffd34d !important;
}

/* DROPDOWN */

.dropdown{
    position: relative;
}

.custom-dropdown{
    position: absolute;
    top: 100%;
    left: 0;
    width: 300px;
    background: #f3f3f3;
    padding: 0;
    margin: 0;
    list-style: none;
    display: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    z-index: 999;
}

/* DESKTOP HOVER */

@media(min-width:992px){

    .dropdown:hover .custom-dropdown{
        display: block;
    }


}

/* DROPDOWN ITEMS */

.custom-dropdown .dropdown-item{
    display: block;
    padding: 15px 22px;
    color: #111;
    font-size: 15px;
    
    text-decoration: none;
    border-bottom: 1px solid #ddd;
    transition: 0.3s;
    background: #f3f3f3; width:auto;
}

.custom-dropdown .dropdown-item:hover{
    background: #d61f26;
    color: #fff;
}

.custom-dropdown .dropdown-item.active-item{
    background: #d61f26;
    color: #fff;
}

/* BUTTON */

.nav-btn{
    margin-left: auto;
}

.question-btn{
    background: #fff;
    color: #111;
    padding: 10px 34px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
}

.question-btn:hover{
    background: #d61f26;
    color: #fff;
}

/* MOBILE LOGO */

.mobile-logo{
    max-width: 130px;
    display: none;
}

/* TOGGLE */

.navbar-toggler{
    border: none;
    background: #082b47;
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 6px;
    font-size: 22px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.navbar-toggler{color:#fff;}

/* CLOSE BUTTON */

.mobile-close-btn{
    display: none;
}

/* OVERLAY */

.mobile-overlay{
    display: none;
}

/* =========================
    MOBILE RESPONSIVE
========================= */

@media(max-width:991px){

    .custom-navbar{
        padding: 12px 0;
    }

    /* MOBILE LOGO */

    .mobile-logo{
        display: block; padding:10px;
    }

    .navbar-brand{
        padding: 0;
        margin: 0;
    }

    /* TOGGLE */

    .navbar-toggler{
        display: flex;
    }

    /* MENU */

    .navbar-collapse{
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: #0b3557;
        padding: 25px;
        z-index: 99999;
        transition: 0.5s;
        overflow-y: auto;
        display: block;
    }

    .navbar-collapse.show-menu{
        right: 0;
    }

    /* OVERLAY */

    .mobile-overlay{
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        z-index: 9999;
        opacity: 0;
        visibility: hidden;
        transition: 0.4s;
        display: block;
    }

    .mobile-overlay.show-overlay{
        opacity: 1;
        visibility: visible;
    }

    /* CLOSE BUTTON */

    .mobile-close-btn{
        width: 45px;
        height: 45px;
        background: #d61f26;
        border-radius: 50%;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        margin-bottom: 30px;
        cursor: pointer;
        font-size: 15px;
    }

    /* MENU */

    .navbar-nav{
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .navbar-nav .nav-link{
        width: 100%;
        padding: 14px 0;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    /* MOBILE DROPDOWN */

    .custom-dropdown{
        position: static;
        width: 100%;
        margin-top: 10px;
        border-radius: 8px;
        overflow: hidden;
        display: none;
    }

    .dropdown.active .custom-dropdown{
        display: block;
    }

    /* BUTTON */

    .nav-btn{
        margin-top: 25px;
    }

    .question-btn{
        width: 100%;
        text-align: center;
    }

    .logo-area img{display: none !important;}

}






/* =========================
    HERO SLIDER CSS
========================= */

.hero-slider{
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* SLIDE */

.slide{
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.8s ease;
}

.slide.active{
    opacity: 1;
    visibility: visible;
    position: relative;
}

/* IMAGE ACTUAL SIZE */

.slide img{
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* BUTTONS */

.slider-btn{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    border: none;
    background: rgba(0,0,0,0.35);
    color: #fff;
    font-size: 28px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
}

.slider-btn:hover{
    background: #d61f26;
}

/* LEFT BUTTON */

.prev-btn{
    left: 15px;
}

/* RIGHT BUTTON */

.next-btn{
    right: 15px;
}

/* =========================
    RESPONSIVE
========================= */

@media(max-width:767px){

    .slider-btn{
        width: 42px;
        height: 42px;
        font-size: 15px;
    }

    .prev-btn{
        left: 10px;
    }

    .next-btn{
        right: 10px;
    }

}













/* =========================
    PRODUCT SECTION CSS
========================= */
.product-section{
    background: #6f9dc2;
    padding: 70px 0 70px; /* BOTTOM SPACE BADHAO */
    position: relative;
    overflow: visible; /* IMPORTANT */
    z-index: 1;
}


.product-section::before{
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/counter-bg.webp');
      opacity: 0.66;
}

/* PRODUCT BOX */

.product-box{
    background: #fff;
    border-radius: 22px;
    padding: 15px 15px;
    text-align: center;
    height: 100%;
    position: relative;
    z-index: 2;
    transition: 0.4s;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.product-box:hover{
    transform: translateY(-10px);
}

/* IMAGE */

.product-img{
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.product-img img{
    max-width: 100%;
    max-height: 160px;
    object-fit: contain;
    transition: 0.4s;
}

.product-box:hover .product-img img{
    transform: scale(1.05);
}

/* TITLE */

.product-box h4{
    font-size: 17px;
    
    color: #111;
    margin: 0;
    line-height: 28px;
}

/* =========================
    RESPONSIVE
========================= */

@media(max-width:991px){

    .product-section{
        padding: 60px 0;
    }

}

@media(max-width:767px){

    .product-section{
        padding: 50px 0;
    }

    .product-box{
        border-radius: 15px;
        padding: 15px 12px;
    }

    .product-img{
        height: 130px;
    }

    .product-img img{
        max-height: 120px;
    }

    .product-box h4{
        font-size: 15px;
        line-height: 24px;
    }

}





/* =========================
    FEATURES SECTION CSS
========================= */

/* =========================
    FEATURES SECTION
========================= */

.features-section{
    background: transparent;
    padding: 0 0 80px;
    position: relative;
    margin-top: -120px; /* OVERLAP */
    z-index: 99;
}

/* MAIN BOX */

.features-box{
    background: #0d4a78;
    border-radius: 15px;
    padding: 70px 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}



/* BACKGROUND SHAPE */

.features-box::before{
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
    top: -180px;
    right: -180px;
}

/* HEADING */

.section-title{
    text-align: center;
    margin-bottom: 55px;
    position: relative;
    z-index: 2;
}

.section-title h2{
    color: #fff;
    font-size:38px;
    font-weight: 600;
    line-height: 1.1;
    margin: 0;
}

/* FEATURE ITEM */

.feature-item{
    text-align: center;
    position: relative;
    z-index: 2;
    transition: 0.4s;
}

.feature-item:hover{
    transform: translateY(-8px);
}

/* ICON */

.feature-icon{
    margin-bottom: 15px;
}

.feature-icon i{
    color: #fff;
    font-size: 60px;
    line-height: 1;
}

/* TITLE */

.feature-item h4{
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

/* =========================
    RESPONSIVE CSS
========================= */

@media(max-width:1199px){

    .section-title h2{
        font-size: 48px;
    }

    .feature-item h4{
        font-size: 24px;
    }

}

@media(max-width:991px){

    .features-section{
        margin-top: -100px;
        padding-bottom: 70px;
    }

    .features-box{
        padding: 60px 30px;
    }

    .section-title{
        margin-bottom: 45px;
    }

    .section-title h2{
        font-size: 38px;
    }

    .feature-icon i{
        font-size: 50px;
    }

    .feature-item h4{
        font-size: 22px;
    }

}

@media(max-width:767px){

    .features-section{
        margin-top: -70px;
        padding-bottom: 60px;
    }

    .features-box{
        padding: 45px 15px;
        border-radius: 14px;
    }

    .section-title h2{
        font-size: 30px;
    }

    .feature-icon i{
        font-size: 42px;
    }

    .feature-item h4{
        font-size: 15px;
        line-height: 28px;
    }

}

/* =========================
    RESPONSIVE
========================= */

@media(max-width:991px){

    .product-section{
        padding-bottom: 150px;
    }

    .features-section{
        margin-top: -90px;
    }

}

@media(max-width:767px){

    .product-section{
        padding-bottom: 120px;
    }

    .features-section{
        margin-top: -60px;
    }

}







/* =========================
    ABOUT SECTION CSS
========================= */

.about-section{
    padding: 90px 0;
    background: #f7f7f7;
    position: relative;
    overflow: hidden;
}

/* SECTION TITLE */

.section-heading{
    text-align: center;
    margin-bottom: 70px;
}

.section-heading span{
    color: #111;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 3px;
    display: inline-block;
    margin-bottom: 15px;
}

.section-heading h2{
    color: #4d4f57;
    font-size: 44px;
    font-weight: 600;
    line-height: 1.1;
    margin: 0;
}

/* IMAGE */

.about-image{
    position: relative;
}

.about-image img{
    width: 100%;
    border-radius: 6px;
    object-fit: cover;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* CONTENT */

.about-content{
    padding-left: 15px;
}

.about-content p{
    color: #222;
    font-size: 15px;
    line-height: 1.5;

    text-align: justify;
}

.about-content strong{
    font-weight: 600;
}

/* FEATURE LIST */

.about-list{
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid #d7d7d7;
    padding-top: 25px;
}

.about-list li{
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: #222;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 6px;
}

.about-list li i{
    color: #0d4a78;
    font-size: 22px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* =========================
    RESPONSIVE CSS
========================= */

@media(max-width:1199px){

    .section-heading h2{
        font-size: 34px;
    }

}

@media(max-width:991px){

    .about-section{
        padding: 70px 0;
    }

    .section-heading{
        margin-bottom: 50px;
    }

    .section-heading h2{
        font-size: 42px;
    }

    .about-content{
        padding-left: 0;
    }

    .about-content p{
        font-size: 15px;
        line-height: 1.8;
    }

}

@media(max-width:767px){
.about-list li {
display:inherit; */
align-items:left;
gap: 2px;
    color: #222;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 6px;
}
    .about-section{
        padding: 60px 0;
    }

    .section-heading span{
        font-size: 15px;
        letter-spacing: 2px;
    }

    .section-heading h2{
        font-size: 32px;
        line-height: 1.3;
    }

    .about-content p{
        font-size: 15px;
        line-height: 1.8;
        text-align: left;
    }

    .about-list li{
        font-size: 15px;
        line-height: 1.7;
    }

}









/* =========================
    CERTIFICATION STRIP CSS
========================= */

.certification-strip{
    background: #0d4a78;
    padding: 42px 0;
    position: relative;
    overflow: hidden;
}

/* BACKGROUND LINE DESIGN */

.certification-strip::before{
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        url("../images/Untitled-design-2.png");
    background-size: cover;
    opacity: 0.09;
}

/* WRAPPER */

.certification-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    z-index: 2;
}

/* TEXT */

.certification-content h2{
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.5;
    margin: 0;
    max-width: 850px; text-align: left;
}

/* BUTTON */

.certification-btn a{
    background: #d72626;
    color: #fff;
    padding: 14px 34px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    white-space: nowrap;
}

.certification-btn a:hover{
    background: #fff;
    color: #d72626;
}

/* ICON */

.certification-btn a i{
    font-size: 15px;
}

/* =========================
    RESPONSIVE
========================= */

@media(max-width:991px){

    .certification-wrapper{
        flex-direction: column;
        align-items: flex-start;
    }

    .certification-content h2{
        font-size: 22px;
    }

}

@media(max-width:767px){

    .certification-strip{
        padding: 35px 0;
    }

    .certification-content h2{
        font-size: 15px;
        line-height: 1.7;
    }

    .certification-btn a{
        font-size: 15px;
        padding: 13px 24px;
    }

}







/* =========================
    CERTIFICATE SECTION CSS
========================= */

.certificate-section{
    padding: 90px 0;
    background: #f7f7f7;
    overflow: hidden;
}

/* LEFT CONTENT */

.certificate-content{
    position: relative;
    padding-left: 35px;
}

/* RED BORDER */

.title-border{
    position: absolute;
    left: 0;
    top: 5px;
    width: 6px;
    height: 150px;
    background: #ff4a35;
    border-radius: 10px;
}

/* TITLE */

.certificate-content h2{
    color: #000;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 35px;
}

/* TEXT */

.certificate-content p{
    color: #111;
    font-size: 15px;
    line-height: 1.9; text-align: left;
    margin: 0;
}

.certificate-content strong{
    color: #222;
    font-weight: 800;
}

/* GALLERY */

.certificate-gallery{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

/* IMAGE BOX */

.certificate-item{
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    transition: 0.4s;
}

.certificate-item:hover{
    transform: translateY(-8px);
}

/* IMAGE */

.certificate-item img{
    width: 100%;
    max-width: 267px;
    height: auto;
    display: block;
    object-fit: contain;
}

/* =========================
    RESPONSIVE CSS
========================= */

@media(max-width:1199px){

    .certificate-content h2{
        font-size: 56px;
    }

}

@media(max-width:991px){

    .certificate-section{
        padding: 70px 0;
    }

    .certificate-content{
        padding-left: 25px;
    }

    .title-border{
        height: 120px;
    }

    .certificate-content h2{
        font-size: 44px;
        margin-bottom: 25px;
    }

    .certificate-content p{
        font-size: 15px;
        line-height: 1.8;
    }

    .certificate-gallery{
        justify-content: flex-start;
    }

}

@media(max-width:767px){

    .certificate-section{
        padding: 60px 0;
    }

    .certificate-content h2{
        font-size: 34px;
        line-height: 1.2;
    }

    .certificate-content p{
        font-size: 15px;
        line-height: 1.8;
    }

    .certificate-gallery{
        gap: 15px;
    }

    .certificate-item img{
        max-width: 100%;
    }

}










/* =========================
    TESTIMONIAL SECTION CSS
========================= */

.testimonial-section{
    background: #0d4a78;
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

/* TESTIMONIAL BOX */

.testimonial-box{
    background: #fff;
    border-radius: 14px;
    padding: 35px 32px;
    position: relative;
    height: 100%;
    transition: 0.4s;
}

.testimonial-box:hover{
    transform: translateY(-8px);
}

/* STARS */

.stars{
    margin-bottom: 22px;
}

.stars i{
    color: #f4b400;
    font-size: 15px;
    margin-right: 2px;
}

/* TEXT */

.testimonial-box p{
    color: #222;
    font-size: 15px;
    line-height: 1.9;
text-align: left;
}

/* USER */

.testimonial-user{
    display: flex;
    align-items: center;
    gap: 15px;
}

/* USER IMAGE */

.user-img img{
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

/* USER INFO */

.user-info h4{
    color: #111;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 2px;
}

.user-info span{
    color: #888;
    font-size: 15px;
}

/* QUOTE */

.quote-icon{
    position: absolute;
    right: 28px;
    bottom: 15px;
    color: #d9e4f4;
    font-size: 90px;
    line-height: 1;
    font-family: serif;
}

/* =========================
    RESPONSIVE CSS
========================= */

@media(max-width:991px){

    .testimonial-section{
        padding: 70px 0;
    }

    .testimonial-box{
        padding: 30px 25px;
    }

    .testimonial-box p{
        min-height: auto;
    }

}

@media(max-width:767px){

    .testimonial-section{
        padding: 60px 0;
    }

    .testimonial-box{
        padding: 25px 15px;
    }

    .testimonial-box p{
        font-size: 15px;
        line-height: 1.8;
    }

    .user-info h4{
        font-size: 15px;
    }

    .user-info span{
        font-size: 14px;
    }

    .quote-icon{
        font-size: 70px;
    }

}










/* =========================
   OUR PRODUCTS
========================= */

.our-products-section{
    padding: 90px 0;
    background: #f5f5f5;
}

/* HEADING */

.products-heading{
    text-align: center;
    margin-bottom: 70px;
}

.products-heading h2{
    font-size: 40px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
    line-height: 1.1;
}

.heading-line{
    width: 130px;
    height: 4px;
    background: #48b9e9;
    display: inline-block;
    border-radius: 50px;
}

/* CARD */

.product-card-simple{
    text-align: center;
}
.rsm-product-content-v2 a{
    display:inline-flex;
    align-items:center;
    gap:10px;
    position:relative;
    z-index:999;
}
/* IMAGE */

.product-image{
    margin-bottom: 22px;
}

.product-image img{
    width: 100%;
    max-width: 240px;
    height: 240px;
    object-fit: contain;
    transition: 0.4s;
}

.product-card-simple:hover .product-image img{
    transform: translateY(-8px);
}

/* CONTENT */

.product-content h3{
    font-size: 24px;
    font-weight: 700;
    color: #0b3557;
    line-height: 1.2;
    margin-bottom: 15px;
}

.product-content p{

    line-height: 1.5;
    color: #222;
    margin-bottom: 14px;
    font-size: 15px;

}

/* BUTTON */

.read-more-btn{
    text-decoration: none;
    color: #d53030;
    font-size: 15px;
     font-weight: 500;
    transition: 0.3s;
}

.read-more-btn:hover{
    color: #0b3557;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1199px){

    .products-heading h2{
        font-size: 50px;
    }

}

@media(max-width:991px){

    .our-products-section{
        padding: 70px 0;
    }

    .products-heading{
        margin-bottom: 50px;
    }

    .products-heading h2{
        font-size: 42px;
    }

    .product-content h3{
        font-size: 20px;
    }

}

@media(max-width:767px){

    .our-products-section{
        padding: 60px 0;
    }

    .products-heading h2{
        font-size: 34px;
    }

    .heading-line{
        width: 90px;
    }

    .product-image img{
        max-width: 200px;
        height: 200px;
    }

    .product-content h3{
        font-size: 22px;
    }

    .product-content p{
        font-size: 15px;
        line-height: 1.8;
    }

}

@media(max-width:575px){

    .products-heading h2{
        font-size: 30px;
    }

    .product-image img{
        max-width: 180px;
        height: 180px;
    }

    .product-content h3{
        font-size: 15px;
    }

}






/* =========================
   INDUSTRIES SECTION
========================= */

.industries-section{
    background: linear-gradient(to right, #0b3557, #123f61);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
    font-family: "Noto Sans Georgian", sans-serif;
}

/* BACKGROUND DESIGN */

.industry-bg{
    position: absolute;
    inset: 0;
    background: url('../images/generate-the-industr.png') center center no-repeat;
    background-size: cover;
    opacity: 0.5;
}
.explore-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    text-decoration:none;
    color:#fff;
}
/* HEADING */

.industry-heading{
    text-align: center;
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
}

.industry-heading h2{
    color: #fff;
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 15px;
}

.industry-line{
    width: 140px;
    height: 4px;
    background: #48b9e9;
    display: inline-block;
    border-radius: 50px;
    margin-bottom: 30px;
}

.industry-heading p{
    color: #e5e5e5;
    font-size: 15px;
    line-height: 2;
    max-width: 1250px;
    margin: auto;
}

/* =========================
   5 BOX IN 1 ROW
========================= */

@media(min-width:992px){

    .col-lg-2-4{
        width: 20%;
        flex: 0 0 20%;
    }

}

/* BOX */

.industry-box{
    background: #fff;
    position: relative;
    z-index: 2;
    transition: 0.4s;
}

.industry-box:hover{
    transform: translateY(-8px);
}

/* IMAGE */

.industry-img{
    overflow: hidden;
}

.industry-img img{
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.4s;
}

.industry-box:hover .industry-img img{
    transform: scale(1.05);
}

/* CONTENT */

.industry-content{
    padding: 15px 10px;
    text-align: center;
    background: #fff;
}

.industry-content h3{
    color: #0b3557;
    font-size: 15px;
    font-weight: 600;
    margin: 0;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1199px){

    .industry-heading h2{
        font-size: 34px;
    }

}

@media(max-width:991px){

    .industries-section{
        padding: 70px 0;
    }

    .industry-heading h2{
        font-size: 42px;
    }

    .industry-heading p{
        font-size: 15px;
        line-height: 1.9;
    }

    .industry-img img{
        height: 190px;
    }

}

@media(max-width:767px){

    .industries-section{
        padding: 60px 0;
    }

    .industry-heading{
        margin-bottom: 40px;
    }

    .industry-heading h2{
        font-size: 34px;
    }

    .industry-line{
        width: 90px;
        margin-bottom: 15px;
    }

    .industry-heading p{
        font-size: 15px;
        line-height: 1.8;
    }

    .industry-img img{
        height: 150px;
    }

    .industry-content h3{
        font-size: 15px;
    }

}









/* =========================
   FAQ SECTION
========================= */

.faq-section{
    padding: 90px 0;
    background: #f7f7f7;
    font-family: "Noto Sans Georgian", sans-serif;
}

/* LEFT */

.faq-heading{
    margin-bottom: 40px;
}

.faq-heading h2{
    font-size:30px;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
}

.faq-line{
    width: 170px;
    height: 4px;
    background: #48b9e9;
    display: inline-block;
    margin-bottom: 25px;
}

.faq-heading p{
    font-size: 15px;
    line-height: 2;
    color: #111;
    max-width: 700px;
}

/* ACCORDION */

.faq-accordion{
    margin-bottom: 35px;
}

.faq-item{
    background: #ececec;
    margin-bottom: 2px;
}

.faq-question{
    background: #ececec;
    padding:10px 25px;
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    transition: 0.3s;
}

.faq-item.active .faq-question{
    background: #111;
}

.faq-icon{
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin-right: 15px;
    width: 15px;
}

.faq-item:not(.active) .faq-icon{
    color: #222;
}

.faq-question h3{
    flex: 1;
    font-size: 15px;
    font-weight: 700;
    margin: 0;
    color: #fff;
}

.faq-item:not(.active) .faq-question h3{
    color: #111;
}

.faq-arrow{
    color: #fff;
    font-size: 15px;
}

.faq-item:not(.active) .faq-arrow{
    color: #111;
}

.faq-answer{
    background: #fff;
    padding: 28px;
}

.faq-answer p,
.faq-answer li{
    color: #111;
    font-size: 15px;
    line-height: 2;
    margin: 0;
}

.faq-answer ul{
    margin: 0;
    padding-left: 15px;
}

/* BUTTON */

.faq-btn{
    background: #d92727;
    color: #fff;
    padding: 15px 34px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    border-radius: 10px;
    transition: 0.3s;
}

.faq-btn:hover{
    background: #0b3557;
    color: #fff;
}

/* FORM BOX */

.faq-form-box{
    background: #efefef;
    padding: 45px;
    border-radius: 25px;
}

/* FORM */

.form-group{
    margin-bottom: 5px;
}

.form-group label{
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #222;
    margin-bottom: 5px;
}

.form-group label span{
    color: #ff4b8b;
}

.form-group input,
.form-group textarea{
    width: 100%;
    border: 1px solid #ddd;
    background: #fff;
    padding: 14px 15px;
    font-size: 15px;
    outline: none;
    resize: none;
}

/* SUBMIT BUTTON */

.submit-btn{
    background: #006eb7;
    color: #fff;
    border: none;
    padding: 15px 38px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: 0.3s;
}

.submit-btn:hover{
    background: #0b3557;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .faq-section{
        padding: 70px 0;
    }

    .faq-heading h2{
        font-size: 42px;
    }

    .faq-question h3{
        font-size: 15px;
    }

}

@media(max-width:767px){

    .faq-section{
        padding: 60px 0;
    }

    .faq-heading h2{
        font-size: 34px;
    }

    .faq-heading p{
        font-size: 15px;
        line-height: 1.8;
    }

    .faq-question{
        padding: 15px;
    }

    .faq-question h3{
        font-size: 15px;
    }

    .faq-answer{
        padding: 15px;
    }

    .faq-answer p,
    .faq-answer li{
        font-size: 15px;
        line-height: 1.8;
    }

    .faq-form-box{
        padding: 25px;
    }

}





/* =========================
   FOOTER
========================= */

.main-footer{
    background: #0b2d4a;
    padding-top: 80px;
    font-family: "Noto Sans Georgian", sans-serif;
}

/* LOGO */

.footer-about{
    text-align: center;
}

.footer-logo{
    display: block;
    margin-bottom: 30px;
}

.footer-logo img{
    max-width: 240px;
    display: block;
    margin: auto;
}

/* ABOUT TEXT */

.footer-about p{
    color: #fff;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px; font-weight:normal;
    
}

/* BUTTON */

.footer-btn{
    background: #e32626;
    color: #fff;
    padding: 15px 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    transition: 0.3s;
}

.footer-btn:hover{
    background: #fff;
    color: #0b2d4a;
}

/* TITLE */

.footer-title{
    text-align: center;
    margin-bottom: 35px;
}

.footer-title h3{
    color: #fff;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 12px;
}

.footer-title span{
    width: 90px;
    height: 4px;
    background: #46c0ef;
    display: inline-block;
    border-radius: 50px;
}

/* QUICK LINKS */

.footer-links ul{
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}
.footer-links ul li{border-bottom:1px dashed #244663;}

.footer-links ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.9;
    transition: 0.3s;
}

.footer-links ul li a:hover{
    color: #46c0ef;
}

/* MAP */

.footer-map{
    overflow: hidden;
}

/* CONTACT */

.footer-contact{
    text-align: left;
}

.contact-item{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 10px;
}

/* ICON */

.contact-item i{
    color: #5cc7f2;
    font-size: 28px;
    margin-top: 6px;
    min-width: 30px;
}

/* TEXT */

.contact-item p,
.contact-item a{
    color: #fff;
    font-size: 15px;
    line-height: 1.9;
    text-decoration: none;
    margin: 0;
}

.contact-item a:hover{
    color: #46c0ef;
}
/* COPYRIGHT */

.footer-bottom{
    background: #111;
    padding: 20px 0;
    text-align: center;
    margin-top: 60px;
}

.footer-bottom p{
    color: #fff;
    font-size: 15px;
    margin: 0;
}

.footer-bottom span{
    color: #ffd34d;
    font-weight: 700;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .main-footer{
        padding-top: 60px;
    }

    .footer-title h3{
        font-size: 30px;
    }

}

@media(max-width:767px){

    .main-footer{
        padding-top: 50px;
    }

    .footer-logo img{
        max-width: 190px;
    }

    .footer-about p{
        font-size: 15px;
        line-height: 1.8;
    }

    .footer-title h3{
        font-size: 26px;
    }

    .footer-links ul li a{
        font-size: 15px;
    }

    .contact-item p,
    .contact-item a{
        font-size: 15px;
    }

    .footer-bottom p{
        font-size: 14px;
        line-height: 1.8;
    }

}



/* =========================
   FLOATING CONTACT ICONS
========================= */

.floating-contact{
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* BUTTON */

.float-btn{
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    position: relative;
    transition: 0.3s;
    animation: pulse 2s infinite;
}

/* ICON */

.float-btn i{
    color: #fff;
    font-size: 28px;
}

/* WHATSAPP */

.whatsapp-btn{
    background: #25D366;
    box-shadow: 0 10px 25px rgba(37,211,102,0.4);
}

/* CALL */

.call-btn{
    background: #03E78B;
    box-shadow: 0 10px 25px rgba(3,231,139,0.4);
}

/* HOVER */

.float-btn:hover{
    transform: scale(1.1);
}

/* PULSE */

@keyframes pulse{

    0%{
        transform: scale(1);
    }

    50%{
        transform: scale(1.08);
    }

    100%{
        transform: scale(1);
    }

}

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

@media(max-width:767px){

    .floating-contact{
        right: 15px;
        bottom: 15px;
        gap: 12px;
    }

    .float-btn{
        width: 55px;
        height: 55px;
    }

    .float-btn i{
        font-size: 26px;
    }

}






/********About Us**********/

.breadcrumb-section{
    position: relative;
    background:#f4f4f4;
    height: 250px;
    display: flex;
    align-items: center;
    overflow: hidden;
}



.breadcrumb-content{
    position: relative;
    z-index:2;
    display:flex;
    align-items:center;
    gap:20px;
}

.breadcrumb-icon{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#222;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:28px;
}

.breadcrumb-content h1{
    color:#222;
    font-size:50px;
    font-weight:700;
    margin:0;
    line-height:1;
}

@media(max-width:991px){

    .breadcrumb-section{
        height:200px;
    }

    .breadcrumb-content h1{
        font-size:42px;
    }

    .breadcrumb-icon{
        width:50px;
        height:50px;
        font-size:22px;
    }
}

@media(max-width:767px){

    .breadcrumb-section{
        height:170px;
    }

    .breadcrumb-content{
        gap:12px;
    }

    .breadcrumb-content h1{
        font-size:32px;
    }

    .breadcrumb-icon{
        width:42px;
        height:42px;
        font-size:15px;
    }
}








.about-company-section{
    padding:80px 0;
    background:#fff;
}

.section-heading{
    margin-bottom:45px;
}

.section-heading span{
    display:block;
    font-size:15px;
    font-weight:700;
    letter-spacing:2px;
    color:#222;
    margin-bottom:10px;
}

.section-heading h2{
    font-size:48px;
    font-weight:700;
    color:#222;
    line-height:1.15;
    margin:0;

}

.about-image img{
    width:100%;
    display:block;
}

.about-content p{
    font-size: 15px;
    
    line-height:1.7;
    color:#111;

    text-align:justify;
}

.about-content strong{
    font-weight:700;
}

.about-content hr{
    margin:25px 0;
    border-color:#d9d9d9;
}

.feature-list{
    padding:0;
    margin:0;
    list-style:none;
}

.feature-list li{
    display:flex;
    align-items:flex-start;
    gap:12px;
    font-family: "Noto Sans Georgian", Sans-serif;
    font-size: 15px;
    
    line-height: 1.7;
    letter-spacing: 0.5px;

    color:#111;
}

.feature-list i{
    color:#0b4f82;
    font-size:22px;
    margin-top:4px;
}

@media(max-width:991px){

    .section-heading h2{
        font-size:38px;
    }

    .about-content p{
        font-size:15px;
    }

    .feature-list li{
        font-size:15px;
    }
}

@media(max-width:767px){

    .about-company-section{
        padding:60px 0;
    }

    .section-heading h2{
        font-size:30px;
    }

    .about-content p{
        font-size:15px;
        line-height:1.8;
    }
}

.rsm-why-section{
    padding:100px 0;
    background:#f8fafc;
    position:relative;
    overflow:hidden;
}

.rsm-why-header{
    max-width:800px;
    margin:0 auto 70px;
}

.rsm-tag{
    display:inline-block;
    padding:10px 22px;
    background:#eaf3ff;
    color:#e32626;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
}

.rsm-why-header h2{
    font-size:48px;
    font-weight:700;
    margin:20px 0;
    color:#222;
}

.rsm-why-header p{
    color:#222;
    font-size:17px;
    line-height:1.8;
}

.rsm-feature-card{
    display:flex;
    gap:20px;
    padding:28px;
    margin-bottom:25px;
    background:#fff;
    border-radius:20px;
    transition:.4s;
    box-shadow:0 10px 35px rgba(0,0,0,.06);
}

.rsm-feature-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.rsm-feature-icon{
    min-width:70px;
    width:70px;
    height:70px;
    border-radius:18px;
    background:linear-gradient(135deg,#e32626,#822e01);
    display:flex;
    align-items:center;
    justify-content:center;
}

.rsm-feature-icon i{
    color:#fff;
    font-size:28px;
}

.rsm-feature-card h4{
    font-size:22px;
    margin-bottom:10px;
}

.rsm-feature-card p{
    color:#222;
    line-height:1.7; text-align: left;
    margin:0;
}

.rsm-stats-row{
    display:flex;
    gap:20px;
    margin-bottom:30px;
}

.rsm-stat-box{
    flex:1;
    background:#fff;
    padding:25px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.rsm-stat-box h3{
    color:#e32626;
    font-size:40px;
    font-weight:700;
    margin-bottom:5px;
}

.rsm-stat-box span{
    color:#222;
}

.rsm-progress-box{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.rsm-skill-item{
    margin-bottom:30px;
}

.rsm-skill-item:last-child{
    margin-bottom:0;
}

.rsm-progress{
    height:12px;
    background:#edf2f7;
    border-radius:50px;
    overflow:hidden;
}

.rsm-progress-fill{
    height:100%;
    border-radius:50px;
    background:linear-gradient(90deg,#e32626,#822e01);
    animation:progressLoad 2s ease;
}

@keyframes progressLoad{
    from{
        width:0;
    }
}

@media(max-width:768px){

    .rsm-why-header h2{
        font-size:32px;
    }

    .rsm-stats-row{
        flex-direction:column;
    }

}












.rsm-mvv-section{
    padding:30px 0;
    background:#ffffff;
}

.rsm-mvv-card{
    background:#fff;
    border:1px solid #e8e8e8;
    text-align:center;
    padding:55px 30px;
    height:100%;
    transition:0.4s;
}

.rsm-mvv-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,0.08);
}

.rsm-mvv-icon{
    width:95px;
    height:95px;
    margin:0 auto 30px;
    background:#13285b;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.rsm-mvv-icon i{
    color:#fff;
    font-size:42px;
}

.rsm-mvv-card h3{
    font-size:22px;
    font-weight:500;
    margin-bottom:20px;
    color:#111;
}

.rsm-mvv-card p{
    font-size:15px;
    line-height:1.8;
    color:#111; font-weight:500;
    margin:0;
}

@media(max-width:991px){

    .rsm-mvv-section{
        padding:70px 0;
    }

    .rsm-mvv-card{
        padding:45px 25px;
    }

}

@media(max-width:767px){

    .rsm-mvv-section{
        padding:60px 0;
    }

    .rsm-mvv-icon{
        width:80px;
        height:80px;
    }

    .rsm-mvv-icon i{
        font-size:32px;
    }

    .rsm-mvv-card h3{
        font-size:20px;
    }

    .rsm-mvv-card p{
        font-size:15px;
    }

}



.rsm-faq-contact-section{
    padding:100px 0;
    background:#f8f8f8;
}

.rsm-faq-heading{
    font-size:32px;
    font-weight:700;
    color:#111;
    margin-bottom:25px;
}

.rsm-faq-description{
    font-size:15px;
    line-height:1.7;
    color:#222;
    margin-bottom:40px;
}

.rsm-faq-accordion .accordion-item{
    border:none;
    margin-bottom:2px;
}

.rsm-faq-accordion .accordion-button{
    background:#13285b;
    color:#fff;
    font-size:15px;
    font-weight:600;
    padding:22px 25px;
    box-shadow:none;
}

.rsm-faq-accordion .accordion-button:not(.collapsed){
    background:#13285b;
    color:#fff;
}

.rsm-faq-accordion .accordion-body{
    background:#fff;
    padding:25px;
    font-size:15px;
    line-height:1.8; font-weight:500;
}

.rsm-faq-accordion .accordion-button::after{
    filter:brightness(0) invert(1);
}

.rsm-read-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#13285b;
    color:#fff;
    text-decoration:none;
    padding:15px 35px;
    margin-top:25px;
    border-radius:8px;
    font-weight:600;
}

.rsm-read-btn:hover{
    color:#fff;
}

.rsm-contact-box{
    background:#f1eded;
    padding:30px;
    border-radius:25px;
}

.rsm-contact-box label{
    display:block;
    font-size:15px;
    font-weight:600;
    margin-bottom:5px;
    color:#222;
}

.rsm-contact-box label span{
    color:#ff4f7c;
}

.rsm-contact-box .form-control{

    border:1px solid #ddd;
    border-radius:0;
}

.rsm-contact-box textarea.form-control{
    height:120px;
    resize:none;
}

.rsm-submit-btn{
    background:#0d6aa8;
    border:none;
    color:#fff;
    padding:14px 40px;
    font-weight:600;
    text-transform:uppercase;
}

.rsm-submit-btn:hover{
    background:#084f7f;
}

@media(max-width:991px){

    .rsm-faq-heading{
        font-size:38px;
    }

    .rsm-contact-box{
        margin-top:20px;
    }

}

@media(max-width:767px){

    .rsm-faq-contact-section{
        padding:60px 0;
    }

    .rsm-faq-heading{
        font-size:30px;
    }

    .rsm-faq-description{
        font-size:15px;
    }

    .rsm-faq-accordion .accordion-button{
        font-size:15px;
        padding:15px;
    }

    .rsm-contact-box{
        padding:25px;
    }

}







.rsm-service-feature-section{
    padding:80px 0;
    background:#fff;
}

.rsm-service-card{
    background:#fff;
    text-align:center;
    padding:45px 25px;
    height:100%;
    border:1px solid #ececec;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
    transition:.4s;
}

.rsm-service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.rsm-service-icon{
    margin-bottom:25px;
}

.rsm-service-icon i{
    font-size:58px;
    color:#222;
}

.rsm-service-card h4{
    font-size:22px;
    font-weight:600;
    margin-bottom:15px;
    color:#111;
}

.rsm-service-card p{
    font-size:15px;
    line-height:1.8;
    color:#222;
    margin:0;
}




.rsm-service-about-section{
    padding:80px 0;
    background:#f7f2f2;
}

.rsm-service-image img{
    width:100%;
    display:block;
}

.rsm-service-content{
    padding-left:20px;
}

.rsm-service-content h2{
    font-size:34px;
    font-weight:700;
    color:#111;
    margin-bottom:25px;
    line-height:1.2; text-align: left;
}

.rsm-service-content p{
    font-size:15px;
    line-height:1.7;
    color:#111;
    margin-bottom:10px;
}

.rsm-service-content strong{
    color:#4e5966;
    font-weight:700;
}

.rsm-read-more-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#ef234a;
    color:#fff;
    text-decoration:none;
    padding:15px 35px;
    border-radius:10px;
    margin-top:20px;
    font-size:15px;
    font-weight:600;
    transition:.3s;
}

.rsm-read-more-btn:hover{
    background:#d9163c;
    color:#fff;
}

@media(max-width:991px){

    .rsm-service-content{
        padding-left:0;
        margin-top:30px;
    }

    .rsm-service-content h2{
        font-size:40px;
    }

}

@media(max-width:767px){

    .rsm-service-about-section{
        padding:60px 0;
    }

    .rsm-service-content h2{
        font-size:32px;
    }

    .rsm-service-content p{
        font-size:15px;
        line-height:1.8;
    }

}




/*****Contact us page******/

.rsm-contact-section{
    padding:90px 0;
    background:#fff;
}

.rsm-contact-left h2,
.rsm-contact-right h2{
    font-size:34px;
    font-weight:700;
    color:#111;
    margin-bottom:10px;
}

.rsm-title-line{
    width:50px;
    height:4px;
    background:#222;
    display:block;
    margin-bottom:60px;
}

.rsm-contact-item{
    display:flex;
    align-items:flex-start;
    gap:25px;
    margin-bottom:40px;
}


.rsm-contact-icon{
    width:72px;
    height:72px;
    transform:rotate(45deg);
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.rsm-contact-icon i{
    transform:rotate(-45deg);
    color:#fff;
    font-size:28px;
}

.rsm-contact-icon.blue{
    background:#124b92;
}

.rsm-contact-icon.yellow{
    background:#e8b400;
}

.rsm-contact-info h4{
    font-size:20px;
    font-weight:600;
    margin-bottom:10px;
    color:#111;
}

.rsm-contact-info p{
    font-size:15px;
    color:#222;
    line-height:1.8;
    margin-bottom:0;
}

.rsm-form-box{
    background:#f2f2f2;
    padding:40px;
}

.rsm-form-box label{
    font-size:15px;
    font-weight:600;
    color:#111;
    margin-bottom:8px;
    display:block;
}

.rsm-form-box label span{
    color:#ff4d7a;
}

.rsm-form-box .form-control{

    border:none;
    border-radius:0;
}

.rsm-form-box textarea.form-control{
    height:130px;
    resize:none;
}

.rsm-submit-btn{
    background:#0b6fb3;
    color:#fff;
    border:none;
    padding:14px 40px;
    text-transform:uppercase;
    font-weight:600;
}

.rsm-submit-btn:hover{
    background:#085a90;
}

@media(max-width:991px){

    .rsm-contact-left h2,
    .rsm-contact-right h2{
        font-size:38px;
    }

    .rsm-form-box{
        margin-top:20px;
    }
}

@media(max-width:767px){

    .rsm-contact-section{
        padding:60px 0;
    }

    .rsm-contact-left h2,
    .rsm-contact-right h2{
        font-size:30px;
    }

    .rsm-contact-item{
        gap:15px;
    }

    .rsm-contact-icon{
        width:60px;
        height:60px;
    }

    .rsm-contact-icon i{
        font-size:22px;
    }

    .rsm-form-box{
        padding:25px;
    }
}

.rsm-map-section{
    padding:0;
}

.rsm-map-section iframe{
    display:block;
    width:100%;
    height:450px;
}


.rsm-product-breadcrumb13{
    position:relative;
      background:#f4f4f4;
    background-size:cover;
padding:70px 0px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}





.rsm-product-breadcrumb{
    position:relative;
    background:#f4f4f4;
    background-size:cover;
padding:70px 0px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}


.rsm-product-breadcrumb-content{
    position:relative;
    z-index:2;

}

.rsm-product-breadcrumb-content h1{
    font-size:40px;
    font-weight:700;
    color:#222;
    margin-bottom:15px;
    text-transform:capitalize;
}

.rsm-product-breadcrumb-content ul{
    list-style:none;
    padding:0;
    margin:0;
    display:flex;
    justify-content:center;
    gap:10px;
}

.rsm-product-breadcrumb-content ul li{
    color:#222;
    font-size:15px;
}

.rsm-product-breadcrumb-content ul li a{
    color:#fff;
    text-decoration:none;
}

.rsm-product-breadcrumb-content ul li a:hover{
    color:#ffc107;
}




.rsm-product-detail-sec{
    padding:80px 0;
    background:#f8fafc;
}

.rsm-feature-card{
    background:#fff;
    padding:40px;
    border-radius:15px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}

.rsm-sec-head span{
    color:#d62828;
    font-weight:600;
}

.rsm-sec-head h2{
    font-size:30px;
    margin-top:10px;
    margin-bottom:35px; text-align: left;
}

.rsm-feature-item{
    display:flex;
    gap:20px;

}

.rsm-feature-item i{
    width:60px;
    height:60px;
    background:#0b3156;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    flex-shrink:0;
}

.rsm-feature-item h5{
    font-size:19px;
    margin-bottom:8px; font-weight:700;
}

.rsm-feature-item p{
    margin:0;
    color:#111;
    line-height:1.8; font-size:15px;
}

.rsm-product-sidebar{
    background:#d62828;
    border-radius:15px;
    padding:25px;
    color:#fff;
}

.rsm-product-sidebar h4{
    margin-bottom:20px;
}

.rsm-product-sidebar img{
    width:100%;
    border-radius:12px;
    margin-bottom:20px;
}

.rsm-product-sidebar ul{
    list-style:none;
    padding:0;
    margin:0;
}

.rsm-product-sidebar ul li{
    margin-bottom:6px;
}

.rsm-product-sidebar ul li a{
    color:#fff;
    text-decoration:none;
    display:block;
    padding:7px 15px;
    background:rgba(255,255,255,.1);
    border-radius:8px;
    transition:.3s; font-size:15px; font-weight:600;
}

.rsm-product-sidebar ul li a:hover{
    background:#fff;
    color:#d62828;
}





.rsm-square-duct-section{
    padding:60px 0;
    background:#fff;
}

.rsm-subtitle{
    display:inline-block;
    color:#d62828;
    font-size:14px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:12px;
}

.rsm-square-content h2{
    font-size:42px;
    font-weight:700;
    color:#0b3156;
    margin-bottom:25px;
}

.rsm-square-content p{
    font-size:15px;
    line-height:1.9;
    color:#111;
    margin-bottom:15px;
}

.rsm-feature-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-top:35px;
}

.rsm-feature-box{
    display:flex;
    align-items:center;
    gap:12px;
    padding:15px 15px;
    background:#f8f9fa;
    border-radius:10px;
    border-left:4px solid #d62828;
    font-weight:600;
}

.rsm-feature-box i{
    color:#0b3156;
    font-size:20px;
}

.rsm-square-image img{
    width:100%;
    border-radius:15px;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

@media(max-width:768px){

    .rsm-square-content h2{
        font-size:32px;
    }

    .rsm-feature-grid{
        grid-template-columns:1fr;
    }

}




.rsm-product-breadcrumb1{
    position:relative;
    background:url('../images/rectangular-ventilation-ducts-and-fittings-scaled.jpg') center center;
    background-size:cover;
    min-height:430px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}




.rsm-product-breadcrumb15{
    position:relative;
    background:#f4f4f4;
    background-size:cover;
padding: 70px 0px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}





.rsm-tech-specs{
    padding:80px 0;
    background:#fff;
}
.rsm-tech-specs p{line-height:1.9;}
.rsm-spec-title{
    font-size:30px;
    font-weight:700;
    color:#102a56;
    margin-bottom:30px;

}

.rsm-spec-table{
    border:1px solid #e5e5e5;
    margin-bottom:0;
}

.rsm-spec-table th{
    background:#f8f8f8;
    text-align:center;
    padding:18px;
    font-size:18px;
    font-weight:600;
}

.rsm-spec-table td{
    text-align:center;
    padding:18px;
    font-size:17px;
}

.rsm-spec-image{
    position:relative;
    text-align:center;
    background:#f8f9fa;
    padding:25px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.08); border:1px solid #f3f3f3;
}

.rsm-spec-image img{
    width:100%;
    max-width:320px;
}

.rsm-spec-badge{
    position:absolute;
    top:15px;
    right:15px;
    background:#d62828;
    color:#fff;
    padding:8px 15px;
    font-size:14px;
    font-weight:600;
    border-radius:30px;
}

@media(max-width:991px){

    .rsm-spec-title{
        text-align:center;
        font-size:30px;
    }

    .rsm-spec-image{
        margin-top:30px;
    }

}

.rsm-spec-table{
    border-collapse: collapse;
    width:100%;
}

.rsm-spec-table th,
.rsm-spec-table td{
    border:1px solid #e4e4e4;
    padding:18px 25px;
    text-align:center;
}

.rsm-spec-table th{
    background:#fafafa;
    font-weight:600;
}

/* Left Column Partition */
.rsm-spec-table td:first-child,
.rsm-spec-table th:first-child{
    width:23%;
    border-right:1px solid #dcdcdc;
}

/* Right Column */
.rsm-spec-table td:last-child,
.rsm-spec-table th:last-child{
    width:77%;
}



.rsm-product-breadcrumb2{
    position:relative;
    background:url('../images/Duct-For-College.webp') center center;
    background-size:cover;
    min-height:430px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}







.rsm-product-breadcrumb3{
    position:relative;
    background:#f4f4f4;
    background-size:cover;
 padding: 70px 0px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}







.rsm-accessories-section{
    padding:80px 0;
    background:#f8f8f8;
}

.rsm-accessories-card{
    background:#efefef;
    border-radius:25px;
    padding:25px;
    margin-bottom:40px;
    transition:.3s;
}

.rsm-accessories-card:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.rsm-accessories-img{
    overflow:hidden;
    border-radius:8px;
}

.rsm-accessories-img img{
    width:100%;
    height:250px;
    object-fit:cover;
    display:block;
}

.rsm-accessories-content h3{
    color:#d92d27;
    font-size:20px;
    font-weight:700;
    text-transform:uppercase;
    margin-bottom:20px;
}

.rsm-accessories-content p{
    font-size:15px;
    line-height:1.9;
    color:#111;
    margin-bottom:0;
}

.rsm-accessories-content strong{
    font-weight:700;
    color:#222;
}

@media(max-width:991px){

    .rsm-accessories-card{
        padding:20px;
    }

    .rsm-accessories-content{
        margin-top:20px;
    }

    .rsm-accessories-content h3{
        font-size:24px;
    }

    .rsm-accessories-content p{
        font-size:15px;
    }

    .rsm-accessories-img img{
        height:auto;
    }

}




.rsm-product-breadcrumb4{
    position:relative;
      background:#f4f4f4;
    background-size:cover;
    padding:70px 0px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}





.rsm-product-content p{
    font-size:15px;
    line-height:1.9;
    color:#111;
}

.rsm-product-content h3{
    font-size:22px;
    font-weight:700;
    margin-bottom:20px;
    color:#0d2d52; text-align: left;
}

.rsm-info-card{
    background:#f8f9fa;
    padding:25px;
    border-radius:10px;
    height:100%;
    border:1px solid #e5e5e5;
}

.rsm-info-card h3{
    font-size:24px;
    margin-bottom:15px;
}

.rsm-info-card h5{
    font-size:18px;
    margin-top:15px;
    font-weight:700;
}

.rsm-info-card ul{
    padding-left:20px;
}

.rsm-info-card li{
    margin-bottom:10px; font-weight:500; text-align: left;
}

.rsm-check-list{
    padding-left:20px;
}

.rsm-check-list li{
    margin-bottom:12px; font-weight:500;
    line-height:1.9; font-size:15px;
}

.rsm-cta-box{
    background:#f8f9fa;
    padding:30px;
    border-left:5px solid #d72828;
    border-radius:10px;
}



.rsm-kitchen-scrubber-sec{
    background:#fff; line-height:1.9;
}

.rsm-subtitle{
    display:inline-block;
    color:#d62828;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:10px;
}

.rsm-content-box h2{
    font-size:42px;
    font-weight:700;
    color:#0d2d52;
    margin-bottom:25px;
}

.rsm-content-box p{
    font-size:15px;
    line-height:1.9;
    color:#111;
    margin-bottom:18px;
}

.rsm-image-box{
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.rsm-image-box img{
    width:100%;
    height:auto;
    display:block;
}

.rsm-tags{
    margin-top:25px;
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.rsm-tags span{
    background:#f4f4f4;
    border:1px solid #e5e5e5;
    padding:8px 14px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    color:#0d2d52;
}

@media(max-width:991px){

    .rsm-content-box h2{
        font-size:32px;
    }

}





.rsm-product-breadcrumb5{
    position:relative;
    background:#f4f4f4;
    background-size:cover;
    padding:70px 0px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}




.rsm-product-breadcrumb6{
    position:relative;
    background:#f4f4f4;
    background-size:cover;
   padding:70px 0px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}


.rsm-product-breadcrumb7{
    position:relative;
 background:#f4f4f4;
    background-size:cover;
   padding:70px 0px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}




.rsm-product-breadcrumb8{
    position:relative;
    background:#f4f4f4;
    background-size:cover;
   padding:70px 0px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}





.rsm-product-breadcrumb9{
    position:relative;
     background:#f4f4f4;
    background-size:cover;
 padding:70px 0px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}




.rsm-product-breadcrumb10{
    position:relative;
     background:#f4f4f4;
    background-size:cover;
 padding:70px 0px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}



.rsm-product-breadcrumb11{
    position:relative;
     background:#f4f4f4;
    background-size:cover;
 padding:70px 0px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}



.rsm-product-breadcrumb12{
    position:relative;
     background:#f4f4f4;
    background-size:cover;
 padding:70px 0px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}







.rsm-product-breadcrumb14{
    position:relative;
     background:#f4f4f4;
    background-size:cover;
 padding:70px 0px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}






.ask-btn{
    background:#fff;
    color:#0f3558;
    padding:14px 35px;
    border-radius:6px;
    font-weight:600;
    text-decoration:none;
    display:inline-block;
    transition:.3s;
}

.ask-btn:hover{
    background:#d62828;
    color:#fff;
}

.rsm-modal{
    border:none;
    border-radius:12px;
    overflow:hidden;
}

.rsm-modal .modal-header{
    background:#0f3558;
    color:#fff;
    padding:20px 25px;
}

.rsm-modal .btn-close{
    filter:brightness(0) invert(1);
}

.rsm-modal .modal-body{
    padding:30px;
}

.rsm-modal .form-control{
    height:55px;
    border-radius:6px;
}

.rsm-modal textarea.form-control{
    height:140px;
}

.rsm-submit-btn{
    background:#d62828;
    color:#fff;
    border:none;
    padding:14px 35px;
    border-radius:6px;
    font-weight:600;
}

.rsm-submit-btn:hover{
    background:#0f3558;
}


.ask-btn{
    background:#fff;
    color:#0f3558;
    padding:14px 35px;
    border-radius:8px;
    font-weight:600;
    text-decoration:none;
    display:inline-block;
    transition:.3s;
}

.ask-btn:hover{
    background:#d62828;
    color:#fff;
}

/* Modal Width */
.modal-dialog{
    max-width:650px;
}

/* Modal Design */
.enquiry-modal{
    border:none;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 25px 60px rgba(0,0,0,.25);
}

/* Header */
.enquiry-modal .modal-header{
    background:#0f3558;
    padding:25px 30px;
    border:none;
}

.enquiry-modal .modal-title{
    color:#fff;
    font-size:34px;
    font-weight:700;
}

.modal-subtitle{
    color:rgba(255,255,255,.75);
    font-size:14px;
}

.btn-close-white{
    filter:brightness(0) invert(1);
}

/* Body */
.enquiry-modal .modal-body{
    padding:30px;
    background:#fff;
}

/* Form */
.rsm-form-group{
    margin-bottom:15px;
}

.rsm-form-group .form-control{
    height:58px;
    border:1px solid #ddd;
    border-radius:10px;
    padding:0 18px;
    font-size:15px;
    box-shadow:none;
}

.rsm-form-group textarea.form-control{
    height:140px;
    resize:none;
    padding-top:15px;
}

.rsm-form-group .form-control:focus{
    border-color:#d62828;
    box-shadow:0 0 0 3px rgba(214,40,40,.12);
}

/* Button */
.rsm-submit-btn{
    width:100%;
    height:58px;
    border:none;
    border-radius:10px;
    background:#d62828;
    color:#fff;
    font-size:15px;
    font-weight:700;
    transition:.3s;
}

.rsm-submit-btn:hover{
    background:#0f3558;
}



.certificate-gallery{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.certificate-gallery img{
    width:100%;

    object-fit:contain;
    background:#fff;
    border:1px solid #ddd;
    padding:10px;
    transition:.4s;
}

.certificate-gallery img:hover{
    transform:scale(1.05);
}

@media(max-width:991px){
    .certificate-gallery{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:576px){
    .certificate-gallery{
        grid-template-columns:1fr;
    }
}




.rsm-vent-section{
    padding:100px 0;
    background:#fff;
    position:relative;
}

.rsm-vent-heading{
    text-align:center;
    margin-bottom:60px;
}

.rsm-vent-subtitle{
    display:inline-block;
    color:#0d4a78;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
    margin-bottom:12px;
}

.rsm-vent-heading h2{
    font-size:42px;
    font-weight:700;
    color:#222;
    margin-bottom:10px;
}

.rsm-vent-heading p{
    font-size:20px;
    color:#111;
    margin:0;
}

.rsm-vent-card{
    background:#fff;
    padding:35px 30px;
    border-radius:24px;
    text-align:center;
    height:100%;
    border:1px solid #edf1f7;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:.4s;
    position:relative;
    overflow:hidden;
}

.rsm-vent-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.08);
}

.rsm-vent-card::before{
    content:'';
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:4px;
    background:#0d4a78;
    transform:scaleX(0);
    transition:.4s;
}

.rsm-vent-card:hover::before{
    transform:scaleX(1);
}

.rsm-vent-icon{
    width:85px;
    height:85px;
    margin:0 auto 25px;
    border-radius:20px;
    background:rgba(13,110,253,.08);
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
}

.rsm-vent-icon::before{
    content:'';
    position:absolute;
    inset:-6px;
    border:1px dashed rgba(13,110,253,.35);
    border-radius:24px;
    animation:rsmRotate 12s linear infinite;
}

.rsm-vent-icon i{
    font-size:34px;
    color:#d72626;
    position:relative;
    z-index:2;
}

.rsm-vent-card:hover .rsm-vent-icon{
    transform:rotate(8deg);
}

@keyframes rsmRotate{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}

.rsm-vent-card h4{
    font-size:22px;
    font-weight:600;
    margin-bottom:15px;
    color:#111;
}

.rsm-vent-card p{
    color:#111;
    line-height:1.8;
    margin:0;
}

.rsm-vent-strip{
    margin-top:60px;
    background:#d72626;
    border-radius:20px;
    overflow:hidden;

}

.rsm-vent-strip-content{
    padding:22px 30px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:15px;
    color:#fff;
    text-align:center;
    font-size:18px;
    font-weight:500;
}

.rsm-vent-strip-content i{
    font-size:28px;
}

@media(max-width:991px){

    .rsm-vent-heading h2{
        font-size:34px;
    }

}

@media(max-width:767px){

    .rsm-vent-section{
        padding:70px 0;
    }

    .rsm-vent-heading h2{
        font-size:28px;
    }

    .rsm-vent-card{
        padding:30px 20px;
    }

    .rsm-vent-strip-content{
        flex-direction:column;
        font-size:16px;
    }

}







.rsm-products-v2{
    padding:100px 0;
    background:#f7f9fc;
    position:relative;
}

.rsm-products-v2::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(13,110,253,.03);
    border-radius:50%;
    top:-250px;
    right:-150px;
}

.rsm-products-header{
    max-width:850px;
    margin:auto;
    margin-bottom:70px;
}

.rsm-products-header span{
    color:#d72626;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

.rsm-products-header h2{
    font-size:48px;
    font-weight:700;
    margin:15px 0;
    color:#111;
}

.rsm-products-header p{
    color:#111;
    line-height:1.8;
}

.rsm-product-card-v2{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    position:relative;
    transition:.5s;
    border:1px solid #edf1f7;
    box-shadow:0 10px 35px rgba(0,0,0,.05);
}

.rsm-product-card-v2::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(
        135deg,
        rgba(13,110,253,.08),
        transparent
    );
    opacity:0;
    transition:.5s;
}

.rsm-product-card-v2:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 60px rgba(0,0,0,.12);
}

.rsm-product-card-v2:hover::before{
    opacity:1;
}

.rsm-product-image-v2{
    overflow:hidden; padding:0px 30px;

}

.rsm-product-image-v2 img{
    width:100%;

    transition:.8s; padding:0px 40px;
}

.rsm-product-card-v2:hover img{
    transform:scale(1.12);
}

.rsm-product-content-v2{
    padding:30px; text-align: center;
}

.rsm-product-content-v2 span{
    display:inline-block;
    background:#eef5ff;
    color:#d72626;
    padding:8px 16px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    margin-bottom:15px;
}

.rsm-product-content-v2 h3{
    font-size:18px;
    font-weight:600;
    color:#111;
  text-align: center;

}

.rsm-product-content-v2 a{
    color:#d72626;
    text-decoration:none;
    font-weight:600;
    display:inline-flex;  
    align-items:center;
    gap:10px;
}

.rsm-product-content-v2 a i{
    transition:.4s;
}

.rsm-product-card-v2:hover a i{
    transform:translateX(6px);
}

@media(max-width:991px){

    .rsm-products-header h2{
        font-size:38px;
    }

}

@media(max-width:767px){

    .rsm-products-v2{
        padding:70px 0;
    }

    .rsm-products-header h2{
        font-size:30px;
    }

}









.faf-showcase-section{
    padding:100px 0;
}

.faf-image-wrap{
    position:relative;
}

.faf-image-wrap img{
    width:100%;
    border-radius:30px;
    height:550px;
    object-fit:cover;
}

.faf-floating-card{
    position:absolute;
    bottom:30px;
    right:-30px;
    background:#fff;
    padding:25px;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.faf-floating-card h4{
    font-size:34px;
    color:#d91f26;
    margin:0;
}

.faf-badge{
    display:inline-block;
    background:#eef5ff;
    color:#d91f26;
    padding:10px 20px;
    border-radius:50px;
    font-weight:600;
}

.faf-title{
    font-size:54px;
    line-height:1.15;
    margin:25px 0;
    font-weight:700;
}

.faf-features{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:25px;
}

.faf-features span{
    background:#f8fafc;
    padding:12px 18px;
    border-radius:30px;
    border:1px solid #e7edf4;
}





/* =========================
   PREMIUM STATS
========================= */

.faf-stats{
    display:flex;
    gap:20px;
    margin-top:35px;
    flex-wrap:wrap;
}

.faf-stat-box{
    flex:1;
    min-width:180px;
    background:#fff;
    border:1px solid #edf1f7;
    border-radius:18px;
    padding:18px;
    display:flex;
    align-items:center;
    gap:15px;
    transition:.4s;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.faf-stat-box:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(13,110,253,.12);
    border-color:rgba(13,110,253,.25);
}

.faf-stat-icon{
    width:55px;
    height:55px;
    border-radius:14px;
    background:rgba(13,110,253,.08);
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.faf-stat-icon i{
    font-size:24px;
    color:#d91f26;
}

.faf-stat-content h4{
    margin:0;
    font-size:28px;
    font-weight:700;
    color:#d91f26;
    line-height:1;
}

.faf-stat-content span{
    display:block;
    margin-top:6px;
    font-size:16px;
    color:#111;
    line-height:1.5; font-weight:600;
}

@media(max-width:767px){

    .faf-stats{
        flex-direction:column;
    }

    .faf-stat-box{
        width:100%;
    }

}






.faf-premium-section{
    padding:90px 0;
    background:#f8fafc;
}

.faf-premium-header{
    max-width:850px;
    margin:0 auto 60px;
}

.faf-premium-header span{
    color:#d91f26;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

.faf-premium-header h2{
    font-size:46px;
    font-weight:700;
    color:#222;
    margin:15px 0;
}

.faf-premium-header p{
    color:#111;
    line-height:1.9;
}

.faf-feature-box{
    background:#fff;
    border-radius:25px;
    padding:30px;
    display:flex;
    gap:20px;
    height:100%;
    transition:.4s;
    border:1px solid #edf1f7;
    box-shadow:0 15px 40px rgba(0,0,0,.05);
}

.faf-feature-box:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 60px rgba(13,110,253,.10);
}

.faf-feature-icon{
    width:70px;
    height:70px;
    min-width:70px;
    border-radius:18px;
    background:#eef5ff;
    display:flex;
    align-items:center;
    justify-content:center;
}

.faf-feature-icon i{
    font-size:30px;
    color:#d91f26;
}

.faf-feature-content h4{
    font-size:22px;
    margin-bottom:10px;
    font-weight:600;
}

.faf-feature-content p{
    color:#111;
    margin:0;
    line-height:1.8;
}

.faf-bottom-strip{
    margin-top:50px;
    background:#d91f26;
    border-radius:25px;
    padding:35px;
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
}

.faf-stat{
    text-align:center;
    flex:1;
    min-width:180px;
}

.faf-stat h3{
    color:#fff;
    font-size:42px;
    font-weight:700;
    margin-bottom:8px;
}

.faf-stat span{
    color:#fff;
}

@media(max-width:991px){

    .faf-premium-header h2{
        font-size:34px;
    }

    .faf-bottom-strip{
        gap:25px;
    }
}

@media(max-width:767px){

    .faf-feature-box{
        flex-direction:column;
        text-align:center;
    }

    .faf-feature-icon{
        margin:auto;
    }

    .faf-premium-header h2{
        font-size:28px;
    }
}

.faf-intro-section{
    padding:70px 0;
    background:#fff;
}

.faf-intro-image{
    background:#f8fafc;
    border-radius:30px;
    padding:40px;
    text-align:center;
    position:relative;
    overflow:hidden;
}

.faf-intro-image::before{
    content:'';
    position:absolute;
    width:250px;
    height:250px;
    background:rgba(13,110,253,.08);
    border-radius:50%;
    top:-80px;
    right:-80px;
}

.faf-intro-image img{
    max-height:420px;
    position:relative;
    z-index:2;
    transition:.5s;
}

.faf-intro-image:hover img{
    transform:scale(1.05);
}

.faf-subtitle{
    display:inline-block;
    padding:10px 20px;
    background:#eef5ff;
    color:#d91f26;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.faf-intro-content h2{
    font-size:38px;
    font-weight:600;
    line-height:1.2;
    color:#111; text-align: left;
    margin-bottom:25px;
}

.faf-intro-content p{
    color:#111;
    line-height:1.6;
    margin-bottom:20px;
    font-size:16px;
}

@media(max-width:991px){

    .faf-intro-content h2{
        font-size:36px;
    }

    .faf-intro-section{
        padding:70px 0;
    }
}

@media(max-width:767px){

    .faf-intro-content h2{
        font-size:28px;
    }

    .faf-intro-image{
        padding:25px;
    }
}





.msacf-intro-section{
    padding:100px 0;
    background:#fff;
}

.msacf-image{
    background:#f8fafc;
    border-radius:30px;
    padding:40px;
    text-align:center;
    overflow:hidden;
    position:relative;
}

.msacf-image::before{
    content:'';
    position:absolute;
    width:280px;
    height:280px;
    background:rgba(13,110,253,.08);
    border-radius:50%;
    top:-100px;
    right:-100px;
}

.msacf-image img{
    max-height:420px;
    position:relative;
    z-index:2;
    transition:.5s;
}

.msacf-image:hover img{
    transform:scale(1.05);
}

.msacf-subtitle{
    display:inline-block;
    background:#eef5ff;
    color:#e32626;
    padding:10px 20px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.msacf-content h2{
    font-size:34px;
    font-weight:700;
    line-height:1.2;
    margin-bottom:25px;
    color:#222; text-align: left;
}

.msacf-content p{
    color:#222;
    line-height:1.9;
    margin-bottom:20px;
}

@media(max-width:991px){

    .msacf-content h2{
        font-size:36px;
    }

}

@media(max-width:767px){

    .msacf-intro-section{
        padding:70px 0;
    }

    .msacf-content h2{
        font-size:28px;
    }

}




.msfan-features-section{
    padding:70px 0;
    background:#f8fafc;
}

.msfan-heading{
    max-width:850px;
    margin:auto;
    margin-bottom:60px;
}

.msfan-heading span{
    color:#e32626;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

.msfan-heading h2{
    font-size:48px;
    font-weight:700;
    color:#111;
    margin:15px 0;
}

.msfan-heading p{
    color:#111;
    line-height:1.8;
}

.msfan-feature-card{
    background:#fff;
    padding:30px;
    border-radius:22px;
    display:flex;
    gap:20px;
    align-items:flex-start;
    height:100%;
    border:1px solid #edf1f7;
    transition:.4s;
    box-shadow:0 15px 40px rgba(0,0,0,.05);
}

.msfan-feature-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 50px rgba(13,110,253,.12);
}

.icon-box{
    width:70px;
    height:70px;
    min-width:70px;
    background:#eef5ff;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.icon-box i{
    color:#e32626;
    font-size:30px;
}

.msfan-feature-card h4{
    font-size:22px;
    margin-bottom:10px;
    font-weight:600;
}

.msfan-feature-card p{
    color:#111;
    margin:0;
    line-height:1.8;
}

.msfan-bottom-strip{
    margin-top:60px;
    background:linear-gradient(135deg,#e32626,#e32626);
    border-radius:25px;
    padding:35px;
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
}

.msfan-stat{
    text-align:center;
    flex:1;
    min-width:180px;
}

.msfan-stat h3{
    color:#fff;
    font-size:42px;
    font-weight:700;
    margin-bottom:8px;
}

.msfan-stat span{
    color:#fff;
}

@media(max-width:991px){

    .msfan-heading h2{
        font-size:34px;
    }

    .msfan-bottom-strip{
        gap:25px;
    }

}

@media(max-width:767px){

    .msfan-feature-card{
        flex-direction:column;
        text-align:center;
    }

    .icon-box{
        margin:auto;
    }

    .msfan-heading h2{
        font-size:28px;
    }

}


.msacf-feature-wrap{
    margin-top:35px;
    padding-top:30px;
    border-top:1px solid #e9edf3;
}

.msacf-feature-item{
    display:flex;
    align-items:center;
    gap:15px;
    background:#f8fafc;
    padding:16px 20px;
    border-radius:14px;
    transition:.3s;
    height:100%;
}

.msacf-feature-item:hover{
    transform:translateY(-3px);
    background:#eef5ff;
}

.msacf-feature-item i{
    font-size:22px;
    color:#e32626;
}

.msacf-feature-item span{
    font-size:15px;
    font-weight:500;
    color:#111;
}





.duct-products-section{
    padding:100px 0;
    background:#f8fafc;
}

.duct-product-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    height:100%;
    transition:.4s;
    box-shadow:0 10px 35px rgba(0,0,0,.06);
}

.duct-product-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.duct-product-img{
    background:#fff;
    padding:25px;
    height:240px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.duct-product-img img{
    max-width:100%;
    max-height:180px;
    transition:.4s;
}

.duct-product-card:hover img{
    transform:scale(1.08);
}

.duct-product-content{
    padding:25px;
    border-top:1px solid #eef2f7;
}

.duct-product-content h4{
    font-size:22px;
    margin-bottom:12px;
    font-weight:600;
}

.duct-product-content p{
    color:#111;
    line-height:1.8;
    margin:0; text-align: left;
}


.duct-heading-area{
    max-width:850px;
    margin:0 auto 60px;
}

.duct-mini-title{
    display:inline-block;
    padding:10px 22px;
    background:#eef5ff;

    border-radius:50px;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
}

.duct-main-title{
    font-size:48px;
    font-weight:700;
    color:#222;
    margin:20px 0 15px;
    line-height:1.2;
}

.duct-main-desc{
    font-size:17px;
    color:#111;
    line-height:1.8;
    margin:0;
}

@media(max-width:768px){

    .duct-main-title{
        font-size:32px;
    }

}





.rsm-core-section{
    padding:100px 0;
    background:#fff;
    position:relative;
}

.rsm-core-heading{
    max-width:800px;
    margin:0 auto 70px;
}

.rsm-core-tag{
    display:inline-block;
    padding:10px 22px;
    background:#eef5ff;
    color:#0b2d4a;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
}

.rsm-core-heading h2{
    font-size:48px;
    font-weight:700;
    margin:20px 0;
    color:#222;
}

.rsm-core-heading p{
    color:#222;
    font-size:17px;
    line-height:1.8;
}

.rsm-core-card{
    position:relative;
    background:#fff;
    padding:40px 30px;
    border-radius:25px;
    overflow:hidden;
    height:100%;
    transition:.4s;
    border:1px solid #edf2f7;
    box-shadow:0 15px 40px rgba(0,0,0,.05);
}

.rsm-core-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(13,110,253,.15);
}

.rsm-core-number{
    position:absolute;
    top:20px;
    right:25px;
    font-size:60px;
    font-weight:800;
    color:rgba(13,110,253,.08);
    line-height:1;
}

.rsm-core-icon{
    width:85px;
    height:85px;
    border-radius:20px;
    background:linear-gradient(135deg,#0b2d4a,#0b2d4a);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
}

.rsm-core-icon i{
    color:#fff;
    font-size:34px;
}

.rsm-core-card h3{
    font-size:28px;
    margin-bottom:18px;
    font-weight:700;
    color:#222;
}

.rsm-core-card p{
    color:#222;
    line-height:1.9;
    margin:0; text-align: left;
}

@media(max-width:768px){

    .rsm-core-heading h2{
        font-size:32px;
    }

    .rsm-core-card{
        padding:30px 25px;
    }

    .rsm-core-number{
        font-size:42px;
    }

}




.heat-extractor-features{
    padding:100px 0;
    background:#f5f7fb;
}

.section-title{
    max-width:850px;
    margin:auto;
    margin-bottom:60px;
}

.section-title span{
    color:#0d6efd;
    font-weight:700;
    text-transform:uppercase;
}

.section-title h2{
    font-size:32px;
    font-weight:800;
    margin:15px 0;
    color:#222;
}

.section-title p{
    color:#222;

}

.feature-box{
    display:flex;
    gap:25px;
    background:#fff;
    padding:35px;
    border-radius:20px;
    height:100%;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
    transition:.3s;
}

.feature-box:hover{
    transform:translateY(-5px);
}

.icon-box{
    min-width:80px;
    width:80px;
    height:80px;
    background:#eef4ff;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.icon-box i{
    font-size:34px;
    color:#dc2626;
}

.feature-box h4{
    font-size:22px;
    font-weight:700;
    margin-bottom:10px;
}

.feature-box p{
    color:#222;
    margin:0;
    line-height:1.8;
}

.stats-row{
    margin-top:60px;
    background:#dc2626;
    border-radius:20px;
    padding:40px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    text-align:center;
}

.stat-box h3{
    color:#fff;
    font-size:55px;
    font-weight:800;
    margin-bottom:10px;
}

.stat-box span{
    color:#fff;
    font-size:18px;
}

@media(max-width:991px){

    .stats-row{
        grid-template-columns:repeat(2,1fr);
        gap:30px;
    }

    .section-title h2{
        font-size:38px;
    }
}

@media(max-width:576px){

    .stats-row{
        grid-template-columns:1fr;
    }

    .feature-box{
        padding:25px;
    }

    .section-title h2{
        font-size:30px;
    }
}


.product-intro-section{
    padding:100px 0;
    background:#f7f7f7;
}

.product-image-box{
    background:#eef2f7;
    border-radius:30px;
    padding:40px;
}

.product-image-box img{
    width:100%;
    border-radius:10px;
}

.product-content h2{
    font-size: 34px;
    font-weight:700;
    line-height:1.2;
    color:#111827;
    margin-bottom:25px;
}

.product-content p{
 
    color:#222;
    margin-bottom:20px;
}

@media(max-width:991px){

    .product-content h2{
        font-size:36px;
    }

}

@media(max-width:576px){

    .product-intro-section{
        padding:70px 0;
    }

    .product-content h2{
        font-size:28px;
    }

    .product-content p{
        font-size:16px;
    }

}