/* Global Styles */
:root {
    --primary-color: #003dbf;
    --secondary-color: #6c757d;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --success-color: #198754;
    --warning-color: #ffc107;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: #002d8f;
}

/* Bootstrap Overrides */
.bg-primary {
    background-color: #003dbf !important;
}

/* Header Styles */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.navbar-brand h1 {
    font-size: 1.8rem;
    margin-bottom: 0;
    color: var(--primary-color);
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 3px;
    background-color: var(--primary-color);
}

/* Hero Section */
.hero {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Services Preview */
.services-preview .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.services-preview .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.services-preview .card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Why Choose Us */
.feature {
    padding: 1.5rem;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* Testimonials */
.testimonials .card {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Call to Action */
.cta {
    background-color: var(--primary-color);
}

/* Footer */
footer {
    background-color: var(--dark-color);
}

footer h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

footer .social-links a:hover {
    opacity: 0.8;
}

/* Page Header */
.page-header {
    background-color: var(--primary-color);
    padding: 3rem 0;
}

.page-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.breadcrumb {
    background-color: transparent;
    padding: 0;
    margin: 0;
}

/* About Page */
.about-content img {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.value-item {
    padding: 1.5rem;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.team-section .card {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.team-section .card:hover {
    transform: translateY(-10px);
}

.team-section .card-img-top {
    height: 250px;
    object-fit: cover;
}

/* Services Page */
.service-item img {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.additional-services .card {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.additional-services .card:hover {
    transform: translateY(-10px);
}

.pricing .card {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

/* Contact Page */
.contact-info .icon-box {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form .form-control {
    border: 1px solid #ddd;
    padding: 0.8rem;
}

.map-container {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.faq-section .accordion-button:not(.collapsed) {
    background-color: var(--light-color);
    color: var(--primary-color);
}

.faq-section .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0.125);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero {
        padding: 3rem 0;
        text-align: center;
    }
    
    .hero img {
        margin-top: 2rem;
    }
    
    .page-header {
        padding: 2rem 0;
    }
    
    .page-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .navbar-brand h1 {
        font-size: 1.5rem;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
}
