/* common btn */

@media screen and (max-width:1600px) {

    .cta-button {
        font-size: 13px;
        height: 100%;
    }

    .cta-button .icon {
        width: 26px;
        height: 26px;
    }
}


/* fixed item */






/* @media (max-width: 1600px) {
    .home-heading {
        font-size: 48px;
    }
}

.home-heading.common-h1{line-height: 1.3;} */
.cta-button .text {
    line-height: 1;
}

.cta-button {
    padding: 7px 7px 7px 20px;
}
















/* Sticky Name Badge Styles */
.sticky-name-badge {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    background: #6B509F;
    border-radius: 12px 0 0 12px;
    padding: 20px 20px;
    box-shadow: 0 10px 30px rgba(107, 80, 159, 0.3);
    transition: all 0.3s ease;
    max-width: 280px;
    min-width: 220px;
    display: none;
}

.sticky-name-badge:hover {
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
    transform: translateY(-50%) translateX(-5px);
}

.badge-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.avatar-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar-section svg {
    width: 19px;
    height: 19px;
    flex-shrink: 0;
}

.avatar-section .name {
    color: white;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    margin: 0;
}

.email-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.email-section svg {
    width: 20px;
    height: 16px;
    flex-shrink: 0;
}

.email-section .email {
    color: white;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    margin: 0;
    word-break: break-all;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .sticky-name-badge {
        right: -5px;
        padding: 15px 20px;
        min-width: 240px;
        max-width: 250px;
    }

    .avatar-section .name {
        font-size: 14px;
    }

    .email-section .email {
        font-size: 12px;
    }

    .avatar-section svg {
        width: 16px;
        height: 16px;
    }

    .email-section svg {
        width: 18px;
        height: 14px;
    }
}

@media (max-width: 480px) {
    .sticky-name-badge {
        display: none;
    }
}

/* Breadcrumb Navigation Styles */
.process-equipment-section+.container .breadcrumb-nav,
.breadcrumb-nav {
    margin: 30px 0;
}

.breadcrumb-nav .breadcrumb {
    display: flex;
    /* list-style: none;
    padding: 0;
    margin: 0;
    gap: 10px;
    align-items: center;
    line-height: 0; */
}

.breadcrumb-nav .breadcrumb-item a {
    color: #626265;
    text-decoration: none;
    font-weight: 400;
}

.breadcrumb-nav .breadcrumb-item a:hover {
    color: #0087C5;
}

.breadcrumb-nav .breadcrumb-item.active {
    color: #626265;
    font-weight: 700;
}

.breadcrumb-nav .breadcrumb li {
    display: flex;
    align-items: center;
    margin: 0 8px;
}

.breadcrumb-nav .breadcrumb li:first-child,
.breadcrumb-nav .breadcrumb li:last-child {
    margin: 0;
}

/* Process Equipment Section Styles */
.process-equipment-section {
    /* padding: 40px 0; */
    position: relative;
    overflow: hidden;
}

.process-equipment-container {
    background: linear-gradient(90deg, #01A88B -48.09%, #6B509F 100%);
    border-radius: 24px;
    padding: 60px;
    position: relative;
    color: white;
    overflow: hidden;
}

.process-equipment-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/division/background-wave.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.4;
    z-index: 1;
}

.process-equipment-container>* {
    position: relative;
    z-index: 2;
}

/* Content Wrapper */
.content-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

/* Left Content - Title Section */
.left-content {
    flex: 0 0 320px;
    max-width: 320px;
}

/* Middle Content - Description Section */
.middle-content {
    flex: 1;
    max-width: 800px;
    padding: 0 20px;
}

.industrial-precision {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.precision-text {
    font-size: 16px;
    font-weight: 500;
    color: white;
    opacity: 0.9;
}

.division-title {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.4;
    margin: 0 0 32px 0;
    color: white;
}

.description-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-description {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
    color: white;
}

.sub-description {
    font-size: 14px;
    line-height: 1.6;
    font-weight: 400;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.detailed-description {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

/* Right Content - Statistics */
.right-content {
    flex: 0 0 auto;
    min-width: 300px;
    display: flex;
    justify-content: flex-end;
}

.stats-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
    text-align: right;
}

.stat-item {
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    justify-content: flex-start;
    position: relative;
    padding-bottom: 20px;
    gap: 20px;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.stat-item::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 80px;
    height: 1px;
    background: #ECCC12;
}

.stat-number {
    font-size: 32px;
    font-weight: 500;
    line-height: 1;
    color: white;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.9);
    max-width: 300px;
    text-align: left;
}




/* Responsive Design */
@media (min-width: 1599px) {

    .main-description,
    .sub-description {
        font-size: 16px;
    }

    .stat-number {
        font-size: 40px;
    }

    .stat-label {
        font-size: 16px;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .process-equipment-container {
        padding: 50px 40px;
    }

    .content-wrapper {
        gap: 30px;
    }

    .left-content {
        flex: 0 0 250px;
        max-width: 250px;
    }

    .middle-content {
        max-width: 500px;
        padding: 0 15px;
    }

    .right-content {
        min-width: 240px;
    }

    .division-title {
        font-size: 42px;
    }
}

@media (max-width: 1024px) {
    .process-equipment-container {
        padding-top: 0;
    }


}

@media (max-width: 992px) {
    .process-equipment-container {
        padding: 40px 30px;
    }

    .content-wrapper {
        flex-direction: column;
        gap: 40px;
        align-items: flex-start;
    }

    .left-content {
        max-width: 100%;
        flex: none;
    }

    .middle-content {
        max-width: 100%;
        padding: 0;
    }

    .right-content {
        justify-content: center;
        align-self: center;
        min-width: auto;
        width: 100%;
    }

    .stats-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: baseline;
        text-align: center;
        gap: 30px;
        width: 100%;
    }

    .stats-container .stat-item:first-child {
        border-top: 0;
    }

    .stats-container .stat-item:first-child::before {
        display: none;
    }

    .stat-item::after {
        display: block !important;
    }

    .stat-number {
        font-size: 22px !important;
        margin-bottom: 0;
    }

    .process-equipment-container .content-wrapper {
        gap: 20px;
    }

    .process-equipment-section .division-title {
        margin-bottom: 10px;
        font-size: 28px;
    }


    .stat-item {
        align-items: center;
        padding-bottom: 0;
    }

    .stat-item:not(:last-child)::after {
        display: none;
    }

    .division-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .process-equipment-section {
        /* padding: 60px 0; */
        padding: 0 20px 40px;
    }

    .process-equipment-section .process-equipment-container {
        padding: 40px 20px;
        border-radius: 16px;
    }

    .breadcrumb-nav {
        margin-bottom: 30px;
        flex-wrap: wrap;
    }

    .content-wrapper {
        gap: 30px;
    }

    /* .left-content {
        margin-bottom: 10px;
    } */

    .division-title {
        font-size: 32px;
        margin-bottom: 0;
    }

    .middle-content {
        padding: 0;
    }

    .main-description {
        font-size: 18px;
        /* margin-bottom: 20px; */
    }

    .stats-container {
        flex-direction: column;
        gap: 30px;
        align-items: center;
        text-align: center;
    }

    .stat-item {
        align-items: center;
    }

    .stat-number {
        font-size: 36px;
        text-align: left;
    }

    .process-equipment-section .division-title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .process-equipment-container {
        padding: 30px 15px;
    }

    .division-title {
        font-size: 28px;
    }

    .main-description {
        font-size: 16px;
    }

    .sub-description,
    .detailed-description {
        font-size: 14px;
    }

    .stat-number {
        font-size: 32px;
    }

    .breadcrumb-nav {
        font-size: 12px;
    }

    .industrial-precision {
        margin-bottom: 20px;
    }

    .precision-text {
        font-size: 14px;
    }

    .process-equipment-section .division-title {
        font-size: 22px;
    }
}

/* Technologies Section Styles */
.technologies-section {
    position: relative;
}

.technologies-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 60px;
    background: #fff;
    border-radius: 20px;
    position: relative;
    z-index: 0;
}

.technologies-container::before {
    content: "";
    display: block;
    width: 75%;
    margin: auto;
    height: 100%;
    /* background-image: url("https://isgec.lyxelandflamingotech.in/wp-content/themes/ISGEC/assets/images/division/tech-bg-img.png"); */
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.tech-left-content,
.d-desk {
    position: relative;
    z-index: 3;
}

/* Left Content */
.tech-left-content {
    width: 100%;
}

.tech-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.tech-label-text {
    font-size: 16px;
    font-weight: 500;
    color: #C02121;
}

.tech-title {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.3;
    color: #3B3B3B;
    margin: 0;
}

/* Center Content - Image Slider */
/* .tech-center-content {
    flex: 0 0 400px;
    display: flex;
    justify-content: center;
    align-items: center;
} */

.tech-image-slider {
    position: relative;
    width: 442px;
    height: 442px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-radius: 24px;
}



.tech-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.tech-slide.active {
    opacity: 1;
}

.tech-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

/* Right Content - Technology List */
.tech-right-content {
    flex: 1;
    max-width: 400px;
}

.tech-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.tech-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.tech-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 9px;
    top: 20px;
    width: 2px;
    height: calc(100% + 20px);
    background-image: repeating-linear-gradient(to bottom,
            #8C43A5 0px,
            #8C43A5 4px,
            transparent 4px,
            transparent 8px);
    z-index: 1;
}

.tech-item.active:not(:last-child)::after {
    background-image: repeating-linear-gradient(to bottom,
            #8C43A5 0px,
            #8C43A5 4px,
            transparent 4px,
            transparent 8px);
}

.tech-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #8C43A5;
    background: #fff;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.tech-dot.active {
    background: #8C43A5;
    border-color: #8C43A5;
    width: 20px;
    height: 20px;
}

.tech-content {
    flex: 1;
}

.tech-name {
    font-size: 16px;
    font-weight: 600;
    color: #3B3B3B;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.tech-item.active .tech-name {
    /* color: #8C43A5; */
    font-size: 18px;
}

.tech-description {
    font-size: 12px;
    line-height: 1.5;
    color: #626265;
    margin: 0;
}

.tech-item.active .tech-description {
    color: #3B3B3B;
}

/* Hover Effects */
.tech-item:hover .tech-dot {
    border-color: #8C43A5;
    transform: scale(1.1);
}

/* .tech-item:hover .tech-name {
    color: #8C43A5;
} */

/* Responsive Design for Technologies Section */
@media (min-width: 1900px) {
    .tech-title {
        font-size: 36px;
    }
}

@media (min-width: 1599px) {
    .tech-image-slider {
        width: 542px;
        height: 542px;
    }

    .tech-name {
        font-size: 18px;
    }

    .tech-item.active .tech-name {
        font-size: 20px;
    }

    .tech-description {
        font-size: 14px;
    }
}

@media (max-width: 1399px) {
    .tech-title {
        font-size: 26px;
    }

    .tech-title br {
        display: none;
    }

    .tech-image-slider {
        width: 300px;
        height: 300px;
    }

    .tech-list {
        gap: 18px;
    }
}

@media (max-width: 1200px) {
    .technologies-container {
        gap: 20px;
        padding: 40px;
    }

    .tech-left-content {
        flex: 0 0 280px;
        max-width: 280px;
    }

    .tech-image-slider {
        width: 280px;
        height: 280px;
    }

    .tech-title {
        font-size: 22px;
    }

    .technologies-container {
        display: flex;
        flex-wrap: wrap;
    }


}

@media (max-width: 992px) {
    .technologies-section {
        padding: 60px 0;
    }

    .technologies-container {
        /* flex-direction: column; */
        gap: 50px;
    }

    .tech-left-content {
        max-width: 100%;
        flex: none;
    }

    .tech-center-content {
        flex: none;
    }

    .tech-right-content {
        max-width: 100%;
    }

    .tech-list {
        max-width: 600px;
        margin: 0 auto;
    }

    .tech-item {
        text-align: left;
    }

    .tech-label {
        margin-bottom: 12px;
    }
}

@media (max-width: 768px) {
    .technologies-section {
        padding: 40px 20px;
    }

    .technologies-section .container {
        background-color: #fff;
        border-radius: 20px;
    }

    .technologies-container {
        padding: 20px;
        border-radius: 0;
        background: transparent;
        flex-direction: column;
    }

    .technologies-container.d-mobile {
        gap: 20px;
        padding: 0px 20px 20px;
    }

    .technologies-container::before {
        display: none;
    }

    .tech-image-slider {
        width: 250px;
        height: 250px;
    }

    .tech-title {
        font-size: 24px;
    }

    .tech-list {
        gap: 24px;
    }

    .tech-item:not(:last-child)::after {
        height: calc(100% + 4px);
    }

    .Technologies-item {
        background: #fff;
        padding-right: 20px;
    }

    .Technologies-item:last-child {
        padding-right: 0px;
    }

    .Technologies-item img {
        width: 100%;
        border-radius: 8px;
        margin-bottom: 20px;
        height: auto;
    }

    .Technologies-item h3 {
        font-size: 16px;
        margin-bottom: 10px;
        font-weight: 600;
        color: #3B3B3B;
    }

    .Technologies-item p {
        font-size: 14px;
        color: #515151;
    }

}

@media (max-width: 480px) {
    .tech-image-slider {
        width: 220px;
        height: 220px;
    }

    .tech-title {
        font-size: 22px;
        line-height: 1.4;
    }

    .tech-name {
        font-size: 16px;
    }

    .tech-description {
        font-size: 13px;
    }
}

/* Product Portfolio Section */
.product-portfolio-section {
    padding: 80px 0;
    background: linear-gradient(90deg, #01A88B -28.96%, #8D43A6 100%);
    position: relative;
}

.portfolio-container.fixed2-top-section {
    position: relative;
    padding-top: 0;
    padding-bottom: 0;
}

.fixed-top-section .legacy-deatils p {}

.portfolio-container.fixed-top-section .legacy-deatils p,
.portfolio-container.fixed-top-section .legacy-deatils h3 {
    color: #fff;
}

.portfolio-header {
    margin-bottom: 50px;
}

.portfolio-container.fixed-top-section .item-top {
    grid-template-columns: 1fr;
}

.portfolio-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.portfolio-label-text {
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

.portfolio-label svg {
    width: 12px;
    height: 12px;
}

.portfolio-title {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1.2;
}

.portfolio-cards {
    display: flex;
    gap: 20px;
    height: 620px;
    border-radius: 16px;
    overflow: hidden;
}

.portfolio-card.active .card-content .content-left .bnr-btn {
    margin-top: 30px;
}

.product-portfolio-section .fixed-top-section .item-bottom {
    margin-top: 50px;
}

.portfolio-card {
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    position: relative;
    flex: 0 0 100px;
    border-right: 1px solid rgba(139, 92, 246, 0.08);
    overflow: hidden;
}


.portfolio-card:last-child {
    border-right: none;
}

.portfolio-card:hover:not(.active) {
    background: rgba(139, 92, 246, 0.02);
}

.portfolio-card.active {
    flex: 1;

}

.card-header {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    padding: 20px 8px;
}

.portfolio-card:not(.active) .card-header {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    background: url('../images/division/transparent.png')no-repeat center;
    background-size: cover;
    border-radius: 16px;

}

.portfolio-card.active .card-header {
    display: none;
}

.card-title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    text-align: center;
    line-height: 1.4;
    letter-spacing: 0.3px;
    white-space: nowrap;
    transform: rotate(180deg);
}

/* .portfolio-card:not(.active):hover .card-title {
    color: #8C43A5;
} */

.card-content {
    display: none;
    height: 100%;
}

.portfolio-card.active .card-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    padding: 40px;
    gap: 40px;
    align-items: center;
    height: 100%;
    box-sizing: border-box;
    background: url('../images/division/transparent.png')no-repeat center;
    background-size: cover;
    border-radius: 16px;
}

.content-left {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.content-left .isgecsmheading {
    font-weight: 600;
    color: #fff;
    border-bottom: 1px solid #FFFFFF33;
    position: relative;
    padding-bottom: 18px;
}

.content-left .isgecsmheading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 50px;
    height: 1px;
    background: #ECCC12;
}

.card-description {
    font-size: 12px;
    line-height: 1.6;
    font-weight: 400;
    color: #fff;
    margin-bottom: 24px;
    margin-top: 24px;
    text-align: left;
}

.card-features {
    margin-bottom: 24px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
}

.feature-bullet {
    color: #4DB5A5;
    font-weight: bold;
    margin-top: 2px;
    font-size: 12px;
}

.feature-text {
    font-size: 14px;
    color: #fff;
    line-height: 1.4;
    /* position: absolute; */
    z-index: 123;
    left: 20px;
    bottom: 40px;

}

.featured-slider-box .feature-text {
    position: absolute;
    z-index: 123;
    left: 20px;
    bottom: 40px;
}

.materials-section {
    margin-bottom: 30px;
}

.materials-title {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 12px 0;
}

.materials-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.material-tag {
    background: #0000001A;
    color: #fff;
    padding: 10px 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 400;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bnr-btn .transparent-btn {
    font-size: 13px;
}


.card-action {
    margin-top: auto;
}

/* .download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #4DB5A5;
    color: white;
    padding: 10px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
} */

/* .download-btn:hover {
    background: #3a9688;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(77, 181, 165, 0.3);
} */

.btn-icon {
    display: flex;
    align-items: center;
}

.btn-icon svg {
    width: 12px;
    height: 12px;
}

.content-right {
    flex: 0 0 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.card-image:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card-image:hover img {
    transform: scale(1.05);
}

.read-more-btn {
    display: none;
}

.more-content {
    display: none;
}


/* Responsive Design for Product Portfolio */
@media (min-width: 1599px) {
    .content-left .isgecsmheading {}

    .card-description {
        font-size: 14px;
    }

    .card-title {
        font-size: 24px;
    }

    .portfolio-card {
        flex: 0 0 140px;
    }
}

@media (max-width: 1399px) {
    .portfolio-card.active .card-content {
        padding: 20px;
    }

    .card-description {
        margin: 10px 0;
    }

    .content-left .isgecsmheading {
        padding-bottom: 10px;
        font-size: 18px;
    }

    .card-features {
        margin-bottom: 10px;
    }

    .materials-section {
        margin-bottom: 14px;
    }

    .cta-button .icon {
        width: 32px;
        height: 32px;
    }

    .content-right {
        flex: 0 0 200px;
    }
}

@media (max-width: 1024px) {
    .portfolio-cards {
        flex-direction: column;
        height: auto;
        gap: 1px;
    }

    .portfolio-cards .slick-track,
    .portfolio-cards .slick-list {
        display: flex;
    }

    .portfolio-card {
        flex: none;
        min-height: 60px;
    }

    .portfolio-card:not(.active) .card-header {
        writing-mode: horizontal-tb;
        text-orientation: initial;
        padding: 15px 20px;
    }

    .portfolio-card.active .card-content {
        flex-direction: column;
        gap: 20px;
        padding: 30px;
    }

    .content-right {
        flex: none;
        order: -1;
    }

    .card-image {
        height: 300px;
        width: 100%;
        margin-bottom: 20px;
        box-shadow: none;
    }

    .portfolio-card .card-image {
        width: 200px !important;
    }

    .card-image img {
        border-radius: 8px;
    }

    .portfolio-card.active {
        margin-right: 20px;
    }

    .product-portfolio-section {
        padding: 40px;
    }

    .read-more-btn {
        color: #fff;
        font-weight: 600;
        font-size: 14px;
        margin-bottom: 20px;
        display: block;
    }

    .card-description {
        margin-bottom: 5px;
    }

    .portfolio-card.active .card-content {
        padding: 20px 20px 20px;
    }

    .desktop-more {
        display: none;
    }

    .portfolio-card.active .card-content {
        gap: 0 !important;
    }

    .portfolio-slider {
        padding-bottom: 30px;
    }

    .portfolio-card.active .card-content {
        display: flex;
    }

    .portfolio-container.fixed-top-section .item-top {
        grid-template-columns: 1fr;
    }

    .fixed-top-section .legacy-deatils p {
        width: auto;
    }

    .more-content .bnr-btn .transparent-btn {
        width: 180px;
    }

    .portfolio-container.fixed2-top-section {
        padding: 0;
    }

    .common-slider-progress {
        position: relative;
        height: 2px;
        background: #FFFFFF1A;
        margin-top: 10px;
        width: 60%;
        overflow: hidden;
        margin-top: -30px;
        display: none;
    }

    .common-slider-progress-bar {
        height: 100%;
        width: 0%;
        background: #fff;
        transition: width 0.4s ease;
    }

    .slick-next:before {
        background: url(../images/icons/arrow-right.svg) no-repeat center;
        width: 40px;
        height: 40px;
        padding: 2px;
        display: block;
    }

    .slick-prev,
    .slick-next {
        bottom: -10px;
    }

    .slick-prev:before {
        background: url(../images/icons/arrow-right.svg) no-repeat center;
        width: 40px;
        height: 40px;
        padding: 2px;
        display: block;
        transform: rotate(180deg);
    }
}

@media (max-width: 768px) {
    .product-portfolio-section {
        padding: 50px 20px;
    }

    .portfolio-title {
        font-size: 28px;
    }

    .portfolio-cards {
        /* height: auto; */
        border-radius: 12px;
    }

    .portfolio-card.active .card-content {
        padding: 14px;
    }

    .card-description {
        font-size: 13px;
    }

    /* .card-description {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        text-overflow: ellipsis;
        overflow: hidden;
    } */


    .card-image {
        height: 160px;
    }

    .bnr-btn .transparent-btn {
        justify-content: flex-start;
        /* width: 200px; */
    }

    .portfolio-container.fixed-top-section .item-top {
        grid-template-columns: 1fr;
    }

    .read-more-btn {
        font-size: 14px;
        font-weight: 600;
        text-decoration: underline;
        padding-bottom: 3px;
    }

    .common-slider-progress {
        display: block;
    }

    .product-portfolio-section.common-section .fixed-top-section {
        padding: 0;
        margin: 0;
        width: 100%;
    }

    .portfolio-card .card-image {
        width: 100% !important;
    }

    .portfolio-card .card-image img {
        height: 350px;
        object-fit: cover;
    }

    .portfolio-container.fixed-top-section .legacy-deatils p {
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {

    .portfolio-title {
        font-size: 24px;
    }

    .portfolio-container {
        padding: 0 15px;
    }

    .portfolio-card.active .card-content {
        padding: 10px 10px 40px;
        gap: 15px;
    }

    .card-description {
        font-size: 12px;

    }

    .materials-section {
        margin-bottom: 25px;
    }

    .card-image {
        height: 140px;
    }

    .cta-button .text {
        font-size: 12px;
        margin-right: 9px;
    }

    .portfolio-card .card-image img {
        height: 260px;
    }

    .portfolio-slider {
        padding-bottom: 0px;
    }


}

@media (max-width: 375px) {
    /* .portfolio-card.active{margin-right: 0;} */
}

/* Joint Ventures Stack Slider Section */

.joint-ventures-section .fixed-top-section .item-bottom {
    margin-top: 50px;
}

.joint-ventures-section.manu-fac .fixed-top-section .item-top .legacy-deatils p {
    margin-bottom: 10px !important;
}

.joint-ventures-section {
    padding: 80px 0;
    background: #f8f9fa;
    overflow: hidden;
}

.ventures-container {
    /* max-width: 1200px;
    margin: 0 auto; */
    position: relative;
}

.ventures-header {
    margin-bottom: 50px;
    text-align: center;
}

.ventures-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.ventures-label-text {
    background: #C02121;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ventures-label svg {
    width: 12px;
    height: 12px;
}

.ventures-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin: 0;
    line-height: 1.2;
}

.ventures-slider-container {
    position: relative;
    display: flex;
    align-items: center;
    /* gap: 60px; */
    justify-content: center;
    padding-top: 50px;
}

.ventures-slider-wrapper {
    flex: 1;
    position: relative;
    height: 520px;
    max-width: 1000px;
    z-index: 12;
}

.ventures-slider-wrapper::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translate(-50%, 0);
    background: #8C43A5;
    width: 90%;
    height: 100%;
    z-index: 1;
    border-radius: 24px;

}

.ventures-slider-wrapper::after {
    content: '';
    position: absolute;
    top: 0px;
    left: 0%;

    background: #fff;
    width: 100%;
    height: 100%;
    z-index: 1;
    border-radius: 24px;

}

/* Stack Container */
.venture-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s ease;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.venture-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 3;
}

.venture-slide.active:last-child .venture-title::after {
    width: 100px;
}

.stack-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

/* Stack Cards */
.stack-card-1 {
    position: absolute;
    top: -20px;
    left: 20px;
    width: 100%;
    height: 100%;
    background: #8C43A5;
    border-radius: 16px;
    z-index: 1;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.25);
    transition: all 0.4s ease;
}

.stack-card-2 {
    position: absolute;
    top: -10px;
    left: 10px;
    width: 100%;
    height: 100%;
    background: #6366F1;
    border-radius: 16px;
    z-index: 2;
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.25);
    transition: all 0.4s ease;
}

.stack-card-3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    z-index: 3;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-background {
    position: relative;
    overflow: hidden;
}

.slide-background::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0) 42.76%,
            rgba(0, 0, 0, 0.7) 97.92%);
    pointer-events: none;
}


.slide-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(59, 130, 246, 0.85) 0%,
            rgba(30, 64, 175, 0.95) 100%);
    backdrop-filter: blur(2px);
    z-index: 2;
}

.slide-content {
    position: absolute;
    z-index: 3;
    padding: 40px 35px;
    display: flex;
    align-items: flex-start;
    color: white;
    justify-content: space-between;
    bottom: 0;
    width: 100%;
}

.venture-title {
    font-size: 24px;
    font-weight: 600;
    color: white;
    margin: 0 0 16px 0;
    line-height: 1.3;
    position: relative;
    padding-bottom: 20px;
}

.venture-title::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 2px;
    background: #FFFFFF33;
}

.venture-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #ECCC12;
}

.venture-description {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    max-width: 400px;
}

.slide-action {
    margin-top: auto;
}

.discover-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.btn-icon {
    display: flex;
    align-items: center;
}

.btn-icon svg {
    width: 14px;
    height: 14px;
}

/* Navigation Dots */
.ventures-navigation {
    display: flex;
    flex-direction: column;
    gap: 65px;
    align-items: center;
    position: absolute;
    top: 50%;
    right: 140px;
}

.nav-dot::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 20px;
    transform: translate(-50%, 0);
    width: 2px;
    height: calc(100% + 40px);
    background-image: repeating-linear-gradient(to bottom, #D1D5DB 0px, #D1D5DB 4px, transparent 4px, transparent 8px);
    z-index: 12;
}

.nav-dot.active::after {
    top: 34px;
}

.nav-dot.active::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background: #8C43A533;
    z-index: 1;
    border-radius: 50%;
}

.nav-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid #8C43A5;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 12;
}

.nav-dot:last-child::after {
    display: none;
}

.nav-dot.active {
    background: #8C43A5;
    border-color: #8C43A5;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
    width: 36px;
    height: 36px;
    position: relative;
    z-index: 123;
}

.dot-number {
    font-size: 0;
    font-weight: 600;
    color: #000;
}

.nav-dot.active .dot-number {
    color: white;
    font-size: 14px;
    font-weight: 600;
}

.venture-box .slide-action .bnr-btn a {
    background: transparent;
    color: #fff;
}

/* Responsive Design */

@media screen and (max-width:1600px) {

    .venture-title {
        font-size: 22px;
    }

    .ventures-navigation {
        right: 100px;
    }
}

@media screen and (max-width:1399px) {

    .ventures-navigation {
        right: 100px;
    }
}

@media (max-width: 1024px) {
    .joint-ventures-section {
        padding-left: 40px;
        padding-right: 40px;
    }

    .ventures-slider-container {
        /* flex-direction: column; */
        gap: 25px;
        max-width: 100%;
        display: block;
    }

    .ventures-navigation {
        flex-direction: row;
        justify-content: center;
        gap: 40px;
        margin-top: 30px;
        position: initial;
    }

    .nav-dot::after {
        display: none;
        left: 50%;
        top: 50% !important;
        transform: translateX(39%) rotate(90deg);
        background-image: repeating-linear-gradient(to bottom, #D1D5DB 0px, #D1D5DB 4px, transparent 4px, transparent 8px);
        z-index: 12;
    }

    .ventures-slider-wrapper {
        height: 300px;
        max-width: 100% !important;
    }

    .slide-content {
        padding: 35px 30px;
    }

    .venture-title {
        font-size: 22px;
    }

    .venture-description {
        display: none;
    }

    .slide-action {
        display: none;
    }

    .slide-content {
        justify-content: center;
    }

    .venture-title::before {
        display: none;
    }

    .venture-title::after {
        width: 68px;
        left: 50%;
        transform: translate(-50%, 0);
    }

    .ventures-slider-wrapper {
        height: 432px;
    }
}

@media (max-width: 768px) {
    .joint-ventures-section {
        padding: 50px 20px;
    }

    .ventures-slider-wrapper::before {
        top: -20px;
        border-radius: 16px;
    }

    .venture-slide {
        border-radius: 16px;
    }

    .ventures-slider-container {
        padding-top: 20px;
    }

    .ventures-title {
        font-size: 28px;
    }

    .slide-content {
        padding: 30px 25px;
    }

    .venture-title {
        font-size: 20px;
    }

    .venture-description {
        font-size: 13px;
    }

    .nav-dot {
        width: 32px;
        height: 32px;
    }

    .dot-number {
        font-size: 12px;
    }

    .ventures-slider-wrapper {
        height: 380px !important;
    }
}


@media (max-width: 480px) {
    /* .joint-ventures-section {
        padding: 50px 0;
    } */

    .ventures-container {
        padding: 0 15px;
    }

    .ventures-title {
        font-size: 24px;
    }

    .ventures-slider-container {
        gap: 18px;
    }

    .slide-content {
        padding: 25px 20px;
    }

    .venture-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .venture-description {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .nav-dot {
        width: 30px;
        height: 30px;
    }

    .dot-number {
        font-size: 11px;
    }

    .ventures-slider-wrapper {
        height: 320px !important;
    }
}

/*Mystry Metarial */
.mystry-wrapper {
    background: linear-gradient(94.52deg, #6B4F9F 5.77%, #01A88B 165.57%);
}

.mystry-wrapper .sustainabilty-wraper {
    padding: 0 40px;
    padding-right: 20px;
}

.mystry-wrapper .fixed-top-section .legacy-deatils p {
    color: #fff;
    white-space: nowrap;
    margin-bottom: 0;
}

.top_section_box_left {
    align-items: center;
}

.mystry-wrapper .fixed-top-section .legacy-deatils h3 {
    color: #fff;
    line-height: 1.4;
}

.mystry-wrapper .tab-menu-list ul li a {
    color: #fff;
}

.mystry-wrapper .tab-menu-list ul li a.active {
    border-color: #ECCC12;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.mystry-wrapper .sustainbility_colm {
    width: 100%;
}

.mystry-wrapper .tab-output-box {
    padding: 0;
}

/* .mystry-wrapper .tab-output-box .sustainbility-colm-inner:nth-child(even) {
    margin-top: 200px
} */

.sustainbility_colm .slick-track{display: flex;}
.sustainbility_colm .sustainbility-colm-inner{height: auto;}
.mystry-wrapper .box_sustainibility {
    background: #FFFFFF0A;
    border-radius: 24px;
    border: 1px solid #FFFFFF1C
}

.mystry-wrapper .box_sustainibility h5 {
    color: #fff;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mystry-wrapper .box_sustainibility p {
    color: #E1E1E1;
    font-size: 14px;
}

.mystry-wrapper .box_sustainibility h5 span {
    color: #FFFFFF6B;
    padding-left: 20px;
}

.mystry-wrapper .name_link_s_colm {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: nowrap;
}

.mystry-wrapper .name_link_s_colm a {
    width: 100%;
    font-size: 12px;
    font-weight: 400;
    color: #ECCC12;
}

.mystry-wrapper .name_link_s_colm {
    width: 100%;
}

.mystry-wrapper .box_sustainibility {
    padding: 34px 30px 20px;
    margin: 0 20px;
}

.mystry-wrapper .name_link_s_colm {
    padding: 0 10px;
}

.mystry-wrapper .tab-wraper-box {
    padding-left: 50px;
    padding-top: 40px;
}

.mystry-wrapper {
    padding-bottom: 80px
}

.mystry-wrapper::before {
    content: '';
    background: url(../images/division/EQUIPMENTS.png) no-repeat center;
    background-size: contain;
    width: 90%;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    display: none;
}

.section_sustainabilty .box_sustainibility h5:after {
    background: #ECCC12;
}


@media (min-width: 1599px) {
    .mystry-wrapper .box_sustainibility h5 {
        font-size: 18px;
    }

    .mystry-wrapper .box_sustainibility p {
        font-size: 16px;
    }

    /* .mystry-wrapper .tab-output-box .sustainbility-colm-inner:nth-child(even) {
        margin-top: 240px
    } */

    .mystry-wrapper {
        padding-bottom: 120px
    }

    .mystry-wrapper .tab-wraper-box {
        padding-top: 40px;
        padding-left: 60px;
    }
}

@media (min-width: 1280px) {
    .mystry-wrapper .sustainbility-colm-inner .btn_box_common {
        bottom: 40px;
    }
}

@media (max-width: 1199px) {
    .mystry-wrapper .sustainbility-row .sustainbility_colm:nth-child(1) {
        display: block;
    }

    .mystry-wrapper .tab-wraper-box {
        padding-left: 0;
    }
}

@media (max-width: 1024px) {
    .mystry-wrapper .sustainabilty-wraper {
        padding: 0 40px;
    }

    .mystry-wrapper .tab-wraper-box {
        padding: 0;
    }

    .mystry-wrapper::before {
        display: none;
    }

    .mystry-wrapper .common-slider-progress {
        margin-top: 50px;
    }

    .mystry-wrapper .slick-prev,
    .mystry-wrapper .slick-next {
        bottom: -90px
    }

    .mystry-wrapper .box_sustainibility {
        margin: 0 15px;
        padding: 25px 24px 50px;
    }

    .mystry-wrapper .box_sustainibility h5 {
        font-size: 14px;
    }

    .mystry-wrapper .box_sustainibility p {
        font-size: 13px;
    }

}

@media (max-width: 767px) {
    .mystry-wrapper {
        padding-left: 20px;
        padding-right: 20px;
    }

    .mystry-wrapper .sustainabilty-wraper {
        padding: 0;
    }

    .mystry-wrapper .tab-output-box .sustainbility-colm-inner:nth-child(even) {
        margin-top: 0;
    }

    .mystry-wrapper .name_link_s_colm {
        padding: 0;
    }

    .mystry-wrapper .box_sustainibility {
        padding: 20px 20px 40px;
    }

    .mystry-wrapper .common-slider-progress {
        margin-top: 40px;
    }

    .mystry-wrapper {
        padding-bottom: 60px;
    }

    .mystry-wrapper .slick-prev,
    .mystry-wrapper .slick-next {
        bottom: -80px;
    }

    .mystry-wrapper .box_sustainibility {
        margin: 0;
    }
}

/* Industries We Serve Section */
.industries-section {
    background: #fff;
}

.industries-section.common-section .fixed2-top-section {
    padding-bottom: 0;
}

/* .industries-section .fixed2-top-section{padding: 0;} */
.industries-section .fixed2-top-section .item-bottom {
    margin-top: 80px;
}

.industries-section .fixed-top-section .legacy-deatils p {
    width: max-content;
}

.industries-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
}

.industries-tabs {
    min-width: 280px;
    position: relative;
    padding-top: 0px;
    height: auto;
}

.vertical-line {
    position: absolute;
    left: 0px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #8C43A5;
    border-radius: 2px;
    z-index: 0;
    /* height: auto; */
    margin-top: 9px;
}

.tab-list {
    display: flex;
    flex-direction: column;
    gap: 100px;
    position: relative;
    z-index: 1;
    justify-content: space-between;
    height: auto;
}

.industry-tab {
    position: relative;
    background: none;
    border: none;
    outline: none;
    font-size: 20px;
    font-weight: 600;
    color: #222;
    padding: 0 0 0 70px;
    cursor: pointer;
    transition: color 0.3s;
    min-height: 38px;
    display: flex;
    align-items: center;
    margin-top: -20px;
}

.industry-tab:first-child {
    margin: 0;
}

.industry-tab:first-child::after {
    top: 9px;
}

.industry-tab:last-child::after {
    top: auto;
    bottom: 4px;
}

/* .industry-tab:last-child{ padding-top:80px;} */
.industry-tab.active:last-child::before {
    top: 9px;
}

.industry-tab:not(.active) {
    font-size: 16px;
    font-weight: 400;
    color: #888;
    min-height: inherit;
}

.industry-tab.active {
    color: #242424;
    font-size: 20px;
    font-weight: 700;
    width: 100%;
}

.industry-tab.active::before {
    content: '';
    position: absolute;
    left: 0px;
    top: 20px;
    width: 50px;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    height: 3px;
    background: #8C43A5;
    z-index: 2;
}

.industry-tab::after {
    content: '------';
    position: absolute;
    left: 0px;
    top: 54%;
    transform: translate(0, -50%);
    font-size: 18px;
    color: #8C43A5;
    z-index: 2;
    line-height: 0;
}

.industries-content {
    flex: 1 1 0;
    min-width: 320px;
    max-width: 320px;
    margin-left: 10px;
    margin-right: 10px;
    padding-top: 0px;
}

.industry-desc {
    display: none;
    animation: fadeInIndustry 0.5s;
}

.industry-desc.active {
    display: block;
}

@keyframes fadeInIndustry {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.industry-title {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.industries-content p {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    margin: 0;
}

.industries-images {
    min-width: 320px;
    height: 476px;
    position: relative;
}

.industry-image-stack {
    position: relative;
    /* width: 340px;
  height: 426px; */
}

.industry-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    opacity: 0;
    z-index: 1;
    transform: translateX(60px) scale(0.92);
    transition: all 0.7s cubic-bezier(.77, 0, .18, 1);
    pointer-events: none;
}

.industry-image.active {
    opacity: 1;
    z-index: 3;
    transform: translateX(0px) scale(1);
    pointer-events: auto;
}

.industry-image[data-index="0"] {
    z-index: 2;
    opacity: 1;
    transform: translateX(180px) scale(0.62);
}

.industry-image[data-index="1"] {
    z-index: 2;
    opacity: 1;
    transform: translateX(100px) scale(0.82);
}

.industry-image[data-index="2"] {
    z-index: 1;
    opacity: 1;
    transform: translateX(180px) scale(0.72);
}

.industry-image[data-index="3"],
.industry-image[data-index="4"] {
    z-index: 0;
    opacity: 1;
    transform: translateX(280px) scale(0.56);
}

/*mobile accordion*/
.industry-partner {
    border-top: 1px solid #ddd;
}

.accordion-item {
    border-bottom: 1px solid #ddd;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    cursor: pointer;
    font-weight: bold;
}

.accordion-header h3 {
    margin: 0;
    font-size: 16px;
}

.accordion-header .icon {
    font-size: 20px;
    color: #3B3B3B;
}

.industry-partner .accordion-content {
    display: none;
    padding: 12px 16px;
}

.accordion-content img {
    width: 100%;
    margin-top: 10px;
    border: 2px solid #8D43A6;
    border-radius: 5px;
}

.accordion-item.active .accordion-content {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    gap: 20px;

}

.accordion-item.active .accordion-content .read-more-btn {
    color: #8C43A5;
    font-weight: 600;
    text-decoration: underline;
    margin-top: -15px;
}

.portfolio-card .read-more-btn {
    margin-bottom: 0;
}

.accordion-item.active .accordion-header .icon {
    content: "-";
}

.industry-mbile-only {
    display: none;
}

.industries-section .fixed-top-section .item-top {
    grid-template-columns: 1fr;
}

.industry-tab.active::after {
    display: none;
}

.industry-desc:nth-child(2) {
    margin-top: 100px;
}

.industry-desc:nth-child(3) {
    margin-top: 190px;
}

.industry-desc:nth-child(4) {
    margin-top: 280px;
}

.industry-desc:nth-child(5) {
    margin-top: 360px;
}

.industry-desc:nth-child(6) {
    margin-top: 490px;
}

.industry-tab.active:last-child::before {
    top: 35px;
}


@media (min-width: 1900px) {
    .industry-image[data-index="1"] {
        z-index: 2;
        opacity: 1;
        transform: translateX(180px) scale(0.82);
    }

    .industry-image[data-index="2"] {
        z-index: 1;
        opacity: 1;
        transform: translateX(280px) scale(0.72);
    }

    .industry-image[data-index="3"],
    .industry-image[data-index="4"],
    .industry-image[data-index="5"] {
        z-index: 0;
        opacity: 1;
        transform: translateX(380px) scale(0.56);
    }
}

@media (min-width: 1599px) {
    .industries-wrapper {
        padding: 0px;
    }

    .industries-tabs {
        min-width: 320px;
    }

    .industries-content {
        max-width: 520px;
    }

    /* .industry-image{width: 428px; height: 526px;} */
    /* .industry-image-stack{width: 420px; height: 526px;} */
    .industries-wrapper {
        gap: 40px;
    }

    .tab-list {
        gap: 100px;
    }

    .industry-desc:nth-child(4) {
        margin-top: 300px;
    }

    .industry-desc:nth-child(5) {
        margin-top: 400px;
    }

    .industry-desc:nth-child(6) {
        margin-top: 490px;
    }

}

@media screen and (max-width:1600px) {

    .industries-content p {
        font-size: 13px;
    }

    .industries-images {
        width: 25%;
        height: 440px;
    }

    .industry-desc:nth-child(2) {
        margin-top: 100px;
    }

    .industry-desc:nth-child(3) {
        margin-top: 200px;
    }

    .industry-desc:nth-child(4) {
        margin-top: 300px;
    }

    .industry-desc:nth-child(5) {
        margin-top: 400px;
    }

}

@media (max-width: 1399px) {
    .industries-content {
        max-width: 320px
    }

    /* .industry-image{width: 290px; height: 326px;} */
    .tab-list {
        gap: 60px;
    }

    /* .vertical-line{height: 315px;} */
    .tab-list {
        height: 400px;
    }

    .industries-tabs {
        height: 400px;
    }

    /* .vertical-line{height: 364px;} */
    .industries-images {
        height: auto;
    }

    .industry-image[data-index="1"] {
        transform: translateX(90px) scale(0.96);
    }

    .industry-image[data-index="2"] {
        transform: translateX(130px) scale(0.92);
    }

    .industry-image[data-index="3"],
    .industry-image[data-index="4"] {
        transform: translateX(180px) scale(0.88);
    }

    .manu-fac .fixed-top-section .item-top .legacy-deatils p {
        margin-bottom: 20px !important;
    }

    /* .industry-tab.active:last-child::before{top: 34px;}*/

    .industry-desc:nth-child(5) {
        margin-top: 310px;
    }



}

@media (max-width: 1280px) {
    .industry-tab.active {
        font-size: 18px;
    }

    .industry-title {
        font-size: 18px;
    }

    .industries-content p {
        font-size: 14px;
    }

    .industry-image {
        width: 250px;
        height: 326px;
    }

    .tab-list {
        gap: 70px;
    }

    /* .vertical-line{height: 354px;} */

    .industry-desc:nth-child(2) {
        margin-top: 90px;
    }

    .industry-desc:nth-child(3) {
        margin-top: 180px;
    }

    .industry-desc:nth-child(4) {
        margin-top: 270px;
    }

    .industry-tab.active:last-child::before {
        top: 17px;
    }

    .industry-desc:nth-child(6) {
        margin-top: 340px;
    }
}

@media (max-width: 1024px) {
    .industries-section {
        padding-left: 40px;
        padding-right: 40px;
    }

    .industries-section .fixed-top-section .legacy-deatils h3 {
        padding-top: 0;
    }

    .industries-container {
        flex-direction: column;
        gap: 30px;
    }

    .industries-images {
        justify-content: center;
        height: 260px;
    }

    /* .industry-image-stack { width: 220px; height: 220px; } */
    .industry-image {
        width: 180px;
        height: 220px;
    }

    .industries-wrapper {
        display: none;
    }

    .industries-section .item-top {
        grid-template-columns: auto;
    }

    .accordion-content img {
        border-radius: 16px;
        border: 0;
    }

    .accordion-header h3 {
        font-size: 18px;
        color: #3B3B3B;
        font-weight: 500;
    }

    .accordion-content {
        padding-top: 0;
        padding-left: 0;
    }

    .accordion-header {
        padding-left: 0;
    }

    .accordion-item.active .accordion-content p a {
        display: inline-block;
        color: #8C43A5;
        font-size: 16px;
        font-weight: 600;
        border-bottom: 1px solid #8C43A5;
        padding-bottom: 5px;
    }

    .accordion-item.active .accordion-content p {
        color: #515151;
        font-size: 16px;
        line-height: 1.4;
    }

    .accordion-content img {
        margin: 0;
    }

    .accordion-item {
        position: relative;
    }

    .accordion-item::after {
        content: '';
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 50px;
        height: 1px;
        background: #26152b;
    }

    .industry-partner {
        height: 500px;
        overflow: hidden;
        overflow-y: scroll;
    }

    .industry-partner::-webkit-scrollbar-track {
        height: 700px;
        width: 2px;
        background: #8C43A54D;
        display: none;
    }

    .industry-partner::-webkit-scrollbar {
        height: 100px;
        width: 2px;
        display: none;
    }

    .industry-partner::-webkit-scrollbar-thumb {
        height: 100px;
        width: 2px;
        background: #8C43A5;
        display: none;
    }

    .industry-mbile-only {
        display: block;
    }

    .industries-section .fixed2-top-section .item-bottom {
        margin-top: 40px;
    }

    .industry-partner .accordion-content {
        padding-left: 0;
    }

    .division-title {
        font-size: 32px;
        line-height: 1.2;
    }

    .accordion-item.active .accordion-content {
        padding-bottom: 24px;
    }

    .accordion-content img {
        object-fit: cover;
    }
}

@media (max-width: 768px) {
    .industries-section {
        padding: 50px 20px 30px 20px;
    }

    .industries-container {
        gap: 18px;
    }

    .industries-content {
        max-width: 100%;
        min-width: 0;
    }

    /* .industries-images { height: 180px; } */
    /* .industry-image-stack { width: 120px; height: 180px; } */
    .industry-image {
        width: 100px;
        height: 140px;
        border-radius: 10px;
    }

    .industry-title {
        font-size: 16px;
    }

    .industry-tab {
        font-size: 15px;
    }

    .industry-tab.active {
        font-size: 17px;
    }

    .joint-ventures-section.manu-fac .fixed-top-section .item-top .legacy-deatils {
        text-align: left;
    }

    .joint-ventures-section.manu-fac .fixed-top-section .item-top .legacy-deatils p {
        justify-content: flex-start;
    }

    .manu-fac .fixed-top-section .item-top .legacy-deatils p {
        margin-bottom: 0 !important;
    }

    .fixed-top-section .item-bottom {
        margin-top: 20px;
    }

    .accordion-item.active .accordion-content {
        flex-direction: column;
    }

    .accordion-item.active .accordion-content p {
        font-size: 14px;
    }

    .accordion-item.active .accordion-content p a {
        font-size: 14px;
        padding-bottom: 3px;
    }
}

/* ---- Manufacturing and Facilities ---- */
.Manufacturing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.plant-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    color: white;
}

.plant-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.plant-content {
    position: absolute;
    bottom: 0px;
    padding: 20px 40px 55px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    width: 100%;
}

.plant-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 20px;
}

.plant-title::before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
}

.plant-title::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 30px;
    height: 2px;
    background: rgb(236, 204, 18);
}

.plant-desc {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    width: 70%;
}

.arrow-btn {
    position: absolute;
    bottom: 80px;
    right: 40px;
    background: white;
    color: black;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    font-weight: bold;
    font-size: 18px;
    transition: 0.3s ease;
}

.arrow-btn:hover {
    background-color: #007bff;
    color: white;
}

.manu-fac .fixed-top-section .item-top {
    grid-template-columns: 1fr;
}

.manu-fac .fixed-top-section .item-top .legacy-deatils {
    text-align: center;
}

.manu-fac .fixed-top-section .item-top .legacy-deatils p {
    width: 100%;
    justify-content: center;
    margin-bottom: 30px;
}

.manufacture-main.manu-fac .fixed-top-section .item-top .legacy-deatils p {
    margin-bottom: 10px !important;
}

.manufacture-main .fixed-top-section .item-bottom {
    margin-top: 40px;
}

@media (max-width: 1399px) {
    .plant-title {
        font-size: 20px;
    }

    .plant-desc {
        font-size: 14px;
    }
}

@media (max-width: 1024px) {
    .plant-desc {
        display: none;
    }

    .plant-title {
        margin-bottom: 10px;
    }

    .manu-fac.manufacture-main {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (max-width: 768px) {
    .plant-content {
        padding: 15px;
    }

    .manu-fac.manufacture-main {
        padding: 40px 0;
    }

    .plant-title {
        font-size: 16px;
    }

    .arrow-btn {
        bottom: 20px;
    }

    .manu-fac .fixed-top-section .item-top .legacy-deatils p {
        margin-bottom: 0px;
    }

    .plant-card img {
        height: 380px;
    }

    .plant-card:first-child {
        margin-bottom: 20px;
    }

    .plant-title {
        text-align: center;
    }

    .plant-title::before {
        width: 60px;
        left: 50%;
        transform: translate(-50%, 0);
        background: #ECCC12;
    }

    .plant-title::after {
        display: none;
    }

    .plant-content .arrow-btn {
        display: none;
    }

    .manufacture-main.common-section .fixed-top-section {
        padding: 0 10px;
    }

    .manufacture-main.manu-fac .fixed-top-section .item-top .legacy-deatils {
        text-align: left;
    }

    .manufacture-main.manu-fac .fixed-top-section .item-top .legacy-deatils p {
        justify-content: flex-start;
    }
}


/*---- Engineering ----*/
.engineer-box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.engn-wrapper .industrial-precision svg path {
    stroke: #C02121;
}

.engineer-box .precision-text {
    color: #C02121;
}

.engineer-box .division-title {
    color: #414141;
}

.engineer-box .right-content img {
    border-radius: 24px;
}

.engineer-box .separate-section {
    position: absolute;
    bottom: 100px;
    left: 0;
    border-radius: 24px;
    background-color: #6B509F;
    width: 77%;
    z-index: 123
}

.engineer-box .separate-section .item h5 {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    padding: 0 0 10px;
    margin: 0 0;
    border-bottom: 1px solid #FFFFFF1A;
    position: relative;
}

.engineer-box .separate-section .item h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #ECCC12;
}

.engineer-box .separate-section .item p {
    margin: 0;
    padding: 30px 0 0;
    color: #fff;
    font-size: 13px;
    font-weight: 400;
}

.engineer-box .separate-section .item {
    padding: 40px 20px;
}

/* .separate-slider{display: flex; align-items: center; justify-content: flex-start;} */
.engineer-box .separate-section .item-a {
    background-color: #6B509F;
    border-radius: 24px 0 0 24px;
}

.engineer-box .separate-section .item-b {
    background-color: #765AAB;
}

.engineer-box .separate-section .item-c {
    background-color: #8568BB;
}

.engineer-box .separate-section .item-d {
    background-color: #9678D1;

}

.engineer-box .separate-section .item:last-child {

    border-radius: 0 24px 24px 0;
}

.engineer-box .right-content img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.separate-slider .slick-track {
    display: flex;
}

.engineer-box .separate-section .item {
    height: auto;
}

.engineer-box .separate-section .item h5 {
    min-height: 65px;
}

@media (min-width: 1599px) {
    .engineer-box .separate-section .item h5 {
        font-size: 16px;
    }

    .engineer-box .separate-section .item p {
        font-size: 14px;
    }

    .engineer-box .separate-section {
        width: 82%;
    }

    .engineer-box .separate-section .item {
        padding: 60px 30px;
    }

    /* .engineer-box .separate-section {
        bottom: 120px;
    } */
}

@media (max-width: 1366px) {
    .engineer-box .right-content img {
        height: 500px;
    }

    /* .engineer-box .separate-section {
        bottom: 120px;
    } */

    .engineer-box .separate-section .item h5 {
        padding-bottom: 20px;
    }

    .engineer-box .separate-section .item p {
        padding-top: 20px;
    }

    .engineer-box .separate-section .item h5 {
        min-height: 60px;
    }
}

@media (max-width: 1199px) {
    .engineer-box .separate-section {
        width: 82%;
        bottom: 20px;
    }

    .engineer-box .separate-section .item {
        padding: 20px;
    }

    .engineer-box {
        padding: 0 40px;
    }
}

@media screen and (min-width:992px) {

    /* .separate-slider{display: grid !important; grid-template-columns: repeat(4, 1fr);} */
    .engineer-box .separate-section .item {
        height: 100%;
    }
}

@media (max-width: 992px) {
    .engineer-box {
        display: block;
        overflow: hidden;
    }

    .engineer-box .separate-section {
        width: 100%;
        position: relative;
        margin-left: 100px;
        bottom: 50px;
        background: transparent;
    }

    .engineer-box .separate-section .item {
        padding: 50px 30px;
    }

    .engineer-box .right-content img {
        height: auto;
    }

    .engn-wrapper .right-content {
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .engineer-box {
        padding: 0;
    }

    .engineer-box .separate-section .item {
        padding: 20px;
    }

    .engineer-box .separate-section .item:first-child {
        border-radius: 16px 0 0 16px;
    }

    .engineer-box .separate-section {
        margin-left: 0px;
        bottom: 100px;
    }

    .separate-slider {
        margin-left: 30px;
    }

    .engn-wrapper {
        padding: 40px 20px;
    }

    .engn-wrapper .left-content {
        margin-bottom: 30px;
    }

    .Manufacturing {
        display: block;
    }
}



/* certificate */

.swiper-slide.smcs-card .stamp-icon svg path {
    stroke: #fff;
    stroke-width: 0;
}



/* --- Global Footprint Section Styles --- */
.global-footprint-section {
    position: relative;
    /* width: 100vw; */
    /* min-height: 600px; */
    background: linear-gradient(90deg, #00A78B -13.18%, #8D43A6 115.52%);
    overflow: hidden;
}

.global-footprint-header {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 2;
}

.global-presence-link {
    color: #fff;
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 8px;
}

.global-footprint-header h2 {
    color: #fff;
    font-size: 2.4rem;
    font-weight: 600;
    margin: 0;
}

.global-footprint-bg {
    position: relative;
    width: 100%;
    /* max-width: 1400px; */
    margin: 0 auto;
    /* min-height: 600px; */
}

.global-map-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0 0 24px 24px;
    filter: brightness(0.95);
}

.map-pointer {
    position: absolute;
    width: 14px;
    height: 14px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 12px 2px #fff, 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 4px solid #fff;
    cursor: pointer;
    z-index: 3;
    transition: box-shadow 0.2s;
}

.map-pointer:hover,
.map-pointer.active {
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.3), 0 2px 8px rgba(0, 0, 0, 0.12);
}

.map-popup {
    position: absolute;
    display: none;
    z-index: 10;
    min-width: 320px;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    border-radius: 28px;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(22px) saturate(1.2);
    padding-right: 10px;
    top: 0;
    left: 0;
    transition: opacity 0.2s;
    backdrop-filter: blur(10px)
}

.popup-list {
    max-height: 340px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #fff rgba(255, 255, 255, 0.08);
}

.popup-list::-webkit-scrollbar {
    width: 7px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
}

.popup-list::-webkit-scrollbar-thumb {
    background: #fff;
    border-radius: 8px;
}

.popup-list-item {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 12px 20px;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    cursor: pointer;
    transition: background 0.15s;
    letter-spacing: 0.01em;
}

.popup-list-item:last-child {
    border-bottom: none;
}

.popup-list-item:hover {
    background: rgba(255, 255, 255, 0.10);
}

.popup-list-item img {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    background: #D9D9D930;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
    padding: 10px;
    display: none;
}

#Australia-0 .popup-list-item {}

.global-footprint-section.manu-fac .fixed-top-section .item-top .legacy-deatils p {
    color: #fff;
}

.global-footprint-section.manu-fac .fixed-top-section .item-top .legacy-deatils h3 {
    color: #fff;
}

.global-footprint-section .fixed-top-section .item-bottom {
    margin-top: 0;
}

@media (max-width: 1399px) {
    .map-popup {
        min-width: 270px
    }
}

@media (max-width: 900px) {
    .global-footprint-section {
        min-height: 400px;
    }

    .global-footprint-bg {
        min-height: 400px;
    }

    .map-popup {
        min-width: 220px;
        max-width: 90vw;
        left: 50% !important;
        transform: translate(-50%, 0);
        padding-right: 0;
    }

    .popup-list-item {
        padding: 26px 15px;
        gap: 12px;
        white-space: nowrap;
    }

    .popup-list-item img {
        width: 36px;
        height: 36px;
    }

    .map-pointer {
        width: 12px;
        height: 12px;
    }

    .popup-list {
        display: flex;
    }

    .map-popup {
        margin-top: 120px;
        border-radius: 16px;
        height: 120px;
    }

}

@media (max-width: 767px) {
    .map-popup {
        height: auto;
        margin-top: auto;
    }

    .popup-list-item {
        padding: 20px 10px;
    }

    .map-pointer {
        width: 9px;
        height: 9px;
    }
}

/* --- End Global Footprint Section Styles --- */


/*-----  Contact form -----*/
/* .contact-wrapper .process-equipment-container{background: url('../images/division/contact-bg.jpg')no-repeat center; background-size: 100%; height: 826px;} */
.contact-wrapper .process-equipment-container::before {
    display: none;
}

.sub-main-contact img {
    width: 100%;
    height: 100%;
    border-radius: 24px;
}

.sub-main-contact {
    position: relative;
    padding: 0 20px;
}

.sub-main-contact .process-equipment-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    width: 100%;
    z-index: 123;
}

.sub-main-contact .content-wrapper .left-content {
    flex: 0 0 420px;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 60vh;
}

.sub-main-contact .division-title {
    line-height: 1.3;
    text-shadow: -2px 1px 4px #000000;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-shadow: -2px 1px 4px #000000;
}

.contact-infom .contact-info2 {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
}

.contact-info a,
.contact-info2 a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 14px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}


.sub-main-contact .content-wrapper {
    align-items: center;
}

.form-wrapper {
    max-width: 600px;
    margin: auto;
    background: #fff;
    padding: 30px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.form-wrapper .isgecsmheading {
    margin-bottom: 0px;
    font-weight: 500;
    color: #3B3B3B;
}

.contact-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.full-width {
    width: 100%;
}

.half-width {
    width: calc(50% - 10px);
}

.form-group label {
    margin-bottom: 6px;
    font-size: 14px;
    color: #333;
}

.form-group span {
    color: red;
}

input,
select,
textarea {
    padding: 20px;
    border: 0;
    border-bottom: 1px solid #ccc;
    border-radius: 16px;
    font-size: 14px;
    outline: none;
    width: 100%;
    appearance: none;
    resize: none;
}

.form-group textarea {
    height: 100px;
}

input::placeholder,
textarea::placeholder {
    color: #454545;
}

.custom-select {
    position: relative;
}

.custom-select select {
    width: 100%;
    background: transparent;
    padding: 20px;
}

.dropdown-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 14px;
    color: #555;
    line-height: 0;
}

.contact-form .bnr-btn {
    padding-top: 20px
}

.wpcf7 form.invalid .wpcf7-response-output {
    color: #000;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.form-group span {
    font-size: 14px;
}

.custom-select select {
    padding-bottom: 15px;
}

input,
select {
    padding-bottom: 15px;
}

.wpcf7 form.sent .wpcf7-response-output {
    color: #46b450;
    margin: 0;
}

@media (max-width: 1598px) {
    .process-equipment-container {
        padding: 50px;
    }

    .custom-select select,
    input,
    select {
        padding: 16px;
    }

    .sub-main-contact .division-title {
        font-size: 28px;
    }

    .form-wrapper {
        max-height: auto;
        overflow: auto;
    }

    .form-group span {
        font-size: 12px;
    }
}

@media (max-width: 1399px) {

    .form-wrapper {
        max-width: 500px;
    }

    .sub-main-contact .middle-content {
        max-width: 500px;
    }

    .form-wrapper {
        max-height: 400px;
        max-width: 400px;
        padding: 20px;
    }

    .form-wrapper .isgecsmheading {
        font-size: 18px;
    }


}

@media (max-width: 1024px) {
    .sub-main-contact .content-wrapper .left-content {
        height: 20vh;
    }

    .sub-main-contact img {
        height: 600px;
        object-fit: cover;
    }



}

@media (max-width: 991px) {
    .half-width {
        width: 100%;
    }

    .sub-main-contact .middle-content {
        max-width: 700px;
    }

    .form-wrapper {
        max-width: 700px;
    }

    .sub-main-contact .left-content {
        display: none !important;
    }

    .sub-main-contact .process-equipment-container {
        position: relative;
        transform: none;
        top: 0;
        left: auto;
        margin-top: -180px;
    }

    .sub-main-contact .middle-content {
        margin-top: -5px;
    }

    .form-wrapper {
        padding: 20px;
    }

    .contact-info2 a {
        color: #242424;
        font-weight: 400;
        font-size: 13px;
    }

    .contact-info2 .isgecxsheading {
        display: none;
    }

    .contact-info2 {
        display: flex !important;
        flex-wrap: nowrap;
        padding-top: 20px;
        gap: 10px;
    }

    .contact-info2 a {
        flex-direction: column;
        white-space: nowrap;
    }

    .or {
        text-align: center;
        color: #000;
        position: relative;
        font-size: 16px;
        font-weight: 500;
        margin-top: 20px;
    }

    .or::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        width: 40%;
        height: 1px;
        background: #D4D4DC66;
    }

    .or::after {
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        width: 40%;
        height: 1px;
        background: #D4D4DC66;
    }

    .sub-main-contact .process-equipment-container {
        padding: 16px;
    }

    .form-wrapper .isgecsmheading {
        padding-bottom: 20px;
    }

    .contact-form .bnr-btn .cta-button {
        width: 100%;
        justify-content: center;
    }

    .contact-info2 {
        justify-content: center;
    }

    .form-wrapper {
        max-height: max-content;
    }

    .custom-select select {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        color: #000;
    }
}


/*COMMON MEDIA QUERYIES*/
.Division-page .home-heading {
    font-size: 46px;
    line-height: 60px;
}

.breadcrumb-nav .breadcrumb li {
    margin: 0;
}

.breadcrumb-nav .breadcrumb-item a,
.breadcrumb-nav .breadcrumb-item.active {
    font-size: 14px;
}

.industrial-precision {
    margin-bottom: 14px;
}

.tech-item .tech-description {
    display: none;
}

.tech-item.active .tech-description {
    display: block;
}

.portfolio-card .card-image {
    width: 277px;
    height: 320px;
}

.portfolio-card .content-right {
    /* margin-top: 70px;  */
    justify-content: flex-end;
}

.portfolio-card .content-right .card-image {
    border-radius: 18px;
    line-height: 0;
}

.avatar-section .name,
.email-section .email {
    font-size: 14px;
}

.sticky-name-badge {
    padding: 15px;
    min-width: 210px;
}

/* .industry-image{width: 270px; height: 426px;} */

/*17-july*/
/* .stat-number {
        font-size: 40px;
        width: 141px;
        min-width: 141px;
        height: 100%;
        text-align: left;
    }

        .stat-label {
        font-size: 16px;
        width: 100%;
        height: 100%;
        text-align: left;
    } */
.technologies-section .tech-dot.active {
    width: 36px !important;
    height: 36px !important;
    left: -7px;
}

.tech-dot {
    transition: none;
}

.tab-list {
    gap: 0;
}

/* .vertical-line{height: 100%;} */
.industry-tab {
    padding-bottom: 78px;
    margin-top: 0;
}

/* .industry-tab.active{padding-bottom: 100px;} */
.industry-tab.active::before {
    top: 9px;
}

.industry-tab::after {
    top: 13px;
}

.industry-tab:last-child {
    padding-bottom: 0;
}

/* .sticky-name-badge{display: none;} */

#mystry-clear1,
#mystry-clear2 {
    overflow: hidden;
}

.portfolio-card .bnr-btn .transparent-btn {
    background: transparent;
}

.portfolio-card .bnr-btn .cta-button .text {
    color: #fff;
}

/*Round 3*/
.stat-label {
    width: 150px;
}

.stat-item {
    justify-content: space-between;
}

/*--New Changes---*/
.isgec-tech-partner {
    width: 100%;
    background-color: #F9F9F9;
}

.isgec-tech-info-box,
.isgec-serve-info-box,
.isgec-featured-info-box,
.isgec-capabilities-info-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 35px;
    gap: 10px;
}

.isgec-tech-slider-box {
    width: 100%;
    overflow: hidden;
}

.isgec-tech-slider {
    width: 100%;
}


.isgec-tech-card {
    background-color: #FFFFFF;
    padding: 20px 10px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.isgec-tech-card img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.tech-swiper-scrollbar {
    position: relative;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 2px;
    background-color: #EEEEEE;
    margin-top: 30px;
    opacity: 1 !important;
    left: 50%;
    transform: translateX(-50%);

}

.swiper-scrollbar-drag {
    background-color: #626265;
    cursor: pointer;
    transition: background-color 0.3s ease;
    position: absolute;
    bottom: 0;
}

.testimonial-slider .slick-prev:before {
    background: url(../images/icons/arrow-right.svg) no-repeat center;
    width: 40px;
    height: 40px;
    padding: 2px;
    display: block;
    transform: rotate(180deg);
    content: "";
}

.testimonial-slider .slick-next:before {
    background: url(../images/icons/arrow-right.svg) no-repeat center;
    width: 40px;
    height: 40px;
    padding: 2px;
    display: block;
    content: "";
}

.testimonial-slider .slick-prev {
    left: unset;
    right: 70px;
    top: unset;
    bottom: -70px;
    width: 42px;
    height: 42px;
    font-size: 0;

}

.testimonial-slider .slick-next {
    left: unset;
    right: 20px;
    top: unset;
    bottom: -70px;
    width: 42px;
    height: 42px;
    font-size: 0;

}

.testtimonial-section .bg-cta-button {
    background-color: transparent;
}




@media (min-width: 1900px) {
    .Division-page .home-heading {
        font-size: 60px;
    }

    .industrial-precision {
        margin-bottom: 24px;
    }

    .avatar-section .name,
    .email-section .email {
        font-size: 16px;
    }

    .sticky-name-badge {
        padding: 20px;
        min-width: 220px
    }

    .ventures-slider-wrapper {
        height: 656px;
        max-width: 1232px;
    }

    .industry-image {
        width: 428px;
        height: 526px;
    }

    .tech-name {
        font-size: 18px;
    }

    .tech-item.active .tech-name {
        font-size: 24px;
    }

    .tech-description {
        font-size: 16px;
    }

    .tech-item.active {
        padding-bottom: 30px;
    }

    /* .stat-number {
        font-size: 40px;
        width: 200px;
        min-width: 200px;
        height: 100%;
        text-align: left;
    } */
    .industry-tab {
        padding-bottom: 77px;
    }

    /* .ventures-slider-container {gap: 60px;} */
}

@media (max-width: 1600px) {
    .manu-fac .fixed-top-section .item-top .legacy-deatils p {
        margin-bottom: 20px;
    }

    .avatar-section .name,
    .email-section .email {
        font-size: 13px;
    }

    .avatar-section svg {
        width: 16px;
        height: 18px;
    }

    .email-section svg {
        width: 17px;
        height: 14px;
    }

    .sticky-name-badge {
        min-width: 200px;
    }

    /* common heading */
    .precision-text,
    .tech-label-text {
        font-size: 14px;
    }

    .industrial-precision svg,
    .tech-label svg {
        width: 13px;
        height: auto;
    }

    .division-title {
        font-size: 30px;
    }

    .main-description,
    .sub-description {
        font-size: 13px;
    }

    .technologies-section .tech-dot.active {
        width: 35px !important;
        height: 35px !important;
        left: -8px;
    }


    /*  */

    .stat-label {
        font-size: 13px;
    }

    .mystry-wrapper .sustainbility-colm-inner .btn_box_common {
        left: 30px;
        right: 20px;
    }

    .mystry-wrapper .name_link_s_colm {
        padding: 0;
    }

    .portfolio-card {
        flex: 0 0 60px;
    }

    /* 
        .engineer-box .right-content img {
        height: 500px; 
    } */

    .smart-mechanic-slide .smart-mechanic-para {
        padding-top: 15px;
    }

    .left-content {
        flex: 0 0 250px;
        max-width: 250px;
    }
}

@media (max-width: 1399px) {


    /*  */

    .stats-container {
        gap: 27px;
    }

    .stat-item {
        padding-bottom: 16px;
    }

    .technologies-section .tech-dot.active {
        width: 30px !important;
        height: 30px !important;
        left: -5px;
    }

    .mystry-wrapper .sustainbility-colm-inner .btn_box_common {
        left: 10px;
    }

}

.industries-images {
    /* width: 30%; */
    position: relative;
}

.industry-image-stack {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: calc(100% - 50px);
}

.industry-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        opacity 0.5s ease,
        z-index 0.5s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

@media screen and (min-width: 992px) and (max-width: 1399px) {
    .industries-section.common-section .fixed2-top-section {
        padding: 0;
    }

    .industries-tabs {
        width: 220px;
        min-width: 220px;
    }

    .industries-content {
        width: 220px;
        max-width: 220px;
        min-width: 220px;
    }

    .industries-images {
        width: 60%;
        min-width: 60%;
        height: 200px;
    }

    .industry-image-stack {
        width: 45%;
        height: calc(100% - -50px);
    }

    /***Font size***/
    .Division-page .home-heading {
        font-size: 36px;
        line-height: 40px;
    }

    .division-title {
        font-size: 26px;
    }

    .content-wrapper {
        gap: 10px;
    }

    .left-content {
        max-width: 280px;
    }

    .stat-number {
        font-size: 22px;
    }

    .main-description {
        font-size: 12px;
    }

    .sub-description {
        font-size: 12px;
    }

    /* .portfolio-cards{height: auto;} */
    /* .portfolio-card.active .card-content{align-items: flex-end;} */
    .card-title {
        font-size: 18px;
    }

    .portfolio-card {
        flex: 0 0 60px;
    }
}

@media (max-width: 1399px) {

    .industries-content p,
    .venture-description {
        font-size: 13px;
    }

    .industries-images {
        min-width: 20%;
    }

    .industries-content {
        min-width: 320px;
    }

    .industries-tabs {
        min-width: 320px;
    }

    .industry-tab {
        padding-bottom: 50px;
    }

    /* .industry-tab.active{padding-bottom: 60px;} */
    .ventures-slider-wrapper {
        max-width: 800px;
        height: 400px;
    }

    .portfolio-card .card-image {
        width: 200px;
        height: auto;
    }

    .industry-tab:last-child.active {
        padding-bottom: 0;
        min-height: inherit;
    }

    .venture-title {
        font-size: 20px;
    }

    .slide-content {
        padding-bottom: 20px;
    }

    .industries-section .fixed-top-section .legacy-deatils p {
        margin-bottom: 0;
    }

    .engineer-box .separate-section .item p {
        font-size: 12px;
    }

    .engineer-box .separate-section .item h5 {
        font-size: 13px;
    }

    .engineer-box .separate-section .item-a,
    .engineer-box .separate-section .item {
        padding: 20px;
    }

    .breadcrumb-nav .breadcrumb-item a,
    .breadcrumb-nav .breadcrumb-item.active {
        font-size: 13px;
    }




}

@media screen and (max-width:1199px) {

    .industries-content {
        min-width: 280px;
    }

    .industries-tabs {
        min-width: 250px;
    }

    .industry-image-stack {
        width: 40%;
        height: calc(100% - -20px);
    }

    .industries-images {
        width: 40%;
        min-width: 17%;
    }

    .portfolio-card .content-right .card-image {
        width: 100% !important;
    }

    .Division-page .home-heading {
        font-size: 26px;
    }
}

@media screen and (max-width:1024x) {
    .stats-container {
        flex-direction: column;
    }
}

@media screen and (max-width:991px) {
    .stats-container {
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .portfolio-card .content-right {
        margin-top: 0;
    }

    .portfolio-card.active .card-content {
        padding: 0 0 60px;
    }

    .portfolio-card .content-left {
        padding: 10px;
        width: -webkit-fill-available;
        padding-bottom: 30px;
    }

    .portfolio-card .card-content .content-left .bnr-btn {
        position: absolute;
        bottom: 10px;
        left: 10px;
        width: 80%;
    }

    .portfolio-card .bnr-btn .transparent-btn {
        padding-left: 7px;
    }

    .industries-section.common-section .fixed-top-section {
        padding: 0;
    }

    .engineer-box .separate-section {
        bottom: 0;
        margin-top: -70px;
    }

    .Division-page .home-heading {
        font-size: 36px;
        line-height: 1.4;
    }

    .portfolio-card .card-image,
    .portfolio-card .content-right {
        width: 100%;
    }

    .portfolio-card .content-right .card-image {
        padding: 10px 10px 0;
    }

    .product-portfolio-section .fixed-top-section .item-bottom {
        margin-top: 20px;
    }

    .portfolio-card .card-image img {
        height: 196px;
    }

    .tech-title {
        font-size: 32px;
    }

    .sustainbility_colm .slick-list {
        padding-bottom: 80px;
    }

    .mystry-wrapper .slick-prev,
    .mystry-wrapper .slick-next {
        bottom: 0;
    }

    .mystry-wrapper .common-slider-progress {
        margin-top: -40px;
    }

    .page-investor-relation .sustainbility_colm .slick-list {
        padding-bottom: 0;
    }

    .contact-info2 {
        position: relative;
    }

    .contact-info2 a {
        width: 50%;
    }

    .contact-info2 a span {
        font-size: 12px;
    }

    /* .contact-info2::after {
        content: '';
        width: 1px;
        height: 50px;
        background-color: #D4D4DC66;
        position: absolute;
        top: 60%;
        left: 50%;
        transform: translate(-50%, -50%);
    } */

    .global-sourcing-inner-wrapper {
        margin: 0 20px;
    }

    .page-home-page .sustainbility_colm .slick-list {
        padding-bottom: 0px;
    }

    #tab5.tab-output-box .box_sustainibility p {
        min-height: 280px;
    }

    .sub-main-contact img {
        height: 431px;
    }

    .form-wrapper {
        overflow: initial;
    }

    .custom-select select,
    input,
    select {
        padding: 16px 50px 16px 16px;
    }
    .left-content{flex: auto;}

}

@media (max-width: 480px) {
    .Division-page .home-heading {
        font-size: 32px;
    }

    .breadcrumb-nav {
        margin: 20px 0;
    }

    .banner-content .banner-text {
        width: 80%;
    }
    .contact-form{gap: 20px;}
    .form-group .wpcf7-not-valid-tip {
        bottom: -37px;
    }

}

@media (max-width: 479px) {

    .Division-page .home-heading,
    .tech-title {
        font-size: 24px;
    }

    .breadcrumb-nav {
        margin: 20px 0;
    }

}

@media (max-width: 375px) {
    .invester-banner .bnr-btn .cta-button .text {
        font-size: 12px !important;
    }

    .invester-banner .bnr-btn a {
        padding: 4px 4px 4px 13px;
    }

    .home-heading.common-h1 {
        line-height: 1.3;
    }

    .contact-info2 a span {
        font-size: 11px;
    }

}

.page-emission-control-solutions .engn-wrapper .left-content {
    flex: 0 0 500px;
    max-width: 500px;
}



.form-group textarea, input, select, textarea{
    font-family:  "Open Sans", sans-serif;
}
.form-group textarea::placeholder, input::placeholder, select::placeholder, textarea::placeholder{
    font-family:  "Open Sans", sans-serif;
}