:root {
    --primary-color: #0066cc;
    --secondary-color: #001f3f;
    --accent-color: #00b4d8;
    --text-color: #333;
    --light-bg: #f8f9fa;
}

/* Global Styles */
body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

/* Navbar Styles */
.navbar-brand {
    font-weight: 700;
    color: var(--primary-color);
    max-width: 200px;
    padding-right: 1rem;
    line-height: 1.2;
}

.logo-container {
    padding: 4px 8px; /* Reduced padding for less space */
    margin-bottom: 0; /* Removed margin for better vertical alignment */
    text-align: center; /* Center all text */
}

.navbar-brand span:first-of-type {
    font-size: 0.85em;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    color: var(--secondary-color);
}

.navbar-brand .small {
    display: block;
    line-height: 1;
    margin-top: 2px;
    opacity: 0.6;
    text-align: center;
}

/* Header */
.navbar {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
                url('https://images.unsplash.com/photo-1488590528505-98d2b5aba04b');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

/* Cards */
.card {
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

/* Features */
.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Contact Form */
.contact-form {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
}

.form-control {
    border: 2px solid #eee;
    padding: 0.8rem;
}

.btn-primary {
    background-color: var(--primary-color);
    border: none;
    padding: 0.8rem 2rem;
    font-weight: 600;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 3rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .navbar-collapse {
        background: white;
        padding: 1rem;
    }
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}