/* Global Styles */
body {
    font-family: 'Montserrat', sans-serif;
    color: #2a2e30;
    line-height: 1.6;
}

/* Navbar */
.navbar {
    padding-top: 1rem;
    padding-bottom: 1rem;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

.nav-link {
    font-weight: 600;
    color: #555 !important;
    margin-left: 1rem;
}

.nav-link:hover {
    color: #3473c8 !important;
}

/* Hero Section */
#hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding-top: 80px;
    /* Offset for fixed navbar */
}

.hero-img img {
    border: 10px solid rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease;
}

.hover-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Contact Section */
.form-control {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid #dee2e6;
}

.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(52, 115, 200, 0.15);
    border-color: #3473c8;
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #3473c8;
    border-color: #3473c8;
}

.btn-primary:hover {
    background-color: #2a5ea3;
    border-color: #255491;
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    #hero {
        text-align: center;
        padding-top: 100px;
    }

    .hero-img {
        margin-top: 3rem;
    }
}

.text-primary {
    color: #3473c8 !important;
}

.bg-primary {
    background-color: #3473c8 !important;
}