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

/* ===== COLOR VARIABLES ===== */
: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: var(--BACKGROUNDCOLOR);
    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;
}

/* SECTION IMAGES */
.section-image-box {
    width: 100%;
    margin-bottom: 30px;
}

.heading-with-image {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.heading-with-image h2 {
    margin-bottom: 0 !important;
}

.heading-with-image img {
    max-width: 300px; /* Adjusted for high-res images */
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(29, 255, 217, 0.15);
}

@media (max-width: 768px) {
    .heading-with-image {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .heading-with-image img {
        max-width: 100%;
    }
}

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

/* 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;
}

/* ===== 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 ===== */

/* HERO IMAGE SECTION */
.hero-image {
    position: relative;
    width: 1260px;
    height: 600px;
    margin: 80px auto 0 auto;
    display: flex;
    align-items: center;
    padding: 0 60px;
    overflow: hidden;
    border-radius: 20px;
}

/* BANNER IMAGE WITH BLUR REVEAL */
.hero-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--hero-bg, url('/images/tt.jpg')) 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-overlay {
    position: absolute;
    inset: 0;
    background: var(--BACKGROUNDCOLOR);
    z-index: 2; /* Above the background image */
    opacity: 0.7; /* Allow some image to show through */
}

/* CONTENT */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

    .hero-content h1 {
        font-size: 60px;
        color: var(--TEXTCOLOR);
        line-height: 1.1;
        margin-bottom: 15px;
    }

    .hero-content p {
        color: var(--TEXTCOLOR);
        font-size: 16px;
    }

/* RESPONSIVE */
@media(max-width:768px) {
    .hero-image {
        height: 40vh;
        padding: 0 20px;
    }

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

.section-1-content {
    color: var(--TEXTCOLOR);
    max-width: 700px;
}

    .section-1-content h1 {
        font-size: 48px;
        margin-bottom: 10px;
    }

    .section-1-content p {
        color: var(--TEXTCOLOR);
    }

/* ===== TERMS ===== */

.section-1-terms {
    padding: 80px 6%;
    max-width: 100%;
    background: var(--BACKGROUNDCOLOR);
    text-align: left;
}

.section-1-updated {
    margin-bottom: 20px;
    color: #666;
    font-size: 20px;
}

.section-1-terms h3 {
    margin-top: 40px;
    color: var(--TEXTCOLOR);
    font-size: 32px;
}

.section-1-terms p,
.section-1-terms li {
    color: var(--TEXTCOLOR);
    line-height: 1.8;
    margin-top: 15px;
    font-size: 22px;
}

.section-1-terms ul {
    padding-left: 20px;
}

/* ===== PRIVACY ===== */

.section-1-privacy {
    padding: 80px 6%;
    max-width: 900px;
    margin: auto;
    background: var(--BACKGROUNDCOLOR);
    border-radius: 20px;
    margin-bottom: 80px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

    .section-1-privacy h2 {
        font-size: 32px;
        margin-bottom: 20px;
        color: var(--TEXTCOLOR);
    }

    .section-1-privacy h3 {
        margin-top: 25px;
        color: var(--TEXTCOLOR);
    }

    .section-1-privacy p {
        color: var(--TEXTCOLOR);
        line-height: 1.8;
        margin-top: 10px;
    }

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

@media (max-width:768px) {

    .section-1-content h1 {
        font-size: 32px;
    }

    .section-1-hero {
        height: 250px;
    }

    .section-1-terms,
    .section-1-privacy {
        padding: 50px 5%;
    }
}













/* ===== FOOTER  SECTION 123 ===== */
.footer-section123 {
    background: linear-gradient(135deg, var(--dark-main), var(--dark-secondary), var(--dark-mid));
    color: 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 {
        color: white;
        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;
    }
}









