   /* Navbar Custom Styles */
    body {
        font-family: interstate, sans-serif !important;
        width: 100vw;
        overflow-x: hidden;
    }

    .navbar-custom {
        background-color: #ff6600;
        padding: 0;
        /* Unioil orange */
    }

    .navbar-brand {
        padding: 0;
        margin-right: 0;
    }

    .navbar-nav .nav-link {
        color: #fff !important;
        font-weight: 500;
        margin-right: 15px;
        font-size: .9em;
    }

    .navbar ul.navbar-nav li .dropdown-menu a:hover {
        color: #f27b26;
        background: none;
    }
   

    .navbar ul.navbar-nav li .dropdown-menu a {
        text-align: left;
        border-bottom: 1px dotted #ccc;
    }

    .navbar ul.navbar-nav li .dropdown-menu a {
        font-size: 0.9em;
        color: #626262;
        padding-top:.6rem;
        padding-bottom:.6rem;
    }


    .navbar-nav .nav-link.active,
    .navbar-nav .nav-link:hover {
        border-bottom: 2px solid #fff;
    }

    .navbar-brand img {
        padding: 0;
        height: 65px;
        margin: 0;
        margin-start: auto;
    }

    .tagline {
        font-weight: bold;
        font-style: italic;
        color: #000;
        margin-right: 15px;
        background: #fff3e0;
        padding: 5px 10px;
        border-radius: 5px;
    }

    .tagline span {
        color: #ff6600;
    }

    /* Hero Section */
    .hero, .athentication{
        background: url("../../images/brand/SkyandField.jpg") no-repeat center center/cover;
        min-height: calc(100vh - 105px);
        height: auto;
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        /* padding: 40px; */
        padding: 10px 0 40px 0;
    }

    /* Station Image on left side */
    .station-img {
        position: absolute;
        bottom: 0;
        left: 0;
        max-height: 90%;
        width: auto;
    }

    /* Hero Content (right side text & buttons) */
    .hero-content {
        position: relative;
        z-index: 2;
        max-width: 40%;
        margin-left: auto;
        margin-top: -6rem;
    }

    .hero-content img {
        width: 50% !important;
        margin-bottom: 1rem;
    }

    .hero .btn {
        padding: 5px 30px;
        font-weight: bold;
        border-radius: 8px;
    }

    .btn-inquire {
        border: 2px solid #000;
        background: transparent;
        color: #000;
    }

    .btn-inquire:hover {
        background: #000;
        color: #fff;
    }

    .btn-login {
        border: 1px solid #ff6600;
        background: #ff6600;
        color: #fff;
        padding: 5px;
        /* border: none; */
    }

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

    .btn-orange {
        background: #ff6600;
        color: #fff;
        font-weight: bold;
        padding: 5px;
        border-radius: 6px;
    }

    a {
        text-decoration: none;
    }
    
    .btn-orange:hover {
        background: #ffffe4;
        color: #ff6600;
        border: 1px solid #ff6600
    }

    .footer {
        font-size: 12px;
        background: #ebebeb;
        padding: 1em 3em;
    }

    .fs-10{
        font-size:10px;
    }
     .fs-11{
        font-size:11px;
    }

    .fs-12{
        font-size:12px;
    }

    .alert-danger, .alert-success{
        font-size: 10px;
        font-style: italic;
    }

    /* Mobile adjustments */
    @media (max-width: 768px) {
        .hero {
            text-align: center;
            justify-content: center;
            padding: 20px;
        }

        .hero h1 {
            font-size: 2rem;
        }

        .station-img {
            max-height: 50%;
            opacity: 0.9;
        }

        .hero-content {
            max-width: 100%;
            text-align: center !important;
        }

        .hero-content img {
            width: 65% !important;
        }

        .navbar-brand {
            padding: 0;
            margin-right: 0;
            display: flex;
            flex-direction: row;
            flex-direction: column-reverse;
        }

        .navbar-brand img {
            padding: 0;
            width: 340px;
            margin: 0;
            margin-start: auto;
        }

        .login-card {
            margin-bottom:3em !important;
        }

        .auth-card {
          margin-bottom:3em !important;
        }
        
        .footer {
            text-align: center;
        }
    }