body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
/* Make navbar fixed at the top */
/* Navbar basic styling */
/* NAVBAR FIXED */
.custom-nav {
    background: #0a3d62;
    padding: 10px 0;
    box-shadow: 0px 3px 6px rgba(0,0,0,0.2);
}

/* Logo */
.logo {
    height: 45px;
}

/* Brand Text */
.brand-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
}

/* Navbar Links */
.nav-link {
    color: #fff !important;
    font-size: 1.05rem;
    margin-left: 15px;
    font-weight: 500;
}

.nav-link:hover {
    color: #ffeaa7 !important;
}

/* Mobile Logo Alignment */
@media (max-width: 767px) {
    .brand-text {
        font-size: 1.1rem;
    }
    .logo {
        height: 38px;
    }
}
.navbar {
    width: 100%;
    background: #0D63C9;   /* Blue color */
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

/* Left side (Logo + Name) */
.nav-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-left .logo {
    width: 55px;
    height: auto;
}

/* Title */
.nav-left h1 {
    color: white;
    font-size: 26px;
    font-weight: bold;
    margin: 0;
}

/* Right side menu */
.nav-menu {
    list-style: none;
    display: flex;
    gap: 35px;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.nav-menu li a:hover {
    color: #FFD700; /* Gold on hover */
}

.hero {
    background-image: url('images/HERO.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.floating-image {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.service-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

footer {
    margin-top: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .service-card {
        margin-bottom: 20px;
    }
}