/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
    color: #495057;
}

html {
    scroll-behavior: smooth;
}

/* Header Styles */
header {
    background-color: #343a40;
    color: #fff;
    padding: 10px 0;
}

header h1 {
    margin: 0;
    font-size: 1.5rem;
}

/* Navbar Styles */
.navbar {
    background-color: #343a40;
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
}

.navbar-brand img {
    height: 40px;
    margin-right: 10px;
    border-radius: 50%;
}

.navbar-nav .nav-link {
    color: #fff;
    font-size: 1rem;
}

.navbar-nav .nav-link:hover {
    color: #f0f7ff;
}

/* Hero Section Styles */
.hero-section {
    height: 90vh;
    background-size: cover;
    background-position: center;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 50px 0;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: bold;
}

.hero-section p {
    font-size: 1.25rem;
    line-height: 1.5;
}

/* Services Section Styles */
.services-section {
    padding: 30px 0;
    background-image: url('https://images.unsplash.com/photo-1525893277997-207c04d47d65?q=80&w=1332&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: cover;
    border-radius: 8px;
    color: #2b2421;
}

.services-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.service-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
}

.service-item {
    background-color: rgba(255, 255, 255, 0.7);
    padding: 30px;
    text-align: center;
    margin: 20px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(136, 102, 102, 0.8);
    transition: transform 0.3s ease-in-out, background-color 0.3s ease;
    height: 210px;
    flex: 0 0 calc(33.33% - 40px);
}

.service-item:hover {
    scale: 1.05;
    background-color: rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease-out scale 0.5s ease;
}

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.service-item p.description {
    font-size: 1rem;
    opacity: 0.7;
    transition: opacity 0.3s ease-in-out;
    margin-top: 15px;
}

.service-item:hover .description {
    opacity: 1;
}

/* About Section Styles */
.about-section {
    padding: 30px 0;
    background-color: #fffdfa;
    /* Background color added */
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.about-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.35rem;
}

.about-section .about-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about-section p {
    font-size: 1.25rem;
    line-height: 1.6;
    text-align: justify;
}

.about-section img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.mt-5,
.my-5 {
    margin: 2rem 0 !important;
}

/* Map Section Styles */
.map-section {
    padding: 80px 0;
    background-color: #fffdfa;
    /* Background color added */
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
}

.map-section h2 {
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.map-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.map-responsive {
    overflow: hidden;
    position: relative;
    height: 0;
    padding-top: 56.25%;
}

.map-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

/* Carousel Slider Styles */
.carousel-section {
    padding: 80px 0;
    background-color: #f6fdff;
    /* Background color added */
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
}

.carousel-section h2 {
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.col-md-8 {
    max-width: 55%;
}

.carousel-item img {
    border-radius: 15px;
    max-width: 100%;
}

/* Footer Styles */
.footer {
    background-color: #343a40;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    width: 100%;
}

.footer span {
    font-size: 0.9rem;
}

.footer .contact-info {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.footer .contact-info .contact-item {
    display: flex;
    align-items: center;
    margin: 10px;
}

.footer .contact-info i {
    font-size: 1.5rem;
    margin-right: 10px;
}

.footer .contact-info .contact-item span {
    font-size: 1rem;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background-color: #fff9da;
    /* Background color added */
    border-radius: 10px;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: #333;
}

.accordion .card {
    border: none;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.accordion .card-header {
    background-color: #b78340;
    border: none;
    padding: 0;
}

.accordion .card-header h5 .btn {
    display: block;
    width: 100%;
    text-align: left;
    padding: 15px 20px;
    color: #fff;
    font-size: 1.25rem;
    font-weight: bold;
    text-decoration: none;
}

.accordion .card-header h5 .btn:hover,
.accordion .card-header h5 .btn:focus {
    text-decoration: none;
    color: #fff;
    background-color: c4902e;
}

.accordion .card-body {
    padding: 20px;
    font-size: 1rem;
    color: #555;
    background-color: #fff;
}

.accordion .card-header .btn:after {
    content: '\f107';
    font-family: 'FontAwesome';
    float: right;
    transition: transform 0.2s ease-in-out;
}

.accordion .card-header .btn.collapsed:after {
    transform: rotate(-90deg);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .service-item {
        flex: 0 0 calc(50% - 40px);
    }

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

    .about-section img {
        height: auto;
        border-radius: 15px;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    }
}

@media (max-width: 1024px) {
    .hero-section {
        padding: 40px 0;
    }

    .service-item {
        flex: 0 0 calc(50% - 20px);
        margin: 10px;
    }

    .service-item p.description {
        font-size: 0.85rem;
    }

    .about-section,
    .map-section,
    .carousel-section {
        padding: 40px 0;
    }

    .col-md-8 {
        max-width: 100%;
    }

    .map-container {
        max-width: 600px;
    }

    .service-container {
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .footer .contact-info {
        flex-direction: column;
    }

    .footer .contact-info .contact-item {
        justify-content: center;
    }

    .hero-section {
        height: auto;
        min-height: 300px;
        padding: 50px 0;
    }

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

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

    .services-section h2 {
        font-size: 2rem;
    }

    .service-item {
        height: auto;
        padding: 15px;
        flex: 0 0 calc(50% - 20px);
    }

    .services-section h2,
    .about-section h2,
    .faq-section h2 {
        font-size: 1.5rem;
    }

    .service-item h3 {
        font-size: 1.2rem;
    }

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

    .accordion .card-header h5 .btn {
        font-size: 1rem;
    }

    .map-section,
    .carousel-section {
        padding: 60px 0;
    }
}

@media (max-width: 600px) {
    .service-item {
        flex: 0 0 100%;
        margin: 10px 0;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

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

    .services-section,
    .about-section,
    .map-section,
    .carousel-section {
        padding: 20px 0;
    }

    .map-container {
        max-width: 100%;
    }
}