/* Global Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f7f7f7;
}

/* Header */
header {
    background-color: #1c3b32;
    padding: 20px 30px;
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;

}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

.logo img {
    height: 60px;
}

/* Responsive Design for Header on Phone */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        gap: 10px;
    }

    nav ul li a {
        font-size: 16px;
        /* Adjust font size for better mobile readability */
    }


}

@media (max-width: 480px) {
    nav ul {
        padding-left: 0;
        padding-right: 0;
    }

    nav ul li a {
        font-size: 14px;
        /* Smaller font size for phone */
    }

    /* Optionally, adjust padding and layout for header */
    header {
        padding: 15px 20px;
        /* Adjust padding for smaller screens */
    }


}

.floating-buttons {
    position: fixed;
    bottom: 50%;
    right: 15px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.float-btn {
    width: 60px;
    height: 60px;
    background-color: #25d366;
    /* WhatsApp Green */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
    color: white;
    font-size: 22px;
    text-decoration: none;
    outline: none;
}

.float-btn.call {
    background-color: #007bff;
    /* Call button Blue */
}

.float-btn:hover {
    transform: scale(1.2);
}



/* Hero Section */
.heroine {
    background-image: url('images/About.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 120px 40px;
    color: #1c3b32;
}

.heroine h1 {
    font-size: 34px;
    margin-bottom: 10px;
    font-weight: bold;
    text-align: left;
}


.heroine h2 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: left;
}

.cta-button {
    background-color: #f39c12;
    /* Bright color for CTA */
    color: #1c3b32;
    /* Darker contrast for text */
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

.cta-button:hover {
    background-color: #e67e22;
}

/* About Us Section */
.about-section {
    background-color: #1c3b32;
    padding: 50px 20px;
    text-align: center;
    color: #fff;
    font-style: italic;
}

.about-section h2 {
    font-size: 36px;
    color: #f39c12;
    margin-bottom: 20px;
}

.about-section p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Section */
.services-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #fff;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.service-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    width: calc(33.333% - 20px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

/* Gallery Section */
.gallery-section {
    background-color: #ffc549;
    padding: 50px 20px;
    text-align: center;
}

.gallery-section h2 {
    font-size: 36px;
    color: #1c3b32;
    margin-bottom: 20px;
}

.gallery-section p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.gallery-item {
    width: calc(33.333% - 10px);
    border: 2px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

/* Feedback Section */
.feedback-section {
    background-color: #cae5ff;
    padding: 50px 20px;
    text-align: center;
}

.feedback-section h2 {
    font-size: 36px;
    color: #1c3b32;
    margin-bottom: 20px;
}

.feedback-section p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.feedback-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.feedback-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    width: calc(33.333% - 20px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: left;
}

.feedback-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.feedback-text {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

.feedback-author {
    font-size: 14px;
    color: #1c3b32;
    font-weight: bold;
}

/* Contact Section */
.contact-section {
    padding: 50px 20px;
    background-color: #ffc549;
    text-align: center;
}

.contact-section h2 {
    font-size: 36px;
    color: #1c3b32;
    margin-bottom: 20px;
}

.contact-section p {
    font-size: 18px;
    color: white;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info {
    margin-bottom: 40px;
}

.contact-info .contact-item {
    margin-bottom: 20px;
}

.contact-info .contact-item h3 {
    font-size: 20px;
    color: #1c3b32;
    margin-bottom: 10px;
}

.contact-info .contact-item p {
    font-size: 16px;
    color: #1c3b32;
}

.contact-info .contact-item a {
    color: #1c3b32;
    text-decoration: none;
}

.contact-info .contact-item a:hover {
    color: #1c3b32;
}

.contact-map iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 10px;
}

/* Footer */
footer {
    background-color: #1c3b32;
    color: rgb(168, 250, 223);
    text-align: center;
    padding: 10px 0;
}


.social-icons {
    margin-top: 10px;
}

.social-icons a {
    margin: 0 10px;
    display: inline-block;
    transition: transform 0.2s;
}

.social-icons a:hover {
    transform: scale(1.2);
}

.social-icons img {
    width: 28px;
    height: 28px;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.social-icons a:hover img {
    filter: none;
}


/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        flex-direction: row;
        gap: 15px;
    }

    .service-card,
    .gallery-item,
    .feedback-card {
        width: calc(50% - 20px);
    }

    .heroine h1 {
        font-size: 22px;
    }

    .heroine h2 {
        font-size: 18px;
    }

    .float-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {

    .service-card,
    .gallery-item,
    .feedback-card {
        width: 100%;
    }

    .heroine h1 {
        font-size: 16px;
    }

    .heroine h2 {
        font-size: 14px;
    }

    .cta-button {
        padding: 6px 10px;
        font-size: 14px;
    }

    .float-btn {
        width: 40px;
        height: 40px;
    }
}