:root {
    --primary-color: #0d2c54; /* Deep Blue */
    --secondary-color: #fca311; /* Electric Orange/Yellow */
    --accent-color: #e5e5e5;
    --text-dark: #333333;
    --text-light: #ffffff;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    background-color: var(--primary-color);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand img {
    height: 50px; /* Adjust based on logo aspect ratio */
    width: auto;
}

.nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    margin-left: 15px;
    position: relative;
}

.nav-link::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width .3s;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-custom {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    font-weight: 700;
    border-radius: 30px;
    padding: 10px 30px;
    border: none;
    transition: transform 0.3s;
}

.btn-custom:hover {
    transform: scale(1.05);
    background-color: #e69500;
    color: var(--primary-color);
}

/* Hero Section */
#hero {
    height: 100vh;
    background: linear-gradient(rgba(13, 44, 84, 0.8), rgba(13, 44, 84, 0.8)), url('../img/hero-bg.jpg'); /* Fallback or need to find a way to have a BG */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

/* If no hero image exists, use a gradient fallback */
#hero.no-img {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a4a8a 100%);
}

#hero h1 {
    font-weight: 800;
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

#hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 300;
}

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

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title h2::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* About Section */
.about-img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Services Section */
.service-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    border-bottom: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-bottom: 3px solid var(--secondary-color);
}

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

.service-card h3 {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Contact Section */
#contact {
    background-color: #f8f9fa;
}

.contact-info-box {
    text-align: center;
    padding: 20px;
}

.contact-info-box i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.contact-info-box h4 {
    font-weight: 700;
    margin-bottom: 10px;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 30px 0;
    text-align: center;
}

footer a {
    color: var(--secondary-color);
    text-decoration: none;
}

footer a:hover {
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    #hero h1 {
        font-size: 2.5rem;
    }
    
    #hero p {
        font-size: 1.2rem;
    }
}
