* {
    margin: 0;
    padding: 0;
}

body {
    background: linear-gradient(135deg, #F8F9FA, #c25fa9, #db62b7);
    color: rgb(255, 255, 255);
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
}

.navbar {
    background-color: #ee39b8;
}

.nav-link {
    color: rgb(124, 1, 97);
    transition: 0.3s ease;
    font-size: 20px;
}

.nav-link:hover {
    color: #72245e;
    transform: scale(1.05);
    font-size: 20px;
}

.navbar {
    margin-right: 20px;
    border-radius: 20px;
}

.logo-1 {
    width: 70px;
    height: 70px;
    border-radius: 50%;
}

.img-mother {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    height: 500px;
    width: 550px;
    border-radius: 50%;
    border: 5px solid #070707;
}

.img-mother:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    transform: scale(1.05);
    cursor: pointer;
    transition: 0.9s;
    cursor: pointer;
    animation-name: __flash;
    animation: slideFade 0.5s ease forwards;
}
.mother-para{
    
    text-align: center;
    margin-top: 10px;
    font-size: 25px;
    font-style: italic;
    line-height: 1.6;
    color: #000000;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);

}
.mother-hero-section {
    background: rgba(250, 117, 195, 0.795);
    padding: 30px;
    border-radius: 15px;
}

.about-section {
    background: rgba(250, 117, 195, 0.795);
    padding: 30px;
    border-radius: 15px;
    margin-top: 20px;
}

.about-section:hover {
    background: rgba(248, 151, 208, 0.795);
    box-shadow: 0 8px 16px rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

.mother-hero-section:hover {
    background: rgba(248, 151, 208, 0.795);
    box-shadow: 0 8px 16px rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

.heading1 {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-style: italic;
}

.heading1:hover {
    font-size: 50px;
    font-weight: 650;
    color: #000000;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
    font-style: italic;
    transition: 0.9s;
    cursor: pointer;
    animation-name: __flash;
    animation: slideFade 0.5s ease forwards;

}

@keyframes slideFade {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.mother-para {
    text-align: center;
    margin-top: 10px;
    font-size: 25px;
    font-style: italic;
    line-height: 1.6;
    color: #000000;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}


.btn {
    background-color: #ff05f3;
    border-radius: 10px;
    border: 2px solid rgb(112, 105, 2);
    color: rgb(0, 0, 0);
    padding: 10px 25px;
    width: fit-content;
    display: inline-block;
    font-size: 30px;
    font-weight: bold;
    align-self: center;
    font-style: italic;
}

.btn:hover {
    border-radius: 10px;
    border: 2px solid rgb(95, 81, 0);
    color: rgb(16, 16, 16);
    background-color: #ffb8f6;
    transition: 0.5s;
    cursor: pointer;
}

.mother-section {
    text-align: center;
    background: rgba(250, 117, 195, 0.795);
    border-radius: 15px;
}

.mother-col {
    padding: 20px;

}

.mother-card {
    background: linear-gradient(135deg, #F8F9FA, #c25fa9, #db62b7);
    border-radius: 10px;
    border: #4e0041 solid 2px;
}

.mother-card:hover {
    background: linear-gradient(135deg, #e4699c, #fabfd3);
    border-radius: 10px;
    border: #4e0041 solid 2px;
    box-shadow: 0 8px 16px rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: 2s;
    transform: translateY(-10px) scale(1.03);

}

.card-text {
    text-align: center;
}

.heading-3 {
    text-align: center;
    font-style: italic;
    font-size: 35px;
    font-weight: 600;
    color: #000000;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
.gallery-row {
    background: rgba(250, 117, 195, 0.795);
    padding: 30px;
    border-radius: 15px;
    margin-top: 20px;
}

.gallery-row:hover {
    background: rgba(248, 151, 208, 0.795);
    box-shadow: 0 8px 16px rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

.gallery-section {
    background: #fff5f7;
}

.gallery-heading {
    font-size: 42px;
    color: #c2185b;
    font-weight: bold;
    font-style: italic;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.5s;
}

.gallery-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    transition: 0.5s;
}

.gallery-card:hover .gallery-img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(194, 24, 91, 0.5);
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.5s;
    border-radius: 20px;
}

.gallery-card:hover .overlay {
    opacity: 1;
}

.overlay h4 {
    color: white;
    font-size: 28px;
    text-align: center;
    font-weight: bold;
}

.mother-quote-row {
    background: rgba(250, 117, 195, 0.795);
    padding: 30px;
    border-radius: 15px;
    margin-top: 20px;
}

.mother-quote-row:hover {
    background: rgba(248, 151, 208, 0.795);
    box-shadow: 0 8px 16px rgba(255, 255, 255, 0.3);
    cursor: pointer;
}
.quotes-section {
    background: linear-gradient(135deg, #ffe6f0, #c24b88);
}

.quotes-heading {
    font-size: 45px;
    color: #b30059;
    font-weight: bold;
}

.quote-card {
    background: rgb(241, 209, 231);
    padding: 35px 25px;
    border-radius: 20px;
    height: 100%;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: 0.5s;
    border: 2px solid transparent;
}

.quote-card:hover {
    transform: translateY(-10px);
    border: 2px solid #ff66a3;
    background: linear-gradient(135deg, #db659e, #ffd9ec);
}

.quote-icon {
    font-size: 50px;
    color: #e60073;
    display: block;
    margin-bottom: 20px;
}

.quote-card p {
    font-size: 18px;
    color: #444;
    line-height: 1.8;
    font-style: italic;
}
.thankyou-row{
        background: rgba(250, 117, 195, 0.795);
border-radius: 15px;
}

.thankyou-row:hover {
    background: rgba(248, 151, 208, 0.795);
    box-shadow: 0 8px 16px rgba(255, 255, 255, 0.3);
    cursor: pointer;
}
.thankyou-box {
    background: rgb(241, 209, 231);
    padding: 35px 25px;
    border-radius: 20px;
    height: 300px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: 0.5s;
    border: 2px solid transparent;
}

.thankyou-box:hover {
    transform: translateY(-10px);
    border: 2px solid #ff66a3;
    background: linear-gradient(135deg, #ec9ec4, #ffd9ec);
}

.thankyou-title{
    color: #ff4f81;
    font-size: 40px;
    font-weight: bold;
}

.thankyou-text{
    font-size: 20px;
    color: #555;
    line-height: 1.8;
}

.footer {
    background-color: #ec55b7;
}

.footer-row {
    background-color: #f772ca;
    border-radius: 10px;
    border: #fa00c4 solid 2px;

}
.imgs {
    width: 35px;
    height: 30px;
    border-radius: 50px;
    text-decoration: none;
}
.text-black {
    text-decoration: none;
}
/* Responsive */

@media (max-width: 768px) {

    .quotes-heading {
        font-size: 34px;
    }

    .quote-card {
        padding: 30px 20px;
    }
     .gallery-heading {
        font-size: 32px;
    }

    .gallery-img {
        height: 300px;
    }
}

@media (max-width: 576px) {

    .quotes-heading {
        font-size: 28px;
    }

    .quote-card p {
        font-size: 16px;
    }
    .gallery-heading {
        font-size: 26px;
    }

    .gallery-img {
        height: 250px;
    }

    .overlay h4 {
        font-size: 22px;
    }
}


