* {
    margin: 0;
    padding: 0;

    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
}

h2 {
    font-weight: 700;
    margin-top: 23px;
}

p {
    letter-spacing: 1px;
}

/* .pt-80 {
    padding-top: 40px;
} */

.hero-title {
    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;
    color: #1f262e;
    margin-bottom: 28px;
    /* letter-spacing: 2px; */
}

/* Laptop */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 34px;
    }
}

/* Tablet */
@media (max-width: 991px) {
    .hero-title {
        font-size: 28px;
        margin-bottom: 24px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .hero-title {
        font-size: 26px;
        margin-bottom: 20px;
        line-height: 1.3;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: 22px;
        margin-bottom: 16px;
    }
}

.hero-title span {
    display: block;
    color: #00552b;
}

.d {
    color: #8a8a8a;
}

.hero-description {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5565;
}

.p {
    color: #4a5565;
}



.custom-navbar {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: #fff;
    padding: 6px 20px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.navbar-brand img {
    width: 382px;
    height: auto;
    /* height: 64px; */
}

.navbar-nav {
    /* gap: 32px; */
    gap: 25px;
}

.nav-link {
    color: #3c4452 !important;
    font-size: 17px;
    font-weight: 600;
    position: relative;
    transition: 0.3s;
    padding: 8px 0 !important;
    text-decoration: none;
    display: inline-block;

}

.nav-link:hover {
    color: #00552b !important;
}

.nav-link:hover::after,
.nav-link.active::after,
.nav-link.show::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #025430, #0A8F5A);
    border-radius: 10px;
}

.profile-btn::after,
.profile-btn:hover::after,
.profile-btn.active::after,
.profile-btn.show::after {
    content: none !important;
    display: none !important;
}

.nav-link.active,
.nav-link.show {
    color: #00552b !important;
}

.custom-dropdown {
    position: relative;
}

.dropdown-box {
    position: absolute;
    top: 45px;
    left: 0;
    min-width: 210px;
    background: #f8f9fa;
    border: 1px solid #c6c5d533;
    border-radius: 8px;
    padding: 12px 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s ease;
    z-index: 1000;
    color: #454653;
}

.custom-dropdown:hover .dropdown-box {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-box a {
    display: block;
    text-decoration: none;
    color: #4a5565;
    font-size: 16px;
    font-weight: 400;
    padding: 9px 18px;
    transition: 0.3s;
}

.dropdown-box a:hover {
    background: #e9e9e9;
    background: linear-gradient(90deg, #00675c 0%, #00cdb7 100%);
    color: white;
}

.profile-btn {
    background: #00552b;
    color: #fff !important;
    padding: 9px 20px !important;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
    margin-right: 20px;
}

.profile-btn:hover {
    background: #00552b;

    color: #fff !important;
}

.profile-logo-right {
    width: 150px;
    height: 90px;
    object-fit: contain;
    /* margin-left: 14px; */
    align-self: center;
}

@media (max-width: 991px) {
    .navbar-collapse.show .profile-logo-right {
        margin-top: 20px;
    }
}

.profile-btn span {
    width: 24px;
    height: 24px;
    background: #fff;
    color: #00552b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.navbar-toggler {
    border: none;
    box-shadow: none !important;
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: #fff;
        padding: 20px;
        margin-top: 15px;
        border-radius: 12px;
        text-align: center;
    }

    .navbar-nav {
        gap: 10px;
    }

    .custom-dropdown {
        width: 100%;
    }

    .dropdown-box {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        margin-top: 10px;
        box-shadow: none;
        border: 1px solid #eee;
    }

    .custom-dropdown.active .dropdown-box {
        display: block;
    }

    .profile-btn {
        display: flex;
        width: fit-content;
        margin: 15px auto 0;
        text-align: center;
    }
}

@media (max-width: 1024px) {

    /* Reduce overall navbar spacing */
    .custom-navbar {
        padding: 14px 0;
    }

    /* Slightly smaller logo */
    .navbar-brand img {
        height: auto;
        width: 400px;
    }

    /* Reduce gap between menu items */
    .navbar-nav {
        gap: 18px;
    }

    /* Slightly smaller nav links */
    .nav-link {
        font-size: 14px;
        font-weight: 500;
        padding: 6px 0 !important;
    }

    /* Dropdown width adjustment */
    .dropdown-box {
        min-width: 190px;
    }

    .dropdown-box a {
        font-size: 14px;
        padding: 8px 16px;
    }

    /* Compact profile button */
    .profile-btn {
        font-size: 12px;
        padding: 10px 16px !important;
        gap: 6px;
        white-space: nowrap;
    }

    /* Smaller icon circle */
    .profile-btn span {
        width: 22px;
        height: 22px;
        font-size: 11px;
        flex-shrink: 0;
    }
}

@media (max-width: 425px) {



    .navbar-brand img {
        height: auto !important;
        width: 220px !important;
        display: block;
    }
}

@media (max-width: 991px) {



    .navbar-brand img {
        height: auto;
        width: 320px;
        display: block;
    }

    .navbar-toggler {
        margin: 0;
        padding: 4px 8px;
        border: none;
        background: transparent;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .navbar-toggler:focus {
        box-shadow: none;
        outline: none;
    }

    .navbar-toggler-icon {
        width: 40px;
        height: 40px;
    }


}



.division-popup {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    background: #fff;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
    z-index: 999;
    display: none;
    margin-top: 20px;
}

.division-popup.show {
    display: block;
}

.division-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.division-heading {

    background: linear-gradient(90deg, #025430, #0A8F5A);
    color: #fff;
    text-align: center;
    padding: 5px;
    /*font-size: 24px;*/
    font-size: 19px;
    font-weight: 500;
    box-shadow: 0 4px 6px rgba(0, 0, 0, .15);
}

.division-column ul {
    list-style: none;
    padding: 20px 10px 0;
    margin: 0;
}

.division-column ul li {
    margin-bottom: 12px;
}

.division-column ul li a {
    text-decoration: none;
    font-size: 16px;
    color: #000000;


    font-weight: 400;
    font-style: Medium;
    line-height: 100%;
    letter-spacing: 0%;


}

.division-column ul li a:hover {
    color: #00552b;
}

@media(max-width:768px) {

    .division-popup {
        width: 100%;
        left: 0;
        transform: none;
        padding: 20px;
    }

    .division-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .division-heading {
        /*font-size: 20px;*/
        font-size: 18px;
    }
}

@media (max-width: 991px) {

    .navbar-collapse {
        position: fixed;
        top: 90px;
        left: 0;
        width: 100%;
        height: calc(90vh - 76px);

        background: #fff;
        z-index: 99999;

        overflow-y: auto;
        overflow-x: hidden;

        padding: 20px;
        margin: 0;
        border-radius: 0;

        text-align: center;
    }

    .navbar-nav {
        gap: 10px;
    }
}

@media (max-width: 991px) {

    .division-popup {
        position: static;
        width: 100%;
        transform: none;
        left: auto;
        top: auto;

        margin-top: 10px;
        padding: 15px;

        box-shadow: none;
    }

    .division-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* =========================footer======================== */

.site-footer {
    background: #0a1a1f;
    color: #ffffff;
    padding: 70px 0 25px;
}

.footer-logo {
    margin-bottom: 28px;
}

.footer-logo img {
    max-width: 400px;
    background-color: #fff;
    height: auto;
}

@media (max-width: 768px) {
    .footer-logo img {
        max-width: 300px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .footer-logo img {
        max-width: 350px;
    }
}

@media (max-width: 320px) {
    .footer-logo img {
        max-width: 300px;
    }
}

.footer-column h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 18px;
    color: #ffffff;
}

.footer-contact,
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.footer-contact li,
.footer-links li {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

.footer-column p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.footer-links li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.3s ease;
}

/* 
.footer-links li a:hover {
    color: #00552b;
    padding-left: 4px;
} */

.footer-bottom {
    margin-top: 40px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
}

.footer-bottom a {
    color: white;
    text-decoration: none;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: linear-gradient(90deg, #00675c 0%, #00cdb7 100%);
    transform: translateY(-2px);
}

/* ========== Responsive ========== */

@media (max-width: 991px) {
    .site-footer {
        padding: 60px 0 25px;
    }

    .footer-column {
        margin-bottom: 35px;
    }

    .footer-bottom {
        text-align: center;
        justify-content: center;
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .site-footer {
        padding: 50px 0 20px;
        text-align: center;
    }

    /* .footer-logo img {
        max-width: 90px;
    } */

    .footer-column h5 {
        font-size: 18px;
    }

    .footer-contact li,
    .footer-links li,
    .footer-column p {
        font-size: 14px;
    }

    .footer-bottom p {
        font-size: 13px;
        line-height: 1.6;
    }

    .footer-social a {
        width: 34px;
        height: 34px;
    }
}

.sc-floating-contact {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;

    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sc-floating-btn {
    width: 45px;
    height: 45px;
    border: none;
    outline: none;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;
    cursor: pointer;

    font-size: 25px;
    color: #ffffff;

    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.16),
        0 4px 12px rgba(0, 0, 0, 0.08);

    transition: all 0.35s ease;
}

.sc-whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.sc-call-btn {
    font-size: 20px;
    background: linear-gradient(135deg, #0b82ad, #075a78);
}

.sc-top-btn {
    background: linear-gradient(90deg, #025430, #0A8F5A);

}

.sc-floating-btn:hover {
    transform: translateY(-4px) scale(1.06);
    color: #ffffff;
    box-shadow:
        0 14px 32px rgba(0, 0, 0, 0.2),
        0 6px 18px rgba(0, 0, 0, 0.12);
}

.sc-whatsapp-btn {
    animation: scPulseWhatsApp 2.5s infinite;
}

@keyframes scPulseWhatsApp {
    0% {
        box-shadow:
            0 0 0 0 rgba(37, 211, 102, 0.35),
            0 8px 24px rgba(0, 0, 0, 0.16);
    }

    70% {
        box-shadow:
            0 0 0 18px rgba(37, 211, 102, 0),
            0 8px 24px rgba(0, 0, 0, 0.16);
    }

    100% {
        box-shadow:
            0 0 0 0 rgba(37, 211, 102, 0),
            0 8px 24px rgba(0, 0, 0, 0.16);
    }
}

.sc-top-btn {
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
}

.sc-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (max-width: 575.98px) {
    .sc-floating-contact {
        right: 16px;
        bottom: 16px;
        gap: 10px;
    }

    .sc-floating-btn {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}

.mechanical-banner-bg {
    object-position: center top;
}

.mechanical-banner-overlay {
    background: linear-gradient(90deg, #00552b 0%, rgba(0, 187, 95, 0) 100%);
}

/* =================index.php================ */

/* ================= ABOUT SECTION ================= */

.gic-about-section {
    padding: 40px 0;
}

.gic-about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: center;
}

.gic-about-wrapper1 {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: center;
}

.gic-about-image {
    border-radius: 24px;
    overflow: hidden;
    margin: auto;
}

.gic-about-image img {
    width: 100%;
    max-width: 550px;
    height: 580px;
    display: block;
    object-fit: cover;
    border-radius: 24px;

    transition: transform 0.6s ease;
}

.gic-about-image:hover img {
    transform: scale(1.05);
}


.gic-about-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #00552b;
    margin-bottom: 18px;
}

.gic-about-title {
    font-size: 38px;
    line-height: 1.08;
    font-weight: 700;
    color: #18202D;
    margin-bottom: 28px;
    letter-spacing: 3px;
}

.gic-about-title span {
    display: block;
}

.gic-about-description {
    font-size: 16px;
    line-height: 1.9;
    color: #4a5565;
    margin-bottom: 30px;
}


.gic-about-features-top {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-bottom: 22px;
}

.gic-about-features-top span,
.gic-about-features-grid span {
    font-size: 16px;
    color: #8a8a8a;
    position: relative;
    padding-left: 13px;
}

.gic-about-features-top span::before,
.gic-about-features-grid span::before {
    content: "•";
    position: absolute;
    left: -14px;
    top: 2px;
    color: #00552b;
    font-size: 20px;
    line-height: 1;
    padding-left: 10px;
}


.gic-about-divider {
    border: 0;
    border-top: 2px solid #e5e7eb;
    margin: 24px 0;
}


.gic-about-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 34px;
    margin-bottom: 34px;
}


.gic-about-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 999px;
    background: #00552b;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.gic-about-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 103, 92, 0.25);
    color: #ffffff;
}

.gic-about-btn span {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #ffffff;
    color: #00552b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}


@media (max-width: 1199px) {


    .gic-about-title {
        font-size: 32px;
        line-height: 1.3;
        letter-spacing: 1.5px;
    }
}

@media (max-width: 1024px) {

    .gic-about-features-top span::before,
    .gic-about-features-grid span::before {
        padding-left: 12px;
    }


    .gic-about-features-top span,
    .gic-about-features-grid span {

        padding-left: 12px;
    }
}

/* Tablet and Mobile Layout */
@media (max-width: 991px) {
    .gic-about-section {
        padding: 70px 0;
    }

    .gic-about-features-top span::before,
    .gic-about-features-grid span::before {
        padding-left: 12px;
    }


    .gic-about-features-top span,
    .gic-about-features-grid span {

        padding-left: 12px;
    }


    /* Responsive for both wrappers */
    .gic-about-wrapper,
    .gic-about-wrapper1 {
        grid-template-columns: 1fr;
        /* Single column */
        gap: 40px;
    }

    .gic-about-title {
        font-size: 28px;
        text-align: center;
    }

    .gic-about-subtitle {
        text-align: center;
        display: block;
    }

    .gic-about-image img {
        max-width: 100%;
        height: auto;
        /* Maintain aspect ratio */
    }
}

@media (max-width: 767px) {
    .gic-about-section {
        padding: 25px 15px;
    }

    .gic-about-title {
        font-size: 22px;
        line-height: 1.2;
    }

    .gic-about-description {
        font-size: 14px;
        line-height: 1.8;
    }

    .gic-about-features-top {
        flex-direction: column;
        gap: 12px;
    }

    .gic-about-features-top span::before,
    .gic-about-features-grid span::before {
        padding-left: 10px;
    }


    .gic-about-features-top span,
    .gic-about-features-grid span {

        padding-left: 10px;
    }



    .gic-about-btn {
        padding: 12px 22px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .gic-about-title {
        text-align: left;
        font-size: 22px;
    }

    .gic-about-subtitle {
        font-size: 12px;
        letter-spacing: 1px;
        text-align: left;
    }

    .gic-about-features-top span,
    .gic-about-features-grid span {
        font-size: 14px;
    }
}

.trusted-solutions {
    padding: 40px 0 0;
}

.trusted-box {
    background: #083444;
    border-radius: 0;
    padding: 48px 40px 56px;
    position: relative;
    overflow: hidden;
}

.trusted-box::after {
    content: "";
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

.trusted-title {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 42px;
    position: relative;
    z-index: 2;
}

.trusted-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
    z-index: 2;
}

.solution-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.18);
}

.solution-image {
    height: 256px;
    overflow: hidden;
}

.solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.solution-card:hover .solution-image img {
    transform: scale(1.08);
}

.solution-content {
    padding: 20px 10px;
    text-align: center;
}

.solution-content a {
    text-decoration: none;
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    color: #111827;
}



@media (max-width: 1199px) {
    .trusted-grid {
        gap: 20px;
    }

    .trusted-title {
        font-size: 36px;
    }
}

@media (max-width: 991px) {
    .trusted-solutions {
        padding: 80px 0;
    }

    .trusted-box {
        padding: 40px 30px 45px;
    }

    .trusted-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trusted-title {
        font-size: 32px;
        margin-bottom: 35px;
    }
}

@media (max-width: 767px) {
    .trusted-solutions {
        padding: 60px 0;
    }

    .trusted-box {
        padding: 35px 20px 40px;
    }

    .trusted-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .solution-image {
        height: 150px;
    }

    .solution-content h5 {
        font-size: 14px;
    }

    .solution-content a {

        font-size: 18px;

    }
}

@media (max-width: 575px) {
    .trusted-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .trusted-title {
        font-size: 24px;
    }

    .solution-image {
        height: 200px;
    }
}


.partnership-section {
    padding: 60px 0;
    background: #f5f5f7;
    position: relative;
    overflow: hidden;
}

.partnership-section::after {
    content: "";
    position: absolute;
    top: 0;
    right: 1%;
    width: 800px;
    height: 100%;
    background: rgba(236, 238, 245, 0.8);
    border-radius: 100px 0 0 100px;
    z-index: 1;
}

.partnership-wrapper {
    position: relative;
    z-index: 2;
}

.partnership-header {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 50px;
}

.partnership-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #00552b;
    margin-bottom: 16px;
}

.partnership-right p {
    margin: 28px 0 0 140px;
    font-size: 16px;
    line-height: 1.9;
    color: #4a5565;
    max-width: 620px;

}

.partnership-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
}

.partnership-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 30px 24px;
    box-shadow: 0 10px 25px rgba(16, 24, 40, 0.08);
    transition: all 0.4s ease;
}

.partnership-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(16, 24, 40, 0.12);
}

.partnership-card h4 {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 600;
    color: #111827;
    margin: 0 0 18px;
}

.partnership-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.9;
    color: #4a5565;
}

@media (max-width: 1199px) {
    .partnership-title {
        font-size: 32px;
    }

    .partnership-header {
        grid-template-columns: 360px 1fr;
        gap: 40px;
    }

    .partnership-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .partnership-card h4 {
        font-size: 20px;
    }
}

@media (max-width: 991px) {
    .partnership-section {
        padding: 80px 0;
    }

    .partnership-header {
        text-align: center
    }



    .partnership-section::after {
        display: none;
    }

    .partnership-header {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .partnership-right p {
        margin-top: 0;
        font-size: 16px;
        margin: 0px;
    }

    .partnership-title {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .partnership-section {
        padding: 30px 0;
    }



    .partnership-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .partnership-title {
        font-size: 22px;
    }

    .partnership-card {
        padding: 24px 20px;
    }

    .partnership-card h4 {
        font-size: 24px;
    }

    .partnership-card p {
        font-size: 15px;
        line-height: 1.8;
    }


}

@media (max-width: 480px) {
    .partnership-title {
        text-align: left;
    }

    .partnership-subtitle {
        display: block;
        text-align: left;
        margin-left: 0;

    }

    .partnership-right p {
        font-size: 14px;
        line-height: 1.8;
        margin-left: 0px;
        text-align: left;
    }

    .partnership-card h4 {
        font-size: 18px;
    }

    .partnership-card p {
        font-size: 14px;
    }
}

/* =========================
   Partners Section
========================= */
/* =========================
   PARTNERS SECTION
========================= */

.partners-section {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 60px 0;
    overflow: hidden;
}

/* Left Card */
.partners-left {
    width: 420px;
    min-width: 420px;
    background: linear-gradient(90deg,
            rgba(217, 217, 217, 0.148) 0%,
            rgba(115, 115, 115, 0.256) 100%);
    padding: 30px 24px;
    margin-left: 10px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    z-index: 5;
}

.partners-subtitle {
    font-size: clamp(14px, 1.2vw, 18px);
    line-height: 1.5;
    text-transform: uppercase;
    color: #00552b;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.partners-title {
    font-size: clamp(24px, 2vw, 32px);
    font-weight: 700;
    line-height: 1.35;
    margin: 0;
    background: linear-gradient(90deg, #025430, #0A8F5A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* =========================
   LOGO SLIDER
========================= */
/* =========================
   LOGO SLIDER
========================= */

.partners-slider {
    flex: 1;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.partners-track {
    display: flex;
    align-items: center;
    width: max-content;

    /* Same speed everywhere */
    animation: logoScroll 40s linear infinite;
    will-change: transform;
}

.partners-slider:hover .partners-track {
    animation-play-state: paused;
}

/* Logo Item */
.logo-item1 {
    flex: 0 0 auto;
    min-width: 220px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-item1 img {
    width: 100%;
    max-width: 180px;
    height: auto;
    object-fit: contain;

    transition: transform 0.3s ease;
}

.logo-item1:hover img {
    transform: scale(1.05);
}

/* Infinite Scroll */
@keyframes logoScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* =========================
   LARGE LAPTOP
========================= */

@media (max-width: 1200px) {
    .logo-item1 {
        min-width: 200px;
    }

    .logo-item1 img {
        max-width: 100px;
    }
}

/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

    .partners-section {
        flex-direction: column;
        gap: 20px;
    }

    .partners-left {
        width: 100%;
        min-width: auto;
        margin-left: 0;
        text-align: center;
    }

    .partners-slider {
        width: 100%;
    }

    .logo-item1 {
        min-width: 180px;
    }

    .logo-item1 img {
        max-width: 100px;
    }

    /* Keep same speed */
    .partners-track {
        animation-duration: 40s;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .partners-section {
        padding: 15px 0;
    }

    .partners-left {
        padding: 20px;
    }

    .partners-title {
        font-size: 22px;
    }

    .partners-subtitle {
        font-size: 13px;
    }

    .logo-item1 {
        min-width: 140px;
    }

    .logo-item1 img {
        max-width: 110px;
    }

    /* Keep same speed */
    .partners-track {
        animation-duration: 40s;
    }
}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {

    .partners-left {
        padding: 18px;
    }

    .partners-title {
        font-size: 20px;
        line-height: 1.3;
    }

    .logo-item1 {
        min-width: 120px;
    }

    .logo-item1 img {
        max-width: 100px;
    }

    /* Keep same speed */
    .partners-track {
        animation-duration: 40s;
    }
}

/* ================= PREMIUM MATERIALS SECTION ================= */

.premium-materials {
    padding: 40px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #00552b;
    margin-bottom: 12px;
}

.section-title {
    font-size: 38px;
    letter-spacing: 1px;
    line-height: 1.1;
    font-weight: 700;
    color: #111827;
    margin: 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.material-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(16, 24, 40, 0.08);
    transition: all 0.4s ease;
}

.material-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(16, 24, 40, 0.12);
}

.material-image {
    height: 250px;
    overflow: hidden;
}

.material-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* transition: transform 60s ease; */
}

.material-card:hover .material-image img {
    transform: scale(1.08);
}

.material-content {
    padding: 20px 18px;
}

.material-content h3 {
    margin: 0 0 12px;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 600;
    color: #111827;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    color: #00552b;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #00552b;
}

.read-more i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.material-card:hover .read-more i {
    transform: translateX(4px);
}

.materials-slider {
    overflow: hidden;
    width: 100%;
    position: relative;
    margin-top: 50px;
}

.materials-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: materialAutoScroll 25s linear infinite;
}

.materials-slider:hover .materials-track {
    animation-play-state: paused;
}

.materials-track .material-card {
    flex: 0 0 320px;
}

@keyframes materialAutoScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .materials-track {
        gap: 20px;
        animation-duration: 18s;
    }

    .materials-track .material-card {
        flex: 0 0 280px;
    }
}

@media (max-width: 1199px) {
    .section-title {
        font-size: 48px;
    }

    .material-image {
        height: 220px;
    }

    .material-content h3 {
        font-size: 20px;
    }
}

@media (max-width: 991px) {
    .premium-materials {
        padding: 80px 0;
    }

    .section-title {
        font-size: 40px;
    }

    .materials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .premium-materials {
        padding: 60px 0;
    }

    .section-title {
        font-size: 32px;
    }

    .section-header {
        margin-bottom: 35px;
    }

    .material-image {
        height: 220px;
    }

    .material-content h3 {
        font-size: 22px;
    }

    .read-more {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .materials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-title {
        font-size: 26px;
        line-height: 1.25;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .material-image {
        height: 240px;
    }

    .material-content {
        padding: 18px 16px;
    }

    .material-content h3 {
        font-size: 20px;
    }
}

/* ================= MATERIAL SLIDER ================= */
/* ================= SLIDER ================= */
.materials-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.materials-track {
    display: flex;
    gap: 30px;
    width: max-content;
}

.material-card {
    flex: 0 0 320px;
}

.materials-slider {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
    cursor: grab;

    scrollbar-width: none;
    -ms-overflow-style: none;
}

.materials-slider::-webkit-scrollbar {
    display: none;
}

.materials-track {
    display: flex;
    gap: 30px;
    width: max-content;
}

.material-card {
    flex: 0 0 320px;
}

/* ==========================================
   MOBILE
========================================== */
@media (max-width: 768px) {
    .materials-track {
        gap: 20px;
        animation-duration: 18s;
    }

    .materials-track .material-card {
        flex: 0 0 280px;
    }
}

.about-section {
    padding: 100px 0;
    background: #ffffff;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.service-cta {
    padding: 40px 0;
}

.service-cta-banner {
    position: relative;
    min-height: 400px;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.18);
}

.service-cta-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    transition: transform 8s ease;
}

.service-cta-banner:hover .service-cta-bg {
    transform: scale(1.06);
}

.service-cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.38);
    z-index: 2;
}

.service-cta-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 760px;
    padding: 0 20px;
}

.service-cta-content h2 {
    margin: 0 0 34px;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.service-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    border-radius: 999px;
    background: #00552b;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.service-cta-btn:hover {
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(0, 205, 183, 0.28);
}

.service-cta-btn span {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #ffffff;
    color: #00552b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

@media (max-width: 1199px) {
    .service-cta-banner {
        min-height: 460px;
    }

    .service-cta-content h2 {
        font-size: 54px;
    }
}

@media (max-width: 1024px) {
    .service-cta {
        padding: 40px 0;
    }

    .service-cta-banner {
        min-height: 300px;
        border-radius: 24px;
    }

    .service-cta-content h2 {
        font-size: 40px;
        margin-bottom: 28px;
    }
}

@media (max-width: 991px) {
    .service-cta {
        padding: 30px 0;
    }

    .service-cta-banner {
        min-height: 300px;
        border-radius: 24px;
    }

    .service-cta-content h2 {
        font-size: 40px;
        margin-bottom: 28px;
    }
}

@media (max-width: 767px) {
    .service-cta {
        padding: 30px 0;
    }

    .service-cta-banner {
        min-height: 250px;
        border-radius: 20px;
    }

    .service-cta-content h2 {
        font-size: 30px;
        line-height: 1.15;
        margin-bottom: 22px;
    }

    .service-cta-btn {
        padding: 14px 24px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .service-cta-banner {
        min-height: 180px;
        border-radius: 18px;
    }

    .service-cta-content {
        padding: 0 15px;
    }

    .service-cta-content h2 {
        font-size: 22px;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .service-cta-btn {
        padding: 12px 20px;
        font-size: 14px;
        gap: 8px;
    }

    .service-cta-btn span {
        width: 22px;
        height: 22px;
        font-size: 14px;
    }
}

.commitment-section {
    padding: 40px 0;
}

.commitment-wrapper {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

    align-items: center;
    align-items: center;
}

.commitment-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.commitment-logo img {
    width: 100%;
    height: auto;
}

.commitment-content {
    max-width: 720px;
}

.commitment-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 999px;
    background: #00552b;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.commitment-btn:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 205, 183, 0.25);
}

.commitment-btn span {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #ffffff;
    color: #0c7a74;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .commitment-section {
        padding: 60px 0;
    }

    .commitment-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .commitment-logo {
        justify-content: center;
    }

    .commitment-logo img {
        max-width: 300px;
    }

    .commitment-content {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .commitment-btn {
        padding: 11px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .commitment-section {
        padding: 30px 0 50px;
    }

    .commitment-logo img {
        max-width: 300px;
    }
}


/* =====================about======================== */

.about-hero {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomBg 12s ease-in-out infinite alternate;
    z-index: 1;
}

/* Gradient Overlay */
/* .about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 110, 97, 0.95) 0%,
            rgba(0, 110, 97, 0.78) 35%,
            rgba(0, 110, 97, 0.4) 65%,
            rgba(0, 110, 97, 0.15) 100%);
    z-index: 2;
} */

.about-content {
    position: relative;
    z-index: 3;
    animation: fadeUp 1.2s ease;
    width: 100%;
    padding-left: 10vh;
    text-align: left;
}

.about-content h1 {
    color: #fff;
    font-size: 38px;
    font-weight: 900;
    letter-spacing: -1px;
    margin: 0;
    line-height: 1.1;
}

@keyframes zoomBg {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.08);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    .about-hero {
        height: 270px;
    }

    .about-content h1 {
        font-size: 28px;
        margin-left: -30px;
    }
}

@media (max-width: 767px) {
    .about-hero {
        height: 220px;
    }

    .about-content h1 {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .about-hero {
        height: 190px;
    }

    .about-content h1 {
        font-size: 30px;
        /* margin-left: -30vh; */
    }
}

.industrial-section {
    width: 100%;
    padding: 60px 0;
    overflow: hidden;
    background:
        linear-gradient(0deg, #ffffff, #ffffff),
        linear-gradient(0deg, #f8f9fa, #f8f9fa);
}

.industrial-section .container {
    max-width: 1320px;
    padding-left: 40px;
    padding-right: 40px;
}

.industrial-section .row {
    align-items: center;
}

.left-content {
    padding-right: 70px;
}

.section-tag {
    color: #00552b;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
    animation: fadeUp 0.8s ease;
}

.section-text {
    font-size: 17px;
    line-height: 1.95;
    color: #555;
    max-width: 610px;
    margin-bottom: 50px;
    animation: fadeUp 1.2s ease;
}

.stats-wrapper {
    display: flex;
    gap: 85px;
    flex-wrap: wrap;
}

.stat-box {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    animation: fadeUp 1.4s ease;
}

.stat-line {
    width: 3px;
    height: 42px;
    background: #00552b;
    border-radius: 10px;
}

.stat-content h3 {
    color: #00552b;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 3px;
}

.stat-content p {
    margin: 0;
    color: #222;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
}

.right-content {
    padding-left: 70px;
}

.image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    animation: zoomIn 1.2s ease;
}

.main-image {
    width: 100%;
    max-width: 300px;
    height: 340px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
    transition: 0.5s ease;
}

.side-image {
    width: 100%;
    max-width: 300px;
    height: 340px;
    object-fit: cover;
    border-radius: 18px;
    margin-top: -120px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
    transition: 0.5s ease;
}

.main-image:hover,
.side-image:hover {
    transform: translateY(-10px) scale(1.02);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 1399px) {
    .left-content {
        padding-right: 50px;
    }

    .right-content {
        padding-left: 50px;
    }
}

@media (max-width: 1199px) {
    .industrial-section {
        padding: 90px 0;
    }

    .industrial-section .container {
        padding-left: 30px;
        padding-right: 30px;
    }

    .left-content {
        padding-right: 35px;
    }

    .right-content {
        padding-left: 35px;
    }

    .main-image {
        max-width: 320px;
        height: 390px;
    }

    .side-image {
        max-width: 220px;
        height: 300px;
    }
}

@media (max-width: 991px) {
    .industrial-section {
        padding: 80px 0;
    }

    .industrial-section .container {
        padding-left: 25px;
        padding-right: 25px;
    }

    .left-content {
        padding-right: 0;
    }

    .right-content {
        padding-left: 0;
        margin-top: 70px;
    }

    .image-wrapper {
        justify-content: center;
    }
}

/* ================= MOBILE ================= */

@media (max-width: 767px) {
    .industrial-section {
        padding: 65px 0;
    }

    .industrial-section .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .section-text {
        font-size: 16px;
    }

    .stats-wrapper {
        gap: 35px;
    }

    .image-wrapper {
        flex-direction: column;
        gap: 22px;
    }

    .main-image {
        max-width: 100%;
        height: 340px;
    }

    .side-image {
        max-width: 100%;
        width: 100%;
        height: 250px;
        margin-top: 0;
    }
}

@media (max-width: 480px) {
    .industrial-section .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .main-heading {
        font-size: 28px;
    }

    .section-text {
        font-size: 16px;
        line-height: 1.8;
    }

    .stat-content h3 {
        font-size: 24px;
    }

    .main-image {
        height: 290px;
    }

    .side-image {
        height: 220px;
    }
}

.why-choose-section {
    width: 100%;
    background: #00675c17;
    padding: 60px 0;
    overflow: hidden;
}

.why-choose-section .container {
    max-width: 1280px;
    padding-left: 30px;
    padding-right: 30px;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
    animation: fadeUp 1s ease;
}

.section-header h2 {
    font-size: 38px;
    font-weight: 700;
    color: #0d1526;
    margin-bottom: 18px;
    line-height: 1.1;
    letter-spacing: 1px;
}

.section-header p {
    max-width: 620px;
    margin: auto;
    color: #5b626d;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
    letter-spacing: 1px;
}

.feature-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 26px;
    height: 100%;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
    animation: fadeUp 1.2s ease;
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #00552b;
    box-shadow: 0 15px 35px rgba(245, 243, 243, 0.08);
}

.icon-box {
    width: 54px;
    height: 54px;
    border-radius: 10px;
    background: #c8dcda;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: 0.4s ease;
}

.feature-card:hover .icon-box {
    background: #00552b;
}

.icon-box svg {
    width: 24px;
    height: 24px;
    color: #00552b;
    transition: 0.4s ease;
}

.feature-card:hover .icon-box svg {
    color: #fff;
}

.custom-icon {
    color: Pioneering MEP Material Supplies and Industrial Service Solutions Across the Kingdom;
    transition: 0.4s ease;
}

.custom-icon:hover {
    color: #fff;
}

.feature-card h3 {
    font-size: 20px;
    line-height: 1.3;
    font-weight: 600;
    color: #00552b;
    margin-bottom: 18px;
}

.feature-card p {
    font-size: 17px;
    line-height: 1.9;
    color: #5f646c;
    margin: 0;
    font-weight: 400;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1399px) {
    .section-header h2 {
        font-size: 40px;
    }

    .feature-card h3 {
        font-size: 20px;
    }
}

@media (max-width: 1199px) {
    .why-choose-section {
        padding: 90px 0;
    }

    .section-header {
        margin-bottom: 55px;
    }

    .section-header h2 {
        font-size: 38px;
    }

    .feature-card {
        padding: 28px 22px;
    }

    .feature-card h3 {
        font-size: 20px;
    }
}

@media (max-width: 991px) {
    .why-choose-section {
        padding: 80px 0;
    }

    .why-choose-section .container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .section-header p {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .why-choose-section {
        padding: 30px 0;
    }

    .why-choose-section .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .section-header {
        margin-bottom: 45px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .section-header p {
        font-size: 16px;
        line-height: 1.8;
    }

    .feature-card {
        padding: 26px 22px;
    }

    .feature-card h3 {
        font-size: 20px;
    }

    .feature-card p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 22px;
        line-height: 1.2;
    }

    .feature-card {
        border-radius: 14px;
    }

    .icon-box {
        width: 50px;
        height: 50px;
    }
}


/* ================contact===================== */
.manpower-banner {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomBg 12s ease-in-out infinite alternate;
    z-index: 1;
}

/* .banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.82) 0%,
            rgba(0, 0, 0, 0.58) 45%,
            rgba(0, 0, 0, 0.45) 100%);
    z-index: 2;
} */

.banner-content {
    position: relative;
    z-index: 3;
    color: #fff;
    /* margin-left: 100px; */
    animation: fadeUp 1s ease;

}


.breadcrumb-text {
    font-size: 16px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.85);
}

.fornewcolor {
    color: black !important;
}

@media (max-width: 768px) {
    .mobile-left {
        text-align: left;
        margin-left: -10px;
        /* padding-left: 15px; */
    }
}

@media (max-width: 425) {
    .mobile-left {
        text-align: left;
        margin-left: -10px;
        /* padding-left: 15px; */
    }
}


.banner-content h1 {
    font-size: 38px;
    font-weight: 700;
    /* margin: 0; */
}

@keyframes zoomBg {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.08);
    }
}



.breadcrumb-text {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #d8d8d8;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 18px;
}

.breadcrumb-text span {
    opacity: 0.8;
}

.banner-content h1 {
    color: #fff;
    font-size: 40px;
    font-weight: 800;
    line-height: 1.05;
    margin: 0;
    letter-spacing: 1px;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomBg {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.08);
    }
}

@media (max-width: 768px) {
    .manpower-banner {
        height: 300px;
    }

    .banner-content {
        padding-left: 20px;
    }

    .banner-content h1 {
        font-size: 28px;
    }

    .breadcrumb-text {
        font-size: 14px;
    }
}

@media (max-width: 1199px) {
    .banner-content h1 {
        font-size: 38px;
    }
}

@media (max-width: 991px) {
    .manpower-banner {
        height: 280px;
    }

    .banner-content {
        padding-left: 25px;
    }

    .banner-content h1 {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .manpower-banner {
        height: 240px;
    }

    .banner-content {
        padding-left: 20px;
    }

    .breadcrumb-text {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .banner-content h1 {
        font-size: 28px;
        line-height: 1.15;
    }
}

@media (max-width: 480px) {
    .manpower-banner {
        height: 210px;
    }

    .banner-content {

        margin-left: -20px;
    }

    .banner-content h1 {
        font-size: 28px;
        margin-left: -30px;
    }
}


li a {
    color: inherit;
    text-decoration: none;
}

/* 
li a:hover {
    color: #0B82AD;
} */

.contact-section {
    width: 100%;
    padding: 40px 0;
    overflow: hidden;
}

.contact-section .container {
    max-width: 1240px;
    padding-left: 20px;
    padding-right: 20px;
}

.contact-info-box {
    background: linear-gradient(90deg, #025430, #0A8F5A);
    border-radius: 22px;
    padding: 38px 30px;
    height: 100%;
    color: #fff;
}

.contact-info-box h3 {
    font-size: 23px;
    font-weight: 600;
    margin-bottom: 22px;
    letter-spacing: 1px;
}

.info-title {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 16px;
}

.info-text {
    font-size: 17px;
    line-height: 1.9;
    color: #f5f5f5;
    margin-bottom: 28px;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 17px;
    color: #fff;
}

.contact-list i {
    font-size: 13px;
}

.hours-text {
    font-size: 17px;
    line-height: 1.9;
    color: #f5f5f5;
    margin-bottom: 28px;
}

.quote-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    border-radius: 50px;
    background: #fff;
    color: black;

    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: 0.4s ease;
}

.quote-btn:hover {
    transform: translateY(-4px);
}

.form-content {
    padding-left: 35px;
}

.form-content h2 {
    font-size: 38px;
    font-weight: 700;
    color: #101828;
    margin-bottom: 16px;
}

.form-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #667085;
    max-width: 620px;
    margin-bottom: 28px;
}

.contact-form .form-control {
    width: 100%;
    height: 52px;
    border: 1px solid #d7dce2;
    border-radius: 10px;
    background: transparent;
    padding: 0 16px;
    font-size: 16px;
    color: #111;
    box-shadow: none;
    margin-bottom: 14px;
}

.contact-form textarea.form-control {
    height: 120px;
    padding-top: 16px;
    resize: none;
}

.contact-form .form-control::placeholder {
    color: #98a2b3;
}

.contact-form .form-control:focus {
    border-color: #0d7a72;
}

.submit-btn {
    width: 100%;
    height: 56px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(90deg, #025430, #0A8F5A);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    margin-top: 6px;
    transition: 0.4s ease;
}

.submit-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

@media (max-width: 991px) {
    .contact-section {
        padding: 65px 0;
    }

    .form-content {
        padding-left: 0;
        margin-top: 38px;
    }
}

@media (max-width: 767px) {
    .contact-section {
        padding: 55px 0;
    }

    .contact-section .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .contact-info-box {
        padding: 30px 22px;
        border-radius: 18px;
    }

    .contact-info-box h3 {
        font-size: 23px;
    }

    .info-title {
        font-size: 22px;
    }

    .form-content h2 {
        font-size: 34px;
    }

    .form-content p {
        font-size: 13px;
    }

    .contact-form .form-control {
        height: 50px;
    }

    .contact-form textarea.form-control {
        height: 110px;
    }
}

@media (max-width: 480px) {
    .form-content h2 {
        font-size: 28px;
    }

    .quote-btn {
        width: 100%;
    }
}

.map-section {
    width: 100%;
    padding: 50px 0;
}

.map-section .container {
    max-width: 1280px;

}

.map-box {
    width: 100%;
    height: 420px;
    border-radius: 22px;
    position: relative;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.map-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.map-icon {
    width: 52px;
    height: 52px;
    border: 4px solid #006b5e;
    border-radius: 50%;
    position: relative;
    margin-bottom: 14px;
}

.map-icon::before {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    background: #006b5e;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.map-icon::after {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    border-left: 4px solid #006b5e;
    border-bottom: 4px solid #006b5e;
    transform: rotate(-45deg);
    bottom: -10px;
    left: 50%;
    margin-left: -9px;
    border-radius: 0 0 0 4px;
}

.map-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1d2939;
    margin-bottom: 4px;
}

.map-content p {
    font-size: 13px;
    color: #667085;
    margin: 0;
}

@media (max-width: 991px) {
    .map-box {
        height: 360px;
    }
}

@media (max-width: 767px) {
    .map-section {
        padding: 35px 0;
    }

    .map-section .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .map-box {
        height: 300px;
        border-radius: 18px;
    }

    .map-icon {
        width: 44px;
        height: 44px;
    }

    .map-content h4 {
        font-size: 14px;
    }

    .map-content p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .map-box {
        height: 240px;
        border-radius: 16px;
    }
}

/* ===============================electrical-product================== */
#electricalBannerSlider {
    overflow: hidden;
}

.carousel-inner {
    background: linear-gradient(90deg, #025430, #0A8F5A);


}

.banner-slide-wrap {
    min-height: 460px;
    /* background: linear-gradient(180deg, #00796B 0%, #10C8B3 100%); */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 60px;
}

.banner-left-content {
    max-width: 520px;
}

.banner-left-content h2 {
    color: #FFF67C;

    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
}

.banner-left-content h3 {
    color: #fff;
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.banner-left-content p {
    color: #fff;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* =========================
   Banner Right Images
========================= */

.banner-right-circle {
    width: 430px;
    height: 430px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    margin-bottom: -120px;
    border-radius: 50%;
    background-color: white;
}

.banner-right-circle,
.banner-right-circle1,
.banner-right-circle2 {
    opacity: 0;
    transform: translateX(120px);
}

.banner-slide-wrap {
    height: 460px;
    min-height: 460px;
}

.carousel-item.active .banner-right-circle,
.carousel-item.active .banner-right-circle1,
.carousel-item.active .banner-right-circle2 {
    opacity: 1;
    transform: translateX(0);
    transition: all 1s ease 0.3s;
}

.banner-right-circle1 {
    width: 430px;
    height: 430px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    /* margin-bottom: -150px; */
}

.banner-right-circle2 {
    width: 430px;
    height: 430px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    /* margin-bottom: -150px; */
}

/* .banner-right-circle, */
.banner-right-circle2 {
    background: #fff;
    border-radius: 50%;
}

/* 
.banner-right-circle img {
    border-radius: 50%;
    width: auto !important;
} */

.banner-right-circle img,
.banner-right-circle1 img,
.banner-right-circle2 img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-width: 100%;
}

.banner-right-circle2 img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-width: 100%;
}

/* =========================
   Large Laptop
========================= */
@media (max-width: 1200px) {

    .banner-right-circle,
    .banner-right-circle1,
    .banner-right-circle2 {
        width: 360px;
        height: 360px;
    }
}

/* =========================
   Tablet
========================= */
@media (max-width: 991px) {

    .banner-right-circle,
    .banner-right-circle1,
    .banner-right-circle2 {
        width: 300px;
        height: 300px;
        margin: 30px auto 0;
    }
}

/* =========================
   Mobile
========================= */
@media (max-width: 768px) {

    .banner-right-circle,
    .banner-right-circle1,
    .banner-right-circle2 {
        width: 250px;
        height: 250px;
    }

    .banner-right-circle img {
        width: 85%;

    }

    .banner-right-circle1 img,
    .banner-right-circle2 img {
        width: 100%;
    }

}

/* =========================
   Small Mobile
========================= */
@media (max-width: 480px) {

    .banner-right-circle,
    .banner-right-circle1,
    .banner-right-circle2 {
        width: 200px;
        height: 200px;
    }

    .banner-right-circle img,
    .banner-right-circle1 img {
        width: 100%;
    }
}

.banner-right-circle2 img {
    width: 100%;
}

/* =========================
   Extra Small Devices
========================= */
@media (max-width: 360px) {

    .banner-right-circle,
    .banner-right-circle1,
    .banner-right-circle2 {
        width: 170px;
        height: 170px;
    }
}

.banner-right-circle1 img {
    width: 90%;
    height: auto;
    object-fit: contain;
}

.banner-nav {
    display: flex;
}

.banner-nav button {
    width: 40px;
    height: 40px;
    border: none;
    background: #fff;
    color: #00552b;
    margin-right: 4px;
    cursor: pointer;
    font-size: 18px;
}

.banner-nav button:hover {
    background: #f1f1f1;
}

@media(max-width:991px) {

    .banner-slide-wrap {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .banner-right-circle {
        width: 300px;
        height: 300px;
        margin-top: 30px;
    }

    .banner-left-content h2 {
        font-size: 30px;
    }

    .banner-left-content h3 {
        font-size: 22px;
    }

    .banner-nav {
        justify-content: center;
        display: none;
    }
}

.carousel-item {
    transition: transform 10ss cubic-bezier(0.4, 0, 0.2, 1);
}

/* Initial State */
.banner-left-content {
    opacity: 0;
    transform: translateX(-120px);
}

.banner-right-circle,
.banner-right-circle1 {
    opacity: 0;
    transform: translateX(120px);
}

/* Animate Active Slide */
.carousel-item.active .banner-left-content {
    opacity: 1;
    transform: translateX(0);
    transition: all 1s ease;
}

.carousel-item.active .banner-right-circle,
.carousel-item.active .banner-right-circle1 {
    opacity: 1;
    transform: translateX(0);
    transition: all 1s ease 0.3s;
}

/* Smooth Bootstrap Slide */
.carousel-item {
    transition: transform 1s ease-in-out;
}

/* Image Hover Effect */
/* .banner-right-circle img,
.banner-right-circle1 img {
    max-width: 100%;
    height: 60%;
    transition: transform .30s ease;
} */

/* .banner-right-circle:hover img,
.banner-right-circle1:hover img {
    transform: scale(1.05);
} */
/* =================================
   RESPONSIVE FIX ONLY
   (NO DESIGN CHANGES)
================================= */

@media (max-width: 991px) {

    .banner-slide-wrap {
        height: auto;
        min-height: 460px;
    }

    .banner-right-circle,
    .banner-right-circle1,
    .banner-right-circle2 {
        margin-bottom: 0;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {

    .banner-slide-wrap {
        height: auto;
        min-height: auto;
        padding: 40px 15px;
    }

    .banner-left-content {
        max-width: 100%;
    }

    .banner-left-content h2 {
        font-size: 26px;
        line-height: 1.3;
    }

    .banner-left-content h3 {
        font-size: 20px;
        line-height: 1.4;
    }

    .banner-left-content p {
        font-size: 14px;
        line-height: 1.6;
    }

    .banner-right-circle,
    .banner-right-circle1,
    .banner-right-circle2 {
        width: 250px;
        height: 250px;
        margin: 20px auto 0;
    }
}

@media (max-width: 480px) {

    .banner-slide-wrap {
        padding: 30px 12px;
    }

    .banner-left-content h2 {
        font-size: 22px;
    }

    .banner-left-content h3 {
        font-size: 18px;
    }

    .banner-left-content p {
        font-size: 13px;
    }

    .banner-right-circle,
    .banner-right-circle1,
    .banner-right-circle2 {
        width: 200px;
        height: 200px;
    }

    .banner-nav button {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
}

@media (max-width: 360px) {

    .banner-right-circle,
    .banner-right-circle1,
    .banner-right-circle2 {
        width: 170px;
        height: 170px;
    }

    .banner-left-content h2 {
        font-size: 20px;
    }

    .banner-left-content h3 {
        font-size: 16px;
    }
}

/* ===========================2nd section=============== */
.products-section {
    padding: 50px;
    padding-top: 70px;
    width: 100%;
    max-width: 100%;
}

.title-box {
    background: linear-gradient(90deg, rgba(217, 217, 217, 0.148) 0%, rgba(115, 115, 115, 0.256) 100%);

    padding: 12px;
    text-align: center;
    margin-bottom: 20px;
    /* margin-right: -86px; */
}


@media (max-width: 992px) {
    .title-box {
        margin-right: 0;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .title-box {
        margin-right: 0;
        text-align: center;
    }
}

.title-box h2 {
    font-size: 24px;
    background: #00552b;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    font-weight: 700;
    margin: 0;
}

.products-desc {
    font-size: 20px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.product-card {
    background: #fff;
    overflow: hidden;
    transition: .3s;
    /* box-shadow:0 2px 6px rgba(0,0,0,.08); */
}

.product-card:hover {
    transform: translateY(-4px);
}

.product-card img {
    width: 100%;
    height: auto;
    /* object-fit: cover; */
    display: block;
}

/* .product-name {
    background: #00675C;

    color: #fff;
    font-size: 14px;
    font-weight: 400;
    text-align: cent
    padding: 8px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
} */
.product-name {
    background: linear-gradient(90deg, #025430, #0A8F5A);
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    padding: 8px;
    height: 70px;
    /* Equal height for all */
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.4;
    box-sizing: border-box;
}

/* ==========================
   TABLET (768px - 991px)
========================== */
@media (max-width:991px) {

    .products-section {
        padding: 30px 15px;
    }

    .products-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .product-card {
        height: 100%;
    }

    .product-card img {
        width: 100%;
        height: 140px;
        object-fit: cover;
    }

    .product-name {
        min-height: 60px;
        font-size: 14px;
        padding: 10px;
        line-height: 1.4;
    }

    .title-box h2 {
        font-size: 24px;
        line-height: 1.3;
    }

    .products-desc {
        font-size: 16px;
        line-height: 1.7;
    }

}

/* ==========================
   MOBILE (481px - 767px)
========================== */
@media (max-width:767px) {

    .products-section {
        padding: 25px 12px;
    }

    .products-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .product-card img {
        height: 110px;
    }

    .product-name {
        min-height: 55px;
        font-size: 14px;
        padding: 8px;
        line-height: 1.3;
    }

    .title-box {
        padding: 10px;
        /* margin-right: -12px; */
    }

    .title-box h2 {
        font-size: 20px;
        line-height: 1.3;
    }

    .products-desc {
        font-size: 16px;
        text-align: center;
    }

}

/* ==========================
   SMALL MOBILE (320px - 480px)
========================== */
@media (max-width:480px) {

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .product-card img {
        height: 120px;
    }

    .product-name {
        font-size: 13px;
        min-height: 50px;
        padding: 6px;
    }

    .title-box h2 {
        font-size: 16px;

    }

    .products-desc {
        font-size: 16px;
        line-height: 1.6;
    }

}

.carousel-indicators {
    display: none !important;
}

/* ==========================
   HERO SECTION
========================== */

.reliability-banner {
    position: relative;
    /* height: 700px; */
    overflow: hidden;
    /* margin-top: 30px; */
    margin: 30px 0;
}

.reliability-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.foroverlay {
    position: relative;
    overflow: hidden;
}

.foroverlay::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 103, 92, 0.22) -4.58%,
            rgba(0, 154, 138, 0.22) 45.42%,
            rgba(0, 180, 160, 0.22) 70.42%,
            rgba(255, 255, 255, 0.22) 95.42%);
    z-index: 1;
    pointer-events: none;
}

.foroverlay .overlay-box {
    position: absolute;
    z-index: 2;
}

.overlay-box {
    position: absolute;
    /* left: 30px; */
    bottom: 85px;
    background: #fff;
    width: 447px;
    padding: 25px 25px;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .12);
}

.overlay-box h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.30;
    text-transform: uppercase;
    text-align: center;
    color: #111;
    letter-spacing: .5px;
}

.contact-btn {
    position: absolute;
    right: 0px;
    bottom: -72px;
    background: linear-gradient(90deg, #025430, #0A8F5A);
    color: #fff;
    text-decoration: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 14px;
    transition: .3s;
    display: inline-block;
}

.contact-btn:hover {
    background: linear-gradient(90deg, #025430, #0A8F5A);
    color: #fff;
    transform: translateY(-2px);
}

.banner-style-2 {
    background: transparent !important;
    box-shadow: none !important;
    width: 100% !important;
    padding: 0 !important;
    left: 20px;
    bottom: 150px;

}

.forh2 {
    color: #fff !important;
    font-size: clamp(40px, 6.5vw, 72px) !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    text-transform: uppercase;
    margin-bottom: 30px !important;
    text-align: center !important;
    letter-spacing: -1px;
}

.forh2 span {
    font-size: 0.35em;
    font-weight: 600;
    margin: 0 8px;
    vertical-align: middle;
}

.banner-style-2 .contact-btn {
    position: static;
    display: inline-block;
    border-radius: 10px;
    padding: 14px 28px;
    background: #00695c;
}

/* ==========================
   TABLET
========================== */

@media(max-width:991px) {
    /* 
    .reliability-banner {
        height: 420px;
    } */

    .overlay-box {
        width: 420px;
        /* left: 20px; */
        /* bottom: 70px; */
        padding: 28px 20px;
    }

    .overlay-box h2 {
        font-size: 18px;
    }

    .contact-btn {
        font-size: 16px;
        padding: 12px 24px;
    }

}

/* ==========================
   MOBILE
========================== */



@media(max-width:320px) {

    .overlay-box {
        display: none;
    }


}

@media(max-width:767px) {

    /* .reliability-banner {
        height: 550px;
    } */

    .reliability-banner img {
        object-position: center;
    }

    .overlay-box {
        position: absolute;
        left: 15px;
        right: 15px;
        bottom: 90px;
        width: auto;
        padding: 25px 15px;
    }

    .overlay-box h2 {
        font-size: 18px;
        line-height: 1.3;
    }

    .contact-btn {
        right: 50%;
        transform: translateX(50%);
        bottom: -52px;
        padding: 12px 24px;
        font-size: 15px;
        border-radius: 12px;
    }

    .contact-btn:hover {
        transform: translateX(50%) translateY(-2px);
    }

}

/* Small Mobile */

@media(max-width:480px) {
    /* 
    .reliability-banner {
        height: 450px;
    } */

    .overlay-box h2 {
        font-size: 15px;
    }

    .contact-btn {
        font-size: 14px;
        padding: 10px 20px;
    }

}

/* ================================banner=================== */
/* =========================
   TOOLS BANNER SECTION
========================= */

.tools-banner-section {
    background: linear-gradient(90deg, #025430, #0A8F5A);
    padding: 60px 0;
    /* height:500px; */

}

.tools-banner-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.tools-banner-content {
    flex: 1;
    max-width: 650px;
}

.tools-banner-content h1 {
    color: #FFF67C;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.banner-text-1 {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 15px;
}

.banner-text-2 {
    color: #fff;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 20px;
}

.banner-btn {
    display: inline-block;
    margin-top: 15px;
    background: #fff;
    color: #00675C;
    padding: 10px 30px;
    border: 2px solid #00675C;
    border-radius: 7px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s ease;
}

.banner-btn:hover {
    transform: translateY(-3px);
}

/* =========================
   IMAGE
========================= */

.tools-banner-image {
    width: 100%;
    max-width: 380px;
    flex-shrink: 0;
}

.tools-banner-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    border-radius: 4px;
}

.tools-banner-image img.extraclass {
    border-radius: 50% !important;
}

.tools-banner-image .extraclass1 {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 130px;
    display: block;
}

/* Large tablet */
@media (max-width: 1199px) {
    .tools-banner-image .extraclass1 {
        height: 250px;
        border-radius: 100px;
    }
}

/* Tablet */
@media (max-width: 991px) {
    .tools-banner-image .extraclass1 {
        height: 220px;
        border-radius: 80px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .tools-banner-image .extraclass1 {
        height: 180px;
        border-radius: 50px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .tools-banner-image .extraclass1 {
        /* height: 150px; */
        /* border-radius: 25px; */
    }
}

.forcenter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

/* =========================
   LARGE TABLET
========================= */

@media (max-width: 991px) {

    .tools-banner-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .tools-banner-content {
        max-width: 100%;
    }

    .tools-banner-content h1 {
        font-size: 34px;
    }

    .banner-text-1,
    .banner-text-2 {
        font-size: 18px;
    }

    .tools-banner-image {
        max-width: 320px;
        margin: 0 auto;
    }

    .tools-banner-image img {
        height: 320px;
    }
}

/* =========================
   TABLET
========================= */

@media (max-width: 768px) {

    .tools-banner-section {
        padding: 50px 0;
    }

    .tools-banner-content h1 {
        font-size: 30px;
    }

    .banner-text-1,
    .banner-text-2 {
        font-size: 16px;
        line-height: 1.6;
    }

    .tools-banner-image {
        max-width: 280px;
    }

    .tools-banner-image img {
        height: 280px;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 576px) {

    .tools-banner-section {
        padding: 40px 0;
    }

    .tools-banner-wrapper {
        gap: 25px;
    }

    .tools-banner-content h1 {
        font-size: 26px;
    }

    .banner-text-1,
    .banner-text-2 {
        font-size: 15px;
        line-height: 1.5;
    }

    .banner-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .tools-banner-image {
        max-width: 240px;
    }

    .tools-banner-image img {
        height: 240px;
    }
}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {

    .tools-banner-content h1 {
        font-size: 22px;
    }

    .banner-text-1,
    .banner-text-2 {
        font-size: 14px;
    }

    .tools-banner-image {
        max-width: 200px;
    }

    .tools-banner-image img {
        height: 200px;
    }
}












/* =====================================index banner===================== */

.pw-hero-slider {
    position: relative;
}

.pw-slide-bg {
    height: 80%;
    min-height: 700px;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* .pw-slide-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
} */

/* ARROWS */
.carousel-control-prev,
.carousel-control-next {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    opacity: 1;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.35s ease;
}

.carousel-control-prev {
    left: 25px !important;
}

.carousel-control-next {
    right: 25px !important;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: #00897b;
    transform: translateY(-50%) scale(1.08);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 22px;
    height: 22px;
    background-size: 22px;
}

/* MOBILE */
@media (max-width: 768px) {
    .pw-slide-bg {
        height: 55vh;
        min-height: 600px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

/* =====================career=============================== */


/* ===========================
   HERO SECTION
=========================== */
.career-hero-section {
    min-height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.career-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* .career-hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 2;
} */

.career-content-wrap {
    position: relative;
    z-index: 3;
    color: #fff;
}

/* 
.career-hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(5, 15, 35, .90) 0%,
            rgba(5, 15, 35, .65) 1%,
            rgba(5, 15, 35, .25) 1%);
    z-index: 2;
} */

.career-content-wrap {
    position: relative;
    z-index: 3;
    max-width: 650px;
    margin-left: 80px;
}

.career-title {
    color: #fff;
    font-size: 45px;
    line-height: 1.05;
    font-weight: 700;
    margin-bottom: 25px;
}

.career-description {
    color: #d6d6d6;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 520px;
}

.career-btn {
    background: #00552b;

    border: none;
    color: #fff;
    padding: 16px 38px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .5px;
    transition: .3s;
}

.career-btn:hover {
    background: #00552b;
}

/* ===========================
   MODAL
=========================== */

.resume-modal-content {
    border-radius: 0;
    border: none;
    padding: 20px;
}

.resume-modal-title {
    font-size: 34px;
    font-weight: 700;
    text-align: center;
    width: 100%;
}

.resume-label {
    font-size: 13px;
    font-weight: 600;
    color: #666;
    margin-bottom: 8px;
}

.resume-input {
    height: 50px;
    border-radius: 0;
}

.professional-title {
    font-size: 22px;
    font-weight: 700;
    margin: 20px 0;
}

.resume-upload-box {
    border: 2px dashed #d5d5d5;
    min-height: 170px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    cursor: pointer;
    margin-top: 10px;
    background: #d8e7ef;
}

.resume-upload-box svg {
    width: 45px;
    height: 45px;
    margin-bottom: 10px;
}

.resume-upload-box h6 {
    margin-bottom: 5px;
    font-weight: 600;
}

.resume-upload-box p {
    color: #777;
    font-size: 13px;
}

.resume-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 35px;
}

.resume-back-link {
    text-decoration: none;
    color: #444;
    font-size: 14px;
}

.resume-next-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 14px 35px;
    font-size: 13px;
    font-weight: 600;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1200px) {

    .career-content-wrap {
        margin-left: 60px;
        max-width: 600px;
    }

    .career-title {
        font-size: 45px;
    }

}

@media (max-width: 992px) {

    .career-hero-section {
        min-height: 90vh;
    }

    .career-content-wrap {
        margin-left: 40px;
        max-width: 550px;
    }

    .career-title {
        font-size: 48px;
    }

    .career-description {
        font-size: 16px;
    }

    .resume-modal-title {
        font-size: 36px;
    }

}

@media (max-width: 768px) {

    .career-hero-section {
        min-height: 80vh;
        text-align: center;
    }

    /* .career-content-wrap {
        margin: 0 auto;
        padding: 0 25px;
        max-width: 100%;
    } */

    .career-title {
        font-size: 42px;
        line-height: 1.15;
    }

    .career-description {
        font-size: 16px;
        line-height: 1.7;
        max-width: 100%;
    }

    .career-btn {
        width: 100%;
        max-width: 260px;
    }

    .resume-modal-title {
        font-size: 30px;
    }

    .resume-footer {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }

    .resume-next-btn {
        width: 100%;
    }

    .resume-back-link {
        text-align: center;
    }

}

@media (max-width: 576px) {

    .career-hero-section {
        min-height: 75vh;
    }

    .career-content-wrap {
        padding: 0 20px;
    }

    .career-title {
        font-size: 28px;
    }

    .career-description {
        font-size: 16px;
    }

    .career-btn {
        padding: 14px 28px;
        font-size: 14px;
    }

    .resume-modal-title {
        font-size: 24px;
    }

    .professional-title {
        font-size: 18px;
    }

    .resume-input {
        height: 46px;
        font-size: 14px;
    }

    .resume-upload-box {
        min-height: 140px;
        padding: 20px;
    }

    .resume-upload-box h6 {
        font-size: 14px;
    }

    .resume-upload-box p {
        font-size: 12px;
    }

}

@media (max-width: 400px) {

    .career-title {
        font-size: 28px;
    }

    .career-description {
        font-size: 16px;
    }

    .career-btn {
        width: 100%;
        max-width: 100%;
    }

    .resume-modal-title {
        font-size: 20px;
    }

    .resume-next-btn {
        padding: 12px 20px;
        font-size: 12px;
    }

}

.success-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    /*background: #00552b;*/
    color: #0a5e56;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    box-shadow: 0px 0px 0px 8px #006A611A;
    /* border: 2px solid #5a5b5b; */
}

.success-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
    margin-left: 77px;
}

.success-text {
    color: #666;
    max-width: 450px;
    margin: 0 auto 30px;
    line-height: 1.8;
    text-align: center;
}

.success-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 11px 67px;
    font-size: 13px;
    font-weight: 600;
    width: 270px;
    margin-left: 109px;
}

/* @media (max-width: 768px) {
    .success-btn {
        width: auto;
        margin: 20px auto 0;
        display: block;
        padding: 11px 30px;
    }
} */

#applicationSuccessModal .modal-content {
    min-height: 500px;
    display: flex;
    justify-content: center;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width:768px) {

    #applicationSuccessModal .modal-content {
        min-height: 420px;
        padding: 30px 20px;
    }

    .success-title {
        font-size: 26px;
        margin-left: 31px;
    }

    .success-text {
        font-size: 14px;
        max-width: 100%;
    }

    .success-btn {
        width: 220px;
        /* margin-left: 0px; */
    }

}

@media (max-width:576px) {

    .success-icon {
        width: 60px;
        height: 60px;
        font-size: 26px;
        border-radius: 12px;
    }

    .success-title {
        font-size: 22px;
        line-height: 1.3;
        margin-left: 31px;
    }

    .success-text {
        font-size: 13px;
        line-height: 1.7;
        margin-bottom: 25px;
    }

    .success-btn {
        width: 100%;
        max-width: 250px;
        padding: 12px 20px;
        margin: auto;
    }

    #applicationSuccessModal .modal-content {
        min-height: 380px;
        padding: 25px 15px;
    }

}

@media (max-width:400px) {

    .success-icon {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }

    .success-title {
        font-size: 18px;
        margin-left: 31px;
    }

    .success-text {
        font-size: 12px;
    }

    .success-btn {
        max-width: 100%;
        font-size: 14px;
        margin-left: 0px;
    }

}

/* ========1st section======== */

/* ========================= */

.life-significant-section {
    padding: 100px 0;
    overflow: hidden;
    background: #F2F4F6;

}


.life-significant-container {
    max-width: 1300px;
    margin: auto;
    padding: 0 30px;
}

.life-significant-row {
    display: flex;
    align-items: center;
    gap: 70px;
}

/* =========================
   IMAGE GRID
========================= */
.life-gallery {
    flex: 1;
    display: block;
}

.life-card {
    overflow: hidden;
    border-radius: 4px;
    background: #111;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    opacity: 0;
    transform: translateY(60px);
    transition: 1s ease;
    height: 450px;
}

.life-card.show {
    opacity: 1;
    transform: translateY(0);
}

.life-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: .6s;
}

.life-card:hover img {
    transform: scale(1.08);
}

/* =========================
   CONTENT
========================= */

.life-content {
    flex: 1;
    max-width: 520px;
    opacity: 0;
    transform: translateX(80px);
    transition: 1s ease;
}

.life-content.show {
    opacity: 1;
    transform: translateX(0);
}

.life-title {
    font-size: 38px;
    font-weight: 800;
    color: #111;
    line-height: 1.1;
    margin-bottom: 22px;
    letter-spacing: 1px;
}

.life-desc {
    color: #666;
    line-height: 1.8;
    font-size: 17px;
    margin-bottom: 40px;
}

.life-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 32px;
}

.life-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.life-icon svg {
    width: 70px;
    height: 70px;
    color: #00756d;
    margin-bottom: -41px;
}

.life-feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #111;
    margin-bottom: 6px;
}

.life-feature-text {
    color: #666;
    line-height: 1.7;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1199px) {

    .life-significant-row {
        gap: 50px;
    }

    .life-title {
        font-size: 36px;
    }

}

@media (max-width: 991px) {

    .life-significant-section {
        padding: 80px 0;
    }

    .life-significant-row {
        flex-direction: column;
        gap: 10px;
    }

    .life-gallery {
        width: 100%;
        max-width: 700px;
        margin: auto;
    }

    .life-content {
        max-width: 700px;
        width: 100%;
        margin: auto;
    }

    .life-title {
        font-size: 42px;
    }

}

@media (max-width: 767px) {

    .life-significant-section {
        padding: 60px 0;
    }

    .life-significant-container {
        padding: 0 20px;
    }

    .life-gallery {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .life-card {
        margin-top: 0 !important;
        height: 280px !important;
    }

    .life-content {
        text-align: left;
        padding: 10px;
    }

    .life-title {
        font-size: 34px;
        margin-bottom: 15px;
    }

    .life-desc {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .life-feature {
        gap: 12px;
        margin-bottom: 25px;
    }

    .life-feature-title {
        font-size: 18px;
    }

    .life-feature-text {
        font-size: 14px;
        line-height: 1.6;
    }

}

@media (max-width: 575px) {

    .life-significant-container {
        padding: 0 15px;
    }

    .life-title {
        font-size: 28px;
        line-height: 1.2;
    }

    .life-desc {
        font-size: 14px;
    }

    .life-card {
        height: 240px !important;
        border-radius: 8px;
    }

    .life-icon {
        width: 28px;
        height: 28px;
    }

    /* .life-icon svg{
        width:18px;
        height:18px;
    } */

    .life-feature-title {
        font-size: 16px;
    }

    .life-feature-text {
        font-size: 13px;
    }

}



/* ==================================
   CAREER CTA SECTION
================================== */

.career-cta-section {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Background Image */

.career-cta-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dark Overlay */

.career-cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 17, 40, .78);
}

/* Content */

.career-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 750px;
    padding: 20px;
    animation: fadeUp 1s ease forwards;
}

.career-cta-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 22px;
    line-height: 1.15;
}

.career-cta-text {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, .82);
    margin-bottom: 40px;
}

/* Button */

.career-cta-btn {
    text-decoration: none;
    background: #00675C;
    color: #fff;
    border: none;
    padding: 18px 52px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: .35s;
}

.career-cta-btn:hover {
    background: #00552b;
    transform: translateY(-3px);
}

/* Animation */

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */

@media(max-width:992px) {

    .career-cta-title {
        font-size: 42px;
    }

    .career-cta-text {
        font-size: 17px;
    }
}

@media(max-width:576px) {

    .career-cta-section {
        min-height: 350px;
    }

    .career-cta-title {
        font-size: 28px;
    }

    .career-cta-text {
        font-size: 15px;
    }

    .career-cta-btn {
        width: 100%;
        max-width: 260px;
    }
}

/* =======================productsection============ */
.product-section {
    padding: 40px 0;
}

.product-section h2 {
    color: #006838;
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.3;
}

.forcontracting {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 600;
    line-height: 1.3;

}

.color {
    background: linear-gradient(135deg,
            #f8fafc 0%,
            #eef3f8 50%,
            #f8fafc 100%);
}

.hdpepara {
    color: #666 !important;
    line-height: 1.8 !important;
    font-size: 17px !important;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.product-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

.product-section ul {
    padding-left: 20px;
}

.product-section ul li {
    margin-bottom: 10px;
    font-size: 17px;
}

.product-section img {
    width: 100%;
    border-radius: 10px;
}

/* ==========safety tools=============  */

.tool-section {
    background: #fff;
    overflow: hidden;
}

.tool-image img {
    width: 100%;
    border-radius: 35px;
    display: block;
}

.tool-content {
    color: #fff;
}

.tool-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 25px;
    color: black;
}

.tool-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #e5e7eb;
    margin-bottom: 25px;
    color: #000;
}

.enquiry-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: #00552b;
    color: #fff;
    text-decoration: none;
    padding: 8px 25px;
    border-radius: 60px;
    font-size: 14px;
    font-weight: 600;
    transition: .3s;
}


.forimg {
    display: block;
    margin: auto;
}

.btn-icon {
    width: 35px;
    height: 35px;
    background: #fff;
    color: #00552b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.enquiry-btn:hover {
    background: #00552b;
    color: #fff;
    transform: translateY(-3px);
}

@media(max-width:991px) {

    .tool-title {
        font-size: 32px;
        text-align: center;
    }

    .tool-content p {
        font-size: 1.05rem;
    }

    .tool-image {
        margin-bottom: 20px;
    }
}

/* =======================================.under-construction================= */
.construction-orbit {
    min-height: 100vh;
    background: #00552b;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

/* Floating particles */
.particles::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background-image: radial-gradient(white 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.15;
    animation: moveParticles 40s linear infinite;
}

/* Orbit System */
.orbit-container {
    position: relative;
    width: 280px;
    height: 280px;
    margin-bottom: 40px;
}

.center-core {
    width: 60px;
    height: 60px;
    background: #38bdf8;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 40px #38bdf8;
    animation: pulseCore 2s infinite;
}

.orbit {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orbit1 {
    width: 120px;
    height: 120px;
    animation: rotateOrbit 6s linear infinite;
}

.orbit2 {
    width: 190px;
    height: 190px;
    animation: rotateOrbit 10s linear infinite reverse;
}

.orbit3 {
    width: 260px;
    height: 260px;
    animation: rotateOrbit 14s linear infinite;
}

/* Content */
.construction-content {
    text-align: center;
    color: white;
    max-width: 700px;
    padding: 20px;
}

.construction-content h1 {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.construction-content p {
    font-size: 20px;
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 30px;
}

.status-text {
    display: inline-block;
    padding: 12px 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

/* Button */
.back-btn {
    display: inline-block;
    padding: 14px 35px;
    background: transparent;
    border: 2px solid #38bdf8;
    border-radius: 40px;
    color: white;
    text-decoration: none;
    transition: 0.4s;
}

.back-btn:hover {
    background: #38bdf8;
    box-shadow: 0 0 20px #38bdf8;
}

/* Animations */
@keyframes rotateOrbit {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes pulseCore {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
    }
}

@keyframes moveParticles {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(-200px, -200px);
    }
}

/* Responsive */
@media (max-width:768px) {
    .construction-content h1 {
        font-size: 40px;
    }

    .construction-content p {
        font-size: 16px;
    }

    .orbit-container {
        width: 220px;
        height: 220px;
    }
}

/* under construction sec */
/* =======================================.under-construction================= */

.coming-soon-page {
    min-height: 100vh;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    text-align: center;
    padding: 80px 20px;
}

/* Floating circles */
.coming-soon-page::before,
.coming-soon-page::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 104, 56, 0.08);
    animation: float 6s infinite ease-in-out;
}

.coming-soon-page::before {
    width: 250px;
    height: 250px;
    top: -80px;
    left: -80px;
}

.coming-soon-page::after {
    width: 180px;
    height: 180px;
    bottom: -50px;
    right: -50px;
}

/* Gears animation */
.construction-animation {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}


/* Content */
.tag {
    display: inline-block;
    background: #006838;
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 20px;
}

.coming-content h1 {
    font-size: 40px;
    color: #111;
    margin-bottom: 15px;
    animation: fadeUp 1s ease;
}

.coming-content p {
    max-width: 600px;
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin: auto;
}

/* Loading line */
.loading-line {
    width: 250px;
    height: 6px;
    background: #eee;
    margin: 35px auto 0;
    border-radius: 50px;
    overflow: hidden;
}

.loading-line span {
    display: block;
    width: 40%;
    height: 100%;
    background: #006838;
    animation: loading 2s infinite ease-in-out;
}

/* Animations */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes rotateReverse {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

@keyframes loading {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(350%);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(20px);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .coming-content h1 {
        font-size: 32px;
    }

    .coming-content p {
        font-size: 16px;
    }


}

@media (max-width: 480px) {
    .coming-content h1 {
        font-size: 28px;
    }

    .coming-content p {
        font-size: 14px;
    }
}
/* end under constructu */