/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');

/* Global Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
}

/* Parallax Section */
.parallax {
    background-image: url('../files/gallery/8.jpg');
    height: 100vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.parallax::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.parallax-text {
    color: white;
    text-align: center;
    position: relative;
    z-index: 1;
}

.parallax-text h1 {
    font-size: 48px;
    margin-bottom: 10px;
    color: white;
    font-family: sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.parallax-text p {
    font-size: 24px;
    margin-top: 0;
    color: white;
    font-family: sans-serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Parallax Section Media Queries */
@media (max-width: 768px) {
    .parallax-text h1 {
        font-size: 36px;
    }

    .parallax-text p {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .parallax-text h1 {
        font-size: 28px;
    }

    .parallax-text p {
        font-size: 16px;
    }
}

/* About Us Section */
.about-us-section {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f8ff; /* Light blue background */
    text-align: center;
}

.about-us-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-us-tabs {
    margin-bottom: 2rem;
}

.tab-button {
    background-color: #9B59B6; /* Royal purple for tab buttons */
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.tab-button:hover, .tab-button.active {
    background-color: #8E44AD; /* Darker purple for hover and active states */
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-content h3 {
    margin-bottom: 2rem;
    color: #4A90E2; /* Vibrant blue for main headings */
}

.tab-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.tab-item {
    margin: 1rem;
}

.tab-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1rem;
    background-color: #50C878; /* Emerald green for tab icons */
}

.tab-icon svg {
    width: 40px;
    height: 40px;
    fill: white;
}

.about-us-section h4 {
    color: #FF6B6B; /* Coral pink for sub-headings */
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.about-us-section p {
    color: #333333; /* Darker text color for better readability */
    font-size: 0.9rem;
    line-height: 1.4;
}

@media (max-width: 768px) {

    .about-us-tabs {
        flex-direction: column;
    }

    .tab-button {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .tab-content.active {
        flex-direction: column;
    }

    .tab-item {
        flex-basis: 100%;
    }

    .tab-grid {
        grid-template-columns: 1fr;
    }
}

/* Add these new styles */
 .tab-item:nth-child(4n+1) .tab-icon {
     background-color: #50C878; /* Emerald green */
 }

.tab-item:nth-child(4n+2) .tab-icon {
    background-color: #FF6B6B; /* Coral pink */
}

.tab-item:nth-child(4n+3) .tab-icon {
    background-color: #FFA500; /* Classic orange */
}

.tab-item:nth-child(4n+4) .tab-icon {
    background-color: #4A90E2; /* Vibrant blue */
}

/* About Us Section Media Queries */
@media (max-width: 768px) {
    .about-us-tabs {
        flex-direction: column;
    }

    .tab-button {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .tab-content.active {
        flex-direction: column;
    }

    .tab-item {
        flex-basis: 100%;
    }
}

/* Services Section */
.services-section {
    margin: 0;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F0F8FF;
}

.services-container {
    max-width: 1200px;
    text-align: center;
}

.services-section h1 {
    color: #4A90E2;
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.services-section h2 {
    color: #50C878;
    font-size: 1.5rem;
    font-weight: 300;
    margin-top: 0;
}

.services-zigzag {
    width: 100px;
    height: 20px;
    margin: 1rem auto;
}

.services-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.service-item {
    flex-basis: calc(25% - 2rem);
    margin: 1rem;
    min-width: 200px;
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1rem;
    background-color: #9B59B6;
}

.service-icon svg {
    width: 40px;
    height: 40px;
    fill: white;
}

.services-section h3 {
    color: #9B59B6;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.services-section p {
    color: #333333;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Services Section Media Queries */
@media (max-width: 768px) {
    .services-list {
        flex-direction: column;
    }

    .service-item {
        flex-basis: 100%;
    }
}

/* Statistics Section */
.statistics-section {
    position: relative;
    padding: 4rem 2rem;
    color: white;
    text-align: center;
    background: url('../files/parallax/2.jpg') no-repeat center center fixed;
    background-size: cover;
}

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.statistics-container {
    position: relative;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.statistic {
    margin: 1rem;
    flex-basis: calc(25% - 2rem);
}

.stat-circle {
    width: 150px;
    height: 150px;
    border: 3px solid white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1rem;
}

.stat-number, .stat-sign {
    font-size: 2.5rem;
    font-weight: bold;
}

.stat-sign {
    display: inline-block;
    vertical-align: top;
}

.statistics-section h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.statistics-section p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Statistics Section Media Queries */
@media (max-width: 768px) {
    .statistic {
        flex-basis: calc(50% - 2rem);
    }
}

@media (max-width: 480px) {
    .statistic {
        flex-basis: 100%;
    }

    .stat-circle {
        width: 120px;
        height: 120px;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* Education Program Section */
.education-program {
    padding: 4rem 2rem;
    background-color: #F0F8FF;
    text-align: center;
}

.education-program .container {
    max-width: 1200px;
    margin: 0 auto;
}

.education-program h2 {
    color: #4A90E2;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.education-program > p {
    color: #333333;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-box {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box .icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.feature-box .icon svg {
    width: 100%;
    height: 100%;
    fill: #50C878;
}

.feature-box h3 {
    color: #9B59B6;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.feature-box p {
    color: #333333;
    font-size: 0.9rem;
}

.offerings {
    list-style-type: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.offerings li {
    display: flex;
    align-items: center;
    color: #333333;
    font-size: 1rem;
}

.offerings li svg {
    width: 24px;
    height: 24px;
    margin-right: 0.5rem;
    fill: #FFA500;
}

/* Education Program Section Media Queries */
@media (max-width: 768px) {
    .feature-grid, .offerings {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .education-program h2 {
        font-size: 2rem;
    }
}

/* Contact Us Section */
/* Contact Us Section */
.contact-us-section-bottom {
    padding: 4rem 2rem;
    background-color: #F0F8FF;
}

.contact-container-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.contact-us-section-bottom h2 {
    color: #4A90E2;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.contact-us-section-bottom .subtitle {
    color: #333333;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.zigzag {
    width: 100px;
    height: 10px;
    background: repeating-linear-gradient(
            -45deg,
            #FF6B6B,
            #FF6B6B 5px,
            transparent 5px,
            transparent 10px
    );
    margin: 0 auto 2rem;
}

.contact-info-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contact-item-bottom {
    flex-basis: calc(25% - 2rem);
    margin: 1rem;
    min-width: 200px;
    transition: transform 0.3s ease;
}

.contact-item-bottom:hover {
    transform: translateY(-5px);
}

.contact-icon-bottom {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.contact-icon-bottom svg {
    width: 100%;
    height: 100%;
    fill: #50C878;
}

.contact-us-section-bottom h3 {
    color: #9B59B6;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.contact-us-section-bottom p {
    color: #333333;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Contact Us Section Media Queries */
@media (max-width: 768px) {
    .contact-info-bottom {
        justify-content: center;
    }

    .contact-item-bottom {
        flex-basis: calc(50% - 2rem);
    }
}

@media (max-width: 480px) {
    .contact-us-section-bottom h2 {
        font-size: 2rem;
    }

    .contact-info-bottom {
        flex-direction: column;
        align-items: center;
    }

    .contact-item-bottom {
        flex-basis: 100%;
        width: 100%;
        max-width: 300px; /* Adjust this value as needed */
        text-align: center;
        margin: 1rem 0;
    }
}

/* Map Section */
.map-section {
    width: 100%;
    height: 600px;
    padding: 0;
    margin: 0;
}

.map-container {
    width: 100%;
    height: 100%;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Map Section Media Queries */
@media (max-width: 768px) {
    .map-section {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .map-section {
        height: 300px;
    }
}




.daycare-enrollment-banner {
    background-color: #9B59B6;
    color: white;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    font-family: 'Arial', sans-serif;
}
.daycare-enrollment-banner h2 {
    margin: 0 0 20px;
    font-size: 28px;
    font-weight: bold;
}
.daycare-enrollment-banner .learn-more {
    display: inline-block;
    padding: 12px 24px;
    background-color: #4A90E2;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}
.daycare-enrollment-banner .learn-more:hover {
    background-color: #3A7BC8;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.daycare-enrollment-banner::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
            45deg,
            #50C878,
            #FF6B6B,
            #FFA500,
            #4A90E2
    );
    animation: rotateBanner 15s linear infinite;
    opacity: 0.15;
    z-index: 1;
}
.daycare-enrollment-banner-content {
    position: relative;
    z-index: 2;
}
@keyframes rotateBanner {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.daycare-enrollment-icons {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}
.daycare-enrollment-icon {
    width: 50px;
    height: 50px;
    margin: 0 15px;
    background-color: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}
