 body {
        margin: 0;
        font-family: 'Poppins', sans-serif;
        background: #f5f7fb;
        color: #0A1A2F;
    }

    /* HEADER */
    header {
        background: #0A1A2F;
        color: #fff;
        display: flex;
        justify-content: space-between;
        padding: 15px 40px;
    }

    nav a {
        color: #fff;
        margin: 0 12px;
        text-decoration: none;
    }

    nav a:hover {
        color: #B85A1B;
    }

    /* HERO */
    .hero {
        background: url('https://images.unsplash.com/photo-1584515933487-779824d29309') center/cover;
        color: white;
        text-align: center;
        padding: 120px 20px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .btn {
        background: #B85A1B;
        color: white;
        padding: 12px 25px;
        text-decoration: none;
        border-radius: 6px;
    }

    /* SECTIONS */
    section {
        padding: 40px 30px;
    }

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

    .card {
        background: white;
        border-radius: 12px;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    }

    .card img {
        width: 100%;
        border-radius: 10px;
    }

    /* STRIP */
    .strip {
        background: #0A1A2F;
        color: #fff;
        text-align: center;
        padding: 20px;
    }

    /* FOOTER */
    footer {
        background: #0A1A2F;
        color: white;
        text-align: center;
        padding: 25px;
    }

    footer a {
        color: white;
        margin: 0 10px;
    }



    .menu {
        list-style: none;
        display: flex;
        margin: 0;
        padding: 0;
    }

    .menu li {
        position: relative;
    }

    .menu a {
        display: block;
        padding: 10px 15px;
        color: white;
        text-decoration: none;
    }

    /* SUBMENU */
    .submenu {
        display: none;
        position: absolute;
        top: 40px;
        left: 0;
        background: #0A1A2F;
        list-style: none;
        padding: 0;
        min-width: 220px;
        z-index: 1000;
    }

    .submenu li a {
        padding: 10px;
        color: white;
    }

    .submenu li a:hover {
        background: #B85A1B;
    }

    /* SHOW ON HOVER */
    .dropdown:hover .submenu {
        display: block;
    }




    /* LOGIN BUTTON */
    .login-btn {
        background: #B85A1B;
        color: #fff;
        padding: 8px 16px;
        border-radius: 6px;
        text-decoration: none;
        margin-left: 15px;
        font-weight: 500;
    }

    .login-btn:hover {
        background: #a14e16;
    }

    /* FOOTER LINKS */
    .footer-links a {
        color: #fff;
        text-decoration: none;
        margin: 0 8px;
    }

    .footer-links a:hover {
        text-decoration: underline;
    }

    .card {
        background: #fff;
        padding: 25px;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
        max-width: 500px;
    }


    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1.2fr 1fr;
        gap: 25px;
        margin-top: 30px;
    }

    .card {
        background: #fff;
        padding: 25px;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    /* FORM */
    .form-row {
        display: flex;
        gap: 10px;
    }

    .form-row input,
    .form-row select {
        flex: 1;
    }

    input,
    select,
    textarea {
        width: 100%;
        padding: 10px;
        margin-bottom: 12px;
        border-radius: 6px;
        border: 1px solid #ccc;
    }

    /* BUTTON */
    .btn {
        background: #B85A1B;
        color: #fff;
        padding: 10px 18px;
        border: none;
        border-radius: 6px;
        cursor: pointer;
    }

    .btn:hover {
        background: #a14e16;
    }

    /* MAP */
    .map-card iframe {
        width: 100%;
    }

    /* MOBILE */
    @media (max-width: 900px) {
        .contact-grid {
            grid-template-columns: 1fr;
        }

        .form-row {
            flex-direction: column;
        }
    }



    .hero {
        position: relative;
        height: 85vh;
        background: url('https://images.unsplash.com/photo-1584515933487-779824d29309') center/cover no-repeat;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    /* DARK OVERLAY */
    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(10, 26, 47, 0.6);
    }

    /* CONTENT */
    .hero-content {
        position: relative;
        color: #fff;
        max-width: 800px;
        padding: 20px;
    }

    .hero h1 {
        font-size: 42px;
        margin-bottom: 15px;
    }

    .hero p {
        font-size: 18px;
        margin-bottom: 25px;
    }

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

    .btn {
        background: #B85A1B;
        color: #fff;
        padding: 12px 24px;
        border-radius: 6px;
        text-decoration: none;
    }

    .btn:hover {
        background: #a14e16;
    }

    .btn-outline {
        border: 2px solid #fff;
        color: #fff;
        padding: 12px 24px;
        border-radius: 6px;
        text-decoration: none;
    }

    .btn-outline:hover {
        background: #fff;
        color: #0A1A2F;
    }

    /* MOBILE */
    @media (max-width: 768px) {
        .hero h1 {
            font-size: 28px;
        }

        .hero p {
            font-size: 16px;
        }
    }



    input,
    select,
    textarea {
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        padding: 12px;
        border-radius: 6px;
        border: 1px solid #ccc;
    }

    input::placeholder,
    textarea::placeholder {
        font-family: 'Poppins', sans-serif;
        color: #777;
    }

    button {
        font-family: 'Poppins', sans-serif;
        font-weight: 500;
    }



    .hero-split {
        display: flex;
        height: 65vh;
    }

    /* HALF SECTIONS */
    .hero-half {
        flex: 1;
        position: relative;
        background-size: cover;
        background-position: center;
    }

    /* LEFT IMAGE (AGED CARE) */
    .hero-half.left {
        background-image: url('https://images.unsplash.com/photo-1584515933487-779824d29309');
    }

    /* RIGHT IMAGE (BUSINESS) */
    .hero-half.right {
        background-image: url('https://images.unsplash.com/photo-1551836022-d5d88e9218df');
    }

    /* DARK OVERLAY */
    .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(10, 26, 47, 0.6);
    }

    /* TEXT CONTENT */
    .hero-text {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #fff;
        text-align: center;
        max-width: 500px;
    }

    .hero-text h1 {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .hero-text p {
        font-size: 16px;
        margin-bottom: 20px;
    }

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

    .btn {
        background: #B85A1B;
        color: #fff;
        padding: 10px 20px;
        border-radius: 6px;
        text-decoration: none;
    }

    .btn-outline {
        border: 2px solid #fff;
        color: #fff;
        padding: 10px 20px;
        border-radius: 6px;
        text-decoration: none;
    }

    .btn-outline:hover {
        background: #fff;
        color: #0A1A2F;
    }

    /* MOBILE */
    @media (max-width: 768px) {
        .hero-split {
            flex-direction: column;
            height: auto;
        }

        .hero-half {
            height: 50vh;
        }

        .hero-text h1 {
            font-size: 24px;
        }
    }




    .main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #0A1A2F;
    padding: 12px 30px;
}

/* RIGHT SIDE */
.nav-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* MENU */
.menu {
    list-style: none;
    display: flex;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.menu li {
    position: relative;
}

.menu a {
    color: #fff;
    padding: 10px 12px;
    text-decoration: none;
    font-size: 14px;
}

.menu a:hover {
    color: #B85A1B;
}

/* WORDPRESS DROPDOWN FIX */
.menu .sub-menu {
    display: none;
    position: absolute;
    top: 40px;
    left: 0;
    background: #0A1A2F;
    list-style: none;
    padding: 0;
    min-width: 200px;
}

.menu .sub-menu li a {
    display: block;
    padding: 10px;
}

/* SHOW DROPDOWN */
.menu li:hover > .sub-menu {
    display: block;
}

/* LOGIN BUTTON */
.login-btn {
    background: #B85A1B;
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
}

    /* LOGO */
    .logo-area {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .logo {
        height: 50px;
    }

    .logo-text strong {
        display: block;
        font-size: 14px;
    }

    .logo-text span {
        font-size: 11px;
        opacity: 0.8;
    }





    .footer {
        background: #0A1A2F;
        color: #fff;
        padding: 40px;
    }

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

    .footer-logo {
        height: 60px;
        margin-bottom: 10px;
    }

    .footer a {
        color: #fff;
        text-decoration: none;
    }

    .footer-bottom {
        text-align: center;
        margin-top: 20px;
        font-size: 12px;
    }




    .footer-btn {
        display: inline-block;
        margin-top: 10px;
        padding: 8px 16px;
        background: #B85A1B;
        color: #fff;
        border-radius: 6px;
        text-decoration: none;
        font-size: 14px;
    }

    .footer-btn:hover {
        background: #a14e16;
    }



    .hero-split {
        margin-bottom: 0;
    }



    .about-api {
        margin-top: 0;
        padding-top: 20px;
    }



    .about-api {
        border-top: 1px solid #eee;
    }

    .quick-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-menu li {
    margin-bottom: 8px;
}

.quick-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.quick-menu a:hover {
    text-decoration: underline;
}