/* Global Styles */
:root {
    --primary-color: #87A987;
    --text-color: #333;
    --white: #fff;
    --beige: #F4F1EA;
    --button-hover: #6E8E6E;
}   

body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    background-color: #f9f9f9;
}

/* Top Header */
.top-header {
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    font-size: 14px;
}

.top-header .social-icons i {
    font-size: 18px;
    color: white;
    margin-left: 10px;
}

/* Navigation Bar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--beige);
    padding: 15px 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar__logo {
    display: flex;
    align-items: center;
}
.navbar__logo a {
    font-size: 28px;
    font-weight: bold;
    color: #87A987;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

.navbar__logo .logo {
    width: 100px;
    height: 75px;
    margin-right: 10px;
}

.navbar__menu {
    display: flex;
    list-style: none;
}

.navbar__menu li {
    padding: 10px 15px;
}

.navbar__menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

.navbar__menu a:hover {
    color: var(--primary-color);
}

.navbar__toggleBtn {
    display: none;
}


/* Top Header */


/* Navigation Bar */
/* .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--white);
    padding: 15px 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar__logo {
    display: flex;
    align-items: center;
}

.navbar__logo a {
    font-size: 28px;
    font-weight: bold;
    color: #d81b60;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

.navbar__logo .logo {
    width: 50px;
    height: 50px;
    margin-right: 10px;
} */

.navbar__menu {
    display: flex;
    list-style: none;
}

.navbar__menu li {
    padding: 10px 15px;
}

.navbar__menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

.navbar__menu a:hover {
    color: var(--primary-color);
}

.navbar__toggleBtn {
    display: none;
}

/* Hero Section */
.home {
    background-image: url('images/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 20px;
}

.home h1 {
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 10px;
}

.home h2 {
    font-size: 30px;
    color: var(--primary-color);
}

.home p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 20px;
}

/* Book Me Button */
.book-me-btn {
    padding: 12px 25px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 150px;
    background-color: var(--primary-color);
    color: var(--white);
}

.book-me-btn:hover {
    background-color: var(--button-hover);
    border-color: var(--button-hover);
}


/* Quote Button */
.quote-btn {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.quote-btn:hover {
    background-color: var(--button-hover);
    border-color: var(--button-hover);
}

/* Talk Button */
.talk-btn {
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.talk-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Responsive Styling */
@media (max-width: 600px) {
    .buttons {
        flex-direction: column;
    }

    .quote-btn, .talk-btn {
        width: 100%; /* Full width on small screens */
    }
}

/* Our Mission Section */
.mission {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
    background-color: var(--white);
    gap: 30px;
}

.mission__image img {
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
}

.mission__content {
    max-width: 500px;
}

.mission__content h2 {
    font-size: 32px;
    color: var(--primary-color);
}

.mission__content p {
    font-size: 18px;
    color: var(--text-color);
    line-height: 1.5;
}

.mission-btn {
    padding: 12px 25px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.mission-btn:hover {
    background-color: var(--button-hover);
}

/* Testimonials Section */
.testimonials {
    text-align: center;
    padding: 50px;
    background-color: #f4f4f4;
}

.testimonial {
    font-size: 18px;
    margin: 15px auto;
    max-width: 600px;
    font-style: italic;
    color: var(--text-color);
}

/* Gallery Section */
.gallery {
    text-align: center;
    padding: 50px;
}

.gallery__images {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.gallery__images img {
    width: 250px;
    border-radius: 10px;
}

/* Service Section */
.service {
    text-align: center;
    padding: 50px;
}

.service__images {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.service__images img {
    width: 250px;
    border-radius: 10px;
}

/* Why Choose Me Section */
.why-choose {
    text-align: center;
    padding: 50px;
    background-color: #f4f4f4;
}

.why-choose ul {
    list-style: none;
    padding: 0;
}

.why-choose li {
    font-size: 18px;
    padding: 5px 0;
}

/* Contact Section */
.contact {
    text-align: center;
    padding: 50px;
}

.contact-btn {
    padding: 12px 25px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-btn:hover {
    background-color: var(--button-hover);
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
    }

    .navbar__menu {
        display: none;
        flex-direction: column;
        width: 100%;
    }

    .navbar__toggleBtn {
        display: block;
        font-size: 24px;
    }

    .navbar__menu.active {
        display: flex;
    }

    .home {
        height: auto;
        padding: 150px 10px;
    }

    .home h1 {
        font-size: 36px;
    }

    .mission {
        flex-direction: column;
        text-align: center;
    }

    .mission__image img {
        max-width: 100%;
    }
}

/* .home {
    background-image: url('images/IMG_5505.PNG');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 20px;
}

.home h1 {
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 10px;
}

.home h2 {
    font-size: 30px;
    color: var(--primary-color);
}

.home p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 20px;
} */

.buttons {
    margin-top: 20px;
}

.quote-btn, .talk-btn {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 10px;
}

.quote-btn {
    background-color: var(--primary-color);
    color: var(--white);
}

.talk-btn {
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.quote-btn:hover {
    background-color: var(--button-hover);
}

.talk-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
}


/* Our Mission Section */
.mission {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
    background-color: var(--white);
    gap: 30px;
}

.mission__image img {
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
}

.mission__content {
    max-width: 500px;
}

.mission__content h2 {
    font-size: 32px;
    color: var(--primary-color);
}

.mission__content p {
    font-size: 18px;
    color: var(--text-color);
    line-height: 1.5;
}

.mission-btn {
    padding: 12px 25px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.mission-btn:hover {
    background-color: var(--button-hover);
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
    }

    .navbar__menu {
        display: none;
        flex-direction: column;
        width: 100%;
    }

    .navbar__toggleBtn {
        display: block;
        font-size: 24px;
    }

    .navbar__menu.active {
        display: flex;
    }

    .home {
        height: auto;
        padding: 150px 10px;
    }

    
    .home h1 {
        font-size: 36px;
    }

    .mission {
        flex-direction: column;
        text-align: center;
    }

    .mission__image img {
        max-width: 100%;
    }
}
