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

/* ===== COLOR VARIABLES ===== */
/*:root {
    --dark-main: #021F1C;
    --dark-secondary: #06332E;
    --dark-mid: #0B4F47;
    --accent: #12A594;
    --accent-light: #1ED1B2;
    --text-light: #B9D7D3;
    --light-main: #F4FBFA;
    --white: #FFFFFF;
}*/






:root {
    --dark-main: #13b196;
    --dark-secondary: #06332E;
    --dark-mid: #118f7a;
    --accent: #13b196;
    --accent-light: #1ED1B2;
    --text-light: #B9D7D3;
    --light-main: #312a2a52;
    --white: #FFFFFF;
    --TEXTCOLOR: #1dffd9;
    --BACKGROUNDCOLOR: black;
}



/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', "Inter", "Segoe UI", sans-serif;
    background: #F4FBFA;
    color: #0B4F47;
    transition: all 0.3s ease;
}

/* GLOBAL HEADING STYLE */
h1, h2, h3, h4, h5, h6 {
    color: white !important;
    font-family: 'Outfit', sans-serif !important;
    letter-spacing: -0.02em;
}

/* Maintain readability in light-background menus */
.nav-section-header h1,
.nav-section-header h2,
.nav-section-header h3,
.nav-section-header h4,
.nav-section-header h5,
.nav-section-header h6,
.nav-section-dropdown h1,
.nav-section-dropdown h2,
.nav-section-dropdown h3,
.nav-section-dropdown h4,
.nav-section-dropdown h5,
.nav-section-dropdown h6,
.nav-section-dropdown p,
.nav-section-mobile h1,
.nav-section-mobile h2,
.nav-section-mobile h3,
.nav-section-mobile h4,
.nav-section-mobile h5,
.nav-section-mobile h6,
.nav-section-mobile p {
    color: #000000 !important;
}

    /* LOCK SCROLL */
    body.menu-open {
        overflow: hidden;
    }

/* ===== NAVBAR ===== */
.nav-section-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    z-index: 9999;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* CONTAINER */
.nav-section-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 60px;
}

/* LOGO */
.nav-section-logo img {
    height: 42px;
    transition: 0.4s ease;
    filter: drop-shadow(0 6px 15px rgba(0,0,0,0.08));
}

    .nav-section-logo img:hover {
        transform: scale(1.08);
    }

/* ===== DESKTOP MENU ===== */
.nav-section-menu {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-section-item {
    position: relative;
}

/* NAV LINKS */
.nav-section-link {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    color: #0B4F47;
    position: relative;
    transition: 0.3s;
}

    /* UNDERLINE HOVER */
    .nav-section-link::after {
        content: "";
        position: absolute;
        bottom: -6px;
        left: 0;
        width: 0%;
        height: 2px;
        background: linear-gradient(90deg,#12A594,#0B4F47);
        transition: 0.3s;
    }

    .nav-section-link:hover::after {
        width: 100%;
    }

    .nav-section-link:hover {
        color: #12A594;
    }

/* ===== DROPDOWN ===== */
.nav-section-dropdown {
    position: absolute;
    top: 65px;
    left: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border-radius: 18px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.12);
    display: none;
    padding: 30px;
    animation: fadeUp 0.3s ease;
}

.nav-section-item.active .nav-section-dropdown {
    display: flex;
}

/* ANIMATION */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* ===== MEGA MENU ===== */
.nav-section-mega-dropdown {
    width: 700px;
    gap: 30px;
}

.nav-section-mega-left {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}


    /*    .nav-section-mega-left h4 {
        color: #12A594;
    }

    .nav-section-mega-left p {
        color: #0B4F47;
    }*/

    /* CARDS */
    .nav-section-mega-left a {
        text-decoration: none;
        padding: 14px;
        border-radius: 14px;
        transition: 0.3s;
        background: transparent;
    }

        .nav-section-mega-left a:hover {
            background: #F4FBFA;
            transform: translateY(-4px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
        }

    .nav-section-mega-left h4 {
        font-size: 15px;
        color: #12A594;
        margin-bottom: 4px;
    }

    .nav-section-mega-left p {
        font-size: 13px;
        color: #0B4F47;
        opacity: 0.7;
    }

/* RIGHT BANNER */
.nav-section-mega-right {
    width: 230px;
}

.nav-section-mega-banner {
    height: 100%;
    border-radius: 16px;
    padding: 20px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1677442136019-21780ecad995') center/cover;
}

    .nav-section-mega-banner h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .nav-section-mega-banner button {
        border: none;
        padding: 8px 14px;
        border-radius: 20px;
        background: white;
        color: #0B4F47;
        font-size: 13px;
        cursor: pointer;
        transition: 0.3s;
    }

        .nav-section-mega-banner button:hover {
            transform: translateY(-2px);
        }

/* ===== CTA BUTTON ===== */
.nav-section-cta button {
    background: linear-gradient(135deg,#12A594,#0B4F47);
    color: white;
    border: none;
    padding: 12px 22px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(18,165,148,0.3);
}

    .nav-section-cta button:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(18,165,148,0.4);
    }

/* ===== MOBILE ===== */
.nav-section-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

/* FULL SCREEN MENU */
.nav-section-mobile {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    padding: 25px;
    transform: translateY(-100%);
    transition: 0.5s ease;
    z-index: 10000;
    overflow-y: auto;
}

    .nav-section-mobile.active {
        transform: translateY(0);
    }

/* TOP */
.nav-section-mobile-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.nav-section-mobile-top .nav-section-logo img {
    height: 35px; /* Adjusted for mobile */
}

/* MOBILE ITEMS */
.mobile-section {
    border-bottom: 1px solid rgba(0,0,0,0.08);
    margin-bottom: 15px;
}

.mobile-toggle {
    width: 100%;
    text-align: left;
    padding: 16px 0;
    background: none;
    border: none;
    font-weight: 600;
    font-size: 18px;
}

/* DROPDOWN */
.mobile-mega {
    /*    background: linear-gradient(135deg,#12A594,#0B4F47);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;*/



    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .mobile-mega a {
        background: linear-gradient(135deg,#12A594,#0B4F47);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-weight: 500;
        text-decoration: none;
        font-size: 15px;
        padding-left: 10px;
        opacity: 0.8;
    }




        .mobile-mega a:hover {
            opacity: 1;
        }

/* MOBILE BANNER */
.mobile-banner {
    margin-top: 15px;
    border-radius: 16px;
    padding: 18px;
    color: white;
    min-height: 120px;
    display: flex;
    align-items: flex-end;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1677442136019-21780ecad995') center/cover;
}

/* MOBILE CTA */
.mobile-cta {
    margin-top: 25px;
    width: 100%;
    padding: 16px;
    border: none;
    background: linear-gradient(135deg,#12A594,#0B4F47);
    color: white;
    border-radius: 30px;
    font-weight: 600;
}


.nav-section-mobile .nav-section-link.simple {
    margin-bottom: 10%;
    display: block;
    margin-top: 15px;
    font-size: 16px;
}

.nav-section-link.simple {
    text-decoration: none !important;
}

/*.desktop-cta {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 30px;
    background: linear-gradient(135deg,#12A594,#0B4F47);
    color: white;
    text-decoration: none;
    font-weight: 600;
}*/


.desktop-cta {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 30px;
    background: linear-gradient(135deg,#12A594,#0B4F47);
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.35s ease;
    /* base glow */
    box-shadow: 0 8px 20px rgba(18,165,148,0.35);
}

    /* ðŸ”¥ HOVER EFFECT */
    .desktop-cta:hover {
        transform: translateY(-3px) scale(1.03);
        /* stronger glow */
        box-shadow: 0 12px 30px rgba(18,165,148,0.5), 0 0 15px rgba(18,165,148,0.6), 0 0 30px rgba(18,165,148,0.4);
        filter: brightness(1.05);
    }

    /* âœ¨ CLICK EFFECT */
    .desktop-cta:active {
        transform: scale(0.96);
        box-shadow: 0 5px 15px rgba(18,165,148,0.3);
    }

/* ===== RESPONSIVE ===== */
@media(max-width:992px) {
    .nav-section-menu,
    .nav-section-cta {
        display: none;
    }

    .nav-section-toggle {
        display: block;
    }

    .nav-section-container {
        padding: 15px 20px;
    }
}













/* ===== HERO SECTION ===== */

.hero-section-industry {
    /*margin-top: 80px;*/ /* space for fixed navbar */
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    overflow: hidden; /* Contains the blur/scale effect */
}

/* BANNER IMAGE WITH BLUR REVEAL */
.hero-section-industry::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--hero-bg, url('https://images.unsplash.com/photo-1498050108023-c5249f4df085')) var(--hero-pos, center)/cover no-repeat;
    z-index: 1;
    animation: blurReveal 0.8s ease-out forwards;
}

@keyframes blurReveal {
    from {
        filter: blur(20px);
        transform: scale(1.1);
    }
    to {
        filter: blur(0);
        transform: scale(1);
    }
}

/* DARK OVERLAY */
.hero-section-overlay {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient( rgba(2,31,28,0.75), rgba(6,51,46,0.85) );
    z-index: 2; /* Above the background image */
}

/* CONTENT */
.hero-section-content {
    position: relative;
    max-width: 750px;
    text-align: center;
    color: white;
    z-index: 2;
}

    /* HEADING */
    .hero-section-content h1 {
        font-size: 52px;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    /* TEXT */
    .hero-section-content p {
        color: var(--text-light);
        font-size: 16px;
        margin-bottom: 30px;
    }

/* BUTTONS */
.hero-section-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-btn-primary {
    background: linear-gradient(135deg,var(--accent),var(--accent-light));
    border: none;
    padding: 14px 28px;
    border-radius: 30px;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

    .hero-btn-primary:hover {
        transform: translateY(-3px);
    }

.hero-btn-secondary {
    background: transparent;
    border: 1px solid var(--accent-light);
    padding: 14px 28px;
    border-radius: 30px;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

    .hero-btn-secondary:hover {
        background: rgba(255,255,255,0.1);
    }

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

@media(max-width:992px) {

    .hero-section-content h1 {
        font-size: 38px;
    }
}

@media(max-width:600px) {

    .hero-section-industry {
        height: 85vh;
    }

    .hero-section-content h1 {
        font-size: 28px;
    }

    .hero-section-content p {
        font-size: 14px;
    }
}

















/* SECTION 5 */

.section-5-container {
    padding: 90px 6%;
    background: var(--BACKGROUNDCOLOR);
}

/* TOP */

.section-5-top {
    max-width: 800px;
    margin-bottom: 60px;
}

    .section-5-top h2 {
        font-size: 36px;
        color: var(--TEXTCOLOR);
        margin-bottom: 15px;
    }

/* LAYOUT */

.section-5-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: stretch;
}

/* IMAGE */

.section-5-image-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: auto;
    aspect-ratio: 520 / 560;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: flex;
}

    .section-5-image-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: 0.6s;
    }

/* OVERLAY TEXT */

.section-5-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    color: var(--TEXTCOLOR);
}

    .section-5-overlay h3 {
        margin-bottom: 5px;
    }

/* ROTATION */

.section-5-rotate {
    animation: rotateAnim 0.6s ease;
}

@keyframes rotateAnim {
    0% {
        transform: rotateY(90deg);
        opacity: 0;
    }

    100% {
        transform: rotateY(0);
        opacity: 1;
    }
}

/* TABS */

.section-5-tabs {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.section-5-tab {
    background: white;
    padding: 25px;
    border-radius: 18px;
    cursor: pointer;
    transition: 0.4s;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .section-5-tab h3 {
        color: #000 !important;
        font-size: 26px;
        margin-bottom: 8px;
    }

    .section-5-tab p {
        font-size: 18px;
        line-height: 1.5;
    }

    .section-5-tab.active {
        background: linear-gradient(135deg, var(--accent-light), var(--accent));
        color: var(--TEXTCOLOR);
    }

    .section-5-tab.active h3 {
        color: #fff !important;
    }

    .section-5-tab:hover {
        transform: translateY(-5px);
    }

/* RESPONSIVE */

@media (max-width: 992px) {
    .section-5-wrapper {
        grid-template-columns: 1fr;
    }

    .section-5-image-box {
        height: auto;
        aspect-ratio: 520 / 560;
    }
}

@media (max-width: 576px) {
    .section-5-container {
        padding: 60px 5%;
    }

    .section-5-top h2 {
        font-size: 28px;
    }
}





















/* SECTION 6 */

.section-6-container {
    padding: 90px 6%;
    background: var(--BACKGROUNDCOLOR);
}

.section-6-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

/* GRID */

.section-6-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.section-6-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    transition: 0.4s;
}

    .section-6-card img {
        width: 100%;
        height: 160px;
        object-fit: cover;
        transition: 0.5s;
    }

    /* LABEL */

    .section-6-card span {
        position: absolute;
        bottom: 10px;
        left: 12px;
        color: var(--TEXTCOLOR);
        font-weight: 600;
        font-size: 14px;
        background: rgba(0,0,0,0.4);
        padding: 4px 10px;
        border-radius: 10px;
    }

    /* HOVER */

    .section-6-card:hover img {
        transform: scale(1.08);
    }

    .section-6-card:hover {
        transform: translateY(-5px);
    }

/* CONTENT */

.section-6-content h2 {
    font-size: 40px;
    color: var(--TEXTCOLOR);
    margin-bottom: 20px;
}

.section-6-desc {
    margin-bottom: 20px;
    color: var(--TEXTCOLOR);
}

.section-6-content p {
    color: var(--TEXTCOLOR);
    line-height: 1.7;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
    .section-6-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section-6-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .section-6-grid {
        grid-template-columns: 1fr;
    }

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

    .section-6-container {
        padding: 60px 5%;
    }
}










/* SECTION 7 */

.section-7-container {
    padding: 90px 6%;
    background: var(--BACKGROUNDCOLOR);
}

/* TOP */

.section-7-top {
    text-align: center;
    margin-bottom: 50px;
}

    .section-7-top h2 {
        font-size: 36px;
        color: var(--TEXTCOLOR);
    }

/* GRID */

.section-7-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 70px;
}

/* CARD */

.section-7-card {
    text-align: center;
    background: white;
    padding: 15px;
    border-radius: 20px;
    transition: 0.4s;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

    .section-7-card img {
        width: 100%;
        border-radius: 15px;
        margin-bottom: 12px;
    }

    .section-7-card h3 {
        font-size: 17px;
        color: var(--TEXTCOLOR);
    }

    .section-7-card span {
        font-size: 13px;
        color: var(--TEXTCOLOR);
    }

    /* HOVER */

    .section-7-card:hover {
        transform: translateY(-8px);
    }

/* DARK HEADING BAR */

.section-7-dark-bar {
    background: linear-gradient(135deg, var(--dark-main), var(--dark-mid));
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    margin: 60px 0;
}

    .section-7-dark-bar h2 {
        color: var(--TEXTCOLOR);
        font-size: 32px;
    }

/* RESPONSIVE */

@media (max-width: 1100px) {
    .section-7-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .section-7-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .section-7-grid {
        grid-template-columns: 1fr;
    }

    .section-7-container {
        padding: 60px 5%;
    }

    .section-7-dark-bar h2 {
        font-size: 24px;
    }
}
















/* SECTION 8 */

.section-8-container {
    padding: 90px 6%;
    background: var(--light-main);
    text-align: center;
}

/* TOP */

.section-8-top h2 {
    font-size: 36px;
    color: var(--TEXTCOLOR);
}

.section-8-top p {
    color: var(--TEXTCOLOR);
    margin-bottom: 50px;
}

/* MAP */

.section-8-map {
    position: relative;
    max-width: 1000px;
    margin: auto;
}

    .section-8-map img {
        width: 100%;
    }

/* PINS */

.section-8-pin {
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--accent);
    border-radius: 50%;
    cursor: pointer;
    transform: translate(-50%, -50%);
    transition: 0.3s;
}

    /* PULSE EFFECT */

    /*    .section-8-pin::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background: var(--accent);
        animation: pulse 1.5s infinite;
        opacity: 0.5;
    }

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}*/

    /* TOOLTIP */

    .section-8-pin span {
        position: absolute;
        bottom: 150%;
        left: 50%;
        transform: translateX(-50%);
        background: var(--dark-main);
        color: var(--TEXTCOLOR);
        padding: 5px 10px;
        border-radius: 8px;
        font-size: 12px;
        opacity: 0;
        transition: 0.3s;
        white-space: nowrap;
    }

    .section-8-pin:hover span {
        opacity: 1;
    }

.section-8-map {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    max-width: none;
    aspect-ratio: 2.2 / 1;
    background: url('/images/map.jpg') center top / cover no-repeat;
    background-color: #fff;
}

.section-8-top {
    position: absolute;
    top: 12%;
    width: 100%;
    text-align: center;
    z-index: 2;
}

.section-8-top h2 {
    font-size: 48px !important;
    margin-bottom: 10px;
}

.section-8-top p {
    font-size: 20px !important;
}

@media (max-width: 992px) {
    .section-8-map {
        aspect-ratio: 1.5 / 1;
    }
    .section-8-top h2 {
        font-size: 32px !important;
    }
}

@media (max-width: 768px) {
    .section-8-map {
        aspect-ratio: 1 / 1.2;
        background-position: center;
    }
    .section-8-top {
        top: 5%;
    }
    .section-8-top h2 {
        font-size: 24px !important;
    }
    .section-8-top p {
        font-size: 14px !important;
    }
}

/* COUNTER SECTION */

.section-8-counter {
    background: linear-gradient(135deg, var(--dark-main), var(--dark-mid));
    padding: 70px 6%;
/*    margin-top: 80px;*/
/*    border-radius: 20px;*/
}

.section-8-counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 30px;
}

.section-8-count h3 {
    color: var(--TEXTCOLOR);
    font-size: 36px;
}

.section-8-count p {
    color: var(--TEXTCOLOR);
}

/* RESPONSIVE */

@media (max-width: 992px) {
    .section-8-counter-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width: 576px) {
    .section-8-counter-grid {
        grid-template-columns: 1fr;
    }

    .section-8-top h2 {
        font-size: 26px;
    }
}






















/* SECTION 9 */

.section-9-container {
    padding: 90px 6%;
    background: var(--BACKGROUNDCOLOR);
}

/* LAYOUT */

.section-9-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

/* LEFT */

.section-9-content h2 {
    font-size: 36px;
    color: var(--TEXTCOLOR);
    margin-bottom: 20px;
}

.section-9-content p {
    color: var(--TEXTCOLOR);
    line-height: 1.7;
    margin-bottom: 15px;
}

/* LOGOS GRID */

.section-9-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* LOGO CARD */

.section-9-logo {
    background: #f7f7f7;
    padding: 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    filter: grayscale(100%);
}

    .section-9-logo img {
        max-width: 100%;
        max-height: 40px;
        object-fit: contain;
    }

    /* HOVER EFFECT */

    .section-9-logo:hover {
        transform: translateY(-5px);
        filter: grayscale(0%);
        background: white;
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    }

/* RESPONSIVE */

@media (max-width: 992px) {
    .section-9-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .section-9-logos {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-9-container {
        padding: 60px 5%;
    }

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

















/* ===== FOOTER  SECTION 123 ===== */
.footer-section123 {
    background: linear-gradient(135deg, var(--dark-main), var(--dark-secondary), var(--dark-mid));
    color: var(--white);
    padding: 60px 20px;
}

/* ===== CONTAINER ===== */
.footer-section123-container {
    max-width: 1200px;
    margin: auto;
}

/* ===== CTA ===== */
.footer-section123-cta {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    margin-bottom: 50px;
}

    .footer-section123-cta h2 {
        font-size: 32px;
    }

    .footer-section123-cta p {
        margin-top: 10px;
        color: var(--text-light);
    }

/* ===== BUTTON ===== */
.footer-section123-btn {
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

    .footer-section123-btn:hover {
        transform: translateY(-2px);
    }

/* ===== GRID ===== */
.footer-section123-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

/* ===== LOGO ===== */
.footer-section123-logo {
    font-size: 22px;
    color: var(--accent-light);
}

/* ===== TEXT ===== */
.footer-section123-text {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

/* ===== LIST ===== */
.footer-section123 ul {
    list-style: none;
}

    .footer-section123 ul li {
        margin-bottom: 10px;
    }

        .footer-section123 ul li a {
            color: white;
            text-decoration: none;
            font-size: 14px;
            transition: 0.3s;
        }

            .footer-section123 ul li a:hover {
                color: var(--accent-light);
            }

/* ===== FOOTER LINKS ===== */
.footer-section123-links {
    text-align: center;
    margin: 50px 0 20px;
}

    .footer-section123-links a {
        margin: 0 10px;
        color: var(--text-light);
        text-decoration: none;
        font-size: 14px;
    }

        .footer-section123-links a:hover {
            color: var(--accent-light);
        }

/* ===== BOTTOM ===== */
.footer-section123-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 40px;
    border-top: 1px solid #0E6B5F;
    padding-top: 20px;
}

    .footer-section123-bottom p {
        color: var(--text-light);
    }

/* ===== SOCIAL ===== */
.footer-section123-social a {
    margin-left: 10px;
    color: white;
    text-decoration: none;
    font-size: 16px;
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--dark-secondary);
    transition: 0.3s;
}

    .footer-section123-social a:hover {
        background: var(--accent);
    }

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

@media (max-width: 768px) {
    /* HERO */
    .hero-section-industry {
        height: 60vh;
        min-height: 400px;
    }
    .hero-section-content h1 {
        font-size: 32px;
    }

    /* SECTION 5 */
    .section-5-container {
        padding: 60px 20px;
    }
    .section-5-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .section-5-top h2 {
        font-size: 30px;
    }
    .section-5-tab h3 {
        font-size: 22px;
    }
    .section-5-tab p {
        font-size: 16px;
    }

    /* SECTION 6 (VALUES) */
    .section-6-container {
        padding: 60px 20px;
    }
    .section-6-wrapper {
        flex-direction: column-reverse;
        gap: 40px;
    }
    .section-6-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* SECTION 8 (MAP) */
    .section-8-top h2 {
        font-size: 28px !important;
        padding: 0 20px;
    }
    .section-8-top p {
        font-size: 16px !important;
        padding: 0 20px;
    }
    .section-8-counter-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .section-6-grid {
        grid-template-columns: 1fr;
    }
    .section-8-counter-grid {
        grid-template-columns: 1fr;
    }
    .section-8-top h2 {
        font-size: 24px !important;
    }
}







