/* ===== 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: "Inter", "Segoe UI", sans-serif;
    background: #F4FBFA;
    color: #0B4F47;
    transition: all 0.3s ease;
}

/* GLOBAL HEADING COLOR */
h1, h2, h3, h4, h5, h6 {
    color: white !important;
}

/* NAVIGATION READABILITY OVERRIDES */
.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; /* Set to black for clarity */
}

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























/* ===== SECTION ===== */
.partners-section {
    background: linear-gradient(180deg, #f4f8fb, #eef3f7);
    padding: 80px 20px;
    text-align: center;
}

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

/* ===== TITLE ===== */
.partners-title {
    font-size: 38px;
    font-weight: 700;
    color: black !important;
    margin-bottom: 15px;
}

/* ===== SUBTITLE ===== */
.partners-subtitle {
    font-size: 16px;
    color: var(--TEXTCOLOR);
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

/* ===== LOGOS GRID ===== */
.partners-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    align-items: center;
    justify-items: center;
}

    /* ===== LOGOS ===== */
    .partners-logos img {
        max-width: 140px;
        width: 100%;
        /*        filter: grayscale(100%);*/
        opacity: 0.8;
        transition: all 0.3s ease;
    }

        /* ===== HOVER EFFECT ===== */
        .partners-logos img:hover {
            filter: grayscale(0%);
            opacity: 1;
            transform: scale(1.08);
        }

/* ===== TABLET ===== */
@media (max-width: 992px) {
    .partners-logos {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }
}

/* ===== MOBILE ===== */
@media (max-width: 600px) {
    .partners-title {
        font-size: 28px;
    }

    .partners-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }

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

        .partners-logos img {
            max-width: 110px;
        }
}




























/* ===== 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: #1dffd9;
    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 4 ===== */
.section-4 {
    background: var(--BACKGROUNDCOLOR); 
    padding: 100px 20px;
}

.section-4-container {
    max-width: 100%;
    margin: auto;
    padding: 0 40px;
}

/* ===== HEADER ===== */
.section-4-header {
    margin-bottom: 60px;
    max-width: 650px;
}

.section-4-tag {
    color: var(--TEXTCOLOR);
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: inline-block;
}

.section-4-header h2 {
    color: var(--TEXTCOLOR);
    font-size: 38px;
    margin-bottom: 15px;
}

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

/* ===== GRID ===== */
.section-4-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* ===== CARD ===== */
.section-4-card {
    background: #ffffff; /* clean white cards */
    border-radius: 20px;
    padding: 40px 30px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: 1px solid #1f4e8c;
    position: relative;
    z-index: 1;
    
    /* Entrance Animation Base State */
    opacity: 0;
    transform: translateY(30px);
}

/* Entrance Animation Triggered State */
.section-4-card.visible {
    opacity: 1;
    transform: translateY(0);
}

    /* hover */
    .section-4-card:hover {
        transform: translateY(-15px) scale(1.08);
        box-shadow: 0 25px 50px rgba(18, 165, 148, 0.3);
        border-color: #12A594;
    }

/* ===== ICON ===== */
.section-4-icon {
    font-size: 28px;
    margin-bottom: 15px;
    text-align: left;
}

/* ===== TEXT ===== */
.section-4-card h3 {
    color: #0b2c4a !important; 
    font-size: 18px;
    margin-bottom: 10px;
}

.section-4-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .section-4-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .section-4-header {
        text-align: center;
        margin: 0 auto 50px;
    }

    .section-4-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .section-4 {
        padding: 70px 15px;
    }

    .section-4-grid {
        grid-template-columns: 1fr;
    }

    .section-4-header h2 {
        font-size: 28px;
    }
}












    /* ===== SECTION 3 ===== */
.section-3 {
    background: var(--BACKGROUNDCOLOR);
    padding: 80px 20px;
}

    .section-3-container {
        max-width: 900px;
        margin: auto;
    }

    /* ===== HEADER ===== */
    .section-3-header {
        text-align: center;
        margin-bottom: 50px;
    }

        .section-3-header h2 {
            color: var(--TEXTCOLOR);
            font-size: 34px;
            margin-bottom: 10px;
        }

        .section-3-header p {
            color: var(--TEXTCOLOR);
        }

    /* ===== FAQ ===== */
    .section-3-faq {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    /* ===== ITEM ===== */
    .section-3-item {
        background: var(--dark-main);
        border-radius: 18px;
        overflow: hidden;
        transition: 0.3s ease;
    }

        /* subtle hover */
        .section-3-item:hover {
            transform: translateY(-3px);
        }

    /* ===== QUESTION ===== */
.section-3-question {
    width: 100%;
    padding: 20px 25px;
    background: transparent;
    border: none;
    color: white; /* Changed to white for green background */
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

        /* icon */
    .section-3-question i {
        color: white; /* Changed to white for green background */
        transition: 0.3s ease;
    }

    /* ===== ANSWER ===== */
    .section-3-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        padding: 0 25px;
    }

        .section-3-answer p {
            color: white; /* Changed to white for green background */
            padding-bottom: 20px;
            line-height: 1.6;
        }

    /* ACTIVE STATE */
    .section-3-item.active .section-3-answer {
        max-height: 200px;
    }

    .section-3-item.active .section-3-question i {
        transform: rotate(45deg);
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 600px) {
        .section-3 {
            padding: 60px 15px;
        }

        .section-3-header h2 {
            font-size: 26px;
        }

        .section-3-question {
            font-size: 15px;
            padding: 18px;
        }
    }





    /* ===== SECTION ===== */
.section-2 {
    padding: 80px 20px;
    background: var(--BACKGROUNDCOLOR);
    overflow: hidden;
}

    /* ===== CONTAINER ===== */
    .section-2-container {
        max-width: 1200px;
        margin: auto;
        display: flex;
        gap: 50px;
    }

    /* ===== LEFT / RIGHT ===== */
    .section-2-left,
    .section-2-right {
        flex: 1;
    }

    /* ===== LEFT ===== */
    .section-2-left {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    /* CONTACT */
.section-2-contact-box h2 {
    font-size: 36px;
    color: var(--TEXTCOLOR);
    margin-bottom: 15px;
}

.section-2-contact-box p {
    color: var(--TEXTCOLOR);
    margin-bottom: 20px;
}

    /* CONTACT LIST */
    .section-2-contact-list {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

        .section-2-contact-list div {
            display: flex;
            align-items: center;
            gap: 10px;
            color: white;
        }

        .section-2-contact-list i {
            background: var(--accent);
            color: var(--TEXTCOLOR);
            padding: 8px;
            border-radius: 50%;
        }

    /* ===== SLIDER FIX ===== */
    .section-2-slider {
        position: relative;
    }

    .section-2-slide {
        display: none;
    }

        .section-2-slide.active {
            display: block;
        }

    /* DOTS */
    .section-2-dots {
        margin-top: 10px;
        display: flex;
        gap: 8px;
    }

        .section-2-dots span {
            width: 8px;
            height: 8px;
            background: #ccc;
            border-radius: 50%;
            cursor: pointer;
        }

            .section-2-dots span.active {
                background: var(--accent);
            }

    /* ===== RIGHT FORM ===== */
    .section-2-right {
        position: relative;
        display: flex;
    }

        /* GLOW */
        .section-2-right::before,
        .section-2-right::after {
            content: "";
            position: absolute;
            width: 250px;
            height: 250px;
            filter: blur(120px);
            opacity: 0.3;
            z-index: 0;
        }

        .section-2-right::before {
            background: var(--accent);
            top: -40px;
            left: -40px;
        }

        .section-2-right::after {
            background: var(--accent-light);
            bottom: -40px;
            right: -40px;
        }

    /* FORM BOX */
    .section-2-form-box {
        background: var(--dark-secondary);
        padding: 30px;
        border-radius: 20px;
        width: 100%;
        z-index: 1;
    }

        .section-2-form-box h3 {
            color: var(--TEXTCOLOR);
            margin-bottom: 20px;
            padding-bottom: 10px; /* adds space below */
        }

    /* FORM */
    .section-2-form {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .section-2-row {
        display: flex;
        gap: 10px;
    }

    /* INPUT */
.section-2-form input,
.section-2-form textarea {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 10px;
    /*    background: var(--dark-mid);*/
    background: var(--BACKGROUNDCOLOR);
    /*        color: white;*/
    color: var(--TEXTCOLOR);
}

    /* BUTTON */
.section-2-form button {
    background: var(--accent);
    color: var(--TEXTCOLOR);
    padding: 12px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

        .section-2-form button:hover {
            background: var(--accent-light);
        }

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

    /* TABLET */
    @media (max-width:992px) {

        .section-2-container {
            flex-direction: column;
        }

        .section-2-right {
            width: 100%;
        }
    }

    /* MOBILE */
    @media (max-width:600px) {

        .section-2 {
            padding: 60px 15px;
        }

        .section-2-row {
            flex-direction: column;
        }

        .section-2-contact-box h2 {
            font-size: 28px;
        }
    }






















/* ===== SECTION BACKGROUND ===== */
.section-1-slider {
    padding: 80px 20px;
    background: var(--BACKGROUNDCOLOR);
}

/* ===== WRAPPER ===== */
.section-1-wrapper {
    max-width: 1200px;
    margin: auto;
    position: relative;
}

/* ===== VIEWPORT ===== */
.section-1-viewport {
    overflow: hidden;
}

/* ===== TRACK ===== */
.section-1-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

/* ===== CARD ===== */
.section-1-card {
    flex: 0 0 calc(33.333% - 13.33px);
    border-radius: 20px;
    padding: 10px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    transition: 0.4s ease;
}

    /* ===== IMAGE ===== */
    .section-1-card img {
        width: 100%;
        height: 240px;
        object-fit: cover;
        border-radius: 15px;
        transform: scale(1) translate(0, 0);
        filter: blur(0px);
        transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1), filter 0.7s ease;
    }

    /* ===== OVERLAY ===== */
    .section-1-card::after {
        content: "";
        position: absolute;
        inset: 10px;
        border-radius: 15px;
        background: linear-gradient( to top, rgba(0,0,0,0.75), rgba(0,0,0,0.2) );
        pointer-events: none;
        transition: 0.5s ease;
    }

    /* ===== GLOW ===== */
    .section-1-card::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 20px;
        opacity: 0;
        box-shadow: 0 0 35px rgba(18,165,148,0.35);
        transition: 0.5s;
    }

/* ===== CONTENT ===== */
.section-1-content {
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;
    color: var(--TEXTCOLOR);
    z-index: 2;
    transition: 0.5s ease;
}

    .section-1-content h3 {
        font-size: 18px;
        margin-bottom: 6px;
    }

    .section-1-content p {
        font-size: 13px;
        color: var(--TEXTCOLOR);
    }

/* ===== ðŸ”¥ ULTRA HOVER EFFECT ===== */
.section-1-card:hover img {
    transform: scale(1.90) translate(-50px, -50px);
    filter: blur(5px) brightness(0.7);
}

.section-1-card:hover::after {
    background: linear-gradient( to top, rgba(0,0,0,0.95), rgba(0,0,0,0.6) );
}

.section-1-card:hover .section-1-content {
    transform: translateY(-20px);
}

.section-1-card:hover {
    transform: translateY(-10px);
}

    .section-1-card:hover::before {
        opacity: 1;
    }

/* ===== ARROWS ===== */
.section-1-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #12A594;
    border: none;
    color: var(--TEXTCOLOR);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    font-size: 18px;
    transition: 0.3s;
}

    .section-1-arrow:hover {
        background: #1ED1B2;
    }

    .section-1-arrow.left {
        left: -10px;
    }

    .section-1-arrow.right {
        right: -10px;
    }

/* ===== DOTS ===== */
.section-1-dots {
    text-align: center;
    margin-top: 25px;
}

    .section-1-dots span {
        width: 10px;
        height: 10px;
        display: inline-block;
        background: #ccc;
        margin: 5px;
        border-radius: 50%;
        cursor: pointer;
        transition: 0.3s;
    }

    .section-1-dots .active {
        background: #12A594;
        transform: scale(1.2);
    }

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

/* TABLET */
@media (max-width: 992px) {
    .section-1-card {
        flex: 0 0 calc(50% - 10px);
    }

        .section-1-card:hover img {
            transform: scale(1.4) translate(-60px, -60px);
        }
}

/* MOBILE */
@media (max-width: 768px) {
    .section-1-slider {
        padding: 50px 15px;
    }

    .section-1-card {
        flex: 0 0 100%;
    }

        .section-1-card img {
            height: 200px;
        }

        /* âš ï¸ Reduce heavy animation for mobile */
        .section-1-card:hover img {
            transform: scale(1.15);
            filter: blur(1px);
        }

        .section-1-card:hover {
            transform: none;
        }

    .section-1-arrow {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
}






































    /* ===== 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 ===== */
    @media(max-width:768px) {
        .footer-section123-cta {
            flex-direction: column;
            align-items: flex-start;
        }

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




















/* SECTION */
.industry-section {
    background: var(--BACKGROUNDCOLOR);
    color: var(--TEXTCOLOR);
    padding: 80px 20px 40px;
    font-family: "Segoe UI", sans-serif;
}

/* CONTAINER */
.industry-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
}

/* IMAGE */
.industry-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
}

/* CONTENT */
.industry-content {
    flex: 1;
}

    .industry-content h1 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .industry-content h3 {
        font-size: 1.4rem;
        margin-bottom: 20px;
        color: var(--TEXTCOLOR);
    }

    .industry-content p {
        color: var(--TEXTCOLOR);
        margin-bottom: 25px;
        line-height: 1.6;
    }

/* BUTTON */
.cta-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    border: 1px solid #1dffd9;
    color: var(--TEXTCOLOR);
    text-decoration: none;
    transition: 0.3s;
}

    .cta-btn:hover {
        background: #1dffd9;
        color: #000;
    }

/* COUNTER SECTION */
.counter-section {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin-inline: auto;
}

.counter-box {
    flex: 1;
    min-width: 150px;
    text-align: center;
}

    .counter-box h2 {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }

    .counter-box p {
        color: var(--TEXTCOLOR);
    }

/* RESPONSIVE */
@media (max-width: 768px) {
    .industry-container {
        flex-direction: column;
        text-align: center;
    }

    .industry-content h1 {
        font-size: 2rem;
    }

    .counter-section {
        flex-direction: column;
    }
}

/* NEW INDUSTRIES SECTION */
:root {
    --text-gray: #666;
    --bg-light: #ffffff;
    --transition: all 0.3s ease;
}

.industries-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.header-section {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out;
}

.header-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #12A594 !important;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.icon-box {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid #eee;
}

.icon-box:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 40px rgba(18, 165, 148, 0.2);
    border-color: #12A594;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: #f0f4f8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #12A594;
    font-size: 24px;
}

.icon-box h3 {
    font-size: 1.25rem;
    margin: 0 0 15px 0;
    color: #1a1a1a !important;
}

.icon-box p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin: 0;
    text-align: left;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .industries-grid { grid-template-columns: 1fr; }
    .header-section h2 { font-size: 2rem; }
}






