/* Global Styles */
:root {
    --primary-color: #0056b3;
    --secondary-color: #6c757d;
    --dark-color: #343a40;
    --light-color: #f8f9fa;
    --accent-color: #17a2b8;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    padding-top: 76px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: #333;
}

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

.navbar-brand {
    font-weight: 700;
}

.navbar-brand img {
    max-height: 40px;
    width: auto;
    transition: all 0.3s ease;
}



/* Hero Section */
/* Hero Section */
.hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    color: white;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/home_image.png');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
}

.hero-bg {
    top: 0;
    left: 0;
    z-index: 0;
}

.text-glow {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5),
                 0 0 20px rgba(255, 255, 255, 0.3),
                 0 0 30px rgba(255, 255, 255, 0.2);
    font-weight: 600;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.hero .lead {
    font-size: 1.4rem;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin-bottom: 20px;
}

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

.service-card-img {
    height: 200px;
    object-fit: cover;
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.blog-card-img {
    height: 200px;
    object-fit: cover;
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1rem;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Button Styles */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 86, 179, 0.3);
}

.btn-primary:hover {
    background-color: #004494;
    border-color: #004494;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 86, 179, 0.4);
}

/* Image Styles */
.img-fluid {
    max-width: 100%;
    height: auto;
}

.rounded {
    border-radius: 8px !important;
}

.shadow {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

/* Feature List */
.list-unstyled li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.fa-check-circle {
    color: var(--primary-color);
}

/* Contact Form */
.contact-form {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

/* About Page Styles */
.about-section {
    padding: 80px 0;
}

.about-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.service-highlight {
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1) !important;
}

.mission-statement {
    background: linear-gradient(135deg, var(--primary-color) 0%, #004494 100%);
    box-shadow: 0 4px 15px rgba(0, 86, 179, 0.2);
}

.mission-statement h3 {
    color: rgba(255, 255, 255, 0.9);
}

.mission-statement p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

/* Footer */
.footer {
    background-color: #343a40;
    padding: 40px 0 20px;
}

.footer a {
    color: white;
    text-decoration: none;
}

.footer a:hover {
    color: var(--accent-color);
}

/* Footer Styles */
.footer-logo {
    max-width: 200px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.footer h5 {
    color: var(--light-color);
    margin-bottom: 1rem;
}

.footer p {
    color: var(--light-color);
    opacity: 0.9;
}

/* Approach Section */
.approach-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero {
        min-height: 60vh;
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .lead {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .hero {
        min-height: 50vh;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero .lead {
        font-size: 1.1rem;
    }
    
    .service-card {
        margin-bottom: 2rem;
    }
    
    h1, .h1 {
        font-size: 2.2rem;
    }

    h2, .h2 {
        font-size: 1.8rem;
    }
    
    .navbar-brand {
        font-size: 1.1rem;
    }

    .navbar-brand img {
        max-height: 35px;
    }

    .navbar-brand span {
        display: none;
    }
    
    .about-section,
    .contact-section {
        padding: 40px 0;
    }
    
    .service-highlight {
        margin-bottom: 1.5rem;
    }

    .approach-icon {
        width: 70px;
        height: 70px;
    }

    .footer .text-center,
    .footer .col-md-4 {
        text-align: center !important;
    }
}
