/* ABOUT PAGE CSS */

/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #fff9f5;
    color: #1c2d3f;
}



.about-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 10%;
    background-color: #0e3b35; /* Dark Green Background */
    color: #fff;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
}

.about-content {
    flex: 1;
    padding-left: 50px;
}

.about-content h5 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #c6866a;
}

.about-content h2 {
    font-size: 36px;
    font-weight: 600;
    color: #ff9066; /* Light Peach */
    margin: 10px 0;
    line-height: 1.3;
}

.about-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #c3c3c3;
}

.play-button {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 18px;
    cursor: pointer;
    color: #fff;
}

.play-button i {
    font-size: 24px;
    color: #ff9066;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .about-section {
        flex-direction: column;
        text-align: center;
        padding: 50px 5%;
    }

    .about-content {
        padding-left: 0;
        margin-top: 30px;
    }

    .play-button {
        justify-content: center;
    }
}
.services-section {
    background-color: #fef5f2; /* Light Peach Background */
    text-align: center;
    padding: 80px 10%;
}

.services-header h5 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #c6866a;
}

.services-header h2 {
    font-size: 36px;
    font-weight: 600;
    color: #0e3b35; /* Dark Green */
    margin: 10px 0 40px;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 equal columns */
    gap: 30px;
}


.service-card {
    background: #fff;
    padding: 30px;
    width: 300px;
    text-align: left;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    flex: 1; /* Ensure equal width distribution */
    max-width: 280px; /* Adjust as needed */
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    font-size: 40px;
    color: #ff9066; /* Icon Color */
    margin-bottom: 10px;
}

.service-card h3 {
    font-size: 20px;
    color: #000;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.service-card a {
    font-size: 14px;
    color: #0e3b35; /* Dark Green */
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
}

.service-card a i {
    font-size: 14px;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .services-container {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on medium screens */
    }
}

@media screen and (max-width: 768px) {
    .services-container {
        grid-template-columns: repeat(1, 1fr); /* 1 column on small screens */
    }
}



.sappointment-section {
    background: #042621;
    padding: 40px 80px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
   
}

.appointment-text {
    display: flex;
    align-items: center;
    gap: 15px;
}

.appointment-text i {
    font-size: 36px;
    color: #e89b85;
}

.appointment-text h2 {
    font-size: 1.8rem;
}

.appointment-text p {
    font-size: 0.95rem;
    color: #ddd;
}

.appointment-button {
    background: transparent;
    border: 2px solid #e89b85;
    color: #e89b85;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.3s;
}

.appointment-button:hover {
    background: #e89b85;
    color: white;
}


/* about 2nd appointment */
@media (max-width: 768px) {
    .sappointment-section {
        padding: 20px 30px;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .appointment-text {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .appointment-text i {
        font-size: 30px;
    }

    .appointment-text h2 {
        font-size: 1.4rem;
    }

    .appointment-text p {
        font-size: 0.85rem;
    }

    .appointment-button {
        width: 100%;
        padding: 12px;
        font-size: 0.9rem;
    }
}

#whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease-in-out;
}

#whatsapp-button img {
    width: 40px;
    height: 40px;
}

#whatsapp-button:hover {
    transform: scale(1.1);
}



/* facilities */
.advanced-facilities-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    background: #023c3c;
    color: white;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.advanced-facilities-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 10px;
}

.facility-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0px 2px 5px rgba(255, 255, 255, 0.2);
}

.facility-box i {
    font-size: 28px;
}

.facility-box p {
    font-size: 16px;
    text-align: left;
    flex: 1;
}




