/* Variables */
:root {
    --primary-color: #0d6efd;
    --secondary-color: #fd7e14;
    --dark-color: #212529;
    --light-color: #f8f9fa;
}

/* Navbar */
#mainNav {
    background-color: rgba(13, 110, 253, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

#mainNav.scrolled {
    background-color: rgba(13, 110, 253, 0.98);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
}

/* Page Header */
.page-header {
    background-size: cover;
    background-position: center;
    padding-top: 150px;
    padding-bottom: 100px;
    margin-top: 56px;
}

/* Service Cards */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
}

.service-detail-card {
    transition: all 0.3s ease;
}

.service-detail-card:hover {
    transform: translateY(-5px);
}

/* Value Cards */
.value-card {
    background: white;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0b5ed7;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

.btn-outline-light {
    padding: 12px 30px;
    font-weight: 600;
}

/* Counters */
.counter {
    font-size: 3rem;
    font-weight: bold;
}

/* Social Links */
.social-links a {
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color) !important;
    transform: translateY(-3px);
    display: inline-block;
}

/* Mission & Vision Statements */
.mission-statement, .vision-statement {
    border-left: 5px solid var(--primary-color);
}

/* Form Controls */
.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Footer */
footer a {
    transition: color 0.3s ease;
}

footer a:hover {
    color: white !important;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .counter {
        font-size: 2rem;
    }
    
    .page-header {
        padding-top: 120px;
        padding-bottom: 60px;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0b5ed7;
}