:root {
    --primary: #e63946;
    --primary-dark: #c1121f;
    --primary-light: #ff4d5e;
    --secondary: #1d3557;
    --light: #f1faee;
    --dark: #1d3557;
    --gray: #457b9d;
    --light-gray: #a8dadc;
}

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

/* Header Styles */
.top-bar {
    background-color: var(--secondary);
    padding: 0.5rem 0;
}

.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.sticky-top {
    background-color: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--dark) !important;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    color: var(--dark) !important;
}

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

.dropdown-item {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
}

.dropdown-item:hover {
    background-color: var(--light);
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-light:hover {
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
    padding: 6rem 0;
    margin-bottom: 4rem;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-icon {
    color: var(--light);
    margin-bottom: 2rem;
}

/* Section Icons */
.section-icon {
    margin-bottom: 2rem;
}

/* Cards */
.card {
    border: none;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 2rem rgba(0,0,0,0.15);
}

.card-body {
    padding: 2rem;
}

/* Service Cards */
.service-icon {
    width: 4rem;
    height: 4rem;
    background-color: var(--light);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-size: 1.5rem;
}

/* Brand Cards */
.brand-icon {
    width: 4rem;
    height: 4rem;
    background-color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary);
}

/* District Cards */
.district-icon {
    width: 4rem;
    height: 4rem;
    background-color: var(--light);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

/* Features Section */
.feature-box {
    text-align: center;
    padding: 2rem;
    transition: all 0.3s ease;
}

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

.feature-icon {
    width: 5rem;
    height: 5rem;
    background-color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary);
    font-size: 2rem;
}

/* Call to Action */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 4rem 0;
}

.cta-icon {
    color: var(--light);
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background-color: var(--secondary);
    padding: 5rem 0 2rem;
}

.footer h4 {
    color: var(--light);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-link {
    color: var(--light-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-link i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.footer-link:hover {
    color: var(--light);
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 4rem 0;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .card {
        margin-bottom: 1.5rem;
    }
    
    .feature-box {
        margin-bottom: 2rem;
    }
  
    .topMenuTextMobile {
        font-size: 0.8rem;
    }
} 