/* General Reset */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden; /* Prevent horizontal scroll */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Swiper Container Styles */
.swiper-container {
    width: 100%;
    position: relative;
    overflow: hidden; /* Avoid extra scrollbars */
    min-height: 100vh; /* Ensure minimum height to avoid collapse */
}

.swiper-wrapper {
    display: flex;
    flex-direction: row;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    min-height: 100vh; /* Minimum height to prevent small slides */
    padding: 20px;
    color: #fff;
    box-sizing: border-box;
}

/* Customize background for specific slides */
.swiper-slide:nth-child(2),
.swiper-slide:nth-child(4) {
    color: #333;
}

/* Section Styling */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

h1, h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #222;
}

p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* Service Box Styling */
.service-box {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-box h5 {
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.service-box p {
    color: #555;
    font-size: 0.95rem;
}

/* Pagination Bullets */
.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.8);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #007bff;
    opacity: 1;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn-primary {
    background-color: #007bff;
    color: #fff;
    border: none;
}

.btn-primary:hover {
    background-color: #0056b3;
}

/* Footer Styling */
footer {
    background-color: #343a40;
    color: white;
    text-align: center;
    padding: 10px;
    position: relative;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1, h2 {
        font-size: 1.8rem;
    }

    p {
        font-size: 0.95rem;
    }

    .swiper-slide {
        min-height: auto; /* Auto height for responsive content */
        padding: 15px; /* Adjust padding for small screens */
    }

    .container {
        padding: 15px;
    }

    .service-box {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    h1, h2 {
        font-size: 1.5rem;
    }

    p {
        font-size: 0.9rem;
    }

    .btn {
        font-size: 0.9rem;
        padding: 8px 16px;
    }

    .service-box {
        padding: 10px;
    }
}

/* Responsive Grid Adjustment */
@media (max-width: 768px) {
    .service-box {
        padding: 15px;
    }

    h2 {
        font-size: 1.8rem;
    }

    p {
        font-size: 0.95rem;
    }
}

/* Small Screen Adjustments */
@media (max-width: 576px) {
    .service-box {
        padding: 10px;
    }

    h2 {
        font-size: 1.6rem;
    }

    p {
        font-size: 0.9rem;
    }

    .btn {
        font-size: 0.85rem;
        padding: 8px 16px;
    }
}

/* Additional Fix for Footer Overlap */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex-grow: 1; /* Ensures content pushes the footer down */
}

.swiper-slide.work {
	background-color: #226477 !important;
}
.hed {
	color: black !important;
}
/* Services Section Styling */
.services-section {
    background-color: #f8f9fa;
    padding: 60px 20px;
}

.services-section h1 {
    font-size: 2.8rem;
    color: #333;
    font-weight: bold;
    margin-bottom: 20px;
}

.services-section p.lead {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
}

.service-category {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 30px 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.service-category h2 {
    font-size: 1.8rem;
    color: #007bff;
    margin-bottom: 10px;
}

.service-category p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
}

.service-list {
    list-style-type: disc;
    padding-left: 20px;
    color: #444;
}

.service-list li {
    margin-bottom: 10px;
    line-height: 1.5;
}

/* Why Choose Us Section */
.why-choose-us {
    background: #007bff;
    color: white;
    border-radius: 8px;
}

.why-choose-us h2 {
    font-size: 2rem;
    font-weight: bold;
}

.why-list {
    list-style-type: none;
    padding: 0;
    color: white;
}

.why-list li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.why-choose-us .btn {
    background-color: #fff;
    color: #007bff;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.why-choose-us .btn:hover {
    background-color: #0056b3;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-section h1 {
        font-size: 2.4rem;
    }

    .services-section p.lead {
        font-size: 1rem;
    }

    .service-category {
        padding: 20px;
    }

    .why-choose-us h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .services-section h1 {
        font-size: 2rem;
    }

    .services-section p.lead {
        font-size: 0.9rem;
    }

    .service-category {
        padding: 15px;
    }

    .why-choose-us h2 {
        font-size: 1.6rem;
    }

    .why-list li {
        font-size: 1rem;
    }
}
/* General Section Styling */
.hero-section {
    background-color: #007bff;
    color: #fff;
    padding: 100px 20px;
}

.hero-section .section-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero-section .section-subtitle {
    font-size: 1.2rem;
    line-height: 1.8;
}

/* Story Section */
.story-section {
    background-color: #f8f9fa;
}

.story-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

/* Mission & Vision Sections */
.mission-section, .vision-section {
    background-color: #fff;
}

.mission-section .section-title, .vision-section .section-title {
    font-size: 2rem;
    color: #007bff;
    font-weight: bold;
    margin-bottom: 20px;
}

.section-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Team Section */
.team-section {
    background-color: #f8f9fa;
}

.team-image {
    width: 150px;
    height: 150px;
    border: 3px solid #007bff;
    padding: 5px;
}

.team-role {
    font-size: 1rem;
    color: #555;
}

/* CTA Section */
.cta-section {
    background-color: #007bff;
    color: #fff;
}

.cta-section .btn-primary {
    background-color: #fff;
    color: #007bff;
    border: 2px solid #fff;
    font-weight: bold;
    padding: 10px 20px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.cta-section .btn-primary:hover {
    background-color: #0056b3;
    color: #fff;
    border-color: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section .section-title {
        font-size: 2.5rem;
    }

    .section-text {
        font-size: 1rem;
    }

    .team-image {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 576px) {
    .hero-section .section-title {
        font-size: 2rem;
    }

    .section-text {
        font-size: 0.9rem;
    }
}
