:root {
    --primary-color: #0A1445;
    /* Dark Blue from Logo */
    --secondary-color: #F7A619;
    /* Orange/Yellow from Logo */
    --text-color: #333;
    --light-bg: #f8f9fa;
}

/* Bootstrap Overrides */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.btn-warning {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    color: #fff !important;
    /* Ensure text is readable */
}

.btn-warning:hover {
    background-color: #d99015 !important;
    /* Slightly darker for hover */
    color: #fff !important;
}

.section-title::after {
    background: var(--secondary-color);
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--secondary-color) !important;
}

a {
    color: var(--primary-color);
}

body {
    font-family: 'Roboto', sans-serif;
    /* Need to import google font */
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    background-color: #212529 !important;
    /* Permanent dark background */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding-bottom: 20px;
    /* Space for overflowing logo */
}

.navbar-brand img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid white;
    position: absolute;
    top: 5px;
    z-index: 1000;
    object-fit: cover;
}

/* Add padding to the start of nav links to account for logo if it overlaps significantly */
@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav {
        margin-left: 140px;
        /* Offset for logo */
    }
}

@media (max-width: 991px) {
    .navbar-brand img {
        width: 80px;
        height: 80px;
        position: relative;
        top: 0;
        margin-right: 15px;
    }
}

.nav-link {
    color: white !important;
    font-weight: 500;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--secondary-color) !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 80vh;
    background-color: #333;
}

.carousel-item {
    height: 80vh;
}

.carousel-item img {
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.3);
    /* Optional: darken background for readability */
}

.hero-overlay h1 {
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-overlay p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--primary-color);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--secondary-color);
    margin: 15px auto;
}

/* Services */
.service-card {
    transition: transform 0.3s;
    height: 100%;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 3rem;
    /* Placeholder icon size */
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Location */
.map-container {
    height: 400px;
    background-color: #eee;
    /* Placeholder */
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #aaa;
    padding: 40px 0;
    text-align: center;
}

footer a {
    color: white;
    text-decoration: none;
}