
:root {
    --primary: #0E8DBD;
    --secondary: #8FC9DB;
    --dark: #111111;
    --light: #F5F8FA;
    --white: #FFFFFF;
}

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

body {
    font-family: Arial,Helvetica,sans-serif;
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
}

header {
    position: sticky;
    top: 0;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,.08);
    z-index: 1000;
}

ul {
    padding-left:20px;
    margin-top:20px;
    margin-bottom:20px;
}

h2 {
    margin-top: 10px;
    margin-bottom: 10px;
    color: var(--primary);
}

a {
    color: var(--primary);
    text-decoration: none;
}
a:HOVER {
    text-decoration: underline;
}
/* HERO */

.hero {
    padding: 0px 0 0px;
    background: #ecf5f9;
    overflow: hidden;
    max-height:450px;
}

.hero-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}
hero-content {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}
.hero-content h1 {
    font-size: 40px;
    line-height: 1.1;
    color: #111;
    margin: 10px 10px;
    font-weight: 700;
}

    .hero-content h1 span {
        color: #0E8DBD;
    }

.hero-content p {
    font-size: 18px;
    line-height: 1.5;
    color: #555;
    margin-bottom: 20px;
    margin-left: 10px;
}

.hero-tag {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 50px;
    background: #EAF8FC;
    color: #0E8DBD;
    font-size: 14px;
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 10px;
    margin-left: 10px;
}

.hero-image {
    text-align: center;
        margin-bottom:0px;
}

    .hero-image img {
        width: 100%;
        max-width: 600px;
        min-width: 200px;
        margin-bottom:0px;
        /*animation: float 5s ease-in-out infinite;*/
        filter: drop-shadow(0 30px 50px rgba(0,0,0,.15));
    }
.hero-image-mob {
    display: none;
}
.hero-image-mob-inner {
    width: 100%;
}
@media (max-width:480px) {
    .hero-image {
        display:none;
    }
    .hero-image-mob {
        display: inline-block;
        max-width:480px;
   }
    hero-image-mob-inner {
        width: 100%;
    }
    .hero {
        max-height: unset;
    }
}
    @keyframes float {

        0% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-15px);
        }

        100% {
            transform: translateY(0);
        }
    }

    section {
        max-width: 1200px;
        margin: auto;
        padding: 10px 10px
    }

    .cards {
        display: grid;
        grid-template-columns: repeat(3,1fr);
        gap: 30px;
        margin-top: 20px;
    }

        .cards article {
            background: var(--light);
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0,0,0,.08);
            transition: .3s;
            min-height:200px;
        }

            .cards article:hover {
                transform: translateY(-8px);
            }
            .cards a {
                text-decoration:none;
                color:unset;
            }

    .navbar a {
        position: relative;
        text-decoration: none;
        color: #111;
        padding: 10px 0;
        transition: .3s;
    }

        .navbar a::after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: -4px;
            width: 0;
            height: 3px;
            background: #0E8DBD;
            transform: translateX(-50%);
            transition: width .35s ease;
            border-radius: 50px;
        }

        .navbar a:hover {
            color: #0E8DBD;
        }

            .navbar a:hover::after {
                width: 100%;
            }

        .navbar a.active::after {
            width: 100%;
        }

        .navbar a.active {
            color: #0E8DBD;
        }

    nav {
        max-width: 1200px;
        margin: auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px;
    }

        nav ul {
            display: flex;
            gap: 25px;
            list-style: none
        }

        nav a {
            text-decoration: none;
            color: var(--dark);
            font-weight: bold
        }

    /* ===========================
   BUTTONS
=========================== */

    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 14px 32px;
        font-family: 'Poppins',sans-serif;
        font-size: 16px;
        font-weight: 600;
        text-decoration: none;
        border-radius: 50px;
        cursor: pointer;
        transition: all .35s ease;
        border: none;
        letter-spacing: .4px;
        overflow: hidden;
        position: relative;
    }

    .btn-primary {
        background: #0E8DBD;
        color: #fff;
        box-shadow: 0 12px 25px rgba(14,141,189,.25);
    }

        .btn-primary:hover {
            background: #08749A;
            transform: translateY(-3px);
            box-shadow: 0 18px 35px rgba(14,141,189,.35);
        }

        .btn-primary:active {
            transform: translateY(0);
        }

    .btn-secondary {
        background: #fff;
        color: #0E8DBD;
        border: 2px solid #0E8DBD;
    }

        .btn-secondary:hover {
            background: #0E8DBD;
            color: #fff;
            transform: translateY(-3px);
        }

    .btn-dark {
        background: #111111;
        color: #fff;
    }

        .btn-dark:hover {
            background: #2b2b2b;
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(0,0,0,.25);
        }

    .btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: -120%;
        width: 60%;
        height: 100%;
        background: linear-gradient( 120deg, transparent, rgba(255,255,255,.45), transparent );
        transition: .7s;
    }

    .btn:hover::before {
        left: 140%;
    }

/* mobile nav bar and burger */
.hamburgerlogo {
    display: none;
    margin: 0 auto;
    height: 70px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.hamburger {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: var(--primary);
    padding: 10px;
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
}

.hamburgerbar {
    display: none;
    width: 100%;
    position: absolute;
    top: 70px; /* Adjust to suit your header height */
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    z-index: 999;
}

    .hamburgerbar ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .hamburgerbar li {
        width: 100%;
        border-bottom: 1px solid var(--primary);
    }

        .hamburgerbar li:last-child {
            border-bottom: none;
        }

    .hamburgerbar a {
        display: block;
        width: 100%;
        padding: 16px 25px;
        text-decoration: none;
        color: var(--primary);
        font-size: 17px;
        font-weight: 500;
        box-sizing: border-box;
        transition: background-color .25s ease, color .25s ease;
    }

        .hamburgerbar a:hover,
        .hamburgerbar a.active {
            background: var(--secondary);
            color: var(--white);
        }

.text-bg-section {
    background-image: url("../images/bg1.jpg");
    background-size:auto;
    background-position: center;
    background-repeat: repeat;
    padding: 20px 10px;
    color: var(--dark);
}

/* footer */

footer {
    background: var(--dark);
    color: #fff;
    text-align: center;
    padding: 10px;
    margin-top: 0px;
}

.ftrcards {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap:5px;
    margin: auto;
    max-width: 1200px;
}

    .ftrcards ftritem {
        background: var(--dark);
        padding: 10px;
        font-size: 13px;
    } 
    .ftrcards a {
        color:white;
        text-decoration: none;
    }
    .ftrcards a:HOVER {
        text-decoration: underline;
    }

.mob {display:none;}
.desk {display:inline-block;}