@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: white;
    background: linear-gradient(135deg, #8B0066 0%, #240080 100%);

}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.6rem 2rem;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    z-index: 10000;
    font-family: "Open Sans", sans-serif;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    width: 100%;
    height: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ff3366;
    opacity: 0.8;
}


.menu-button {
    display: none;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-icon,
.close-icon {
    width: 24px;
    height: 24px;
}

.close-icon {
    display: none;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.2);
}


.background-video {
    position: absolute;
    padding-top: 150px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slideshow-section {
    padding: 5rem 2rem;
    background: rgba(0, 0, 0, 0.1);
}

.slideshow-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4%;
    padding: 2rem 4rem;
}

.slideshow-container h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.slide {
    display: none;
    text-align: center;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 15px;
}

.slide-caption {
    background: rgba(0, 0, 0, 0.7);
    padding: 1rem;
    border-radius: 0 0 15px 15px;
    margin-top: -4px;
}

.slide-nav {
    text-align: center;
    margin-top: 1rem;
}

.slide-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.slide-dot.active {
    background: white;
}

.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 1rem;
    cursor: pointer;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: background 0.3s;
}

.slide-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}


.btn-forms {
    padding: 12px 24px;
    font-size: 1.1rem;
    border: none;
    border-radius: 25px;
    background: linear-gradient(45deg, #ff3366, #ff6b3d);
    color: white;
    cursor: pointer;
    transition: transform 0.2s;
    display: block;
    margin: 0 auto;
    margin-top: 35px;
    font-family: "Open Sans", sans-serif;
}

.btn-forms:hover {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
    font-family: "Open Sans", sans-serif;
}

.features {
    padding: 5rem 2rem;
    background: rgba(0, 0, 0, 0.1);
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    background: linear-gradient(45deg, #ff336645, #ff6a3d46);
    border-radius: 17%;
    font-family: "Open Sans", sans-serif;
}

.features p {
    font-size: 15px;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.071);
    font-family: "Open Sans", sans-serif;
    border-radius: 10px;
    padding: 15px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    transition: transform 0.3s;
}


.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h3 {
    text-align: center;
    background: linear-gradient(45deg, #ff678d52, #ff6a3d10);
    border: none;
    border-radius: 15%;
    font-family: "Open Sans", sans-serif;
}

.feature-card h5 {
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
}


.mother-section {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.contact-section {
    max-width: 450px;
    margin: 30px;
    margin-left: 200px;
    padding: 3px 20px;
    padding-top: 25px;
    background: rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    font-family: "Open Sans", sans-serif;

}


.contact-info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-info i {
    margin-right: 15px;
    color: #ff3366;
    font-size: 20px;
}

.contact-details {
    flex-grow: 1;
}

.contact-details a {
    margin: 5px 0;
    color: #ffffff;
    font-size: 14px;
}

.contact-details strong {
    color: #ff3366;
    font-size: 15px;

}

.google-map {
    width: 100%;
    max-width: 100%;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 30px;
}

.google-map iframe {
    width: 100%;
    border: 0;
}

.bg-video {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 30px;
    padding: 20px 15px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}


.whatsapp-link {
    height: 60px;
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
}

footer {
    background: rgba(0, 0, 0, 0.3);
    text-align: center;
    margin: 0.3rem;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    padding: 4rem 4rem;
    font-family: "Open Sans", sans-serif;
    font-size: 10px;
}


.social-media a {
    margin-right: 10px;
    display: inline-block;
}


@media screen and (min-width: 320px) and (max-width: 1024px)  {

    .menu-button {
        display: block;
    }

    .menu-button.active .menu-icon {
        display: none;
    }

    .menu-button.active .close-icon {
        display: block;
    }

    nav {
        padding: 1.6rem 2rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 90px;
        right: 0;
        background-color: rgba(0, 0, 0, 0.716);
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 0.5rem 1rem;
        display: block;
    }

    .nav-links a:hover {
        background-color: #3d2b5e;
        border-radius: 4px;
        opacity: 0.8;
        color: #ff3366;
    }


    .slide-btn {
        padding: 0.9rem;
    }

    .btn-forms {
        margin-top: 120px;
    }

    .mother-section {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-section {
        max-width: 450px;
        margin: 30px;
        padding: 3px 45px;
        padding-top: 25px;
        align-items: center;
    }

    .contact-info i {
        margin-bottom: 10px;
    }

    .bg-video {
        display: none;
    }
}