:root {
    --blue: #53C4F0;
    --blue-dark: #2399c7;
    --blue-deep: #0f5f80;
    --gray: #7C7C7C;
    --gray-light: #f4f7f9;
    --ink: #131922;
    --white: #ffffff;
    --line: rgba(124,124,124,.18);
    --shadow: 0 20px 50px rgba(19,25,34,.10);
    --radius: 28px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    color: var(--ink);
    background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    padding-left: 1.2rem;
}

.container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}

.eyebrow-hero {
    position: relative;
    z-index: 2; /* ensures it's above overlay */

    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .55rem .9rem;
    border: 1px solid rgba(255,255,255,.25);
    background: rgba(255,255,255,.08);
    color: #ffffff; /* IMPORTANT: change from var(--blue-deep) */
    border-radius: 999px;
    font-size: .92rem;
    font-weight: 700;
    letter-spacing: .01em;
    margin-bottom: 1rem;
    backdrop-filter: blur(6px);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .55rem .9rem;
    border: 1px solid rgba(83,196,240,.25);
    background: rgba(83,196,240,.08);
    color: var(--blue-deep);
    border-radius: 999px;
    font-size: .92rem;
    font-weight: 700;
    letter-spacing: .01em;
    margin-bottom: 1rem;
}

.section-title {
    font-family: "Poppins", sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: .9rem;
}

.section-subtitle {
    max-width: 760px;
    color: rgba(19,25,34,.72);
    line-height: 1.8;
    font-size: 1.05rem;
}

.btn-row {
    display: flex;
    gap: .9rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    padding: .95rem 1.35rem;
    border-radius: 999px;
    font-weight: 700;
    border: 1px solid transparent;
    cursor: pointer;
    transition: .25s ease;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    color: #fff;
    box-shadow: 0 16px 30px rgba(83,196,240,.30);
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 18px 34px rgba(83,196,240,.38);
    }

.btn-secondary {
    background: #fff;
    color: var(--ink);
    border-color: rgba(19,25,34,.10);
}

    .btn-secondary:hover {
        transform: translateY(-2px);
        border-color: rgba(83,196,240,.35);
    }

.topbar {
    background: linear-gradient(90deg, rgba(83,196,240,.12), rgba(124,124,124,.08));
    border-bottom: 1px solid var(--line);
    font-size: .92rem;
}

    .topbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        padding: .7rem 0;
        color: rgba(19,25,34,.76);
    }

    .topbar strong {
        color: var(--ink);
    }

    .topbar .mini-links {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

        .topbar .mini-links a {
            display: inline-flex;
            align-items: center;
            gap: .35rem;
        }

.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(14px);
    background: rgba(255,255,255,.86);
    border-bottom: 1px solid rgba(124,124,124,.12);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: .9rem;
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    letter-spacing: -.03em;
}

.brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--gray) 100%);
    display: grid;
    place-items: center;
    color: #fff;
    box-shadow: var(--shadow);
    font-size: 1rem;
}

.brand small {
    display: block;
    font-size: .78rem;
    color: rgba(19,25,34,.56);
    font-weight: 600;
    letter-spacing: 0;
}

.menu {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    color: rgba(19,25,34,.82);
    font-weight: 600;
}

    .menu a {
        padding: .45rem .15rem;
        position: relative;
    }

        .menu a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, var(--blue), var(--gray));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform .25s ease;
        }

        .menu a:hover::after {
            transform: scaleX(1);
        }

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(19,25,34,.10);
    background: #fff;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #53C4F0;
}

/* ACTIVE LINK */
.menu a.active {
    color: var(--ink);
}

    /* Keep the underline visible for active */
    .menu a.active::after {
        transform: scaleX(1);
    }

.hero {
    position: relative;
    padding: clamp(3.5rem, 7vw, 6rem) 0 3rem;
    overflow: hidden;
    /* NEW: Background image */
    background: url('hero-banner.jpg') center/cover no-repeat;
}

    /* Overlay layer (colour + gradients combined) */
    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        /* Overlay using brand colours */
        background: linear-gradient(135deg, rgba(15,95,128,.85), rgba(83,196,240,.75)), radial-gradient(circle at 20% 20%, rgba(83,196,240,.25), transparent 30%), radial-gradient(circle at 80% 15%, rgba(124,124,124,.18), transparent 25%);
        z-index: 0;
    }

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: .55fr .85fr;
    gap: 2rem;
    align-items: center;
    z-index: 1;
}

.hero h1 {
    font-family: "Poppins", sans-serif;
    font-size: clamp(3rem, 6vw, 5.7rem);
    line-height: .95;
    letter-spacing: -.05em;
    margin-bottom: 1rem;
    max-width: 11ch;
    color: #ffffff;
}

.hero p {
    font-size: 1.08rem;
    line-height: 1.85;
    color: rgba(255,255,255,.74);
    max-width: 58ch;
    margin-bottom: 1.4rem;
}

.hero-card {
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(124,124,124,.16);
    border-radius: calc(var(--radius) + 4px);
    box-shadow: var(--shadow);
    padding: 1.2rem;
    backdrop-filter: blur(16px);
}

.hero-visual {
    border-radius: calc(var(--radius) + 2px);
    min-height: 520px;
    background: linear-gradient(145deg, rgba(15,95,128,.88), rgba(83,196,240,.78));
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(15,95,128,.18);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.2rem;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,95,128,.85), rgba(83,196,240,.75)), radial-gradient(circle at 20% 20%, rgba(83,196,240,.25), transparent 30%), radial-gradient(circle at 80% 15%, rgba(124,124,124,.18), transparent 25%);
    z-index: 0; /* KEY */
}

.hero-visual::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255,255,255,.12);
    filter: blur(8px);
    top: -90px;
    right: -80px;
}

.visual-card {
    position: relative;
    z-index: 1;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 22px;
    padding: 1.2rem;
    color: #fff;
    margin-bottom: 1rem;
}

    .visual-card h3 {
        font-family: "Poppins", sans-serif;
        font-size: 1.5rem;
        margin-bottom: .35rem;
    }

    .visual-card p {
        color: rgba(255,255,255,.84);
        line-height: 1.7;
    }

.feature-pills {
    display: flex;
    gap: .7rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .6rem .8rem;
    border-radius: 999px;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.18);
    color: #fff;
    font-size: .92rem;
    font-weight: 600;
}

.section {
    padding: 5rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: stretch;
    margin-top: 2rem;
}

.panel {
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 1.5rem;
}

    .panel.soft {
        background: linear-gradient(180deg, rgba(83,196,240,.06), rgba(124,124,124,.05));
    }

    .panel h3 {
        font-family: "Poppins", sans-serif;
        font-size: 1.3rem;
        margin-bottom: .75rem;
    }

    .panel p, .panel li {
        line-height: 1.8;
        color: rgba(19,25,34,.74);
    }

.icon-badge {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: rgba(83,196,240,.10);
    color: var(--blue-deep);
    margin-bottom: 1rem;
}

.services-wrap {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
}

.service-card {
    position: relative;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 26px;
    padding: 1.6rem;
    box-shadow: var(--shadow);
    transition: all .35s ease;
    z-index: 1;
}

    /* Gradient glow background */
    .service-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(83,196,240,.12), rgba(124,124,124,.08));
        opacity: 0;
        transition: .35s ease;
        z-index: -1;
    }

    /* Top glow line */
    .service-card::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg, var(--blue), var(--gray));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .35s ease;
    }

    /* HOVER MAGIC */
    .service-card:hover {
        transform: translateY(-10px) scale(1.01);
        box-shadow: 0 30px 70px rgba(19,25,34,.16);
        border-color: rgba(83,196,240,.45);
    }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-card:hover::after {
            transform: scaleX(1);
        }

/* ICON */
.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(83,196,240,.18), rgba(124,124,124,.12));
    display: grid;
    place-items: center;
    color: var(--blue-deep);
    flex: 0 0 auto;
    transition: all .3s ease;
}

/* ICON HOVER EFFECT */
.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: #fff;
    transform: scale(1.0) rotate(0deg);
    box-shadow: 0 12px 25px rgba(83,196,240,.4);
}

/* TEXT POLISH */
.service-card h3 {
    font-family: "Poppins", sans-serif;
    font-size: 1.15rem;
    margin-bottom: .4rem;
    transition: .3s ease;
}

.service-card:hover h3 {
    color: var(--blue-deep);
}

.service-card p {
    color: rgba(19,25,34,.65);
    line-height: 1.7;
    margin-bottom: .7rem;
}

.service-card ul {
    line-height: 1.8;
    color: rgba(19,25,34,.72);
}

    /* LIST ITEMS subtle animation */
    .service-card ul li {
        transition: .25s ease;
    }

.service-card:hover ul li {
    transform: translateX(4px);
}

/* GRID */
.package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
    margin-top: 2rem;
}

/* CARD BASE */
.package-card {
    position: relative;
    background: linear-gradient(180deg, #ffffff, #f7fbfd);
    border: 1px solid rgba(124,124,124,.14);
    border-radius: 28px;
    padding: 1.8rem;
    box-shadow: 0 20px 45px rgba(19,25,34,.08);
    transition: all .4s ease;
    overflow: hidden;
    cursor: pointer;
}

    /* GRADIENT HOVER OVERLAY */
    .package-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, var(--blue), var(--blue-dark));
        opacity: 0;
        transition: .4s ease;
        z-index: 0;
    }

    /* CONTENT ABOVE OVERLAY */
    .package-card * {
        position: relative;
        z-index: 1;
    }

    /* HOVER TRANSFORMATION */
    .package-card:hover {
        transform: translateY(-12px) scale(1.02);
        box-shadow: 0 35px 80px rgba(83,196,240,.25);
        border-color: transparent;
    }

        /* ACTIVATE COLOUR SHIFT */
        .package-card:hover::before {
            opacity: 1;
        }

        /* TEXT COLOR CHANGE ON HOVER */
        .package-card:hover h3,
        .package-card:hover .package-price,
        .package-card:hover .package-note,
        .package-card:hover li {
            color: #fff;
        }

            /* ICON COLOR SWITCH */
            .package-card:hover li i {
                color: #fff;
            }

/* LABEL */
.package-label {
    display: inline-flex;
    padding: .45rem .75rem;
    border-radius: 999px;
    background: rgba(83,196,240,.12);
    color: var(--blue-deep);
    font-size: .8rem;
    font-weight: 800;
    margin-bottom: .8rem;
    transition: .3s;
}

/* LABEL ON HOVER */
.package-card:hover .package-label {
    background: rgba(255,255,255,.2);
    color: #fff;
}

/* FEATURED CARD */
.package-card.featured {
    transform: scale(1.04);
    border: 2px solid rgba(83,196,240,.4);
}

    /* FEATURED EXTRA GLOW */
    .package-card.featured:hover {
        box-shadow: 0 40px 100px rgba(83,196,240,.35);
    }

/* BADGE */
.badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: linear-gradient(135deg, #fff, #eaf9ff);
    color: var(--blue-deep);
    padding: .4rem .7rem;
    border-radius: 999px;
    font-size: .7rem;
    font-weight: 800;
    z-index: 2;
}

/* LIST */
.package-card li {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: .4rem;
    color: rgba(19,25,34,.75);
    transition: .3s;
}

/* PRICE */
.package-price {
    font-family: "Poppins", sans-serif;
    font-size: 2.3rem;
    margin: .6rem 0 1.2rem;
}

/* NOTE */
.package-note {
    margin-top: 1rem;
    font-weight: 700;
    color: var(--blue-deep);
    transition: .3s;
}

.stats {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.stat {
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(83,196,240,.10), rgba(124,124,124,.08));
    border: 1px solid rgba(124,124,124,.15);
    padding: 1.3rem;
    text-align: center;
}

    .stat strong {
        display: block;
        font-family: "Poppins", sans-serif;
        font-size: 1.7rem;
        margin-bottom: .35rem;
    }

    .stat span {
        color: rgba(19,25,34,.68);
        line-height: 1.5;
    }

.cta {
    padding: 4rem 0 5.5rem;
}

.cta-box {
    border-radius: calc(var(--radius) + 6px);
    background: linear-gradient(135deg, rgba(15,95,128,.96), rgba(83,196,240,.90));
    color: #fff;
    padding: 2rem;
    box-shadow: 0 30px 60px rgba(15,95,128,.20);
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 1.4rem;
    align-items: center;
    overflow: hidden;
    position: relative;
}

    .cta-box::after {
        content: "";
        position: absolute;
        right: -80px;
        top: -80px;
        width: 280px;
        height: 280px;
        border-radius: 50%;
        background: rgba(255,255,255,.08);
    }

    .cta-box h2 {
        font-family: "Poppins", sans-serif;
        font-size: clamp(2rem, 4vw, 3.2rem);
        line-height: 1.05;
        margin-bottom: .8rem;
    }

    .cta-box p {
        line-height: 1.85;
        color: rgba(255,255,255,.86);
        max-width: 58ch;
    }

.cta-links {
    position: relative;
    z-index: 1;
    display: grid;
    gap: .85rem;
}

.contact-chip {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .95rem 1rem;
    border-radius: 18px;
    background: rgba(255,255,255,.11);
    border: 1px solid rgba(255,255,255,.16);
}

    .contact-chip strong {
        display: block;
    }

    .contact-chip small {
        color: rgba(255,255,255,.80);
    }

.footer {
    border-top: 1px solid rgba(124,124,124,.16);
    padding: 1.5rem 0 2rem;
    color: rgba(19,25,34,.62);
    font-size: .95rem;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.socials {
    display: flex;
    gap: .65rem;
    flex-wrap: wrap;
}

    .socials a {
        width: 42px;
        height: 42px;
        border-radius: 14px;
        display: grid;
        place-items: center;
        background: #fff;
        border: 1px solid rgba(124,124,124,.16);
        box-shadow: 0 10px 25px rgba(19,25,34,.05);
    }

.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s ease, transform .8s ease;
}

    .fade-up.show {
        opacity: 1;
        transform: translateY(0);
    }

@media (max-width: 980px) {
    .hero-grid, .about-grid, .services-wrap, .package-grid, .cta-box, .stats {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 420px;
    }

    .package-card.featured {
        transform: none;
    }

    .topbar .container, .nav-inner, .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .menu {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: .2rem;
        padding-top: .4rem;
    }

        .menu.show {
            display: flex;
        }

    .menu-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .nav-inner {
        flex-direction: row;
        align-items: center;
    }

    .stats {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 24px, 1200px);
    }

    .hero {
        padding-top: 2.4rem;
    }

        .hero h1 {
            max-width: 12ch;
        }

    .stats {
        grid-template-columns: 1fr;
    }

    .topbar .container {
        font-size: .86rem;
    }

    .btn {
        width: 100%;
    }

    .btn-row {
        width: 100%;
    }

        .btn-row .btn {
            flex: 1;
        }

    .hero-visual {
        min-height: 360px;
    }
}

.visual-card {
    position: relative;
    z-index: 1;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 22px;
    padding: 1.2rem;
    color: #fff;
    margin-bottom: 1rem;
}

    .visual-card h3 {
        font-family: "Poppins", sans-serif;
        font-size: 1.5rem;
        margin-bottom: .35rem;
    }

    .visual-card p {
        color: rgba(255,255,255,.84);
        line-height: 1.7;
    }

.feature-pills {
    display: flex;
    gap: .7rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .6rem .8rem;
    border-radius: 999px;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.18);
    color: #fff;
    font-size: .92rem;
    font-weight: 600;
}


.hero .eyebrow {
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.25);
    color: #ffffff;
}


.hero .container {
    position: relative;
    z-index: 2;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem;
}

/* CARD */
.card {
    position: relative;
    background: linear-gradient(180deg, #ffffff, #f7fbfd);
    padding: 1.6rem;
    border-radius: 24px;
    border: 1px solid rgba(124,124,124,.14);
    box-shadow: 0 15px 35px rgba(19,25,34,.06);
    transition: all .3s ease;
    overflow: hidden;
}

    /* HOVER EFFECT */
    .card:hover {
        transform: translateY(-8px);
        border-color: rgba(83,196,240,.35);
        box-shadow: 0 25px 55px rgba(19,25,34,.12);
    }

    /* SUBTLE GLOW BACKGROUND */
    .card::after {
        content: "";
        position: absolute;
        width: 180px;
        height: 180px;
        background: rgba(83,196,240,.08);
        border-radius: 50%;
        top: -60px;
        right: -60px;
    }

/* ICON */
.card-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(83,196,240,.12);
    color: var(--blue-deep);
    margin-bottom: .8rem;
}

/* TEXT */
.card h3 {
    margin-bottom: .5rem;
    font-family: "Poppins", sans-serif;
}

.card p {
    color: rgba(19,25,34,.7);
    line-height: 1.7;
}

/* VALUES SECTION */
.values {
    margin-top: 2rem;
    display: flex;
    gap: .8rem;
    flex-wrap: wrap;
}

/* VALUE PILLS */
.value {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .7rem 1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(83,196,240,.12), rgba(124,124,124,.08));
    border: 1px solid rgba(124,124,124,.16);
    font-weight: 600;
    transition: all .25s ease;
    cursor: default;
}

    /* ICON */
    .value i {
        color: var(--blue-deep);
    }

    /* HOVER */
    .value:hover {
        transform: translateY(-3px);
        border-color: rgba(83,196,240,.4);
        box-shadow: 0 12px 25px rgba(19,25,34,.08);
    }

.cta {
    text-align: center;
    padding: 60px 0;
}

/*.btn {
    padding: 14px 30px;
    background: #53C4F0;
    border: none;
    color: white;
    border-radius: 30px;
    cursor: pointer;
}*/

@media(max-width:768px) {
    .grid {
        grid-template-columns: 1fr;
    }

    .values {
        grid-template-columns: 1fr 1fr;
    }

    .hero h1 {
        font-size: 36px;
    }
}