* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.color {
    color: #55A0A0;
    color: #575251;
}

body {
    position: relative;
    
}
.container-fluid{
    padding-left:0;
    padding-right:0;
}

.row{
    margin-left:0;
    margin-right:0;
}
/*=========================
        NAVBAR
        =========================*/

header {
    position: sticky;
    top: 0px;
    z-index: 100000;
}

.navbar {
    background: #fff;
    padding: 14px 0;
    transition: .4s;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .06);
}

.navbar-brand {
    font-size: 32px;
    font-weight: 700;
    color: #55A0A0 !important;
    letter-spacing: .5px;
}

.navbar-brand img {
    max-width: 115px;
}

.navbar-nav .nav-item {
    margin: 0 10px;
    position: relative;
}

.navbar-nav .nav-link {
    color: #575251;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 20px 0;
    position: relative;
    transition: .35s;
}

.navbar-nav .nav-link:hover {
    color: #55A0A0;
}

.navbar-nav .nav-link.active {
    color: #55A0A0;
}

/* Animated Underline */

/* .navbar-nav .nav-link::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 18px;
            width: 0;
            height: 3px;
            background: #55A0A0;
            border-radius: 50px;
            transition: .35s ease;
        } */

/* .navbar-nav .nav-link:hover::after,
        .navbar-nav .nav-link.active::after {
            width: 100%;
        } */

/* Dropdown */

.dropdown-menu {
    border: none;
    border-radius: 15px;
    margin-top: 0;
    padding: 12px 0;
    min-width: 260px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .10);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: .35s;
    display: block;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    color: #575251;
    padding: 12px 22px;
    font-size: 15px;
    font-weight: 500;
    transition: .3s;
}

.dropdown-item:hover {
    background: #55A0A0;
    color: #fff;
    padding-left: 30px;
}

.dropdown-toggle::after {
    margin-left: 6px;
    vertical-align: middle;
}

/* Button */

.btn-contact {
    background: #55A0A0;
    color: #fff;
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 600;
    transition: .3s;
    margin-left: 18px;
}

.btn-contact:hover {
    background: #575251;
    color: #fff;
}



/* Mobile */

@media(max-width:991px) {

    .navbar-nav {
        margin-top: 15px;
    }

    .navbar-nav .nav-item {
        margin: 0;
    }

    .navbar-nav .nav-link {
        padding: 14px 0;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        box-shadow: none;
        background: #f8f9fa;
        border-radius: 10px;
    }

    .dropdown-menu.show {
        display: block;
    }

    .btn-contact {
        margin-top: 15px;
        margin-left: 0;
        display: inline-block;
    }


}

.navbar-nav .nav-link.active {
    color: #55A0A0 !important;
}

.dropdown-item.active {
    background: #55A0A0;
    color: #fff !important;
}

/*============================
     slider section 
 ============================= */

.hero-slider {

    position: relative;

}

.heroSwiper {

    height: 100vh;

}

.heroSwiper .swiper-slide {

    position: relative;

}

.heroSwiper img {

    width: 100%;
    height: 100%;
    object-fit: cover;

}

.overlay {

    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .55);

}

.hero-content {

    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    max-width: 700px;
    color: #fff;
    z-index: 2;

}

.hero-content span {

    color: #55A0A0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;

}

.hero-content h1 {

    font-size: 58px;
    line-height: 1.2;
    font-weight: 700;
    margin: 20px 0;

}

.hero-content p {

    font-size: 20px;
    margin-bottom: 35px;
    color: #f2f2f2;

}

.btn-theme {

    background: #55A0A0;
    color: #fff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: .3s;

}

.btn-theme:hover {

    background: #fff;
    color: #55A0A0;

}

.swiper-button-next,
.swiper-button-prev {

    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .18);
    backdrop-filter: blur(10px);

}

.swiper-button-next::after,
.swiper-button-prev::after {

    font-size: 18px;
    color: #fff;

}

.swiper-pagination-bullet {

    width: 12px;
    height: 12px;
    background: #fff;
    opacity: 1;

}

.swiper-pagination-bullet-active {

    background: #55A0A0;
}

@media(max-width:991px) {

    .hero-content {

        max-width: 100%;
        text-align: center;
        left: 0;
        right: 0;
        padding: 0 20px;

    }

    .hero-content h1 {

        font-size: 34px;

    }

    .hero-content p {

        font-size: 17px;

    }

    .swiper-button-next,
    .swiper-button-prev {

        display: none;

    }

}

/* footer start  */
/*=========================
FOOTER
=========================*/

.footer {

    background: #575251;
    color: #ddd;

}

.footer-title {

    color: #55A0A0;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;

}

.footer p {

    line-height: 1.9;

}

.iso {

    color: #fff;

}

.footer-links,
.contact-list {

    list-style: none;
    padding: 0;
    margin: 0;

}

.footer-links li,
.contact-list li {

    margin-bottom: 15px;

}

.footer-links a,
.contact-list a {

    color: #ddd;
    text-decoration: none;
    transition: .3s;

}

.footer-links a:hover,
.contact-list a:hover {

    color: #55A0A0;
    padding-left: 8px;

}

.contact-list i {

    color: #55A0A0;
    margin-right: 10px;

}

.footer-map {

    overflow: hidden;
    border-radius: 15px;

}

.footer-bottom {

    margin-top: 60px;
    background: #4d4948;
    padding: 18px 0;
    color: #ccc;

}

.footer-bottom a {

    color: #fff;
    margin-left: 15px;
    font-size: 20px;
    transition: .3s;

}

.footer-bottom a:hover {

    color: #55A0A0;

}

@media(max-width:767px) {

    .footer-bottom {

        text-align: center;

    }

    .footer-bottom .text-md-end {

        margin-top: 15px;

    }

}

.designer-link {
    color: #55A0A0;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.designer-link:hover {
    color: #fff;
}

/* about section css */

/*==========================
      COMMON HEADING
===========================*/

.main-head {

    margin-bottom: 35px;

}

.main-head span {

    color: #55A0A0;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 14px;

}

.main-head h2 {

    color: #575251;
    font-size: 40px;
    font-weight: 700;
    margin-top: 12px;
    line-height: 1.3;

}

/*==========================
      ABOUT
===========================*/

.about-section {

    padding: 100px 0;
    background: #fff;

}

.about-text {

    color: #666;
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 20px;

}

.about-section img {

    width: 100%;
    transition: .4s;

}

.about-section img:hover {

    transform: scale(1.03);

}

.strength-box {

    background: #f8f9fa;
    padding: 35px;
    border-radius: 20px;
    border-left: 5px solid #55A0A0;

}

.strength-box h4 {

    color: #575251;
    font-weight: 700;
    margin-bottom: 25px;

}

.strength-box ul {

    list-style: none;
    padding: 0;
    margin: 0;

}

.strength-box li {

    margin-bottom: 18px;
    font-size: 16px;
    color: #555;
    position: relative;
    padding-left: 32px;

}

.strength-box li::before {

    content: "✔";
    position: absolute;
    left: 0;
    color: #55A0A0;
    font-weight: bold;

}

@media(max-width:991px) {

    .main-head h2 {

        font-size: 32px;

    }

    .about-section {

        padding: 70px 0;

    }

    .strength-box {

        margin-bottom: 20px;

    }

}

/* about page section css */

/*==========================
      INDIA SECTION
===========================*/

.india-section {

    padding: 100px 0;

    background: linear-gradient(135deg, #f7fbfb, #ffffff);

}

.india-subtitle {

    color: #575251;

    font-size: 22px;

    font-weight: 600;

    margin-bottom: 20px;

}

.india-card {

    background: #fff;

    border-radius: 18px;

    padding: 25px;

    height: 100%;

    border-left: 4px solid #55A0A0;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

    transition: .35s;

}

.india-card:hover {

    transform: translateY(-8px);

    background: #55A0A0;

    color: #fff;

}

.india-card i {

    font-size: 34px;

    color: #55A0A0;

    margin-bottom: 18px;

    transition: .35s;

}

.india-card:hover i {

    color: #fff;

}

.india-card h6 {

    font-size: 18px;

    font-weight: 700;

    margin-bottom: 12px;

}

.india-card p {

    margin: 0;

    line-height: 1.7;

    font-size: 15px;

}

.india-map {

    /* max-width:260px; */

    animation: floatMap 4s ease-in-out infinite;

}

@keyframes floatMap {

    0%,
    100% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-12px);

    }

}

@media(max-width:991px) {

    .india-section {

        text-align: center;

    }

    .india-map {

        margin-top: 35px;

        /* max-width:220px; */

    }

    .india-subtitle {

        font-size: 20px;

    }

}








/* why choose us section */

.why-section {

    padding: 100px 0;
    background: linear-gradient(135deg, #eef9f9, #eef9f9, #eef9f9);

}

.center-logo {

    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;

}

.logo-circle {

    width: 280px;
    height: 280px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 8px solid #55A0A0;
    box-shadow: 0 15px 45px rgba(0, 0, 0, .12);
    position: relative;

}

.logo-circle::before {

    content: '';
    position: absolute;
    width: 340px;
    height: 340px;
    border: 2px dashed #55A0A0;
    border-radius: 50%;
    animation: spin 25s linear infinite;

}

.logo-circle img {

    width: 180px;

}

.why-card {

    background: #fff;
    padding: 22px;
    border-radius: 18px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .07);
    transition: .35s;

}

.why-card:hover {

    transform: translateY(-8px);
    background: #55A0A0;
    color: #fff;

}

.why-card:hover .why-icon {

    background: #fff;
    color: #55A0A0;

}

.why-icon {

    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #55A0A0;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    transition: .35s;
    flex-shrink: 0;

}

.why-card h5 {

    margin: 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;

}

@keyframes spin {

    from {

        transform: rotate(0deg);

    }

    to {

        transform: rotate(360deg);

    }

}

@media(max-width:991px) {

    .logo-circle {

        width: 220px;
        height: 220px;
        margin: 40px auto;

    }

    .logo-circle::before {

        width: 270px;
        height: 270px;

    }

    .logo-circle img {

        width: 130px;

    }

    .why-card {

        margin: 15px 0;

    }

}

/* trending slider section */

/*==========================
    INDUSTRY SECTION
===========================*/

.industry-section {

    background: #f8f9fa;
    padding: 90px 0;

}

.industrySwiper {

    padding: 15px 0;

}

.industrySwiper .swiper-slide {

    display: flex;
    justify-content: center;
    align-items: center;
    height: 130px;

}

.industrySwiper .swiper-slide img {

    width: 100%;
    max-width: 170px;
    max-height: 90px;
    object-fit: contain;

    background: #fff;
    padding: 18px;
    border-radius: 16px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);

    transition: .35s;

}

.industrySwiper .swiper-slide img:hover {

    transform: translateY(-8px);

    box-shadow: 0 15px 35px rgba(0, 0, 0, .15);

}

@media(max-width:991px) {

    .industry-section {

        text-align: center;

    }

}


/*==========================
      QUALITY SECTION
===========================*/

.quality-section {

    background:
        linear-gradient(#111723d8, #111723d8),
        url("../banner/Picture.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 100px 0;

}

.quality-box {

    /* background:transparent; */
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
    backdrop-filter: blur(3px);
    border: 1px solid #FFF;

}

.quality-box h4 {

    text-align: center;
    color: #575251;
    color: #FFF;
    font-size: 28px;
    font-weight: 700;

}

.quality-item {

    background: #f7f7f7;
    border-radius: 12px;
    padding: 18px;
    font-size: 16px;
    font-weight: 500;
    color: #575251;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: .35s;

}

.quality-item i {

    color: #55A0A0;
    font-size: 22px;

}

.quality-item:hover {

    background: #55A0A0;
    color: #fff;
    transform: translateY(-5px);

}

.quality-item:hover i {

    color: #fff;

}

/* Certificates */

.certificate-card {

    background: #fff;
    padding: 12px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .35s;

}

.certificate-card img {

    width: 100%;
    border-radius: 12px;

}

.certificate-card:hover {

    transform: translateY(-8px);

}

@media(max-width:991px) {

    .quality-box {

        padding: 25px;

    }

}

/* slider bottom */

/*==========================
      OUR CLIENTS
===========================*/

.clients-section {

    padding: 100px 0;
    background: #fff;

}

.clientsSwiper {

    padding: 20px 0;

}

.client-logo {

    background: #fff;
    border: 1px solid #e9e9e9;
    border-radius: 18px;
    padding: 25px;
    height: 140px;

    display: flex;
    justify-content: center;
    align-items: center;

    transition: .35s;

}

.client-logo:hover {

    border-color: #55A0A0;

    transform: translateY(-8px);

    box-shadow: 0 12px 30px rgba(0, 0, 0, .10);

}

.client-logo img {

    max-width: 160px;
    max-height: 80px;
    width: 100%;
    object-fit: contain;
    transition: .35s;

}

.client-logo:hover img {

    transform: scale(1.08);

}

/*==========================
      PRODUCTS
===========================*/

.products-section {

    padding: 100px 0;

    background: #f8f9fa;

}

.productSwiper {

    padding: 20px 0 15px;

}

.product-card {

    background: #fff;

    border-radius: 20px;

    overflow: hidden;

    transition: .35s;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

}

.product-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 18px 40px rgba(0, 0, 0, .15);

}

.product-img {
    background-color:#bdd6ec ;

    overflow: hidden;

}

.product-img img {

    width: 100%;

    /* height:260px; */

    /* object-fit:cover; */

    transition: .5s;

}

.product-card:hover img {

    transform: scale(1.08);

}

.product-content {

    padding: 20px;

    text-align: center;

}

.product-content h5 {

    margin: 0;

    color: #575251;

    font-size: 16px;

    font-weight: 500;

}

/* Button */

.theme-btn {

    display: inline-block;

    background: #55A0A0;

    color: #fff;

    padding: 14px 35px;

    border-radius: 50px;

    text-decoration: none;

    font-weight: 600;

    transition: .35s;

}

.theme-btn:hover {

    background: #575251;

    color: #fff;

}

@media(max-width:767px) {

    .product-img img {

        /* height: 220px; */

    }

    .product-content h5 {

        font-size: 18px;

    }

}



/*==========================
      SCROLL TOP
===========================*/

#scrollTop {

    position: fixed;

    right: 30px;

    bottom: 30px;

    width: 60px;

    height: 60px;

    border: none;

    border-radius: 50%;

    background: #fff;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .18);

    cursor: pointer;

    z-index: 9999;

    display: flex;

    justify-content: center;

    align-items: center;

    opacity: 0;

    visibility: hidden;

    transform: translateY(20px);

    transition: .35s;

}

#scrollTop.show {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);

}

#scrollTop i {

    position: absolute;

    color: #55A0A0;

    font-size: 20px;

}

#scrollTop svg {

    position: absolute;

    transform: rotate(-90deg);

}

.progress-bg {

    fill: none;

    stroke: #e5e5e5;

    stroke-width: 4;

}

.progress-bar {

    fill: none;

    stroke: #55A0A0;

    stroke-width: 4;

    stroke-linecap: round;

    stroke-dasharray: 163.36;

    stroke-dashoffset: 163.36;

    transition: .15s linear;

}

#scrollTop:hover {

    transform: translateY(-5px);

}

/*==========================
      PAGE BANNER
===========================*/

.page-banner {

    background:
        linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)),
        url("../banner/Picture4.jpg");

    background-size: cover;
    background-position: center;

    padding: 20px 0;

    text-align: center;

    position: relative;

}

.page-banner-content h1 {

    color: #fff;

    font-size: 42px;

    font-weight: 700;

    margin-bottom: 12px;

}

.breadcrumb {

    background: none;

}

.breadcrumb-item {

    font-size: 16px;

    color: #ddd;

}

.breadcrumb-item a {

    color: #55A0A0;

    text-decoration: none;

    transition: .3s;

}

.breadcrumb-item a:hover {

    color: #fff;

}

.breadcrumb-item+.breadcrumb-item::before {

    color: #fff;

}

.breadcrumb-item.active {

    color: #fff;

}

@media(max-width:991px) {

    .page-banner {

        padding: 25px 0;

    }

    .page-banner-content h1 {

        font-size: 32px;

    }

}

@media(max-width:576px) {

    .page-banner {

        padding: 15px 0;

    }

    .page-banner-content h1 {

        font-size: 26px;

    }

    .breadcrumb-item {

        font-size: 14px;

    }

}

/*==========================
    COMPANY PROFILE
===========================*/

.company-profile {

    padding: 100px 0;
    background: #f8f9fa;

}

.profile-card {

    background: #fff;
    border-radius: 18px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;

    height: 100%;

    border-left: 5px solid #55A0A0;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

    transition: .35s;

}

.profile-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 18px 40px rgba(0, 0, 0, .12);

}

.profile-icon {

    width: 70px;
    height: 70px;

    min-width: 70px;

    border-radius: 50%;

    background: #55A0A0;

    display: flex;
    justify-content: center;
    align-items: center;

    color: #fff;

    font-size: 28px;

}

.profile-content h4 {

    color: #575251;

    font-size: 22px;

    font-weight: 700;

    margin-bottom: 12px;

}

.profile-content p {

    margin: 0;

    color: #666;

    line-height: 1.8;

    font-size: 16px;

}

@media(max-width:767px) {

    .profile-card {

        flex-direction: column;

        text-align: center;

    }

    .profile-icon {

        margin: 0 auto;

    }

}

/*==========================
    INDUSTRIES SERVED
===========================*/

.industries-section {

    padding: 100px 0;

    background: #f8f9fa;

}

.industry-card {

    background: #fff;

    padding: 35px 25px;

    border-radius: 18px;

    text-align: center;

    height: 100%;

    border-top: 4px solid #55A0A0;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

    transition: .35s;

}

.industry-card:hover {

    background: #55A0A0;

    transform: translateY(-8px);

}

.industry-card:hover h4 {

    color: #fff;

}

.industry-card:hover .industry-icon {

    background: #fff;

    color: #55A0A0;

}

.industry-icon {

    width: 80px;

    height: 80px;

    margin: 0 auto 25px;

    border-radius: 50%;

    background: #55A0A0;

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 34px;

    transition: .35s;

}

.industry-card h4 {

    color: #575251;

    font-size: 22px;

    font-weight: 600;

    margin: 0;

    line-height: 1.5;

}

@media(max-width:991px) {

    .industry-card {

        padding: 30px 20px;

    }

    .industry-card h4 {

        font-size: 20px;

    }

}

@media(max-width:576px) {

    .industry-card h4 {

        font-size: 18px;

    }

    .industry-icon {

        width: 70px;

        height: 70px;

        font-size: 30px;

    }

}


/*==========================
    SUCCESS STORY
===========================*/

.success-story {

    padding: 100px 0;

    background: #f8f9fa;

}

.success-box {

    background: #fff;

    padding: 35px;

    border-radius: 20px;

    box-shadow: 0 12px 35px rgba(0, 0, 0, .08);

}

.story-item {

    display: flex;

    gap: 20px;

    margin-bottom: 30px;

}

.story-item:last-child {

    margin-bottom: 0;

}

.story-icon {

    width: 65px;

    height: 65px;

    min-width: 65px;

    border-radius: 50%;

    background: #55A0A0;

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 24px;

}

.story-item h5 {

    font-size: 22px;

    color: #575251;

    margin-bottom: 8px;

    font-weight: 700;

}

.story-item p {

    margin: 0;

    color: #666;

    line-height: 1.8;

}

.benefits-list {

    margin: 0;

    padding-left: 20px;

}

.benefits-list li {

    margin-bottom: 8px;

    color: #666;

}

.success-img {

    border-radius: 20px;

    overflow: hidden;

    box-shadow: 0 15px 35px rgba(0, 0, 0, .12);

}

.success-img img {

    width: 100%;

    transition: .5s;

}

.success-img:hover img {

    transform: scale(1.05);

}

@media(max-width:991px) {

    .success-box {

        margin-bottom: 30px;

    }

    .story-item {

        gap: 15px;

    }

    .story-icon {

        width: 55px;

        height: 55px;

        min-width: 55px;

        font-size: 20px;

    }

    .story-item h5 {

        font-size: 20px;

    }

}


/*==========================
    ENGINEERING SOLUTIONS
===========================*/

.engineering-section {

    padding: 100px 0;

    background: #f8f9fa;

}

.engineering-list {

    margin-top: 35px;

}

.engineering-item {

    display: flex;

    align-items: center;

    gap: 18px;

    margin-bottom: 22px;

    font-size: 19px;

    font-weight: 500;

    color: #575251;

}

.engineering-item i {

    width: 52px;

    height: 52px;

    border-radius: 50%;

    background: #55A0A0;

    color: #fff;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 20px;

    transition: .35s;

}

.engineering-item:hover i {

    transform: rotate(360deg);

}

.engineering-item:hover {

    color: #55A0A0;

}

.engineering-img {

    border-radius: 20px;

    overflow: hidden;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .12);

}

.engineering-img img {

    width: 100%;

    transition: .5s;

}

.engineering-img:hover img {

    transform: scale(1.05);

}

@media(max-width:991px) {

    .engineering-section {

        text-align: center;

    }

    .engineering-item {

        justify-content: flex-start;

        font-size: 18px;

    }

    .engineering-img {

        margin-top: 20px;

    }

}

/*==========================
    PARTNERSHIP SECTION
===========================*/

.partnership-section {

    padding: 100px 0;

    background: linear-gradient(135deg, #55A0A0, #3f8888);

    color: #fff;

}

.partnership-section .main-head h2,
.partnership-section .main-head span {

    color: #fff;

}

.partnership-text {

    font-size: 22px;

    font-weight: 500;

    margin-top: 15px;

    opacity: .95;

}

.partnership-item {

    display: flex;

    align-items: center;

    gap: 18px;

    padding: 18px 25px;

    margin-bottom: 20px;

    border: 1px solid rgba(255, 255, 255, .15);

    border-radius: 15px;

    background: rgba(255, 255, 255, .08);

    backdrop-filter: blur(6px);

    transition: .35s;

}

.partnership-item:hover {

    transform: translateX(10px);

    background: #fff;

    color: #55A0A0;

}

.partnership-item i {

    width: 55px;

    height: 55px;

    border-radius: 50%;

    background: #fff;

    color: #55A0A0;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 22px;

    flex-shrink: 0;

}

.partnership-item span {

    font-size: 19px;

    font-weight: 600;

}

.partnership-cta {

    border-top: 1px solid rgba(255, 255, 255, .25);

    padding-top: 40px;

}

.partnership-cta h4 {

    font-size: 28px;

    font-weight: 600;

    color: #fff;

}

@media(max-width:991px) {

    .partnership-item {

        margin-bottom: 18px;

    }

    .partnership-cta h4 {

        font-size: 22px;

    }

}

@media(max-width:576px) {

    .partnership-item span {

        font-size: 17px;

    }

}

.client-page img {
    border: 1px solid #CCC;
    width: 100%;
}






/*==========================
      CONTACT
===========================*/

.contact-section {

    padding: 100px 0;

    background: #f8f9fa;

}

.contact-info,
.contact-form {

    background: #fff;

    padding: 35px;

    border-radius: 20px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

    height: 100%;

}

.contact-info h3,
.contact-form h3 {

    color: #575251;

    font-size: 28px;

    margin-bottom: 30px;

    font-weight: 700;

}

.contact-item {

    display: flex;

    gap: 18px;

    margin-bottom: 25px;

}

.contact-item i {

    width: 55px;

    height: 55px;

    background: #55A0A0;

    color: #fff;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 20px;

    flex-shrink: 0;

}

.contact-item h5 {

    color: #575251;

    margin-bottom: 6px;

    font-weight: 600;

}

.contact-item p {

    margin: 0;

    color: #666;

    line-height: 1.8;

}

.contact-map iframe {

    border-radius: 15px;

}

.form-control {

    height: 55px;

    border-radius: 10px;

    border: 1px solid #ddd;

    box-shadow: none;

}

textarea.form-control {

    height: auto;

    resize: none;

}

.form-control:focus {

    border-color: #55A0A0;

    box-shadow: none;

}

@media(max-width:991px) {

    .contact-info {

        margin-bottom: 30px;

    }

}

@media(max-width:576px){
    .contact-item p{
        font-size:11px !important;
    }
    .contact-info{
        padding:14px;
    }
}


/*==========================
    INFRASTRUCTURE
===========================*/

.infrastructure-section{

    padding:100px 0;

    background:#f8f9fa;

}

.infra-content h3{

    color:#55A0A0;

    font-size:32px;

    font-weight:700;

    margin-bottom:25px;

}

.infra-list{

    list-style:none;

    padding:0;

    margin:0;

}

.infra-list li{

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:18px;

    font-size:18px;

    color:#575251;

    line-height:1.6;

}

.infra-list li i{

    color:#55A0A0;

    font-size:20px;

}

.infra-img{

    overflow:hidden;

    border-radius:20px;

    box-shadow:0 15px 40px rgba(0,0,0,.12);

}

.infra-img img{

    width:100%;

    transition:.5s;

}

.infra-img:hover img{

    transform:scale(1.06);

}

@media(max-width:991px){

.infrastructure-section{

    text-align:center;

}

.infra-content{

    margin-bottom:20px;

}

.infra-list li{

    justify-content:flex-start;

    font-size:17px;

}

}



/*==========================
 MANUFACTURING CAPABILITIES
===========================*/

.capabilities-section{

    padding:100px 0;

    background:#f8f9fa;

}

.capability-box,
.flow-box{

    background:#fff;

    padding:30px;

    border-radius:18px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.capability-box h3,
.flow-box h3{

    font-size:28px;

    color:#575251;

    margin-bottom:25px;

    font-weight:700;

}

.capability-box h3 i,
.flow-box h3 i{

    color:#55A0A0;

    margin-right:10px;

}

.capability-tags{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

}

.capability-tags span{

    background:#55A0A0;

    color:#fff;

    padding:10px 18px;

    border-radius:30px;

    font-size:15px;

    transition:.35s;

}

.capability-tags span:hover{

    background:#575251;

}

.process-flow{

    display:flex;

    flex-wrap:wrap;

    align-items:center;

    justify-content:center;

    gap:12px;

}

.flow-step{

    background:#55A0A0;

    color:#fff;

    padding:15px 20px;

    border-radius:10px;

    font-weight:600;

    text-align:center;

}

.flow-arrow{

    color:#55A0A0;

    font-size:22px;

}

@media(max-width:991px){

.flow-arrow{

    transform:rotate(90deg);

}

.process-flow{

    flex-direction:column;

}

}



/*==========================
        PRODUCT PAGE
===========================*/

.product-page{

    padding:100px 0;

    background:#f8f9fa;

}

.product-page .main-head p{

    max-width:800px;

    margin:15px auto 0;

    color:#666;

    font-size:18px;

    line-height:1.8;

}

.product-gallery{

    overflow:hidden;

    border-radius:18px;

    background:#fff;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s;

}

.product-gallery img{

    width:100%;

    /* height:300px; */

    /* object-fit:cover; */
background-color: #bdd6ec;
    transition:.5s;

}

.product-gallery:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 40px rgba(0,0,0,.15);

}

.product-gallery:hover img{

    transform:scale(1.08);

}

@media(max-width:991px){

.product-gallery img{

    height:260px;

}

}

@media(max-width:576px){

.product-page{

    padding:70px 0;

}

.product-gallery img{

    height:230px;

}

.product-page .main-head p{

    font-size:16px;

}

}


.footer-bottom{
    font-size:13px!important;
}
.footer-bottom a{
    font-size:15px!important;
}


  .contact-list li a {
        font-size: 13px !important;
    }
    .footer-links {
           font-size: 13px !important;
    }
    footer p{
        font-size: 14px !important;
    }

@media(max-width:1300px){
    .contact-list li a {
        font-size: 12px !important;
    }
    .footer-links {
           font-size: 12px !important;
    }
    footer p{
        font-size: 14px !important;
    }
}

@media(max-width:1400px){
    .contact-list li a {
        font-size: 12px !important;
    }
    .footer-links {
           font-size: 12px !important;
    }
    footer p{
        font-size: 14px !important;
    }
}

.btn-info {
    background-color: #489BA1 !important;
    border: 1px solid #489BA1;
    color: #FFF !important;
}

.btn-info:hover {
    background-color: transparent !important;
    border: 1px solid #489BA1;
    color: #FFF !important;
}

a{
    text-decoration: none !important;
}

.ab-btn:hover{
    color:  #489BA1 !important;
}





      .map-overlay {
            /* position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 2; */
            background: transparent;
            cursor: pointer;
        }