:root {
    --primary-blue: #0066cc;
    --primary-orange: #ff6600;
    --dark-blue: #004d99;
    --light-gray: #f8f9fa;
    --dark-gray: #343a40;
}

/* Typography */
body {
    font-family: 'Roboto', sans-serif;
    padding-top: 80px;
    font-size: 16px;
    line-height: 1.6;
    color: #222;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: #111;
}

p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

/* Navbar Styles */
.navbar {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.nav-link {
    color: var(--dark-gray) !important;
    font-weight: 500;
    font-size: 1.1rem;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-orange) !important;
}

/* Slider Styles */
.carousel-item {
    height: 600px;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.7);
    padding: 25px;
    border-radius: 10px;
}

.carousel-caption h1 {
    color: white;
    font-weight: 900;
    font-size: 3rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.carousel-caption p {
    color: white;
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 0;
}

/* Section Styles */
.section-title {
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 900;
    position: relative;
    padding-bottom: 15px;
    font-size: 2.5rem;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.1);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-orange);
}

/* Service Cards */
.service-card {
    text-align: center;
    padding: 40px 25px;
    margin-bottom: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    font-size: 3.5em;
    color: var(--primary-orange);
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 1.3rem;
    color: #222;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.4;
}

/* Contact Section */
.contact-info {
    background: white;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.contact-info h3 {
    color: var(--primary-blue);
    margin-bottom: 25px;
    font-size: 1.8rem;
    font-weight: 700;
}

.contact-info p {
    margin-bottom: 20px;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    color: #333;
    font-weight: 500;
}

.contact-info i {
    color: var(--primary-orange);
    margin-right: 15px;
    width: 20px;
    font-size: 1.2rem;
}

/* Map Styles */
.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    position: relative;
}

.map-marker {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-blue);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    z-index: 1000;
}

.map-marker i {
    color: var(--primary-orange);
    font-size: 1.2em;
}

.map-marker span {
    white-space: nowrap;
}

/* Footer */
footer {
    background-color: var(--dark-gray);
    color: white;
    font-weight: 500;
}

footer p {
    color: white;
    margin-bottom: 0;
}

.social-link {
    color: white;
    font-size: 1.5em;
    margin-left: 20px;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--primary-orange);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }

    /* Navbar Mobile */
    .navbar {
        padding: 10px 0;
    }

    .navbar-brand img {
        height: 45px;
    }

    .nav-link {
        padding: 12px 20px;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        font-size: 1.1rem;
    }

    /* Slider Mobile */
    .carousel-item {
        height: 300px;
    }

    .carousel-caption {
        padding: 15px;
        bottom: 20px;
    }

    .carousel-caption h1 {
        font-size: 1.8rem;
        margin-bottom: 5px;
    }

    .carousel-caption p {
        font-size: 1rem;
        margin-bottom: 0;
    }

    /* Section Titles Mobile */
    .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    /* Service Cards Mobile */
    .service-card {
        padding: 25px 15px;
        margin-bottom: 20px;
        min-height: auto;
    }

    .service-card i {
        font-size: 2.5em;
        margin-bottom: 15px;
    }

    .service-card h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    /* Contact Section Mobile */
    .contact-info {
        padding: 20px;
        margin-bottom: 30px;
    }

    .contact-info h3 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .contact-info p {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .contact-info i {
        font-size: 1.1rem;
        width: 25px;
    }

    /* Map Container Mobile */
    .map-container {
        height: 300px;
    }

    .map-container iframe {
        height: 300px !important;
    }

    .map-marker {
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    .map-marker i {
        font-size: 1rem;
    }

    /* Footer Mobile */
    footer {
        text-align: center;
        padding: 20px 0;
    }

    footer .text-end {
        text-align: center !important;
        margin-top: 15px;
    }

    .social-link {
        margin: 0 10px;
        font-size: 1.3em;
    }

    /* Container Padding */
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    /* Section Spacing */
    .py-5 {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }
}

/* Tablet Adjustments */
@media (min-width: 769px) and (max-width: 991px) {
    .service-card {
        min-height: 200px;
    }

    .carousel-item {
        height: 400px;
    }

    .carousel-caption h1 {
        font-size: 2.2rem;
    }
}

/* Fix for service cards on all screen sizes */
.row {
    margin-left: -15px;
    margin-right: -15px;
}

.col-lg-3, .col-md-6 {
    padding-left: 15px;
    padding-right: 15px;
}

/* Add Poppins font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap'); 