* {
    font-family: "Yantramanav";
    padding: 0px;
    margin: 0;
}

:root {
    --primary-color: #f41717;
    --dark-primary-color: #881919;
    --secondary-color: #0C1438;
    --secondary-light-blue: #012549;
    --sky-blue-heading: #002e5d;
    --bold-heading-color: #333;
    --heading-desc-color: rgb(57, 57, 57);
    --black: #000;
    --white: #ffffff;
}

/*---=================================
   <!--Top Bar Area Css-->
==================================---*/
.header-top-section {
    background: #171717;
    padding: 5px;
}


.header-address-info {
    text-align: right;
    display: flex;
    align-items: start;
    justify-content: flex-start;
}

.header-address-info a {

    font-size: 15px;
    color: var(--white);
    font-weight: 400;
}

.header-address-info i {
    display: inline-block;
    padding-right: 5px;
    color: var(--primary-color);
    font-size: 12px;
}

.header-address-info span {
    display: flex;
    align-items: center;
    position: relative;
    margin-right: 40px;
}

.header-address-info span {
    padding-left: 8px;
    position: relative;
}

.header-address-info span:before {
    position: absolute;
    content: "";
    left: -20px;
    top: -13px;
    background: rgba(255, 255, 255, 0.10196078431372549);
    height: 50px;
    width: 1px;
}

.header-address-info span a:hover {
    color: rgb(167, 167, 167);
}

span.header-top-upper {
    margin-left: 48px;
}

.header-top-right-social {
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.address span {
    color: var(--white);
    font-size: 15px;
}

.address span i {
    color: var(--primary-color);
    font-size: 15px;
    margin-right: 10px;
}

.header-top-right-social ul>li {
    list-style: none;
    display: inline-block;
}

.header-top-right-social ul>li>a {
    display: inline-block;
    border: 1px dashed transparent;
    text-align: center;
    color: var(--white);
    font-size: 16px;
    margin-left: 30px;
    position: relative;
    z-index: 1;
}

.header-top-right-social ul>li>a:before {
    position: absolute;
    content: "";
    left: -20px;
    top: -11px;
    height: 50px;
    width: 1px;
    background: rgba(255, 255, 255, 0.10196078431372549);
}

.header-top-right-social ul>li>a:hover {
    color: var(--primary-color);
}

a.top-social-icon-left:after {
    position: absolute;
    content: "";
    right: -15px;
    top: -11px;
    height: 50px;
    width: 1px;
    background: rgba(255, 255, 255, 0.10196078431372549);
}

/*---=================================
   <!--Header Area Css-->
==================================---*/
.header-logo img {
    height: auto;
    width: 300px;

}

.header-area {
    position: relative;
    z-index: 100;
}

.header-menu {
    text-align: right;
}

.header-menu ul {
    display: inline-block;
}

.header-menu>ul>li {
    display: inline-block;
    margin-right: 20px;
}

.header-menu ul li a {
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    padding: 36px 0;
    transition: 0.5s;
    color: var(--secondary-light-blue);
    text-transform: capitalize;
}

.header-menu ul li a:hover {
    color: var(--primary-color);
}

.header-menu ul li i {
    font-size: 12px;
    display: inline-block;
    position: relative;
    left: 6px;
    color: var(--secondary-light-blue);
    transition: 0.5s;
}

.header-menu ul li a:hover i {
    color: var(--primary-color);
}

/*sub-menu*/
.header-menu ul li.menu-item-has-children {
    position: relative;
}

.header-menu ul li .sub-menu {
    position: absolute;
    width: 250px;
    display: block;
    text-align: left;
    background: var(--white);
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
    top: 150%;
    z-index: 2;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
    border-top: 5px solid var(--primary-color);
    border-radius: 3px 3px 0 0;
}

.header-menu ul li:hover .sub-menu {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.header-menu ul li .sub-menu li {
    width: 100%;
}

.header-menu ul li .sub-menu li a {
    display: block;
    padding: 6px 19px;
    color: #012766;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 500;
}

/* nested list active color */
.menu-item-has-children>a.active {
    color: var(--primary-color) !important;
}

.sub-menu li.active>a,
.custom-submenu li.active>a {
    color: var(--primary-color) !important;
}

.sub-menu li a:hover {
    background: var(--primary-color);
    color: var(--white) !important;
}

/* quote buttton - navbar */
.quote-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-btn a {
    background: linear-gradient(to right, var(--white) 50%, var(--primary-color) 50%);
    background-size: 205% 100%;
    background-position: right bottom;
    color: var(--white);
    font-size: 20px;
    border-radius: 25px;
    display: inline-block;
    padding: 8px 25px;
    font-weight: 700;
    text-transform: capitalize;
    white-space: nowrap;
    display: inline-block;
    margin-left: 10px;
    border: 1.5px solid var(--primary-color);
    transition: all 0.4s ease-out;
    background-repeat: no-repeat;
    -webkit-backface-visibility: hidden;
}

.quote-btn a:hover {
    background-position: left bottom;
    color: var(--primary-color);
}

.quote-btn a::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 0%;
    background: var(--white);
    transition: width 0.4s ease;
    z-index: -1;
    border-radius: 25px;
}

.quote-btn a:hover::before {
    width: 100%;
}

@media (max-width: 992px) {
    .quote-btn {
        display: flex;
        align-items: start;
        justify-content: start;
    }

    .quote-btn a {
        font-size: 40px;

    }
}

/* mobile quote button */
.quote-btn-mobile {
    display: flex;
    align-items: start;
    justify-content: start;
    width: 35%;
}

.quote-btn-mobile a {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--white) !important;
    padding: 8px 20px;
    font-weight: 700;
    text-transform: capitalize;
    font-size: 20px;
    white-space: nowrap;
    display: inline-block;
    margin-left: 10px;
    text-align: center;

}

.quote-btn-mobile a:hover {
    background: var(--primary-color);
}

@media (max-width: 992px) {
    .quote-btn-mobile a {
        font-size: 18;
    }
}

/* mobile social Icons Wrapper */
.mobile-social-icons {
    display: flex;
    gap: 15px;
    padding: 10px 18px;
    margin-bottom: 30px;
}

.mobile-social-icons a {
    width: 40px;
    height: 40px;
    background: var(--white);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: 0.3s ease;
}

.mobile-social-icons a:hover {
    background: var(--primary-color);
    color: var(--white);
}

.sugar-industry {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 0;
}


.sugar-industry a {
    position: relative;
    border: 1.5px solid var(--primary-color);
    padding: 8px 10px;
    font-weight: 700;
    font-size: 18px;
    color: var(--primary-color);
    white-space: nowrap;
    z-index: 1;
    transition: 0.4s ease;
    box-shadow: 0 4px 12px rgba(244, 23, 23, 0.15);
}


.sugar-industry a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--primary-color);
    transition: 0.4s ease;
    z-index: -1;
}

.sugar-industry a:hover {
    color: var(--white);
}

.sugar-industry a:hover::before {
    width: 100%;
}

@media (max-width: 992px) {
    .sugar-industry {
        display: flex;
        align-items: start;
        justify-content: start;
        margin-left: 10px;
        padding-bottom: 10px;

    }

    .sugar-industry a {
        font-size: 16px;
    }

}

@media (max-width: 1200px) {

    .header-menu>ul>li {
        margin-right: 18px;
    }

    .header-menu ul li a {
        font-size: 16px;
        padding: 30px 0;
    }

    .header-logo img {
        width: 250px;
    }

    .quote-btn a {
        padding: 6px 16px;
        font-size: 16px;
    }

    .sugar-industry a {
        font-size: 16px;
    }
}

/* ===== SERVICES MEGA MENU ===== */
.header-menu ul li .sub-menu.two {
    position: fixed;
    left: 50%;
    top: auto;
    transform: translateX(-50%);
    width: 80%;
    background: var(--white);
    border-top: 1px solid white;
    visibility: hidden;
    opacity: 0;
    transition: 0.4s;
    z-index: 9999;
    max-height: 80vh;
    overflow-y: auto;
}

@media (min-width: 1600px) {
    .header-menu ul li .sub-menu.two {
        width: 60%;
    }
}

.header-menu ul li:hover>.sub-menu.two {
    visibility: visible;
    opacity: 1;
}

.header-menu ul li .sub-menu.two ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
    margin: auto;
    border: 1px solid #ddd;
}

.header-menu ul li .sub-menu.two ul.mega-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-flow: row;
    align-items: stretch;
    max-width: 1200px;
    margin: auto;
    border: 1px solid #ddd;
}

.header-menu ul li .sub-menu.two ul::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: #ddd;
    display: none;
}

.main-services-group {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.fabrication-services-group {
    grid-column: span 1;
    border-left: 1px solid #ddd;
    background: #fff;
}

.main-services-group li:nth-child(4n+1),
.main-services-group li:nth-child(4n+2) {
    background: var(--white);
}

.main-services-group li:nth-child(4n+3),
.main-services-group li:nth-child(4n+4) {
    background: #fdecec;
}

.fabrication-services-group li:nth-child(odd) {
    background: #fdecec;
}

.fabrication-services-group li:nth-child(even) {
    background: var(--white);
}

.fab-title {
    font-weight: 700 !important;
    color: var(--primary-color) !important;
    text-align: center;
    border-bottom: 2px solid var(--primary-color) !important;
    background: var(--white) !important;
}

.header-menu ul li .sub-menu.two ul li {
    display: flex;
    align-items: center;
    min-height: 60px;
    border-bottom: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;
}

.header-menu ul li .sub-menu.two ul li a {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    transition: all 0.1s ease-in-out !important;
}

.grid-heading {
    background: var(--primary-color) !important;
    color: var(--white) !important;
    font-weight: 700;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    text-transform: uppercase;
    font-size: 15px;
}

@media (max-width: 991px) {
    .grid-heading {
        background: #fef4f4 !important;
        color: var(--dark-primary-color) !important;
        font-weight: 800;
        text-align: left;
        display: flex;
        align-items: center;
        justify-content: start;
        padding-left: 35px;
        min-height: 50px;
        text-transform: uppercase;
        font-size: 17px;
    }
}

.main-heading {
    grid-column: span 2;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.header-menu ul li .sub-menu.two ul li:hover,
.header-menu ul li .sub-menu.two ul li:hover a {
    background: var(--primary-color);
    color: var(--white);
}

.header-menu ul li .sub-menu.two ul li.active,
.header-menu ul li .sub-menu.two ul li.active a {
    background: var(--primary-color);
    color: var(--white) !important;
}

.header-menu ul li .sub-menu li a:hover {
    background: var(--primary-color);
    color: var(--white);
}




.sticky {
    left: 0;
    margin: auto;
    position: fixed !important;
    top: 0;
    width: 100%;
    -webkit-box-shadow: 0 2px 5px -2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 5px -2px rgba(0, 0, 0, 0.1);
    background: var(--white) !important;
    transition: .5s !important;
    z-index: 922;
    -webkit-animation: 300ms running fadeInDown;
    animation: 500ms running fadeInUp;
    animation-name: slideInDown;
}

ul.sub-menu li a span {
    background: var(--primary-color);
    padding: 4px 8px 3px;
    color: var(--white);
    opacity: 1;
    border-radius: 2px;
    text-transform: uppercase;
    font-size: 13px;
    margin-left: 5px;
    transition: .5s;
}

ul.sub-menu li:hover a span {
    background: rgba(255, 255, 255, 0.20);
}


.custom-mobile-header {
    background: var(--white);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* 2. Top Bar (Logo + Hamburger) */
.custom-mobile-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
}

.custom-mobile-logo img {
    height: auto;
    width: 250px;

}

/* 3. Hamburger to X Animation */
.custom-hamburger {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.custom-hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--black);
    margin: 5px 0;
    transition: 0.3s ease-in-out;
}

/* Hamburger Active State (The X) */
.custom-hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.custom-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.custom-hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* 4. Navigation Links */
.custom-mobile-nav {
    display: none;
    background: var(--white);
    max-height: 90vh;
    overflow-y: auto;
}

.custom-mobile-nav.active {
    display: block;
}

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

.custom-mobile-list li {
    border-top: 1px solid #e5e5e5;
    position: relative;
}

.custom-mobile-list li::after,
.custom-mobile-list li a::after {
    display: none !important;
    content: none !important;
}

.custom-mobile-list li a {
    display: block;
    padding: 10px 18px;
    color: var(--black);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

/* ------ mobile screen action style ---------- */
.custom-mobile-list li.active>a,
.custom-mobile-list li a.active {
    color: var(--primary-color) !important;
    font-weight: 700;
}

.custom-submenu li.active>a {
    color: var(--primary-color) !important;
}

/* 5. Arrow Styling */
.float-end {
    float: right;
    font-size: 14px;
    margin-top: 4px;
    transition: transform 0.3s ease;
    color: var(--black);
    ;
}

.has-sub.open>a .float-end {
    transform: rotate(180deg);
}

/* 6. Submenu Styles */
.custom-submenu {
    display: none;
    list-style: none;
    padding: 0;
    background: #fef4f4;
}

.custom-submenu li {
    border-top: 1px solid #dbdadacb;
}

.custom-submenu li a {
    padding-left: 35px;
    font-size: 15px;
    font-weight: 500;
    text-transform: capitalize;
    color: #323232;
}

@media (min-width: 992px) {
    .custom-mobile-header {
        display: none;
    }
}

.custom-hamburger:focus,
.custom-hamburger:active,
.custom-hamburger:focus-visible {
    outline: none;
    box-shadow: none;
    border: none;
}

.custom-hamburger {
    -webkit-tap-highlight-color: transparent;
}

/*---=================================
   <!--Hero Area Css-->
==================================---*/
.hero-slider {
    width: 100%;
    height: 650px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    z-index: 0;
}

.hero-slider .swiper-slide {
    overflow: hidden;
    color: var(--white);
}

.hero-slider .swiper-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.slide-inner.slide-bg-image {
    background: url(../images/slider/slide-lero1.jpg) center center / cover no-repeat;
    position: relative;
}

.slide-inner.slide-bg-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.slide-inner.slide-bg-image .container {
    position: relative;
    z-index: 2;
}


.slide-inner.slide-bg-image {
    background: url(../images/banner/from-design-execution-excellence-banner.webp);
    background-repeat: no-repeat;
    background-size: cover;
}

.slide-inner.slide-bg-image.two {
    background: url(../images/banner/structural-design-digital-engineering-banner.webp);
    background-repeat: no-repeat;
    background-size: cover;
}

.slide-inner.slide-bg-image.three {
    background: url(../images/banner/engineering-structures-that-shape-the-future-banner.webp);
    background-repeat: no-repeat;
    background-size: cover;
}


.hero-slider .slide-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
}

.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
    background: transparent;
    width: 55px;
    height: 55px;
    line-height: 53px;
    margin-top: -30px;
    text-align: center;
    border: 2px solid var(--primary-color);
    border-radius: 55px;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
}

.hero-slider:hover .swiper-button-prev,
.hero-slider:hover .swiper-button-next {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}


.hero-slider .swiper-button-prev {
    left: 25px;
    transform: translateX(50px);
}

.hero-slider .swiper-button-prev:before {
    font-family: "Font Awesome 5 Free";
    content: "\f060";
    font-size: 15px;
    color: var(--primary-color);
    font-style: normal;
    display: inline-block;
    vertical-align: middle;
    font-weight: 900;
}

.hero-slider .swiper-button-next {
    right: 25px;
    transform: translateX(-50px);
}

.hero-slider .swiper-button-next:before {
    font-family: "Font Awesome 5 Free";
    content: "\f061";
    font-size: 15px;
    color: var(--primary-color);
    font-style: normal;
    display: inline-block;
    vertical-align: middle;
    font-weight: 900;
}

.hero-content h1 span {
    display: block;
    margin-top: 10px;
}

.hero-content h2 span {
    display: block;
    margin-top: 10px;
}

.hero-content {
    position: relative;
    text-align: center;
}

p.details-des {
    background: var(--white);
    position: absolute;
    bottom: -16px;
    right: 0;
    padding: 50px 56px;
    font-size: 16px;
    color: #565969;
    font-weight: 400;
}

a.tetails-btn {
    position: relative;
    margin-left: 70px;
    margin-right: 48px;
    font-size: 18px;
    color: #0a1027;
    font-weight: 500;
    display: inline-block;
}

a.tetails-btn:hover {
    color: #ff5e14;
}

a.tetails-btn:after {
    position: absolute;
    left: -37px;
    top: -26px;
    width: 1px;
    height: 73px;
    background-color: #ff5e14;
    content: "";
}



.hero-content h4 {
    margin-left: 52px;
    font-size: 18px;
    line-height: 40px;
    color: #ff5e14;
    font-weight: 700;

    position: relative;
    z-index: 1;
    display: inline-block;
}


.hero-content h4:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    right: -296px;
    top: 14px;
    background: url(../images/slider/shape2.png);
    z-index: -1;
    background-repeat: no-repeat;
}

.hero-content h4:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: -50px;
    top: 14px;
    background: url(../images/slider/shape1.png);
    z-index: -1;
    background-repeat: no-repeat;
}

.hero-content.style-two h4:before {
    display: none;
}

.hero-content h1 {
    font-size: 60px;
    line-height: 50px;
    text-transform: uppercase;
    color: var(--white);
    font-weight: 700;

    padding-bottom: 10px;
}

.hero-content h2 {
    font-size: 60px;
    line-height: 50px;
    text-transform: uppercase;
    color: var(--white);
    font-weight: 700;

    padding-bottom: 10px;
}

p.hero-desc {
    width: 45%;
    margin: 12px 0 16px;
    font-size: 16px;
    line-height: 24px;
    color: #eeeeef;
    font-weight: 400;
}

a.hero-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 16px 42px;
    font-weight: 500;
    margin-top: 25px;
    position: relative;
    z-index: 1;
    border-radius: 5px;

    font-size: 19px;
}

.hero-content.styel-one a.hero-button {
    margin-top: 28px;
}

a.hero-button:hover {
    color: var(--primary-color);
}

.hero-sub-title {
    color: var(--white);
}

a.hero-button:before {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    left: 50%;
    top: 0;
    border-radius: 5px;
    background: var(--white);
    z-index: -1;
    transition: 0.5s;
}

a.hero-button:hover:before {
    width: 100%;
    left: 0;
}

a.hero-button i {
    display: inline-block;
    position: relative;
    color: var(--white);
    left: 9px;
    top: 3px;
    transition: 0.5s;
}

a.hero-button:hover i {
    color: #ff5e14;
}

.hero-shape {
    position: absolute;
    left: -78px;
    top: -73px;
}


.hero-thumb {
    position: absolute;
    bottom: -20px;
    right: 24%;
}

/* =========================
   HERO SLIDER – MOBILE FIX
========================= */
@media (max-width: 992px) {

    .hero-slider {
        height: 100vh;
    }

    .hero-slider .slide-inner {
        padding: 0 15px;
        text-align: center;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content h1,
    .hero-content h2 {
        font-size: 30px;
        line-height: 36px;
    }

    .hero-content h1 span,
    .hero-content h2 span {
        margin-top: 5px;
    }

    .hero-sub-title {
        font-size: 15px;
        line-height: 22px;
        width: 100%;
        margin: 12px auto;
    }

    p.hero-desc {
        width: 100%;
    }

    a.hero-button {
        padding: 12px 28px;
        font-size: 16px;
        margin-top: 0px;
        margin-bottom: 40px;
    }

    a.hero-button i {
        top: 2px;
    }

    /* hide arrows on mobile */
    .hero-slider .swiper-button-prev,
    .hero-slider .swiper-button-next {
        display: none;
    }

    /* disable decorative shapes */
    .hero-content h4:before,
    .hero-content h4:after {
        display: none;
    }
}

/* =========================
   HERO SLIDER – MOBILE CONTROLS
========================= */
@media (max-width: 768px) {

    .hero-slider .swiper-button-prev,
    .hero-slider .swiper-button-next {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border: 2px solid var(--primary-color);
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.4);
        opacity: 1;
        visibility: visible;
        top: auto;
        bottom: 20px;
        transform: none;
        z-index: 10;
    }

    .hero-slider .swiper-button-prev {
        left: 30%;
    }

    .hero-slider .swiper-button-next {
        right: 30%;
    }

    .hero-slider .swiper-button-prev::before,
    .hero-slider .swiper-button-next::before {
        font-size: 14px;
        color: var(--primary-color);
    }
}

/*---=================================
   <!--About Area Css-->
==================================---*/
.about_area {
    background: url(../images/about/about-background.webp);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 0px;
    position: relative;
}

.about_left {
    position: relative;

}

.about-content-title {
    font-size: 35px;
    padding-bottom: 10px;
}

.about_thumb1 {
    position: relative;
    z-index: 2;
}

.about_thumb1 img {
    width: 100%;
    height: auto;
    max-width: 520px;
    border-radius: 6px;
    display: block;
}


.about-btn a {
    display: inline-block;
    font-size: 17px;
    color: var(--white);
    font-weight: 500;
    background: var(--primary-color);
    padding: 15px 33px;
    position: relative;
    z-index: 1;
}

.cta-right-btn a {
    display: inline-block;
    font-size: 17px;
    color: var(--white);
    font-weight: 500;
    background: var(--primary-color);
    padding: 15px;
    position: relative;
    z-index: 1;
}

.cta-right-btn:hover a {
    color: var(--primary-color);
}

.about-btn a:after {
    position: absolute;
    content: "";
    height: 100%;
    width: 0%;
    background: var(--secondary-color);
    left: 0;
    top: 0;
    z-index: -1;
    transition: 0.5s;
    transform: scale(0);
    opacity: 0;
}

.cta-right-btn a:after {
    position: absolute;
    content: "";
    height: 100%;
    width: 0%;
    background: var(--white);
    left: 0;
    top: 0;
    z-index: -1;
    transition: 0.5s;
    transform: scale(0);
    opacity: 0;
}

.about-btn a:hover:after,
.cta-right-btn a:hover:after {
    transform: scale(1);
    opacity: 1;
    height: 100%;
    width: 100%;
}

.about-btn a i,
.cta-right-btn a i {
    font-size: 13px;
    font-weight: 600;
    margin-left: 12px;
    display: inline-block;
    transform: rotate(-45deg);
}

.about-shape {
    position: absolute;
    bottom: 20%;
    right: 5%;
}

.section-title h1 {
    padding-bottom: 10px;
    padding-top: 10px;
}

.section-title h2 {
    padding-bottom: 10px;
    padding-top: 10px;
}

@media (max-width: 768px) {
    .about_area {
        padding: 30px 0;
    }

    .about-content-title {
        font-size: 32px;
    }

    .cta-right-btn a {
        padding: 10px 5px;
    }
}

/*---=================================
   <!--Service Area Css-->
==================================---*/
.view-more-btn {
    margin: 30px auto 0;
    display: block;
    padding: 14px 40px;
    background-color: #ea1d25;
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 16px rgba(230, 58, 39, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.view-more-btn:hover {
    background-color: #be0101;
    transform: translateY(-3px);
}

.view-more-btn:active {
    transform: translateY(0);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.single-service-box {
    height: 90%;
    width: 100%;
}

.service-area {
    padding: 30px 0px;
    margin-bottom: 20px;
    margin: 10px 0px;
}

.service-area .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.service-area .single-service-box {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding-right: 5px;
    margin-bottom: 0px;
}


.service-area .single_service_box::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 0%;
    width: 100%;
    transition: .5s;
    background: #E01142;
    z-index: -1;
    border-radius: 5px;
}

.service-area .service-thumb {
    position: relative;
    z-index: 1;
}

.service-thumb img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.service-area .service-thumb::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 0%;
    width: 100%;
    background: #0A1028;
    opacity: 0.4;
    transition: .5s;
}

.service-area .service-content {
    position: relative;
    z-index: 1;
    top: -30px;
    box-shadow: 0 0 16px rgb(0 0 0 / 10%);
    padding: 25px 25px 30px;
    background: var(--secondary-color);
    color: var(--white);
    max-width: 92%;
    left: 32px;
    height: 330px;

}

@media (max-width: 992px) {
    .service-area .service-content {
        position: relative;
        z-index: 1;
        top: -30px;
        box-shadow: 0 0 16px rgb(0 0 0 / 10%);
        padding: 10px 10px;
        background: var(--secondary-color);
        color: var(--white);
        max-width: 92%;
        left: 27px;
        height: auto;
    }

    .single-service-box {
        height: 100%;
        width: 100%;
        margin: 0px;
    }

}

@media (max-width: 768px) {
    .service-area .service-content {
        position: relative;
        z-index: 1;
        top: -30px;
        box-shadow: 0 0 16px rgb(0 0 0 / 10%);
        padding: 10px 15px 20px;
        background: var(--secondary-color);
        color: var(--white);
        max-width: 92%;
        left: 27px;
        height: auto;
    }

    .single-service-box {
        height: 95%;
        width: 100%;
        margin: 0px;
    }

    .service-area {
        padding: 30px 0px;
        margin-bottom: 20px;
        margin: 10px 0px;
    }

    .service-area .section-title {
        text-align: center;
        margin-bottom: 50px;
    }

    .service-area .single-service-box {
        position: relative;
        z-index: 1;
        overflow: hidden;
        padding-right: 5px;
        margin-bottom: 0px;
    }

}

.service-area .service-content h3 {
    font-size: 27px;
    line-height: 28px;
    height: 55px;
    color: #FFFFFF;
    font-weight: 700;
    margin: 15px 0 12px;
}

.service-area .service-content p {
    font-size: 16px;
    line-height: 28px;
    color: #ababad;
    font-weight: 400;
    margin: 0 0 0;
}

.service-area .service-content.two {
    position: relative;
    z-index: 1;
    top: -30px;
    box-shadow: 0 0 16px rgb(0 0 0 / 10%);
    padding: 25px 25px;
    background: var(--secondary-color);
    max-width: 92%;
    min-height: 390px;
    left: 32px;
}

.service-area .service-content.two h3 {
    font-size: 27px;
    line-height: 28px;
    color: var(--white);
    font-weight: 700;
    margin: 15px 0 12px;
}

.service-area .service-content.two p {
    font-size: 16px;
    line-height: 28px;
    color: #ababad;
    font-weight: 400;
    margin: 0 0 0;
}

.service-area .service-button {
    margin-top: 30px;
}

.service-area .service-button a {
    display: inline-block;
    font-size: 15px;
    line-height: 28px;
    color: var(--primary-color);
    font-weight: 500;
    background: #F2F3F5;
    text-transform: uppercase;
    padding: 6px 22px;
    transition: .5s;
    position: relative;
    z-index: 1;
}

.service-area .service-button a::before {
    position: absolute;
    z-index: -1;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0%;
    transition: .5s;
    background: var(--primary-color);
}

.service-area .service-icon {
    position: absolute;
    top: -40px;
    right: 30px;
    background: var(--white);
    padding: 25px 24px;
    border-radius: 50%;
    transition: .5s;
    box-shadow: 0 0 60px rgb(0 0 0 / 10%);
    transition: .5s;
    border-top: 3px solid #e82421;
}

.service-area .single-service-box .service-icon img {
    transition: .5s;
    position: relative;
    z-index: 1;
}

.service-area .single-service-box .service-icon img::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #FF5D13;
    z-index: -1;
}

.service-area .single-service-box:hover .service-icon {
    background: #FF5D13;
    padding: 24px 24px;
}

.service-area .single-service-box:hover .service-button a {
    color: var(--white);
}

.service-area .single-service-box:hover .service-button a::before {
    width: 100%;
    left: 0;
}

.service-area .single-service-box:hover .service-thumb::before {
    height: 100%;
}

.service-area .single-service-box:hover .service-icon img {
    filter: brightness(0)invert(1);
}


.service_list2 .owl-dots {
    position: relative;
    text-align: center;
    margin-top: 10px;
}

.service_list2 .owl-dot {
    display: inline-block;
    height: 10px;
    width: 10px;
    border: 2px solid #e5150b !important;
    margin: 0 8px 0;
    border-radius: 50%;
    background: var(--white);
    position: relative;
    text-align: center;
}

.service_list2 .owl-dot.active {
    background: #eb0707;
}

.service_list2 .owl-dot.active::before {
    content: '';
    position: absolute;
    left: -7px;
    top: -7px;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    border: 2px solid #FF5E15;
}



/* sugar industry section style - index page */
.epc-highlight {
    background: var(--white);
    color: var(--black);
    padding: 60px 40px 30px;
    position: relative;
    overflow: hidden;
    margin: 20px 0 0;
}

.epc-content {
    background: var(--secondary-color);
    padding: 60px 30px;
}

.featured-badge {
    display: inline-block;
    background-color: var(--primary-color);
    padding: 6px 15px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 15px;
}

.sugar-industry-title {
    color: var(--white);
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.epc-highlight p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: rgb(163, 163, 163);
}

.epc-btn {
    display: inline-block;
    background-color: #ea1d25;
    color: var(--white);
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.epc-btn:hover {
    background-color: var(--white);
    color: #ea1d25;
}

.epc-highlight-img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.4);
}



/*---=================================
   <!--Project Area Css-->
==================================---*/

.projects-area {
    padding-top: 50px;
    padding-bottom: 110px;
    background: url(../images/project/project-bg.webp);
}

.projects-single-box {
    position: relative;
    width: 350px;
    height: 400px;
    z-index: 1;
    overflow: hidden;
    margin: auto;
}

.projects-single-box::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background-image: linear-gradient(0deg, rgb(223, 30, 30) 0%, rgba(21, 24, 72, 0) 100%);
    border-radius: 5px;
    opacity: 0;
    transition: .5s;
}

.projects-thumb {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.projects-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.projects-content {
    position: absolute;
    bottom: -67px;
    left: 0;
    right: 0;
    text-align: center;
    opacity: 0;
    transition: .5s;
    padding: 2px 8px;
}

.projects-title {
    display: inline-block;
    font-size: 26px;
    line-height: 28px;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 7px;
}

.projects-text {
    font-size: 18px;
    line-height: 28px;
    color: var(--white);
    font-weight: 500;
    margin: 0;
}

.projects-socail-icon {
    position: absolute;
    top: -165px;
    right: 0;
    background: #FF5E15;
    padding: 43px 7px 11px;
    border-radius: 0 5px 30px 30px;
    transition: .5s;
}

.projects-socail-icon ul li a i {
    display: inline-block;
    font-size: 24px;
    color: #FF5E15;
    background: var(--white);
    height: 40px;
    width: 40px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    margin-top: 15px;
    position: relative;
    z-index: 1;
    transition: .5s;
}

.projects-socail-icon ul li a i:after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background: #0A1028;
    left: 0;
    top: 0;
    border-radius: 50%;
    z-index: -1;
    transition: .5s;
    transform: scale(0);
}

.projects-single-box:hover::before {
    opacity: 1;
}

.projects-single-box:hover .projects-content {
    opacity: 1;
    bottom: 29px;
}

.projects-socail-icon ul li a i:hover:after {
    transform: scale(1);
}

.projects-socail-icon ul li a i:hover {
    color: var(--white);
}

.projects-single-box:hover .projects-socail-icon {
    top: 0;
}

.projects-list .owl-dots {
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    background: #F1F3F5;
    width: 200px;
    margin: 40px auto 0;
    border-radius: 30px;
    padding: 3px 0 0;
}

.projects-list .owl-dot {
    display: inline-block;
    height: 13px;
    width: 13px;
    background: var(--white);
    border-radius: 50%;
    margin: 0 8px 0;
}

.projects-list .owl-dot.active {
    background: #e60404;
}

.projects-area .Indastres-btn {
    margin-bottom: 41px;
    display: block;
    text-align: right;
}

/*---=================================
   <!--inner project  Area Css-->
==================================---*/

.inner-project-area {
    padding: 50px 0 110px;
    background: url(../images/project/project-bg.webp);
}

.inner-project-box {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 6px;
}

.inner-project-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(0deg,
            rgb(223, 30, 30) 0%,
            rgba(21, 24, 72, 0) 100%);
    opacity: 0;
    transition: 0.5s;
    z-index: 1;
}

.inner-project-thumb {
    width: 100%;
    height: 100%;
}

.inner-project-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.inner-project-box:hover::before {
    opacity: 1;
}

.inner-project-box:hover .inner-project-content {
    opacity: 1;
    bottom: 30px;
}

@media (max-width: 991px) {
    .inner-project-box {
        height: 360px;
    }
}

@media (max-width: 575px) {
    .inner-project-box {
        height: 320px;
    }
}

.inner-project-content {
    position: absolute;
    bottom: -80px;
    left: 0;
    right: 0;
    text-align: center;
    opacity: 0;
    transition: 0.5s ease;
    z-index: 2;
    padding: 0 20px;
}

/*---=================================
   <!--Working Area Css-->
==================================---*/
.working-process-area {
    background: url(../images/resource/process-bg.jpg);
    background-repeat: no-repeat;
    padding: 118px 0 100px;
    background-size: cover;
}

.single-process-box {
    text-align: center;
    padding: 0 29px 0;
}

.process-content h4 {
    font-size: 24px;
    color: #0a1027;
    font-weight: 500;

    margin: 25px 0 14px;
}



/*---=================================
   <!--Team Area Css-->
==================================---*/
.team-section {
    padding: 40px 0px 90px;
    background: var(--white);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.team-single-box {
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 5px;
    margin-top: 45px;
    box-shadow: rgba(35, 35, 35, 0.183) 0px 3px 8px;
}

.team-single-box:hover {
    box-shadow: rgba(201, 0, 0, 0.237) 0px 2px 8px 0px;
}

.team-thumb {
    position: relative;
    z-index: 1;
}

.team-thumb:before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    background: #333939;
    width: 100%;
    height: 0%;
    opacity: 0.352;
    transition: .5s;
}

.team-single-box:hover .team-thumb:before {
    height: 100%;
    top: 0;
}

.team-thumb {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.team-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: scale(1);
    transform-origin: center;
    will-change: transform;
}

.team-single-box:hover .team-thumb img {
    transform: scale(1.1);
}

.team-content {
    background: var(--white);
    text-align: center;
    padding: 15px 0 30px;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.team-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
}

.team-content h4 {
    font-size: 17px;
    color: var(--primary-color);
    font-weight: 400;
}

.row.teams {
    justify-content: center;
}

.team-position-name {
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: column;
}

.team-popup-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.team-arrow-btn {
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 50%;
    border: none;
    background: var(--primary-color);
    color: var(--white);
    font-size: 12px;
    cursor: pointer;
    transition: 0.4s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.team-arrow-btn:hover {
    transform: translateX(5px);
    box-shadow: rgba(207, 0, 0, 0.509) 0px 2px 8px 0px;
}

/* management popup */
.team-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 99999;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 25px;
}

.popup-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    overflow-y: auto;
    background: #fff;
    border-radius: 20px;
    padding: 45px;
    animation: popupFade .4s ease;
}

.popup-content::-webkit-scrollbar {
    width: 8px;
}

.popup-content::-webkit-scrollbar-thumb {
    background: #c7c7c7;
    border-radius: 20px;
}

@keyframes popupFade {

    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-btn {
    position: sticky;
    top: 0;
    float: right;
    width: 45px;
    height: 45px;
    background: #f3f3f3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    cursor: pointer;
    z-index: 10;
    line-height: 1;
}

.close-btn:hover {
    background: var(--primary-color);
    color: white;
}

.management-profile-name {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.popup-role {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 30px;
}

.popup-section-title {
    font-size: 24px;
    margin-bottom: 18px;
    margin-top: 35px;
    color: var(--secondary-color);
    font-weight: 700;
    position: relative;
    padding-left: 18px;
}

.popup-section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0px;
    width: 5px;
    height: 26px;
    background: var(--primary-color);
    border-radius: 20px;
}

.popup-desc {
    line-height: 1.9;
    color: #555;
    margin-bottom: 18px;
    font-size: 16px;
}

.popup-list {
    padding-left: 20px;
    margin-bottom: 25px;
}

.popup-list li {
    margin-bottom: 14px;
    line-height: 1.8;
    color: #555;
}


.popup-list-responisbility {
    list-style: none;
    padding-left: 10px;
    margin: 0;
}

.popup-list-responisbility li {
    position: relative;
    padding-left: 38px;
    font-size: 18px;
    color: #444;
    margin-bottom: 15px;
}

.popup-list-responisbility li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0px;
    color: var(--secondary-color);
    font-size: 30px;
}

/* PROJECT BOX */
.popup-projects {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 20px;
}

.project-item {
    background: #fff7f7;
    padding: 16px 18px;
    border-radius: 10px;
    line-height: 1.7;
    color: #444;
    width: 80%;
}

@media(max-width: 768px) {
    .popup-list-responisbility {
        padding-left: 0px;
    }

    .popup-list-responisbility li {
        padding-left: 18px;
    }

    .popup-list-responisbility li::before {
        left: 0;
        top: 1px;
    }
}

@media(max-width:991px) {

    .popup-content {
        width: 96%;
        padding: 25px;
        max-height: 92vh;
    }


    .management-profile-name {
        font-size: 30px;
    }

    .popup-role {
        font-size: 18px;
    }

    .popup-section-title {
        font-size: 22px;
    }

    .popup-desc,
    .popup-list li,
    .project-item {
        font-size: 15px;
    }
}


@media(max-width:768px) {
    .project-item {
        width: 100%;
    }
}

@media(max-width:576px) {

    .team-popup {
        padding: 10px;
    }

    .popup-content {
        padding: 20px;
        border-radius: 15px;
    }

    .management-profile-name {
        font-size: 26px;
    }

    .popup-role {
        margin-bottom: 25px;
    }

    .popup-section-title {
        font-size: 20px;
        margin-top: 28px;
    }
}

/*---=================================
   <!--Counter Area Css-->
==================================---*/
.counter-area {
    padding: 54px 0 63px;
}

.counter-area .row.upper {
    padding: 0 13px 0 166px;
}

.counter-content h4 {
    font-size: 100px;
    color: #0a1027;
    font-weight: 500;

    margin: 0 0 1px;
    display: inline-block;
}

.counter-content span {
    font-size: 100px;
    color: #0a1027;
    font-weight: 500;

    margin: 0 0 1px;
    display: inline-block;
}

.counter-content p {
    font-size: 18px;
    color: #0a1027;
    font-weight: 500;
    border-top: 1px solid #0a10275c;
    padding-top: 25px;
}


/*---=================================
   <!--Testi Area Css-->
==================================---*/
.testi-area {
    background: url(../images/resource/testi-bg.jpg);
    background-repeat: no-repeat;
    padding: 100px 0 0px;
    background-size: cover;
    background-position: center center;
    position: relative;
}

.single-testi-box {
    background: url(../images/resource/testi-box-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 4px 58px 110px;
    position: relative;
    margin-top: 63px;
    margin-right: 24px;
}

.testi-thumb {
    margin-top: -51px;
    margin-bottom: 31px;
}

.testi-content h4 {
    font-size: 22px;
    line-height: 24px;
    color: #0a1027;
    font-weight: 500;
}

.testi-content p {
    margin: 23px 0 23px;
}

.testi-author h4 {
    font-size: 22px;
    color: #0a1027;
    font-weight: 500;
}

.testi-quote-icon {
    position: absolute;
    right: 11%;
    bottom: 27%;
}

.testi-area .owl-dots {
    position: relative;
    text-align: center;
    left: -2%;
    bottom: 111px;
}

.testi-area .owl-dot {
    display: inline-block;
    background: #ff5e1454;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    margin-top: 48px;
    margin-right: 6px;
}

.testi-area .owl-dot.active {
    display: inline-block;
    background: #FF5E15;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    margin-top: 11px;
    margin-right: 6px;
    border: transparent;
}

.testi-video {
    text-align: center;
    position: relative;
    left: 76px;
}

.testi-video-icon i {
    display: inline-block;
    background: var(--white);
    color: #ff5e14;
    font-size: 30px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    text-align: center;
    line-height: 84px;
    position: relative;
    z-index: 1;
}

.testi-video-icon i:after {
    position: absolute;
    content: "";
    width: 105px;
    height: 105px;
    left: -13px;
    top: -13px;
    background: #ff5e14;
    opacity: 0.6;
    z-index: -1;
    border-radius: 50%;
    -webkit-animation: ripple 1.6s ease-out infinite;
    -moz-animation: ripple 1.6s ease-out infinite;
}


@keyframes ripple {

    0%,
    35% {
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0);
        opacity: 1;
    }

    50% {
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
        transform: scale(1.1);
        opacity: 0.8;
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
}

.testi-video p {
    font-size: 18px;
    line-height: 38px;
    color: var(--white);
    font-weight: 500;
    margin-top: 21px;
}






/*---=================================
   <!--Footer Area Css-->
==================================---*/
.footer-area {
    padding-bottom: 30px;
    background-color: var(--secondary-color);
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    overflow: hidden;

}

.footer-info div {
    color: #c4c4c5;
}

.footer-logo img {
    width: 240px;
    height: auto;
}

.row.address {
    background: #FF5E15;
    padding: 46px 0 13px;
    border-radius: 0 0 10px 10px;
    margin-bottom: 104px;
}

.footer-address-icon {
    text-align: center;
    margin-bottom: 30px;
}

p.footer-desc {
    font-size: 17px;
    line-height: 30px;
    color: #c4c4c5;
    font-weight: 300;
    width: 96%;
    margin: 0;
    padding: 34px 0 11px;
}

p.footer-text {
    font-size: 16px;
    line-height: 30px;
    color: #c4c4c5;
    font-weight: 500;
    margin: 0;
    padding: 0 0 17px;
}

spna.footer-date {
    color: #c4c4c5;
}

.footer-widget-social-icon ul li {
    display: inline-block;
    padding-right: 5px;
}

.footer-widget-social-icon ul li a i,
.footer-widget-social-icon ul li a svg {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    color: var(--white);
    background-color: var(--primary-color);
    transition: .5s;
    border-radius: 50%;
    padding: 10px;
    width: 40px;
    height: 40px;
}

.footer-widget-social-icon ul li a svg {
    vertical-align: middle;
    display: inline-block;
    margin-top: -3px;
}

.footer-widget-social-icon ul li a i:hover,
.footer-widget-social-icon ul li a svg:hover {
    color: var(--primary-color);
    background-color: var(--white);
}

.footer-widget-titel h4 {
    font-size: 26px;
    line-height: 30px;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 36px;
}

.footer-widget-menu ul li a {
    display: inline-block;
    font-size: 17px;
    line-height: 30px;
    color: #c4c4c5;
    font-weight: 400;
    margin-bottom: 10px;
    transition: .5s;
    text-transform: capitalize;
}

ul.footer-info li span i {
    display: inline-block;
    color: var(--white);
    font-size: 18px;
    margin-right: 21px;
}

ul.footer-info li a {
    font-size: 17px;
    line-height: 30px;
    color: #c4c4c5;
    font-weight: 400;
}

ul.footer-info p {
    margin-left: 40px;
}

.footer-widget-content p {
    font-size: 17px;
    line-height: 30px;
    color: #8f9199;
    font-weight: 400;
    margin-bottom: 20px;
}

.form-field input {
    width: 100%;
    border: none;
    background: #0B1537;
    outline: 0;
    padding: 14px 0 14px 19px;
    border-radius: 5px;
    font-size: 16px;
    color: #8f9199;
    font-weight: 400;
}

.form-field button {
    width: 100%;
    outline: 0;
    border: none;
    border-radius: 5px;
    background: #FF5E15;
    font-size: 18px;
    color: var(--white);
    font-weight: 500;
    text-transform: uppercase;
    padding: 14px 0;
    margin-top: 20px;
}

@media (max-width: 1024px) {
    .footer-widget-social-icon ul li a i {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 768px) {
    .footer-widget-social-icon ul li a i {
        width: 40px;
        height: 40px;
    }
}

/* footer bottom section - copyrights and terms and condition */
.footer-bottom-area {
    background: var(--secondary-color);
    padding: 20px 0;
    border-top: 1px solid var(--white);
}

.footer-bottom-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.footer-copy p {
    margin: 0;
    font-size: 15px;
    color: #8f9199;
}

.footer-copy a {
    color: #8f9199;
    text-decoration: none;
}

.footer-copy a:hover {
    color: var(--primary-color);
}

.footer-terms ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 15px;
    white-space: nowrap;
}

.footer-terms ul li:not(:last-child)::after {
    content: "|";
    margin-left: 15px;
    color: #8f9199;
}

.footer-terms ul li a {
    font-size: 15px;
    color: #8f9199;
    text-decoration: none;
    transition: 0.3s;
}

.footer-terms ul li a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {

    .footer-bottom-wrapper {
        flex-direction: column-reverse;
        text-align: center;
        gap: 10px;
    }

    .footer-terms ul {
        justify-content: center;
        gap: 4px;
    }

    .footer-terms ul li:not(:last-child)::after {
        margin-left: 6px;
    }
}




.footer-widget-social-icon ul li a i:hover {
    color: var(--primary-color);
}

.footer-widget-menu ul li a:hover {
    color: var(--primary-color);
}

.footer-shape {
    position: absolute;
    bottom: -68px;
    left: -18px;
}

.footer-shape2 {
    position: absolute;
    bottom: -88px;
    left: -11px;
}

.footer-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}


.footer-info li i {
    font-size: 18px;
    color: var(--white);
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-info li span,
.footer-info li a {
    display: inline;
    line-height: 1.6;
}

.footer-widget-content.tow {
    max-width: 100%;
}

.footer-subtitle {
    font-size: 18px;
    color: var(--white);
    font-weight: 600;
    margin: 20px 0 10px;
}

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

.footer-info li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-info li i {
    font-size: 18px;
    color: var(--white);
    margin-top: 4px;
    flex-shrink: 0;
    background-color: var(--primary-color);
    border-radius: 100%;
    padding: 10px;
    width: 40px;
    height: 40px;
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-info li a {
    color: #8f9199;
    font-size: 16px;
    line-height: 1.6;
    transition: 0.3s;
}


.footer-info li:hover i {
    color: var(--primary-color);
    background-color: var(--white);
}

.footer-info li a:hover {
    color: var(--primary-color);
}

@media (max-width: 1024px) {
    .footer-info li i {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 991px) {
    .footer-subtitle {
        margin-top: 15px;
    }
}

@media (max-width: 1024px) {
    .footer-info li i {
        width: 40px;
        height: 40px;
    }
}

/*---=================================
   <!--Breadcamb Area Css-->
==================================---*/
.breadcumb-area {
    margin-top: 0 !important;
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    overflow: hidden;
}


.breadcumb-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.breadcumb-area::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(12, 20, 56, 0.65);
    z-index: 2;
}

.breadcumb-content {
    position: relative;
    z-index: 3;
    text-align: center;
    width: 100%;
}

.breadcumb-content h1 {
    font-size: 56px;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.breadcumb-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcumb-content ul li {
    display: inline-block;
    font-size: 16px;
    color: var(--white);
    text-transform: uppercase;
}

.breadcumb-content ul li i {
    margin-right: 8px;
}

.breadcumb-content ul li a {
    color: var(--white);
    font-weight: 500;
    position: relative;
    padding-right: 24px;
    margin-right: 8px;
}

.breadcumb-content ul li a:hover {
    text-shadow: 1px 1px 2px rgb(250, 0, 0);
}

.breadcumb-content ul li a::after {
    content: "";
    position: absolute;
    right: 6px;
    top: 50%;
    width: 2px;
    height: 14px;
    background: var(--white);
    transform: translateY(-50%) rotate(15deg);
}

.breadcumb-content ul li:last-child a::after {
    display: none;
}

@media (max-width: 991px) {
    .breadcumb-area {
        height: 320px;
    }

    .breadcumb-content h1 {
        font-size: 40px;
    }
}

@media (max-width: 575px) {
    .breadcumb-area {
        height: 260px;
    }

    .breadcumb-content h1 {
        padding-top: 70px;
        font-size: 30px;
    }

    .breadcumb-content ul li {
        font-size: 14px;
    }
}

/* Ensure the area is a relative container */

.breadcumb-content-center {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.breadcumb-content-center h1 {
    font-size: 56px;
    color: var(--white);
    font-weight: 700;
    margin: 0;
    z-index: 3;
}

.service-breadcum-glass {
    position: absolute;
    bottom: 0px;
    right: 0px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 8px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 4;
}

.service-breadcum-glass ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.service-breadcum-glass ul li {
    font-size: 13px;
    color: var(--white);
    font-weight: 500;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: .2px;
}

.service-breadcum-glass ul li a {
    color: var(--white);
    text-decoration: none;
}

.service-breadcum-glass ul li a:hover {
    color: rgba(224, 224, 224, 0.856);
}

.service-breadcum-glass ul li i {
    margin-right: 8px;
    font-size: 14px;
}

.service-breadcum-glass ul li:not(:last-child)::after {
    content: "/";
    margin: 0 5px;
    font-weight: 300;
}

@media (max-width: 1000px) {
    .service-breadcum-glass {
        display: none;
    }
}

/***
======================================================
<-- Indastre Feature Area Css -->
======================================================***/
.feature-area {
    padding: 101px 0 91px;
    background: #171717;
}

.feature-area .section-title.two {
    margin-bottom: 58px;
}

.feature-area .section-title h1 {
    color: var(--white);
}

.fature-signe-iiner {
    padding: 26px 40px 30px;
    border-bottom: 4px solid #ff5e14;
    transition: .5s;
    background: var(--white);
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}

.fature-signe-iiner:hover {
    background: #171717;
    border-bottom: 4px solid transparent;
}

.fature-signe-iiner:before {
    position: absolute;
    content: "";
    left: -3px;
    top: -3px;
    border-top: 3px solid #ff5e14;
    border-bottom: 10px solid #ff5e14;
    border-left: 3px solid #ff5e14;
    border-right: 10px solid #ff5e14;
    height: 106%;
    width: 103%;
    z-index: -1;
    opacity: 0;
    transition: .5s;
}

.fature-signe-iiner:after {
    position: absolute;
    content: "'";
    width: 34px;
    height: 34px;
    background: url(../images/resource/download.png);
    right: 1px;
    bottom: -3px;
    opacity: 0;
    transition: .5s;
    z-index: -1;
}

.fature-signe-iiner:hover:after {
    opacity: 1;
}

.fature-signe-iiner:hover:before {
    opacity: 1;
}


.feature-text {
    display: flex;
    align-items: center;
}

h3.feature-namber {
    width: 50px;
    height: 50px;
    background-color: #ff5e14;
    line-height: 50px;
    font-size: 20px;
    color: var(--white);
    font-weight: 700;
    text-align: center;
    margin-right: 19px;
}

.feature-title {
    position: relative;
    top: 3px;
}

.feature-title span {
    font-size: 15px;
    color: #575f66;
    font-weight: 300;
    margin-bottom: 5px;
    display: inline-block;
    transition: .5s;
}

.feature-title h3 {
    font-size: 22px;
    color: #171717;
    font-weight: 700;
    margin: 0;
    transition: .5s;
}

.feature-desc p {
    margin-top: 22px;
    margin-bottom: 22px;
    transition: .5s;
}

.feature-btn a {
    display: inline-block;
    font-size: 16px;
    color: #171717;
    font-weight: 500;

    border-bottom: 1px solid rgba(23, 23, 23, 0.14901960784313725);
}

.feature-btn a i {
    font-size: 13px;
    font-weight: 600;
    margin-left: 12px;
    display: inline-block;
    transform: rotate(-45deg);
}

/* all hover */

.fature-signe-iiner:hover .feature-desc p {
    color: #8e939f;
}

.fature-signe-iiner:hover .feature-title h3 {
    color: var(--white);
}

.fature-signe-iiner:hover .feature-title span {
    color: #8e939f;
}

.fature-signe-iiner:hover .feature-btn a {
    color: #FF5F15;
    border-bottom: 1px solid #FF5F15;
}




/*========================================
<-- Indastre Pricing Section Css -->
==========================================*/

.pricing-area {
    padding: 103px 0 89px;
    background: #F5F6F8;
}

.pricing-area .section-title.inner {
    margin-bottom: 48px;
}

.pricing-single-items {
    background: url(../images/resource/pricing_shape.png);
    margin-bottom: 30px;
    padding: 20px 20px 20px;
    position: relative;
    z-index: 1;
}

.pricing-single-items:before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background: rgba(23, 23, 23, 0.8);
    top: 0;
    left: 0;
    z-index: -1;
    transform: scale(0);
    transition: .6s;
}

.pricing-single-items:hover:before {
    transform: scale(1);
}

.pricing-single-items:before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background: rgba(23, 23, 23);
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.6;
}

.pricing-single-inner {
    background: var(--white);
    border: 1px solid rgba(23, 23, 23, 0.07);
    padding: 35px 40px 49px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: .6s;
}

.pricing-single-inner:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    transform: scale(0);
    height: 100%;
    width: 100%;
    background: #171717;
    z-index: -1;
    transition: .5s;
}

.pricing-item-text {
    margin-bottom: 10px;
}

.pricing-title h3 {
    font-size: 22px;
    color: #171717;
    font-weight: 500;
    margin-bottom: 30px;
    transition: .5s;
}

.currency {
    font-size: 28px !important;
    font-weight: 700 !important;
    position: relative;
    top: -24px;
    line-height: 68px;
    color: #ff5e14;
}

.pricing-item-text span {
    display: inline-block;
    font-size: 70px;
    color: #ff5e14;
    font-weight: 700;
}

.month {
    font-size: 16px !important;
    font-weight: 400 !important;
    color: #575f66 !important;
    font-style: italic;
    margin-left: -17px;
}

.pricing-feature {
    margin-bottom: 27px;
}

.pricing-feature ul li {
    display: block;
    padding: 4px 0;
    font-size: 16px;
    color: #575f66;
    font-weight: 300;
}

.pricing-feature ul li i {
    margin-right: 5px;
    font-size: 20px;
    position: relative;
    top: 2px;
}


.pricing-btn a {
    display: inline-block;
    background: #ff5e14;
    color: var(--white);
    padding: 12px 31px;
    font-size: 16px;
    font-weight: 500;
}

.pricing-btn i {
    font-size: 16px;
    display: inline-block;
    position: relative;
    left: 8px;
    top: 0px;
    transform: rotate(317deg);
    transition: 0.5s;
}

.pricing-btn a:hover i {
    transform: rotate(0);
}

.pricing-rcomnded {
    position: absolute;
    top: 18px;
    right: -73px;
    transform: rotate(47deg);
    opacity: 0;
    transition: .5s;
}

.pricing-rcomnded span {
    font-size: 13px;
    color: #ff5e14;
    font-weight: 400;
    text-align: center;
    background: var(--white);
    padding: 12px 70px;
}

/* all hover */

.pricing-single-items:hover .pricing-single-inner:before {
    transform: scale(1);
}

.pricing-single-items:hover .pricing-single-inner {
    border: 1px solid #171717;
}

.pricing-single-items:hover .pricing-title h3 {
    color: var(--white);
}


.pricing-single-items:hover .pricing-feature ul li {
    color: var(--white);
}


.pricing-single-items:hover .pricing-rcomnded {
    opacity: 1;
    top: 28px;
    right: -66px;
}




/**
======================================================
<-- Portfolio Area style-two Css -->
======================================================**/





/**
======================================================
<--  Indastre Service Details Area Css -->
======================================================**/

/*======================================
<-- Indastre Case Study Details Css -->
========================================*/
.case-study-details {
    padding: 120px 0 120px;
}

.csde-title h2 {
    font-size: 34px;
    color: #171717;
    font-weight: 700;
    margin: 41px 0 15px;
}

p.desc-strong {
    font-size: 17px;
    line-height: 26px;
    color: #171717;
    font-weight: 400;
    font-style: italic;
    margin: 25px 0 47px;
}

.porject-title {
    margin-bottom: 37px;
}

.porject-title.style-2 {
    margin: 55px 0 18px;
}

.porject-title h2 {
    font-size: 34px;
    color: #171717;
    font-weight: 700;
}

p.style1 {
    margin-bottom: 35px;
}

.porject-list ul li {
    font-size: 17px;
    color: #575f66;
    font-weight: 400;
    margin-bottom: 15px;
}

.porject-list ul li i {
    color: #FF5E14;
    font-size: 20px;
    margin-right: 12px;
}

/* case sidber */

.case-sidber {
    filter: drop-shadow(0px 5px 30px rgba(117, 117, 117, 0.1));
    background-color: var(--white);
    position: relative;
    margin-top: -81px;
    margin-bottom: 30px;
}

.csd-title {
    margin-bottom: 30px;
}

.csd-title h3 {
    font-size: 22px;
    color: var(--white);
    font-weight: 700;
    background: #FF5E14;
    padding: 23px 40px 23px;
}

.csd-info-sidber-box {
    padding: 0 40px 1px;
}

.sidber-box {
    margin-bottom: 20px;
    border-bottom: 1px solid #F4F5F7;
    padding-bottom: 20px;
}

.sidber-box:last-child {
    border: none;
}

.case-info-icon {
    width: 60px;
    height: 60px;
    border-radius: 30px;
    background-color: #f5f6f8;
    line-height: 60px;
    text-align: center;
    display: inline-block;
    float: left;
    margin-right: 20px;
}

.case-info-icon span i {
    color: #FF5E14;
}

.case-info-address {
    display: inline-block;
}

h3.name-title {
    font-size: 18px;
    color: #171717;
    font-weight: 500;
    margin-top: 8px;
}

/* porject sideber box */

.porject-sidebar-box {
    background: #171717;
    padding: 26px 40px 40px;
}

.porject-share-title h3 {
    font-size: 22px;
    color: var(--white);
    font-weight: 700;
    position: relative;
    z-index: 1;
    margin-bottom: 36px;
}

.porject-share-title h3:before {
    position: absolute;
    content: "";
    left: 0;
    bottom: -23px;
    height: 2px;
    background: #dedfe01a;
    width: 100%;
}

.porject-share-title h3:after {
    position: absolute;
    content: "";
    left: 0;
    bottom: -23px;
    height: 2px;
    background: #FF5E14;
    width: 15px;
}

p.share-text {
    color: #8e939f;
    margin-bottom: 14px;
}

.csd-social-icon ul li {
    display: inline-block;
    margin-right: 8px;
}

.csd-social-icon ul li a {
    font-size: 16px;
    color: #ffffff7a;
    text-align: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.10196078431372549);
    display: inline-block;
    line-height: 40px;
}

.csd-social-icon ul li a:hover {
    background: #FF5E14;
    color: var(--white);
}

.row.upper-pb {
    margin-bottom: 90px;
}

/* pagination */

.pagination-bg {
    background: #F5F6F8;
    margin: 0;
    padding: 33px 20px 27px 40px;
}

.pagination-single-item {
    display: inline-block;
}

.pagination-single-item.right {
    display: inline-block;
    float: right;
    position: relative;
    z-index: 1;
}

.pagination-single-item.right:before {
    position: absolute;
    content: "";
    left: -85%;
    top: 4px;
    opacity: 0.102;
    width: 2px;
    height: 50px;
    background-color: rgb(23 23 23 / 49%);
    z-index: -1;
}

.pagination-btn {
    margin-right: 20px;
    float: left;
    position: relative;
    top: 6px;
}

.pagination-btn.right {
    float: right;
    display: inline-block;
    margin-left: 20px;
}

.pagination-btn a {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: var(--white);
    line-height: 50px;
    text-align: center;
    color: #FF5E14;
    font-size: 16px;
}

.pagination-content {
    overflow: hidden;
}

.pagination-content.right {
    text-align: right;
    display: inline-block;
}

h3.pagination-title {
    font-size: 22px;
    color: #171717;
    font-weight: 700;
    margin-top: 8px;
}

.pagination-content span {
    font-size: 17px;
    color: #ff5e14;
    font-weight: 400;
}



/*===================================
<-- Indastre Contact  US Css -->
=====================================*/
.contact-area {
    padding: 30px 0px;
    background-color: rgba(240, 240, 240, 0.457);
}


.contract-form-bg {
    padding: 15px 35px 40px;
    background: var(--white);
    border-radius: 3px;
    width: 430px;
    position: relative;
    z-index: 1;
    margin-top: -140px;
    left: 100px;
}

.contact_from_box {
    background: var(--white);
    padding: 27px 40px 45px;
}

/*form title*/
.contact-form-title {
    padding: 0 0 72px;
}

.contact-form-title h4 {
    font-size: 30px;
    line-height: 50px;
    font-weight: 600;
    color: var(--white);
}

.contact-form-title p {
    color: var(--white);
    font-size: 18px;
    padding: 10px 0 0;
}

/*form input*/
.form_box input {
    width: 100%;
    height: 50px;
    padding-left: 25px;
    background: #F2F3F5;
    border-radius: 30px;
    color: #232323;
    border: 1px solid rgba(35, 35, 35, 0.12);
    transition: .5s;
    padding-right: 25px;
}

.form_box textarea {
    width: 100%;
    background: #F2F3F5;
    padding-left: 25px;
    padding-top: 20px;
    height: 135px;
    border: 1px solid rgba(35, 35, 35, 0.12);
    border-radius: 30px;
    color: #232323;
    transition: .5s;
}

.form_box input::placeholder {
    color: #6d6d6d;
}

.form_box input:focus,
.form_box textarea:focus {
    border-color: var(--primary-color);
    outline: 0;
    box-shadow: 0 0 6px rgba(204, 48, 0, 0.6);
}

/*form button*/
.quote_button button {
    padding: 13px 15px;
    background: var(--primary-color);
    display: block;
    color: var(--white);
    border-radius: 30px;
    width: 100%;
    cursor: pointer;
    text-align: center;
    transition: 0.5s;
}

.quote_button button i {
    display: inline-block;
    font-size: 18px;
    margin-right: 5px;
    position: relative;
    top: 2px;
    color: var(--white);
    transition: 0.5s;
}

.quote_button button:hover {
    color: var(--white);
    background: #be0101;
}

.quote_button button:hover i {
    color: var(--white);
}

.content-info-area {
    background: #be0101;
    padding: 21px 0;
}

.cda-single-content {
    margin: 0 45px;
    padding: 5px;
}

.cda-icon {
    font-size: auto;
    color: var(--white);
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: var(--secondary-color);
    border-radius: 5px;
    display: inline-block;
    margin-right: 25px;
    margin-top: 10px;
}

.cda-icon i {
    font-size: auto;
    color: var(--white);
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: var(--sky-blue-heading);
    border-radius: 5px;

}

.cda-content-inner h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 5px;
}

.cda-content-inner a {
    color: rgb(208, 208, 208);
    margin: 10px 0;
    padding: 10px 0px;
}

.cda-content-inner a:hover {
    color: rgb(171, 171, 171);
    margin: 10px 0;
}

/* contact map section */
.contact-map-section {
    width: 100%;
    background: url("/assets/images/banner/contact-map-bg.webp");
    /* padding: 40px 0; */
}

.map-row {
    display: flex;
    gap: 30px;
}

.map-col {
    width: 50%;
}

.map-title {
    font-size: 28px;
    font-weight: 700;
    margin: 20px 0 15px;
    color: var(--primary-color);
    text-transform: capitalize;
}

.map-wrapper {
    width: 100%;
    height: 420px;
    overflow: hidden;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(15%);
    transition: 0.3s ease;
}

.map-wrapper iframe:hover {
    filter: grayscale(0);
}

/* Tablet */
@media (max-width: 991px) {
    .map-row {
        flex-direction: column;
    }

    .map-col {
        width: 100%;
    }

    .map-wrapper {
        height: 320px;
    }
}

/* Mobile */
@media (max-width: 575px) {
    .map-wrapper {
        height: 260px;
    }

    .map-title {
        font-size: 24px;
    }
}


/*
<!-- ============================================================== -->
<!--Scrollup Button Section -->
<!-- ============================================================== -->*/

/*------back-to-top------------*/
.prgoress_indicator {
    position: fixed;
    right: 30px;
    bottom: 50px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(22, 93, 245, 0.2);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    /* transform: translateY(15px); */
    transform: translateY(15px) !important;
    transition: all 200ms linear !important;
}

.prgoress_indicator.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) !important;
}

.prgoress_indicator::after {
    position: absolute;
    content: "\f106";
    font-family: "Font Awesome 5 Free";
    text-align: center;
    line-height: 46px;
    font-size: 18px;
    color: #ff1414;
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    font-weight: 900;
    z-index: 1;
    transition: all 200ms linear !important;
}

.prgoress_indicator::before {
    position: absolute;
    content: "\f106";
    text-align: center;
    line-height: 46px;
    font-size: 18px;
    font-weight: 900;
    opacity: 0;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 2;
    transition: all 200ms linear !important;
}

.prgoress_indicator:hover ::after {
    color: #ff1414;
}

.prgoress_indicator:hover ::before {
    opacity: 1;
}

.prgoress_indicator svg path {
    fill: none;
}

.prgoress_indicator svg.progress-circle path {
    stroke: #ff1414;
    stroke-width: 4;
    box-sizing: border-box;
    transition: all 200ms linear !important;
}

/*===========================
<-- Consen Loader Css -->
=============================*/

.loader-wrapper {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    transition: 0.8s 1s ease;
    z-index: 9999;
}

.loader {
    position: relative;
    display: block;
    z-index: 201;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    margin: -50px 0 0 -50px;
    border-radius: 50%;
    transition: all 1s 1s ease;
    border: 3px solid transparent;
    border-top-color: #9A241C;
    -webkit-animation: spin 1.5s linear infinite;
    -moz-animation: spin 1.5s linear infinite;
    -o-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}

.loader:before {
    position: absolute;
    content: '';
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-left-color: #FF3C00;
    -webkit-animation: spin 2s linear infinite;
    -moz-animation: spin 2s linear infinite;
    -o-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

.loader:after {
    position: absolute;
    content: '';
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-right-color: var(--white);
    -webkit-animation: spin 2.5s linear infinite;
    -moz-animation: spin 2.5s linear infinite;
    -o-animation: spin 2.5s linear infinite;
    animation: spin 2.5s linear infinite;
}

/*/ Here comes the Magic /*/

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-moz-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.loader-wrapper .loder-section {
    position: fixed;
    top: 0;
    width: 50%;
    height: 100%;
    background: #111;
    z-index: 2;
}

.loader-wrapper .loder-section.left-section {
    left: 0;
    transition: 1s 1.4s ease;
}

.loader-wrapper .loder-section.right-section {
    right: 0;
    transition: 1s 1.4s ease;
}

/*/ When page loaded /*/
.loaded .loder-section.left-section {
    left: -100%;
}

.loaded .loder-section.right-section {
    right: -100%;
}

.loaded .loader-wrapper {
    visibility: hidden;
}

.loaded .loader {
    top: -100%;
    opacity: 0;
}


/* global experience */
.global-experience {
    padding: 20px 0px;
    background: #f8f9fb;
}

.global-content h4 {
    font-size: 14px;
    color: var(--primary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.global-presence-title {
    text-align: center;
    padding: 10px;
    color: var(--primary-color);
    padding-bottom: 8px;
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 600;
}

.global-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0a1027;
    margin-bottom: 15px;
}

.global-content p {
    font-size: 17px;
    line-height: 28px;
    color: #555;
    margin-bottom: 30px;
    max-width: 520px;
}

.global-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.global-badges span {
    padding: 10px 26px;
    background: var(--white);
    border: 1px solid #e5e5e5;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    color: #0a1027;
    transition: 0.3s ease;
}

.global-badges span:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.global-map {
    text-align: center;
}

.global-map img {
    width: 100%;
    max-width: 500px;
    opacity: 0.85;
}

/* Responsive */
@media (max-width: 991px) {
    .global-experience {
        text-align: center;
    }

    .global-badges {
        justify-content: center;
    }

    .global-content p {
        margin-left: auto;
        margin-right: auto;
    }
}

.home-title {
    text-align: center;
    padding: 5px;
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 600;
}

.home-subtitle {
    text-align: center;
    padding: 10px;
    color: rgb(57, 57, 57);
    padding-bottom: 50px;
    text-transform: capitalize;
    font-size: 25px;
    font-weight: 600;
}

.project-subtitle {
    text-align: center;
    color: rgb(57, 57, 57);
    text-transform: capitalize;
    font-size: 22px;
    font-weight: 600;
    padding-bottom: 50px;

}

@media (max-width: 767px) {
    .home-subtitle {
        padding-bottom: 30px;
        font-weight: 500;
    }

    .home-title {
        font-size: 24px;
        margin-bottom: 5px;
    }
}

@media (max-width: 767px) {
    .header-top-section {
        display: none;
    }

    .global-content {
        text-align: left;
        padding: 3px;
    }

    .global-content h2 {
        text-align: left;
        font-size: 25px;
        font-weight: 600;
        color: #0a1027;
        margin-bottom: 15px;

    }

}

/* --------------------gallery------------------ */
.project-grid-section-gallery {
    padding: 40px 20px;

}

.protfolio-menu ul {
    list-style: none;
}

.protfolio-menu ul li {
    display: inline-block;
    padding: 6px 10px;
    font-size: 18px;
    color: var(--white);
    background: var(--primary-color);
    font-weight: 500;
    margin: 6px;
    cursor: pointer;
    transition: all 0.35s ease;
}

.protfolio-menu ul li:hover {
    background: #1c1632;
    transform: translateY(-2px);

}

.protfolio-menu ul li.current_menu_item {
    position: relative;
    color: var(--white);
    z-index: 1;
}

.protfolio-menu ul li.current_menu_item::before {
    position: absolute;
    content: "";
    background: #1c1632;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    transform: scale(0);
    border-radius: 5px;
    z-index: -1;
    transition: .5s;
}

.protfolio-menu ul li.current_menu_item {
    background: #1c1632;
    color: var(--white);
    box-shadow: 0 6px 15px rgba(0, 42, 104, 0.35);
}

.protfolio-menu ul li.current_menu_item:hover::before {
    transform: scale(1);
}

/* project grid box */

.project-thumb-gallery img {
    width: 100%;
    height: 200px;

}

.project-content-gallery {
    background: var(--primary-color);
    padding: 15px 10px 15px;
    border-radius: 5px;
    position: relative;
    z-index: 1;

}

.project-content-gallery::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-color);
    border-radius: 5px;
    transform: scale(0);
    z-index: -1;
    transition: .5s;
}

.project-grid-box-gallery {
    border-radius: 10%;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 42, 104, 0.35);
}

.project-thumb-gallery img {
    height: 200px;
    object-fit: cover;
    display: block;
    transition: filter 0.35s ease, opacity 0.35s ease;
}

.project-grid-box-gallery:hover .project-thumb-gallery img {
    filter: brightness(1.15) contrast(1.05);
}

.project-content-gallery {
    background: #1c1632;
    padding: 15px 10px;
    text-align: center;
}

/* TITLE */
.project-content-gallery h4 {
    font-size: 18px;
    color: #e2e2e2;
    font-weight: 400;
    margin: 0;
}

.project-content-gallery span {
    font-size: 16px;
    line-height: 30px;
    color: #dddddd;
    font-weight: 400;
}

/* gallery zoom image section style start */
.project-grid-box-gallery {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

/* IMAGE */
.project-thumb-gallery {
    position: relative;
}

.project-thumb-gallery img {
    width: 100%;
    display: block;
    transition: 0.4s ease;
}

/* OVERLAY */
.service-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s ease;
}

.plus-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    font-size: 22px;
    font-weight: 700;
    margin-right: 3px;
    font-style: normal;
    color: var(--white);
    background-color: var(--primary-color);
    transition: all 0.3s linear;
}

.project-grid-box-gallery:hover .service-overlay {
    opacity: 1;
}

.project-grid-box-gallery:hover img {
    filter: brightness(1.15) contrast(1.05);
}

.project-grid-box-gallery:hover .plus-icon {
    background: var(--primary-color);
    transform: scale(1.1);
}

/* LIGHTBOX */
#galleryLightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

#galleryLightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 6px;
}

/* CLOSE BUTTON */
.close-lightbox {
    position: absolute;
    top: 25px;
    right: 35px;
    font-size: 40px;
    color: var(--white);
    cursor: pointer;
}

#galleryLightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

#galleryLightbox img {
    max-width: 90%;
    max-height: 85%;
}

.close-lightbox {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 40px;
    color: var(--white);
    cursor: pointer;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
    color: var(--white);
    cursor: pointer;
    padding: 15px;
    user-select: none;
}

.lightbox-nav.prev {
    left: 30px;
}

.lightbox-nav.next {
    right: 30px;
}

.lightbox-nav:hover,
.close-lightbox:hover {
    color: var(--primary-color);
}



/* ----------------------------vision mission values----------------------- */

.vmv-section {
    max-width: 1200px;
    margin: 20px auto;
    padding-bottom: 50px;
    text-align: center;
    color: rgb(239, 50, 50);
}

.section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.section p.desc {
    color: #737070;
    max-width: 800px;
    margin: 0 auto 60px;
}

.flow {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.flow:before {
    content: "";
    position: absolute;
    left: 12%;
    top: 40px;
    height: 3px;
    background: #38448a;
    width: 75%;
    z-index: 0;
}

.item {
    width: 30%;
    position: relative;
    z-index: 1;
}

.icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon img {
    width: 36px;
}

.box {
    color: var(--white);
    padding: 30px 20px 40px;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
    height: 280px;
    width: 240px;
    margin: auto;
}

.box h3 {
    margin-bottom: 15px;
    font-size: 22px;
    padding: 5px;
}

.box p {
    font-size: 14px;
    line-height: 1.6;
    color: rgb(234, 233, 233);
}

.bar1,
.bar2,
.bar3 {
    height: 2px;
    width: 27px;
    background-color: #f4eeee;
    margin-left: 85px;
}

.icon i {
    font-size: 36px;
    color: var(--white);
}

.v-line1 {
    width: 3px;
    height: 50px;
    margin: 0 auto;
    background: #2e97c4;
}

.v-line2 {
    width: 3px;
    height: 50px;
    margin: 0 auto;
    background: #f28c28;

}

.v-line3 {
    width: 3px;
    height: 50px;
    margin: 0 auto;
    background: #d63a2f;
}

.box h3 {
    box-shadow: 0 2px 4px rgba(11, 11, 11, 0.4);
    background-color: #f8e1e1;
    color: var(--black);
}

.vision .icon {
    background: #1f6aa5;
}

.vision .box {
    background: #1f6aa5;
}

.mission .icon {
    background: #f28c28;
}

.mission .box {
    background: #f28c28;
}

.values .icon {
    background: #d63a2f;
}

.values .box {
    background: #d63a2f;
}

@media(max-width:900px) {
    .flow {
        flex-direction: column;
    }

    .flow:before {
        display: none;
    }

    .item {
        width: 100%;
        margin-bottom: 40px;
    }

    .vmv-section {
        padding-bottom: 10px;
    }
}

/* -------------------------career --------------------------- */

.career-title h4 {
    text-align: center;
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 600;
}

.career-title p {
    text-align: center;
    padding-bottom: 10px;
}

.career-section {
    background: #f7f8fc;
}

.career-bg-box {
    padding: 20px 0 40px;
}

.why-join h4 {
    padding-bottom: 7px;
}

.career-points {
    list-style: none;
    padding-left: 0;
}

.career-points li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #444;
}

.career-points li::before {
    content: "◈";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.career-highlight {
    background: var(--white);
    color: var(--black);
}

.opening-box {
    background: var(--white);
    padding: 20px 30px;
    border-radius: 12px;
    height: 100%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

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

.opening-box h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.opening-box p {
    color: #1c1632;
}

.opening-box ul li {
    color: var(--black);
    padding: 2px;
}

.career-location {
    color: var(--primary-color);
}

.career-form-box {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.career-form .form-control {
    border-radius: 8px;
}

.career-submit-btn {
    color: var(--white);
    background: var(--primary-color);
    width: 60% !important;
    padding: 10px;
    font-size: 18px;
}

.career-submit-btn:hover {
    background: var(--secondary-color);
    color: var(--white);
}

@media (max-width: 767px) {
    .career-form-box {
        padding: 30px 10px;
    }
}

/* --------------------------active navbar------------------------------- */
.header-menu ul li a.active,
.header-menu ul li a.active i {
    color: var(--primary-color);
}

/* ------------------------bim & bridge service section----------------------- */

.bim-design-area {
    background-color: #f4f5eb;
}

.bim-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--sky-blue-heading);
    text-transform: capitalize;
}

.bim-title-center {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--sky-blue-heading);
    text-transform: capitalize;
    width: 60%;
    padding: 0 20px;
    margin: auto;
}

.bim-subtitle {
    max-width: 760px;
    margin: 0 auto;
    color: #555;
    font-size: 16px;
}

.bim-content-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-primary-color);
}

.bim-content-box p {
    color: #444;
    line-height: 1.7;
    font-size: 18px;
    margin-bottom: 15px;
}

.bim-points {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.bim-points li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #444444;
    font-size: 16px;
}

.bim-points li::before {
    content: "◈";
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--dark-primary-color);
    font-size: 24px;
}

.bim-image-box img {
    text-align: center;
    width: 90%;
    height: 200px;
    background-size: cover;
    border-radius: 8px;
    transition: transform 0.7s ease;
}

.bim-image-box img:hover {
    transform: scale(1.08);
    box-shadow: rgba(150, 1, 1, 0.269) 0px 3px 8px;
}


.boiler-image-box img {
    width: 90%;
    height: 350px;
    background-size: cover;
    border-radius: 8px;
    transition: transform 0.7s ease;
}

.boiler-image-box img:hover {
    transform: scale(1.08);
    box-shadow: rgba(150, 1, 1, 0.269) 0px 3px 8px;
}

.transmission-image-box img {
    width: 90%;
    background-size: cover;
    border-radius: 8px;
}


@media (max-width: 991px) {
    .bim-title-center {
        font-size: 26px;
        margin-bottom: 10px;
        color: var(--sky-blue-heading);
        text-transform: capitalize;
        width: 90%;
        padding: 0 10px;
        margin: auto;
    }
}

@media (max-width: 767px) {

    .bim-title,
    .bim-title-center {
        font-size: 26px;
    }

    .bim-content-title {
        font-size: 20px;
    }

    .bim-image-box img {
        height: 150px;
    }

    .steel-content-title {
        font-size: 20px;
    }

    .bim-title-center {
        font-size: 24px;
        margin-bottom: 10px;
        color: var(--sky-blue-heading);
        text-transform: capitalize;
        width: 100%;
        padding: 0 0px;
        margin: auto;
    }
}

/* -------------------Design of Industrial Structures----------------- */

.structural-design-area {
    background-color: #f4f5eb;
}

.structural-subtitle {
    max-width: 760px;
    margin: 0 auto;
    color: #555;
    font-weight: 500;
    font-size: 17px;
    padding: 5px 0 14px;
}

.structural-image-box img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.7s ease;
}

.structural-image-box img:hover {
    transform: scale(1.08);
    box-shadow: rgba(150, 1, 1, 0.269) 0px 3px 8px;
}

@media (max-width: 767px) {
    .structural-image-box img {
        height: 220px;
    }
}

/* ----------------------wind mill ------------------------ */

.windmill-area {
    background-color: #f4f5eb;
}

.windmill-image-box {
    text-align: center;
}

.windmill-image-box img {
    width: 90%;
    height: 300px;
    background-size: cover;
    border-radius: 10px;
    transition: transform 0.7s ease;
}

.windmill-image-box img:hover {
    transform: scale(1.08);
    box-shadow: rgba(150, 1, 1, 0.269) 0px 3px 8px;
}

@media (max-width: 767px) {

    .windmill-image-box img {
        height: 220px;
    }
}


/* ------------------port ----------------------- */

.port-structure-area {
    background-color: #f4f5eb;
}

.port-structure-image-box img {
    width: 80%;
    height: 300px;
    background-size: cover;
    border-radius: 10px;
    transition: transform 0.7s ease;
}

.port-structure-image-box img:hover {
    transform: scale(1.08);
    box-shadow: rgba(150, 1, 1, 0.269) 0px 3px 8px;
}

.port-structure-content-box p {
    max-width: 760px;
    margin: 0 auto;
    color: #555;
    font-weight: 500;
    font-size: 17px;
    padding: 10px 0 15px;
}

@media (max-width: 767px) {

    .port-structure-image-box img {
        height: 220px;
    }
}

/* ---------------------REBAR & water infrastructure------------------ */
.water-infra-area {
    background-color: #f4f5eb;
}

.water-infra-subtitle {
    max-width: 760px;
    margin: 0 auto;
    color: #555;
    font-weight: 500;
    font-size: 17px;
    padding-top: 10px;
}

.water-infra-image-box img {
    width: 80%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.7s ease;
}

.water-infra-image-box img:hover {
    transform: scale(1.08);
    box-shadow: rgba(150, 1, 1, 0.269) 0px 3px 8px;
}

.water-infra-points {
    list-style: none;
    padding-left: 10px;
    margin: 0;
}

.water-infra-points li {
    position: relative;
    padding-left: 38px;
    font-size: 18px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 15px;
    font-family: Yantramanav;
}

.water-infra-points li::before {
    content: "◈";
    position: absolute;
    left: 0;
    top: -5px;
    color: var(--dark-primary-color);
    font-size: 24px;
}

@media (max-width: 767px) {

    .water-infra-image-box img {
        height: 220px;
    }

    .water-infra-points li {
        font-size: 17px;
    }

}

/* telecom tower image */
.telecom-card-box {
    background-color: #4a4a4a;
    padding: 40px 30px;
    border-radius: 4px;
    max-width: 400px;
    margin: 0 auto;
}

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

.telecom-list li {
    color: var(--white);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.telecom-list li:last-child {
    margin-bottom: 0;
}

.list-num {
    margin-right: 15px;
}

.telecom-tower-img-wrapper img {
    height: 400px;
    width: 100%;
    max-width: 320px;
    object-fit: cover;
    display: inline-block;
    border-radius: 20px;
    transition: transform 0.7s ease, box-shadow 0.7s ease;
}

.telecom-tower-img-wrapper img:hover {
    transform: scale(1.05);
    box-shadow: rgba(150, 1, 1, 0.269) 0px 3px 8px;
}

@media (max-width: 991px) {
    .telecom-card-box {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .telecom-card-box {
        padding: 30px 20px;
    }

    .telecom-list li {
        font-size: 18px;
    }

    .telecom-tower-img-wrapper img {
        height: 350px;
        max-width: 100%;
    }
}

/* ==============================
   SOLAR ENERGY SECTION
============================== */

.solar-energy-area {
    background-color: #f4f5eb;
}

.solar-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.solar-subtitle {
    max-width: 760px;
    margin: 0 auto;
    color: #555;
    font-size: 16px;
    line-height: 1.6;
}

.solar-image-box img {
    width: 90%;
    height: 300px;
    background-size: cover;
    border-radius: 10px;
    transition: transform 0.7s ease;
}

.solar-image-box img:hover {
    transform: scale(1.08);
    box-shadow: rgba(150, 1, 1, 0.269) 0px 3px 8px;
}

.steel-image-box img {
    width: 80%;
    height: 400px;
    background-size: cover;
    border-radius: 10px;
    transition: transform 0.7s ease;
}

.steel-image-box img:hover {
    transform: scale(1.08);
    box-shadow: rgba(0, 0, 0, 0.505) 0px 3px 8px;
}

.solar-content-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;

}

.solar-content-box p {
    max-width: 760px;
    margin: 0 auto;
    color: #555;
    font-weight: 500;
    font-size: 17px;
    padding: 10px 0 15px;
}

/* BULLET POINTS (RED ARROW STYLE) */
.solar-points {
    list-style: none;
    padding-left: 15px;
    margin: 0;
}

.solar-points li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 15px;
    font-size: 18px;
    color: #444444;
    line-height: 1.7;
}

.solar-points li::before {
    content: "◈";
    position: absolute;
    left: 0;
    top: -5px;
    color: #dc3545;
    font-size: 24px;
}

@media (max-width: 767px) {
    .solar-title {
        font-size: 26px;
    }

    .solar-content-title {
        font-size: 20px;
    }

    .solar-image-box img {
        height: 220px;
    }

    .solar-points li {
        font-size: 17px;
    }

    .steel-image-box img {
        width: 90%;
    }
}

/* -------------TEKLA------------- */

.tekla-area {
    background-color: #f4f5eb;
}

.tekla-block {
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    height: 100%;
}

.tekla-block img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.tekla-block-title {
    font-size: 24px;
    font-weight: 600;
    color: rgb(136, 25, 25);
    margin-bottom: 15px;
}

.tekla-block-points {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.tekla-block-points li {
    position: relative;
    padding-left: 38px;
    margin-bottom: 10px;
    font-size: 17px;
    color: #444444;
    line-height: 1.7;
}

.tekla-block-points li::before {
    content: "◈";
    position: absolute;
    left: 0;
    top: 1px;
    color: #dc3545;
    font-size: 24px;
}

@media (max-width: 767px) {
    .tekla-block img {
        height: 220px;
    }

    .tekla-block-title {
        font-size: 20px;
    }
}


/* -------------DUCT------------- */

.duct-area {
    background-color: #f4f5eb;
}

.duct-block {
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    height: 100%;
}

.duct-image-box img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.7s ease;
}

.duct-image-box img:hover {
    transform: scale(1.08);
    box-shadow: rgba(150, 1, 1, 0.269) 0px 3px 8px;
}

.duct-block-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-primary-color);
}

.duct-block-points {
    list-style: none;
    padding-left: 10px;
    margin: 0;
}

.duct-block-points li {
    position: relative;
    padding-left: 38px;
    font-size: 18px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 15px;
}

.duct-block-points li::before {
    content: "◈";
    position: absolute;
    left: 0;
    top: -5px;
    color: #dc3545;
    font-size: 24px;
}

@media (max-width: 767px) {
    .duct-image-box img {
        height: 220px;
    }

    .duct-block-title {
        font-size: 20px;
    }

    .duct-block-points li {
        font-size: 17px;
    }
}


/* -------------TRANSMISSION ------------- */
.transmission-area {
    background-color: #f4f5eb;
}

.transmission-block {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 12px;
    height: 100%;
    border-left: 5px solid var(--primary-color);
}

.transmission-image-box {
    border: 2px solid transparent;
    border-radius: 12px;
    transition: all 0.3s ease;
    object-fit: contain;
}


.transmission-image-box img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.transmission-image-box img:hover {
    transform: scale(1.05);
    box-shadow: rgba(150, 1, 1, 0.269) 0px 3px 8px;
}

.transmission-block-title {
    font-size: 20px;
    font-weight: 600;
    color: rgb(136, 25, 25);
    margin-bottom: 12px;
}

.transmission-text {
    font-size: 15px;
    color: var(--bold-heading-color);
    line-height: 1.6;
}

@media (max-width: 767px) {
    .transmission-image-box img {
        height: 220px;
    }
}


/* -------------SHIP ------------- */
.ship-design-area {
    background-color: #f4f5eb;
}

.ship-image-box img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.ship-image-box img:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
    .ship-image-box img {
        height: 200px;
    }
}


/* -------------Switchyard Section  style start ---------------*/

.switchyard-structure-area {
    background-color: #f4f5eb;
}

.switchyard-structure-image img {
    width: 400px;
    height: 350px;
    border-radius: 8px;
    transition: transform 0.7s ease;
}

.switchyard-structure-image img:hover {
    transform: scale(1.08);
    box-shadow: rgba(150, 1, 1, 0.269) 0px 3px 8px;
}

@media (max-width: 991px) {

    .switchyard-structure-image {
        width: 80%;
        height: auto;
        margin: auto;
    }
}

@media (max-width: 538px) {

    .switchyard-structure-image img {
        width: 100%;
        height: auto;
    }
}

/*------------ Precast Structure Section style start ---------------*/
.precast-structure-area {
    background-color: #f4f5eb;
}

@media (max-width: 991px) {
    .switchyard-structure-image img {
        width: 100%;
        height: auto;
    }
}

/*--------------- Bridge Structure Section style start -------------- */
.bridge-structure-area {
    background-color: #f4f5eb;
}

@media (max-width: 991px) {
    .switchyard-structure-image img {
        width: 100%;
        height: auto;
    }
}


/* Sugar industry style section - Index page */
.sugar-industry-service.style_two {
    background: var(--secondary-color);
    padding: 60px 0;
}

.sugar-industry-service.style_two p.section-description {
    color: #8e939f;
}

.sugar-epc-image img {
    width: 100%;
    border-radius: 10px;

}

.sugar-epc-title {
    text-align: left;
    padding: 5px 0;
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 28px;
    font-weight: 600;
}

.section-title-sugar-epc h4 {
    color: var(--white);
    font-size: 35px;
    padding-bottom: 10px;
}

@media (max-width: 768px) {
    .sugar-epc-title {
        font-size: 22px;
        margin-bottom: 5px;
    }

    .section-title-sugar-epc h4 {
        font-size: 32px;
    }

}

.why-choose-us-area.style_two p.section-description {
    color: #8e939f;
    width: 94%;
}

.choose-icon-box {
    display: flex;
    align-items: center;
    background: var(--white);
    padding: 25px 10px;
    margin-bottom: 30px;
    gap: 0px;
    border-radius: 10px;
}

.choose-icon {
    text-align: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.choose-icon img {
    transition: .5s;
    width: 50px;
    height: auto;
    margin-left: 5px;
}

h3.choose-title {
    margin-top: 0;
    font-size: 20px;
    line-height: 28px;
    color: #171717;
    font-weight: 500;
}

.choose-icon-box:hover .choose-icon img {
    transform: rotateY(180deg);
}

.sugar-industry-btn {
    margin-top: 30px;
}

.sugar-industry-btn a {
    display: inline-block;
    font-size: 18px;
    line-height: 28px;
    color: var(--white);
    font-weight: 500;
    background: var(--primary-color);
    text-transform: uppercase;
    padding: 15px 28px;
    position: relative;
    overflow: hidden;
    transition: .5s;
    z-index: 1;
    border-radius: 60px;
}

.sugar-industry-btn a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--white);
    transition: .5s;
    z-index: -1;
}

.sugar-industry-btn a:hover::before {
    width: 100%;
}

.sugar-industry-btn a:hover {
    color: var(--primary-color);
}

.sugar-industry-btn a i {
    font-size: 13px;
    font-weight: 600;
    margin-right: 12px;
    display: inline-block;
    /* transform: rotate(-45deg); */
}


/* ---------------- terms and condition section style ------------------- */
.legal-section {
    background-color: #f4f5f7;
    padding: 20px 20px 60px;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-main-title {
    padding: 5px 0;
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 600;
}

.legal-updated {
    font-size: 16px;
    color: #888;
    margin-bottom: 25px;
}

.legal-card {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #dcdcdc;
}

.legal-point {
    margin-bottom: 25px;
}

.legal-point h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--bold-heading-color);
    margin-bottom: 8px;
}

.legal-point p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

@media (max-width: 768px) {
    .legal-section {
        padding: 20px 0px 60px;

    }

    .legal-card {
        padding: 25px 15px;
        margin: 0px 15px;

    }

    .legal-main-title {
        font-size: 24px;
        padding: 0 10px;
        text-align: center;
    }

    .legal-point h3 {
        font-size: 20px;

    }

    .legal-point p {
        font-size: 17px;
        line-height: 1.4;
        color: #555;
    }

    .legal-updated {
        font-size: 16px;
        color: #888;
        margin-bottom: 25px;
        padding: 10px;
        text-align: center;
    }
}

@media (max-width: 532px) {
    .legal-section {
        padding: 80px 0px 60px;

    }

    .legal-card {
        padding: 25px 15px;
        margin: 0px;

    }
}

/* Sitemap List */
.sitemap-list {
    list-style: none;
    padding-left: 0;
}

.sitemap-list li {
    margin-bottom: 8px;
}

.sitemap-list li a {
    text-decoration: none;
    font-size: 18px;
    color: #555;
    transition: 0.3s ease;
}

.sitemap-list li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.sitemap-service-heading {
    font-size: 22px;
    font-weight: 600;
    color: var(--secondary-color);
    padding: 10px 0;

}

.sitemap-service-heading {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary-color);
    padding: 10px 0;

}

.sitemap-heading {
    font-size: 25px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

/* ======================================
Sugar Industry EPC service section style
========================================= */

/* --------------- heading ------------------- */
.top-label {
    color: #e31e24;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.top-main-heading {
    font-size: 2.4rem;
    color: var(--bold-heading-color);
    line-height: 1.2;
    margin-bottom: 20px;
}

.top-main-heading-dark {
    font-size: 2.4rem;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .top-label {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }

    .top-main-heading {
        font-size: 1.7rem;
        line-height: 1.1;
    }

    .top-main-heading-dark {
        font-size: 2.4rem;
        color: var(--white);
        line-height: 1.2;
        margin-bottom: 20px;
    }
}

/* ----------------------- sugar industry intro-section ------------- */
.intro-section {
    padding: 60px 0;
    background: var(--white);
    overflow: hidden;
}

.intro-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

.intro-left {
    flex: 1;
    min-width: 320px;
}

.image-wrapper {
    position: relative;
    border-radius: 18px;
    overflow: visible;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    left: 25px;
    background: var(--sky-blue-heading);
    color: var(--white);
    padding: 15px 24px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.18);
    z-index: 2;
}

.intro-right {
    flex: 1.1;
    min-width: 320px;
}

.highlight-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.highlight-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
}

.list-icon {
    width: 26px;
    height: 26px;
    background: #fdf2f2;
    color: #be0101;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.list-text {
    font-size: 17px;
    color: #444;
    line-height: 1.7;
}

.cta-mini {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #be0101;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    padding: 14px 26px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-mini:hover {
    background: #8f0000;
    color: var(--white);
    transform: translateY(-2px);
}

@media (max-width: 1199px) {

    .intro-flex {
        gap: 40px;
    }

    .list-text {
        font-size: 16px;
    }
}

@media (max-width: 991px) {

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

    .intro-flex {
        flex-direction: column;
        align-items: stretch;
        gap: 50px;
    }

    .intro-left,
    .intro-right {
        width: 100%;
        min-width: 100%;
    }

    .image-wrapper img {
        width: 70%;
        margin: auto;
    }

    .floating-badge {
        bottom: -15px;
        left: 20px;
        padding: 14px 22px;
        font-size: 15px;
    }

    .intro-right {
        text-align: left;
    }
}

@media (max-width: 532px) {
    .image-wrapper img {
        width: 100%;
        margin: auto;
    }
}

@media (max-width: 767px) {

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

    .intro-flex {
        gap: 40px;
    }

    .image-wrapper {
        border-radius: 14px;
    }

    .image-wrapper img {
        border-radius: 14px;
    }

    .floating-badge {
        position: absolute;
        bottom: -12px;
        left: 15px;
        padding: 12px 18px;
        font-size: 14px;
        border-radius: 8px;
    }

    .highlight-list {
        margin: 25px 0;
    }

    .highlight-list li {
        gap: 12px;
        margin-bottom: 16px;
    }

    .list-icon {
        width: 24px;
        height: 24px;
        font-size: 13px;
    }

    .list-text {
        font-size: 15px;
        line-height: 1.6;
    }

    .cta-mini {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {

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

    .floating-badge {
        left: 12px;
        bottom: -10px;
        padding: 10px 16px;
        font-size: 13px;
    }

    .list-text {
        font-size: 14px;
    }

    .cta-mini {
        font-size: 14px;
        padding: 13px 18px;
    }
}

/* --------------- Technical Expertise ----------- */
.process-expertise {
    padding: 60px 0;
    background-color: var(--white);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.expertise-card {
    background: var(--white);
    padding: 30px 25px;
    border: 1px solid #eee;
    border-radius: 12px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    z-index: 1;
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background-color: #d7e8fc48;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: -1;
    transition: all 0.6s ease-in-out;
    clip-path: circle(0% at 50% 50%);
}

.expertise-card:hover::before {
    clip-path: circle(100% at 50% 50%);
}

.card-icon {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.card-icon i {
    width: 50px;
    height: 50px;
    background-color: #e3f2fd;
    color: var(--secondary-light-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 22px;
    flex-shrink: 0;
    transition: 0.3s;
}

.expertise-card h3 {
    font-size: 1.15rem;
    color: var(--bold-heading-color);
    margin-bottom: 0;
    font-weight: 700;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

.expertise-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-top: 5px;
    position: relative;
    z-index: 2;
}

.expertise-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 46, 93, 0.1);
    border-color: var(--secondary-light-blue);
}

.expertise-card:hover .card-icon i {
    background-color: var(--secondary-light-blue);
    color: var(--white);
}

@media (max-width: 1100px) {
    .expertise-grid {
        gap: 10px;
    }
}

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

@media (max-width: 532px) {
    .process-expertise {
        padding: 50px 0;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .expertise-card {
        padding: 25px 20px;
    }
}

/* ------------ Execution Methodology -------------- */
.sugar-epc-process {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg,
            rgba(136, 25, 25, 0.04),
            transparent);
    padding: 60px 0;
}

.epc-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    height: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(136, 25, 25, 0.08);
}

.epc-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(136, 25, 25, 0.04),
            transparent);
    opacity: 0;
    transition: all 0.4s ease;
}

.epc-card:hover::before {
    opacity: 1;
}

.epc-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
    border: 1px solid rgba(136, 25, 25, 0.251);
}

.epc-card:hover .epc-icon-wrap {
    box-shadow: rgba(255, 175, 175, 0.578) 0px 7px 29px 0px;
}

.epc-icon-wrap {
    width: 60px;
    height: 60px;
    background: var(--dark-primary-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    position: relative;
    z-index: 2;
}

.epc-icon-wrap i {
    font-size: 25px;
    color: var(--white);

}

.epc-step {
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--dark-primary-color);
    position: relative;
    z-index: 2;
}

.execution-steps {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-light-blue);
    position: relative;
    z-index: 2;
    margin-bottom: 10px;
}

@media (max-width: 991px) {

    .epc-card {
        padding: 35px 22px;
    }

    .execution-steps {
        font-size: 22px;
    }

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

@media (max-width: 576px) {

    .epc-card {
        padding: 30px 20px;
        border-radius: 15px;
    }

    .epc-icon-wrap {
        width: 55px;
        height: 55px;
        border-radius: 18px;
        margin-bottom: 18px;
    }

    .epc-icon-wrap i {
        font-size: 26px;
    }

    .execution-steps {
        font-size: 21px;
    }

    .epc-card p {
        font-size: 15px;
        line-height: 1.7;
    }
}


/* ----------------------- Why Partner With Us ---------------- */
.execution-standards {
    padding: 60px 0;
    background: #001f3f;
    overflow: hidden;
}

.standards-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.standards-image {
    flex: 1;
    min-width: 320px;
    position: relative;
}

.standards-image img {
    width: 100%;
    border-radius: 18px;
    display: block;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.standards-content {
    flex: 1.1;
    min-width: 320px;
}

.standards-desc {
    margin-top: 18px;
    font-size: 17px;
    line-height: 1.8;
    color: #bcc6d1;
}

.standards-points {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.point-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--white);
    padding: 18px;
    border-radius: 12px;
    transition: 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
}

.point-item:hover {
    transform: translateX(5px);
}

.point-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: #fdf2f2;
    color: var(--dark-primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.point-text {
    width: 100%;
}

.pointer-header {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--sky-blue-heading);
    font-weight: 600;
    line-height: 1.4;
}

.pointer-para {
    margin: 0;
    color: #666;
    line-height: 1.7;
    font-size: 16px;
}

@media (max-width: 991px) {

    .standards-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .standards-content,
    .standards-image {
        width: 100%;
        min-width: 100%;
    }

    .standards-image img {
        width: 70%;
        margin: auto;
    }

    .standards-points {
        width: 80%;
        gap: 15px;
    }
}

@media (max-width: 576px) {

    .execution-standards {
        padding: 50px 0;
    }

    .standards-wrapper {
        gap: 30px;
    }

    .standards-desc {
        font-size: 14px;
        line-height: 1.7;
    }

    .standards-points {
        width: 100%;
    }

    .point-item {
        gap: 10px;
        border-radius: 10px;
    }

    .point-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        font-size: 16px;
    }

    .point-text h4 {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .point-text p {
        font-size: 14px;
        line-height: 1.6;
    }

    .standards-image img {
        width: 100%;
        height: auto;
    }
}


/*  ------------------- Long-Term Partnership & CTA ------------------ */
.support-section {
    padding: 60px 0;
    overflow: hidden;
}

.support-header {
    max-width: 800px;
    margin: auto;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.support-item {
    background: var(--white);
    padding: 45px 35px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #f0f0f0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.support-icon {
    width: 65px;
    height: 65px;
    background: #fdf2f2;
    color: var(--dark-primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 25px;
    transition: 0.3s;
}

.support-text h3 {
    font-size: 1.4rem;
    color: var(--sky-blue-heading);
    margin-bottom: 15px;
    font-weight: 700;
}

.support-text p {
    color: #64748b;
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

.hover-bar {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 4px;
    background: var(--dark-primary-color);
    transition: 0.4s ease;
    transform: translateX(-50%);
}

.support-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

.support-item:hover .hover-bar {
    width: 100%;
}

.support-item:hover .support-icon {
    background: var(--dark-primary-color);
    color: var(--white);
}

/* --- CTA BANNER --- */
.final-cta-box {
    position: relative;
    background: var(--secondary-color);
    border-radius: 20px;
    padding: 50px;
    color: var(--white);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 46, 93, 0.2);
}

.cta-content {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.cta-left-content {
    flex: 0 0 65%;
}

/* .about-btn {
    flex: 0 0 25%; 
} */

.final-cta-box h3 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    font-weight: 800;
    color: var(--white);
}

.cta-circle-1,
.cta-circle-2 {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
}

.cta-circle-2 {
    width: 150px;
    height: 150px;
    bottom: -50px;
    left: -50px;
}

@media (max-width: 768px) {
    .support-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .support-item {
        padding: 20px 15px;
    }

    .final-cta-box h3 {
        font-size: 1.8rem;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 0px;
    }
}

@media (max-width: 767px) {
    .support-section {
        padding: 60px 0;
    }

    .support-icon {
        margin-bottom: 10px;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .support-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .support-header {
        width: 100%;
        padding: 0 15px;
    }

    .final-cta-box {
        padding: 40px 20px;
        margin: 0 15px;
    }

    .final-cta-box h3 {
        font-size: 1.5rem;
    }

    .btn-final-modern {
        width: 100%;
        justify-content: center;
    }
}

/* ===============================================================
Design & Supply of Sugar Plant Machineries section style start
================================================================== */
.sugar-services-section {
    padding: 100px 0;
    background-color: #fcfdfe;
}

.service-header {
    max-width: 800px;
    margin: 0 auto 60px;
}

.service-header h2 {
    font-size: 2.5rem;
    color: var(--sky-blue-heading);
    font-weight: 800;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 15px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.service-icon-box {
    width: 60px;
    height: 60px;
    background: #fdf2f2;
    color: var(--dark-primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 1.4rem;
    color: var(--sky-blue-heading);
    font-weight: 700;
    margin-bottom: 20px;
}

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

.service-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
}

.service-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--dark-primary-color);
    font-size: 14px;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--dark-primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.service-card:hover .service-icon-box {
    background: var(--dark-primary-color);
    color: var(--white);
}

@media (max-width: 768px) {
    .sugar-services-section {
        padding: 60px 0;
    }

    .service-header h2 {
        font-size: 1.8rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

}

/* --------------- why choose us - design & supply of sugar plant machinery -------------- */

.why-choose-sugar-machinery-section {
    padding: 70px 0;
    background: #001f3f;
    overflow: hidden;
}

.why-choose-sugar-machinery-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.why-choose-sugar-machinery-content {
    flex: 1.1;
    min-width: 320px;
}

.why-choose-sugar-machinery-desc {
    margin-top: 18px;
    color: #bcc6d1;
    font-size: 17px;
    line-height: 1.8;
}

.why-choose-sugar-machinery-image {
    flex: 1;
    min-width: 320px;
}

.why-choose-sugar-machinery-image img {
    width: 100%;
    border-radius: 18px;
    display: block;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.why-choose-sugar-machinery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.why-choose-sugar-machinery-card {
    background: var(--white);
    padding: 22px;
    border-radius: 14px;
    transition: 0.3s ease;
    height: 100%;
}

.why-choose-sugar-machinery-card:hover {
    transform: translateY(-6px);
}

.why-choose-sugar-machinery-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 15px;
}

.why-choose-sugar-machinery-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: #fdf2f2;
    color: var(--dark-primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.why-choose-sugar-machinery-header h4 {
    margin: 0;
    font-size: 20px;
    color: var(--sky-blue-heading);
    font-weight: 600;
    line-height: 1.4;
}

.why-choose-sugar-machinery-card p {
    margin: 0;
    color: #666;
    line-height: 1.7;
    font-size: 15px;
}


@media (max-width: 991px) {

    .why-choose-sugar-machinery-top {
        flex-direction: column;
        gap: 35px;
    }

    .why-choose-sugar-machinery-content,
    .why-choose-sugar-machinery-image {
        width: 100%;
        min-width: 100%;
    }

    .why-choose-sugar-machinery-image img {
        width: 80%;
        margin: auto;
    }

    .why-choose-sugar-machinery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {

    .why-choose-sugar-machinery-section {
        padding: 50px 0;
    }

    .why-choose-sugar-machinery-desc {
        font-size: 15px;
        line-height: 1.7;
    }

    .why-choose-sugar-machinery-image img {
        width: 100%;
    }

    .why-choose-sugar-machinery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .why-choose-sugar-machinery-card {
        padding: 18px;
    }

    .why-choose-sugar-machinery-header {
        gap: 12px;
        margin-bottom: 12px;
    }

    .why-choose-sugar-machinery-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 17px;
    }

    .why-choose-sugar-machinery-header h4 {
        font-size: 17px;
    }

    .why-choose-sugar-machinery-card p {
        font-size: 14px;
        line-height: 1.6;
    }
}

/* -------------- key solution --------------- */
/* ------------ Key features --------------- */
.sugar-key-solutions-section {
    padding: 70px 0;
}

.sugar-key-solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.sugar-key-solutions-card {
    background: var(--white);
    padding: 25px 20px;
    border-radius: 16px;
    transition: 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(123, 123, 123, 0.068);
    box-shadow:
        0 5px 25px rgba(0, 0, 0, 0.05),
        inset 0 -10px 20px rgba(237, 39, 39, 0.105);
}

.sugar-key-solutions-card:hover {
    transform: translateY(-6px);
}

.sugar-key-solutions-icon {
    width: 65px;
    height: 65px;
    background: #fdf2f2;
    color: var(--dark-primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 22px;
    transition: 0.4s ease;
}

.sugar-key-solutions-card:hover .sugar-key-solutions-icon {
    background: var(--dark-primary-color);
    color: var(--white);
}

.sugar-key-solutions-card h3 {
    font-size: 22px;
    color: var(--secondary-light-blue);
    margin-bottom: 14px;
    line-height: 1.4;
    font-weight: 600;
}

.sugar-key-solutions-card p {
    margin: 0;
    color: #666;
    line-height: 1.8;
    font-size: 15px;
}

@media (max-width: 991px) {

    .sugar-key-solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sugar-key-solutions-card h3 {
        font-size: 20px;
    }
}

@media (max-width: 576px) {

    .sugar-key-solutions-section {
        padding: 50px 0;
    }

    .sugar-key-solutions-heading {
        margin-bottom: 35px;
    }

    .sugar-key-solutions-desc {
        font-size: 15px;
        line-height: 1.7;
    }

    .sugar-key-solutions-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .sugar-key-solutions-card {
        padding: 22px 18px;
        border-radius: 12px;
    }

    .sugar-key-solutions-icon {
        width: 55px;
        height: 55px;
        font-size: 20px;
        margin-bottom: 18px;
    }

    .sugar-key-solutions-card h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .sugar-key-solutions-card p {
        font-size: 14px;
        line-height: 1.7;
    }
}

/* ==========================================
 Earthwork Cut and Fill Calculations
============================================= */
/* --- Technical Expertise --- */
.competencies-section {
    padding: 60px 0;
}

.competency-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.competency-card {
    padding: 50px 40px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.card-title-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
}

.card-icon-earthwork {
    width: 50px;
    height: 50px;
    background: var(--dark-primary-color);
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.competency-card h3 {
    font-size: 1.6rem;
    color: var(--secondary-light-blue);
    margin-bottom: 20px;
    font-weight: 700;
}

.card-footer-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 5px;
    background: var(--dark-primary-color);
    transition: 0.5s;
}

.competency-card:hover .card-footer-line {
    width: 100%;
}


@media (max-width: 991px) {
    .competency-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .competency-card h3 {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

    .competency-card {
        padding: 35px 25px;
        width: 80%;
        margin: auto;
    }

    .competency-header h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 532px) {
    .competency-card {
        padding: 25px 15px;
        width: 100%;
    }

    .competency-card h3 {
        font-size: 1.3rem;
        margin-bottom: 5px;
    }

    .card-title-wrapper {
        gap: 10px;
    }
}

/* ---------------- EXPERIENCE TABLE SECTION ------------------ */
.experience-table-section {
    padding: 60px 0;
}

.experience-wrapper {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    border: 1px solid #eee;
}

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

.engineering-table thead tr {
    background-color: var(--secondary-color);
    color: var(--white);
}

.engineering-table th {
    padding: 22px 30px;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.engineering-table td {
    padding: 20px 25px;
    border-bottom: 1px solid #f0f0f0;
    line-height: 1.6;
    color: #444;
    font-size: 1rem;
}

.engineering-table tr:last-child td {
    border-bottom: none;
}

.col-30 {
    width: 30%;
}

.col-70 {
    width: 70%;
}

.element-name {
    background-color: #fafafa;
    color: var(--sky-blue-heading) !important;
    font-weight: 700;
    border-right: 2px solid #f0f0f0;
}

.engineering-table tbody tr:hover {
    background-color: #fff9f9;
}

.engineering-table tbody tr:hover .element-name {
    color: var(--dark-primary-color) !important;
}

@media (max-width: 768px) {
    .experience-table-section {
        padding: 40px 0;
    }

    .table-responsive {
        overflow-x: auto;
    }

    .engineering-table th,
    .engineering-table td {
        padding: 15px 20px;
        font-size: 0.9rem;
    }

    .col-30 {
        min-width: 150px;
    }

    .col-70 {
        min-width: 250px;
    }

    .table-header h2 {
        font-size: 1.7rem;
    }
}

/* ----------- earthwork image ------------------ */
.earthwork-img {
    display: flex;
    gap: 30px;
    padding: 60px 0;
    justify-content: center;
    width: 80%;
    margin: auto;
}

.img-wrapper {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.earthwork-img img {
    width: 100%;
    height: 400px;
    object-fit: contain;
    background-color: var(--white);
    display: block;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.earthwork-img div,
.competency-card {
    transition: all 0.3s ease-in-out;
}

.earthwork-img div:hover,
.competency-card:hover {
    box-shadow: rgba(136, 25, 25, 0.15) 0px 10px 20px;
}

@media (max-width: 991px) {
    .earthwork-img {
        flex-direction: column;
        gap: 20px;
        padding: 40px 20px;
        width: 100%;
    }

    .earthwork-img img {
        max-height: 200px;
        width: 100%;
    }
}

/* statc section style start */
.stats-section {
    padding: 60px 0;
    background-color: var(--secondary-color);
}

.stat-card {
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 25px 15px;
    background: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 130px;
}

.stat-card:hover {
    box-shadow: rgba(195, 195, 196, 0.434) 0px 7px 29px 0px;
}

.stat-icon-box {
    font-size: 35px;
    color: var(--primary-color);
    margin-right: 15px;
    flex-shrink: 0;
}

.stat-content {
    position: relative;
}

.stat-number {
    display: inline-block;
    font-size: 38px;
    font-weight: 800;
    color: var(--secondary-color);
    margin: 0;
    line-height: 1;
}

.plus {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-left: 2px;
    text-align: center;
}

.stat-text {
    font-size: 14px;
    color: #555;
    margin: 5px 0 0 0;
    font-weight: 600;
    text-transform: capitalize;
}

.stat-text small {
    font-size: 11px;
    text-transform: none;
    color: #888;
}

@media (max-width: 768px) {
    .stat-card {
        height: 100px;
    }
}


/* Fabrication services section style start */
.industrial-fans-section {
    padding: 60px 0;
}

.fan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-bottom: 30px;
}

.fan-card {
    background: var(--white);
    padding: 25px 30px;
    border-radius: 20px;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
    border: 1px solid #ececec;
    box-shadow: rgba(111, 101, 100, 0.2) 0px 7px 29px 0px;
}

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

.fan-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.fan-card:hover .fan-icon {
    box-shadow: rgba(255, 35, 35, 0.486) 0px 2px 10px 0px;
}

.fan-icon i {
    color: var(--white);
    font-size: 24px;
}

.fan-card h3 {
    font-size: 28px;
    margin-bottom: 18px;
    color: var(--secondary-light-blue);
}

.fan-card p {
    color: #666;
    line-height: 1.8;
}


@media(max-width:991px) {

    .fan-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .fan-card {
        padding: 30px;
    }
}

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

    .industrial-fans-section {
        padding: 70px 0;
    }

    .fan-card {
        padding: 10px 15px;
    }

    .fan-card h3 {
        font-size: 24px;
    }

    .fan-icon {
        width: 50px;
        height: 50px;
    }

    .fan-icon i {
        font-size: 24px;
    }
}

/* ====================
Fabrication
======================= */

.fabrication-rav-section {
    padding: 60px 0;
}

.fabrication-rav-item {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
    width: 90%;
    margin: auto;
    padding: 35px;
}

.fabrication-rav-item-metallic {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
    width: 100%;
    margin: auto;
    padding: 35px;
}

.fabrication-rav-item:last-child {
    margin-bottom: 0;
}

.fabrication-rav-item.reverse,
.fabrication-rav-item-metallic.reverse {
    flex-direction: row-reverse;
}

.fabrication-rav-content {
    flex: 1;
}


.fabrication-rav-content p {
    font-size: 16px;
    line-height: 1.65;
    color: #333333;
    text-align: justify;
}

.fabrication-rav-content p:last-child {
    margin-bottom: 0;
}

.fabrication-rav-images-grid {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rav-img-box {
    width: 90%;
    margin: auto;
    object-fit: contain;
}

.rav-img-box img {
    width: 100%;
    height: 250px;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: block;
    transition: transform 0.7s ease;
}

.rav-img-box-metallic img {
    width: 100%;
    height: 300px;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: block;
    transition: transform 0.7s ease;
}

.boiler-desing-img-box {
    width: 90%;
    margin: auto;
    object-fit: contain;
}

.boiler-desing-img-box img {
    width: 100%;
    height: 320px;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: block;
    transition: transform 0.7s ease;
}

.rav-img-box img:hover,
.boiler-desing-img-box img:hover {
    transform: scale(1.08);
    box-shadow: rgba(150, 1, 1, 0.269) 0px 3px 8px;
}

@media (max-width: 991px) {
    .fabrication-rav-section {
        padding: 40px 0 0;
    }

    .fabrication-rav-item,
    .fabrication-rav-item-metallic {
        padding: 5px;
        width: 100%;
    }

    .fabrication-rav-item,
    .fabrication-rav-item.reverse {
        flex-direction: column;
        gap: 35px;
        margin-bottom: 20px;
    }

    .fabrication-rav-item-metallic,
    .fabrication-rav-item-metallic.reverse {
        flex-direction: column;
        gap: 35px;
        margin-bottom: 20px;
    }

    .fabrication-rav-images-grid {
        width: 100%;
    }

    .rav-img-box img,
    .fabrication-rav-images-grid.single-image .rav-img-box img {
        height: 230px;
    }

    .fabrication-rav-content p {
        text-align: left;
    }
}

/* cyclone section */

.cyclone-feature-list {
    margin-top: 30px;
}

.cyclone-feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 500;
    color: #222;
}

.cyclone-feature-item i {
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 18px;
}

.cyclone-seperators-image {
    object-fit: contain;
    transition: all 0.3s ease;
    width: 80%;
    margin: auto;
}

.bag-filters-image {
    object-fit: contain;
    transition: all 0.3s ease;
    width: 100%;
    margin: auto;
}

.cyclone-seperators-image img {
    transition: transform 0.3s ease;
    border-radius: 8px;
    width: 100%;
}

.bag-filters-image img {
    transition: transform 0.3s ease;
    border-radius: 8px;
    width: 100%;
    height: 400px;
}

.cyclone-seperators-image img:hover,
.bag-filters-image img:hover {
    transform: scale(1.05);
    box-shadow: rgba(150, 1, 1, 0.269) 0px 3px 8px;
}

@media (max-width: 991px) {

    .cyclone-seperators-image,
    .bag-filters-image {
        width: 95%;
    }
}

/* bag filter section */
.bag-filters-image-box {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    background-color: var(--primary-color);
}

.bag-filters-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: 0.4s ease;
    border-radius: 8px;
    box-shadow: rgba(249, 175, 175, 0.25) 0px 13px 27px -5px, rgba(147, 182, 182, 0.3) 0px 8px 16px -8px;
}

.bag-filters-image-box:hover .bag-filters-img {
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .bag-filters-img {
        height: 260px;
    }
}

@media (max-width: 768px) {
    .bag-filters-image-box {
        width: 100%;
        overflow: hidden;
    }

    .bag-filters-img {
        height: 220px;
        width: 100%;
        object-fit: cover;
    }

}

@media (max-width: 480px) {
    .bag-filters-img {
        height: 180px;
    }
}

.baghouse-image-box {
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
}

.baghouse-image-box img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    transition: 0.4s ease;
    display: block;
}

.baghouse-image-box img:hover {
    transform: scale(1.03);
}

@media (max-width: 991px) {

    .baghouse-image-box img {
        height: 260px;
    }

}

@media (max-width: 768px) {
    .baghouse-image-box img {
        height: 230px;
    }
}

@media (max-width: 576px) {
    .baghouse-image-box img {
        height: 200px;
        border-radius: 12px;
    }
}

@media (max-width: 420px) {
    .baghouse-image-box img {
        height: 170px;
    }
}

/* metallic section */
.transmission-image-box-metallic {
    border: 2px solid transparent;
    border-radius: 12px;
    transition: all 0.3s ease;
    object-fit: contain;
}


.transmission-image-box-metallic img {
    width: 100%;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.transmission-image-box-metallic img:hover {
    transform: scale(1.05);
    box-shadow: rgba(150, 1, 1, 0.269) 0px 3px 8px;
}

@media (max-width: 767px) {
    .transmission-image-box-metallic img {
        height: 220px;
    }
}


/* Errror */
.error-page-container {
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
}
@media (max-width: 768px) {
  .error-page-container {
    padding: 50px 0;
  }
}

/* Loader */
.site-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.red-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #dc3545; 
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}