/* Global Styles */
:root {
    --navy: #0A2342;
    --gold: #CBA135;
    --gold-hover: #b38b25;
    --white: #ffffff;
    --light-gray: #f8f9fa;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
    font-family: 'Montserrat', sans-serif;
}

.text-navy {
    color: var(--navy) !important;
}

.text-gold {
    color: var(--gold) !important;
}

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

/* Buttons */
.btn-gold {
    background-color: var(--gold);
    color: var(--white);
    border: 2px solid var(--gold);
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background-color: var(--gold-hover);
    border-color: var(--gold-hover);
    color: var(--white);
}

.btn-navy {
    background-color: var(--navy);
    color: var(--white);
    border: 2px solid var(--navy);
    transition: all 0.3s ease;
}

.btn-navy:hover {
    background-color: transparent;
    color: var(--navy);
}

/* Navbar */
.navbar {
    background-color: rgba(10, 35, 66, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.nav-link {
    font-weight: 600;
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.8) !important;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold) !important;
}

/* Hero Section */
.hero-section {
    background: url('../assets/img/office.jpg') no-repeat center center/cover;
    height: 100vh;
    min-height: 600px;
    position: relative;
    margin-top: 0;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(10, 35, 66, 0.8), rgba(10, 35, 66, 0.6));
}

/* Services */
.section-padding {
    padding: 80px 0;
}

.divider {
    width: 60px;
    height: 3px;
    background-color: var(--gold);
    margin: 20px 0;
}

.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.icon-box {
    width: 80px;
    height: 80px;
    transition: all 0.3s ease;
}

/* Form */
.form-control {
    border-radius: 0;
    border: 1px solid #ddd;
    padding: 1rem 0.75rem;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--gold);
}

.form-floating>label {
    color: #6c757d;
}

/* Disclaimer Box */
.disclaimer-box {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-left: 5px solid var(--gold);
    padding: 20px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 25px;
}

.disclaimer-title {
    color: #d9534f;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-section {
        height: auto;
        padding: 150px 0 100px;
    }

    .navbar-collapse {
        background-color: var(--navy);
        padding: 20px;
        border-radius: 10px;
        margin-top: 10px;
    }
}