footer {
    background: #fff;
    color: #222;
    font-family: 'Poppins', sans-serif;
    padding-top: 2rem;
    padding-bottom: 2rem;
    font-size: 1.05rem;
    letter-spacing: 1px;
}
/* Attractive Contact Us box styling */
.contact-accent {
    background: linear-gradient(135deg, #6fb1fc 0%, #4364f7 100%);
    border-radius: 1.2rem;
    box-shadow: 0 6px 32px rgba(67,100,247,0.10);
    /* color: #fff; */
    border: 1.5px solid #e3eafc;
    transition: box-shadow 0.2s, background 0.2s;
}
.contact-accent:hover {
    box-shadow: 0 12px 40px rgba(67,100,247,0.18);
    background: linear-gradient(135deg, #4364f7 0%, #6fb1fc 100%);
}
.contact-accent h5, .contact-accent h6, .contact-accent strong, .contact-accent a, .contact-accent div, .contact-accent ul, .contact-accent li {
    /* color: #fff !important; */
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    background: #f8fafc;
    color: #222;
    font-size: 1.05rem;
    padding-top: 80px;
}

section {
    scroll-margin-top: 80px;
}

.navbar-brand {
    font-weight: 700;
    font-size: 2rem;
    letter-spacing: 2px;
    font-family: 'Poppins', sans-serif;
}

.carousel-item img {
    height: 600px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
}

.card-title {
    color: #222;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
}

.card {
    border-radius: 1rem;
    box-shadow: 0 2px 12px rgba(30,60,114,0.07);
    border: none;
    transition: transform 0.2s;
    background: #fff;
    padding: 1.5rem 1rem;
}
.card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 32px rgba(42,82,152,0.10);
    background: #f8fafc;

.service-icon img {
    filter: grayscale(0%) brightness(0.7) sepia(0.2) drop-shadow(0 2px 8px rgba(30,60,114,0.10));
    transition: filter 0.2s;
}
.card:hover .service-icon img {
    filter: none;
    brightness: 1;
    sepia: 0;
}
}

@media (max-width: 768px) {
    .carousel-item img {
        height: 220px;
    }
    .navbar-brand {
        font-size: 1.3rem;
    }
    .card-title {
        font-size: 1.1rem;
    }
    .hero-overlay h1 {
        font-size: 2rem;
    }
    .hero-overlay h4 {
        font-size: 1.1rem;
    }
}

.hero-slider {
    position: relative;
    width: 100vw;
    min-height: 400px;
    max-height: 600px;
    overflow: hidden;
}
.hero-overlay {
    z-index: 2;
    pointer-events: none;
}
.hero-overlay h1, .hero-overlay h4, .hero-overlay a {
    pointer-events: auto;
}
