body {
    font-family: var(--default-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1em;
    color: var(--text-color);
    background: var(--white-color);
}

.grad-bg-top {
    background-image: url("../images/bg-one.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-bottom: 60px;
    padding-top: 60px;
    border-radius: 50px;
    margin: 50px 30px 0;
}

.grad-bg-topf
{background: url(../images/bg-one.png);
        background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.grad-bg-full {
    background-image: url('../images/section-bg-imgae.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-bottom: 60px;
    padding-top: 60px;
    border-radius: 50px;
    margin: 50px 30px 0;
}

.section-title h2 {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.1em;
    margin-bottom: 0;
    cursor: none;
}

.justify-text {
    text-align: justify !important;
}

.thankyou-page {
    background-image: url('../images/section-bg-imgae.png');
    display: flex;
    align-items: center;
    height: 100vh;
}

.rounded-img{
    border-radius: 20px;
}

:root {
    --primary-color: #20296E;
    --dark-pink: #37001B;
    --dark-blue: #00234C;
    --cta-btn-color: #FBBB00;
    --secondary-color: #F4F5FF;
    --text-color: #40435a;
    --accent-color: #FF70A3;
    --nav-color: #FFCADD;
    --light-pink: #FFCADD;
    --nav-font-color: rgba(32, 0, 17, 0.8);
    --cta-deep-pink: #A22953;
    --white-color: #FFFFFF;
    --divider-color: #20296E1A;
    --dark-divider-color: #FFFFFF1A;
    --error-color: rgb(230, 87, 87);
    --default-font: "Onest", sans-serif;
}

.rounded-image {
    border-radius: 30px;
}

.btn-default:hover {
    color: var("--accent-color: #FF70A3;") !important;
}

a.btn-default {
    color: white;
}

p {
    font-size: 18px !important;
    font-weight: 400 !important;
}

.truncate-two {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.truncate-three {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.truncate-four {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.truncate-five {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cta-dp {
    position: relative;
    display: inline-block;
    background: var(--cta-deep-pink);
    border-radius: 10px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1em;
    /* text-transform: capitalize; */
    color: var(--white-color);
    border: none;
    padding: 17px 30px 17px 30px;
    transition: all 0.5s ease-in-out;
    overflow: hidden;
    z-index: 0;
}

.cta-y {
    position: relative;
    display: inline-block;
    background: var(--cta-btn-color);
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1em;
    text-transform: capitalize;
    color: var(--white-color);
    border: none;
    padding: 17px 54px 17px 30px;
    transition: all 0.5s ease-in-out;
    overflow: hidden;
    z-index: 0;
}

.cta-y:hover {
    background: transparent;
    color: var(--light-pink);
}

.cta-y::before {
    content: '\f061';
    font-family: 'FontAwesome';
    position: absolute;
    top: 16px;
    right: 30px;
    font-size: 18px;
    color: var(--white-color);
    transform: rotate(-45deg);
    transition: all 0.4s ease-in-out;
}

.cta-y:hover::before {
    transform: rotate(0deg);
}

.cta-y::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -15%;
    right: 0;
    width: 0;
    height: 106%;
    background: var(--primary-color);
    transform: skew(30deg);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.cta-y:hover:after {
    width: 100%;
    transform: skew(0deg);
    left: 0;
}

.cta-y.btn-highlighted:hover {
    color: var(--primary-color);
}

.cta-y.btn-highlighted:hover:before {
    color: var(--primary-color);
}

.cta-y.btn-highlighted::after {
    background: var(--white-color);
}

.cta-b {
    position: relative;
    display: inline-block;
    background: var(--dark-blue);
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1em;
    text-transform: capitalize;
    color: var(--white-color);
    border: none;
    padding: 17px 54px 17px 30px;
    transition: all 0.5s ease-in-out;
    overflow: hidden;
    z-index: 0;
}

.cta-b:hover {
    background: transparent;
    color: var(--white-color);
}

.cta-b::before {
    content: '\f061';
    font-family: 'FontAwesome';
    position: absolute;
    top: 16px;
    right: 30px;
    font-size: 18px;
    color: var(--white-color);
    transform: rotate(-45deg);
    transition: all 0.4s ease-in-out;
}

.cta-b:hover::before {
    transform: rotate(0deg);
}

.pricing-header p {
    margin-bottom: 20px;
}

.cta-b::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -15%;
    right: 0;
    width: 0;
    height: 106%;
    background: var(--accent-color);
    transform: skew(30deg);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.cta-b:hover:after {
    width: 100%;
    transform: skew(0deg);
    left: 0;
}

.cta-b.btn-highlighted:hover {
    color: var(--white-color);
}

.cta-b.btn-highlighted:hover:before {
    color: var(--primary-color);
}

.cta-b.btn-highlighted::after {
    background: var(--white-color);
}

.main-menu ul ul li a {
    color: var(--text-color);
    padding: 8px 20px !important;
    transition: all 0.3s ease-in-out;
    font-size: 16px;
    font-weight: 400;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus {
    color: var(--cta-deep-pink);
    background-color: transparent;
    padding: 8px 20px 8px 23px !important;
    text-decoration: underline;
}


.nav-item a {
    color: var(--nav-font-color);
    font-size: 18px;
}

.top {
    background-color: var(--light-pink);
    border-radius: 10px;
}

.top .list-unstyled li {
    margin: 0px !important;
}

.top-navbar .right .top ul {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
}

.bottom-bar {
    background-color: var(--light-pink);

}

.bottom-bar .list-unstyled li {
    margin: 0px !important;
}

.bottom-bar li a {
    color: var(--nav-font-color);
}


/* NAV bar started */

header {
    position: -webkit-sticky;
    /* For Safari */
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #fff;
    /* Adjust based on your background */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    /* Optional, adds shadow for better visibility */
}

/* General styles for navbar items */
.nav-item a {
    color: var(--nav-font-color);
    font-size: 18px;
}

/* Top navbar background and other styling */
.top {
    background-color: var(--nav-color);
    border-radius: 10px;
}

/* Navbar items spacing */
.top-navbar .right .top ul {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
}

/* Bottom bar background */
.bottom-bar {
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: var(--nav-color);
}

/* Bottom bar links color */
.bottom-bar li a {
    color: var(--nav-font-color);
}

/* Make the navbar sticky on top */
header {
    position: sticky;
    top: 0;
    z-index: 999;
}

/* Media Queries for responsiveness */

/* For mobile and smaller tablets */
@media (max-width: 767px) {

    /* Hide regular navbar items and show the hamburger */
    .top-navbar .right .top ul {
        display: none;
    }

    .top-navbar .right .top .hamburger-menu {
        display: block;
    }

    /* Style for hamburger icon */
    .hamburger-menu {
        display: none;
        cursor: pointer;
    }

    .hamburger-menu span {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px auto;
        background-color: var(--nav-font-color);
    }

    /* Mobile menu styling */
    .mobile-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--light-pink);
        z-index: 1000;
        padding: 20px;
    }

    .mobile-menu.active {
        display: block;
    }

    /* Mobile menu links */
    .mobile-menu .nav-item a {
        font-size: 16px;
        padding: 10px 0;
        color: var(--nav-font-color);
    }

    /* Buttons below the menu */
    .mobile-buttons {
        margin-top: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .mobile-buttons .cta-dp,
    .mobile-buttons .cta-y {
        margin: 5px 0;
    }
}

/* For tablets and larger screens */
@media (min-width: 768px) and (max-width: 991px) {
    .top-navbar .right .top ul {
        margin-top: 0;
    }
}

/* For larger screens (desktops) */
@media (min-width: 992px) {
    .top-navbar .right .top ul {
        display: flex;
        justify-content: space-around;
        align-items: center;
    }

    .hamburger-menu {
        display: none;
    }

    .mobile-menu {
        display: none;
    }

    .mobile-buttons {
        display: none;
    }
}

/* Nav bar ends */



.about-us-images {
    padding: 0px !important;
}


/* Who we are starts */

.who-we-are {
    background-image: url(../images/bg-one.png);
    background-size: cover;
    background-position: center;
    /* border-radius: 30px; */
    padding: 50px 0;
    margin-top: 20px;

}

.card-custom {
    display: flex;
    background-color: rgba(255, 255, 255, 0.05);
    border: none;
    color: #fff;
    flex-direction: row;
    justify-content: flex-start;
    border-radius: 20px;
}

.stat-box {
    border-right: 1px solid #aaa;
}
.solid-stat .stat-box {
    border: none;
}

.btn-pink {
    background-color: #e91e63;
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: bold;
    border: none;
}

.btn-pink:hover {
    background-color: #d81b60;
}

.icon-circle {
    background-color: #ffb6c1;
    color: #6a1b9a;
    padding: 10px;
    border-radius: 50%;
    font-size: 20px;
    display: inline-block;
    margin-bottom: 10px;
}

/* .section-btn{
        text-align: right !important;
    } */

.icon-img {
    width: 50px !important;
    height: 50px !important;
    /* margin-right: 20px; */
}

.card-body {
    padding: 0;
    margin: 0;
}

.card-head {
    font-size: 22px;
    padding-bottom: 10px;

}

.counter-text {
    font-size: 50px;
    font-weight: 500;
    padding-right: 10px;
    color: var(--primary-color);
}

.stats-box {
    padding-top: 50px;
}
.doctors .stats-box {
    padding-top: 25px;
}

.counter-strip-lp .stat-box{
    padding-top: 0px !important;
    margin-bottom: 30px !important;
}

.institute-img {
    border-radius: 30px;
}

/* Who wer are ends */

/* about us starts */

.about-us {
    background-image: url('../images/bg-one.png');
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    padding: 50px 0;
    /* margin-top: 20px; */
    /* margin-bottom: 20px; */
}


/* about us ends */

/* infertility starts */

.card-body-main {
    padding: 10px;
}

.outline-btn {
    border: none;
    border-radius: 10px;
    /* padding: 10px 30px; */
    background-color: white;
    color: var(--cta-deep-pink);
    margin-top: 10px;
}


.service-item {
    position: relative;
    background: var(--white-color);
    border: 1px solid var(--divider-color);
    border-radius: 20px;
    /* height: calc(100% - 30px); */
    height: 240px;
    margin-bottom: 15px;
    /* padding: 20px; */
    overflow: hidden;
}

.service-item:hover .service-content-info {
    margin-top: 24%;
}

.view-details {
    padding-bottom: 20px;
}

.pricing-header {
    border-bottom: 1px solid var(--divider-color);
    /* margin-bottom: 20px; */
    /* padding-bottom: 30px; */
}

.service-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 10px;
    background: var(--white-color);
    border-radius: 20px;
    width: 100%;
    height: 100%;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.service-body .icon-box {
    margin-bottom: 0px !important;
}

.service-readmore-btn {
    margin: 0px !important;
}

.service-body .icon-box img {
    width: 100%;
    max-width: 50px;
    transition: all 0.4s ease-in-out;
}

.service-item .service-content-info .outline-btn {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    margin-bottom: 25px;

}

.service-item:hover .service-content-info .outline-btn {
    opacity: 0;
    visibility: hidden;
}

.full-height-equal {
    height: 100%;
}

.object-fit-cover {
    object-fit: cover;
}

align-items-stretch {
    align-items: stretch !important;
}

.img-full {
    height: auto;
    width: 100%;
    border-radius: 30px;

}

.infertility {
    background-image: url('../images/bg-bottom.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 50px 0;
}

/* infertility ends */

/* CTA 1 starts*/

.input-field {
    width: 100%;
    height: 70px;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.274);
    border-radius: 0;
    padding-left: 10px;
    color: white;
    font-size: 16px;
    outline: none;

}

.input-field-name {
    margin-right: 20px;
}

.input-field::placeholder {
    color: rgba(255, 255, 255, 0.801);
    font-size: 18px;
    padding-bottom: 20px;

}

.cta-box-one {
    margin-top: 50px;
    margin-bottom: 50px;
    background: linear-gradient(270deg, rgba(163, 0, 80, 0) 20.94%, #A30050 92.09%), url('../images/cta-one.png') no-repeat;
    background-position: center center;
    background-size: cover;
    /* padding: 100px 0; */
}

.margin-top-botom {
    margin-top: 40px;
    margin-bottom: 40px;
}


/* CTA 1 End */

/* treatment we provide started*/

.treatment-list {
    background-color: #00234C;
    padding-top: 50px;
    padding-bottom: 50px;
    /* margin-top: 40px;
    margin-top: 40px; */
}

.pricing-item {
    padding: 10px;
}

.treatments-card {
    background-color: white;
    border-radius: 30px;
}

.pricing-header {
    border-bottom: 1px solid var(--divider-color);
    border-radius: 30px !important;
}

.sub_treatment_list {
    max-height: 280px;
    overflow-y: auto;
    overflow-x: hidden;
}

.sub_treatment_list {
    scroll-behavior: smooth;
}

.sub_treatment_list::-webkit-scrollbar {
    width: 5px;
}
.sub_treatment_list::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 10px;
}

.two-btn{
    display: flex;
}


/* treatment we provide ends */

/* Why Choose us started */

.why-choose-us {
    background-image: url('../images/section-bg-imgae.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 50px 0;
}

/* why choose us ends */


/* Testimonials started */
.our-testimonials {
    margin-top: 20px !important;
}

.dark-section {
    background-color: var(--dark-pink);
}

.dark-section-blue {
    background-color: var(--primary-color);
}

.dark-section-blue h2 {
    color: #fff;
}

/* testimonials ends */

.single-testi-stat .stats-box {
    padding-top: 0px !important;
}

/* Our specialist starts */

.our-team {
    background-image: url('../images/section-bg-imgae.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 50px 0;
}

.card-text {
    margin-bottom: 0px !important;
    text-align: start !important;
}

.team-item {
    position: relative;
    text-align: center;
    border-radius: 20px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 30px 30px 0 30px;
    overflow: hidden;
}

.bg-y {
    background-color: #FFF6C8;
}

.bg-sky {
    background-color: #E0F2FF;
}

.bg-pnk {
    background-color: #FFE6F2;
}

.text-main {
    color: var(--primary-color);
}

/* our specialist ends */

/* Fertility tips started */

.cards {
    border-radius: 20px;
    padding: 10px 10px 15px 10px;
    border: 1px solid #d81b605e;
}

.card-title a{
    font-size: 1.2rem;
    margin-top: 10px;
    text-align: start !important;
    color: var(--cta-deep-pink);
        transition: all 0.5s ease-in-out;
}
.card-title a.def_theme_link:hover{
    text-decoration: underline;
}

.cards .card-title{
    transition: all 0.5s ease-in-out;
}

.cards:hover .card-body2 .card-title a{
    color: var(--accent-color) !important;
}

.play-btn {
    position: absolute;
    top: 120px;
    right: 150px;
}

/* Fertility tips ends */

/* CTA 2 starts */

/* .cta-box-two{
	background: linear-gradient(270deg, rgba(163, 0, 80, 0) 20.94%, #A30050 92.09%), url('../images/cta-two.png') no-repeat;
    padding: 50px;
    margin: 100px;
} */

.cta-two {
    border-radius: 40px;
}

/* CTA 2 Ends */



/* Research section started */

.research-section {
    margin-top: 40px;
    margin-bottom: 40px;
    padding-top: 50px;
    padding-bottom: 20px;
    background-image: url("../images/section-bg-imgae.png");
}

.card {
    width: 100%;
    /*max-width: 400px;*/
    /* margin: 20px; */
}

.card-title {
    font-weight: 500;
    /* padding-bottom: 10px; */
}

.card-body {
    padding-left: 10px;
}

.feature-box-wrapper{
    margin-bottom: 25px !important;
}

.feature-box {
    background-color: #ffffffe3;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 112, 163, 0.2);
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    min-height: 100%;
    transition: all 0.5s ease-in-out;
}



.feature-box:hover{
    background-color: var(--dark-pink);
    color: #fff;
}
.feature-box:hover h4{
    color: #fff;
}
.feature-box:hover p{
    color: #fff !important;
}

.arrow {
    transition: transform 0.3s ease;
}

.btn:hover .arrow {
    transform: rotate(90deg);
}

.read-more {
    background-color: #d81b60;
    color: white;
    margin-bottom: 20px;
    margin-top: 10px;
    text-align: start !important;

}

/*  Research section end */

/* image galary started */

@keyframes scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.image-marquee-section {
    padding: 20px 0;
}

.marquee-container {
    overflow: hidden;
    width: 100%;
}

.marquee-wrapper {
    display: flex;
    white-space: nowrap;
    width: 200%;
    animation: scroll-left 40s linear infinite;
}

.marquee-container:hover .marquee-wrapper {
    animation-play-state: paused;
}

.marquee-item {
    width: 260px;
    margin-right: 10px;
    flex-shrink: 0;
    display: inline-block;
}

.marquee-item img {
    width: 250px;
    height: 300px;
    border-radius: 10px;
    object-fit: cover;
    display: block;
}

.marquee-item:has(> .last-item) {
    margin-right: 0;
}

/* image gallary ends */

/* CTA three starts */

.cta-three {
    background: url("../images/cta-3-bg.png") no-repeat, #050B3C;
    background-size: cover;
    background-color: #2a1a5b;
    min-height: 400px;
    border-radius: 40px;
    margin: 20px auto;
    overflow: hidden;
    position: relative;
}

.text-primary-pink {
    color: #ff33a1;
}

.sub-title-bar {
    color: #ff33a1;
    letter-spacing: 1px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dot-separator {
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #ff33a1;
    border-radius: 50%;
    margin: 0 10px;
}

.btn-cta-white {
    background-color: white;
    color: #ff33a1;
    border-radius: 50px;
    font-weight: 600;
    padding: 12px 30px;
    transition: all 0.3s;
}

.btn-cta-white:hover {
    background-color: #ff33a1;
    color: white;
    border-color: #ff33a1;
}

.decorative-arrow {
    position: absolute;
    bottom: 40px;
    right: 15%;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border-bottom: 3px solid white;
    border-right: 3px solid white;
    transform: rotate(45deg);
}

@media (max-width: 992px) {
    .cta-three {
        min-height: 300px;
    }

    .display-3 {
        font-size: 2.5rem;
    }
}

/* CTA three ends */


/* awards starts */

.award-container {
    max-width: 400px;
    margin: 50px auto;
    text-align: center;
    border: 1px solid var(--accent-color);
    border-radius: 25px;
    padding: 10px 30px;
    background-color: white;
}

.award-container .award-icon {
    color: white;
    padding: 15px;
    border-radius: 50%;
    display: inline-block;
    margin-bottom: 15px;
}

.award-title {
    font-size: 22px;
    color: #9c1e42;
    margin-bottom: 10px;
}

.award-date {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.award-description {
    font-size: 18px;
    color: #333;
}

.award-container p {
    margin-bottom: 10px !important;
}

.award-description span {
    font-weight: bold;
}



/* awards ends */

/* image CTA counter start */

.image-counter-section {
    background-color: #37001B;
}

/* image CTA counter Ends */

/* map started */
.map iframe {
    border-radius: 30px;
}

/* map ends */

/* sitemap starts */

.sitemap-link {
    text-decoration: none;
    color: var(--white-color);
    padding-right: 20px;
    padding-left: 20px;
    border-right: 1px solid var(--white-color);
}

.sitemap {
    padding-top: 50px;
    padding-bottom: 50px;
    background-image: url("../images/bg-one.png");
    background-repeat: no-repeat;
    background-size: cover;
}

/* sitemap ends */


/* Footer starts */

.footer-form-p {
    margin: 0px !important;

}


/* Full background image section */
.contact-section {
    background: url('../images/footer-form-bg.png') no-repeat center center/cover;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
}

/* Overlay for gradient tint if needed */
.contact-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.5);
    z-index: 0;
}

.contact-form-box {
    background: #fff;
    border: 2px solid #d2468b;
    border-radius: 15px;
    padding: 30px;
    max-width: 500px;
    padding-bottom: 0px;
    /* width: 100%;
    height: 100%; */
    max-height: fit-content;
    margin-right: 5%;
    z-index: 1;
}

footer .parenthood-section1 {
    padding-top: 50px;
    padding-bottom: 50px;
    background: url(../images/ftr-frm-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}


.stats-image
 {
    left: 0;
    width: 900px;
    position: absolute;
    bottom: -50px;
}
.our-faqs {
    position: relative;
    padding: 0px;
    z-index: 1;
}

#d9cbf3 .contact-form-box h4 {
    color: #002060;
    font-weight: 600;
    /* margin-bottom: 10px; */
}

.contact-form-box input,
.contact-form-box textarea {
    border: none;
    border-bottom: 1px solid #ccc;
    border-radius: 0;
    background: transparent;
    outline: none;
    box-shadow: none;
    font-size: 14px;
}

.btn-callback {
    background: #ec4379;
    color: #fff;
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.btn-callback:hover {
    background: #c8295b;
}

/* Footer styles */
footer {
    background: #071c4d;
    color: #fff;
    padding: 50px 0 20px;
}

footer h5 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

footer a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    line-height: 20px;
}

footer a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    padding-top: 15px;
    font-size: 13px;
    color: #aaa;
}

.subscribe-box input {
    border-radius: 25px 0 0 25px;
    border: none;
    padding: 10px 15px;
    width: 70%;
}

.subscribe-box button {
    border-radius: 0 25px 25px 0;
    background: #ff6fae;
    color: white;
    border: none;
    padding: 10px 20px;
}

.footer-social a {
    color: #fff;
    font-size: 20px;
    margin-right: 10px;
}

.icons {
    padding-right: 10px;
}

.footer-text {
    font-size: 16px;
    color: #fff;
}

.f-menu-head {
    font-size: 20px !important;
}

.vertical-line {
    color: rgba(255, 255, 255, 0.459);
}

.support-link-contaner {

    border-top: 1px solid rgba(255, 255, 255, 0.5);
}

/* footer ends */

/* Other Pages */

/* About us page starts*/

.treatment-lists {
    /* padding-top: 30px !important; */
    margin-bottom: 30px;
}



/* breadcrumb  starts*/

.breadcrumb-title {
    font-size: 60px;
}

.breadcrumb-section {
    padding: 50px;

    background: linear-gradient(0deg, rgba(32, 41, 110, 0.85), rgba(32, 41, 110, 0.85)), url("../images/breadcrumb-bg.png")center/cover;
    border-radius: 20px;
}

/* breadcrumb ends */

/* Our milestone started */


.booking-btn {
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 240px;

    background: #063770;
    border-radius: 20px;
}

.milestone-counter-box {
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 240px;
    background: #A30050;
    border-radius: 20px;
}

/* Our milestone ends */

/* Who we are start */

:root {
    --dark-blue-bg: #140d39;
    /* Example dark background color */
    --light-pink: #F8D5C8;
    /* Icon background color */
    --dark-blue-text: #53528E;
    /* Description text color */
}

.feature-section {
    background-color: var(--dark-blue-bg);
}

.icon-container {
    /* Styles for the circular icon background */
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--light-pink);
    display: flex;
    justify-content: center;
    align-items: center;

    /* Icon color (assuming the uterus icon is dark/maroon) */
    color: var(--dark-blue-bg);
    font-size: 24px;
    flex-shrink: 0;
    /* Prevents icon container from shrinking */
}

.text-content h4 {
    font-weight: 600;
}

.text-light-blue {
    color: var(--dark-blue-text) !important;
    font-size: 16px;
    /* text-align: justify !important; */
}

/* who we are end */

/* our mission start */

.mission-card-body {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 10px;
    background: #FFFFFF;
    border: 1px solid rgba(255, 112, 163, 0.2);
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}

.mirror-horizontal {
    transform: scaleX(-1);
}

/* our mission ends */

/* our values starts */
.our-values-section {
    background-image: url("../images/bg-one.png");
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 50px;
    margin: 50px 30px 0;
}

/* our values ends */

/* infrastructure started */

.highlight-title {
    color: #f76c9e;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1px;
}

.main-heading {
    font-weight: 700;
    font-size: 2.5rem;
    color: #1c2a5e;
}

.highlight-text {
    color: #f76c9e;
}

.subtext {
    color: #6c757d;
    font-size: 1rem;
    margin-top: 1rem;
}

.infrastructure-section {
    background-image: url("../images/full-grad-bg.png") !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

/* infrastructure ends */

/* About us end */



/* Contact Us page started */

.contact-us-map {
    height: 50%;
}

.contact-section .bg-section .contact-details-wrapper .service-path-list .service-path-item {
    gap: 10px !important;

}

.contact-section .bg-section .contact-details-wrapper .service-path-item {
    width: auto !important;
}

.contact-quick-heading {
    font-size: 20px !important;
}

.contact-quick-para p {
    font-size: 18px !important;
    margin-bottom: 0px !important;
}

#contact-section .contact-details-wrapper .blank-card {
    padding: 20px !important;
}



/* form section started */

.contact-icon i {
    color: var(--primary-color);

}



.contact-us {
    background-color: rgba(255, 255, 255, 0.678);
    background-image: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)),
        url("../images/contact-us-bg.png");
    background-size: cover;
    background-position: center;
}

.social-icon {
    color: var(--text-light);
    font-size: 1.2rem;
    text-decoration: none;
    transition: color 0.3s;
    /* Optional: Added padding/margin to make icons clickable */
    padding: 5px;
}

.social-icon:hover {
    color: #A30050;
}

.contact-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
}

.contact-icon {
    color: var(--primary-pink);
    font-size: 1.5rem;
    line-height: 1.6;
}

.contact-text {
    color: var(--primary-color);
    line-height: 1.6;
    margin-bottom: 0;
}

.follow-title {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    border-bottom: 2px solid var(--primary-pink);
    display: inline-block;
    padding-bottom: 5px;
}

.callback-form-card {
    background-color: var(--form-bg);
    padding: 3rem 2.5rem;
    border-radius: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #d2468b;
}

.form-title {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 600;
}

.form-label {
    color: var(--primary-purple);
    font-weight: 500;
    /* margin-bottom: 0.5rem; */
    display: block;
}

.form-input {
    border: none;
    border-bottom: 1px solid #140d3954;
    border-radius: 0;
    /* padding: 0.5rem 0; */
    color: var(--primary-purple);
    background: transparent;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-input:focus {
    box-shadow: none;
    border: none;
    outline: none;
    /* border-color: var(--primary-pink); */
    border-bottom: 1px solid var(--accent-color);
}

textarea.form-input {
    resize: none;
    border: none;

    border-bottom: 1px solid var(--form-border);
    padding-bottom: 0;
}



.callback-btn {
    background-color: var(--primary-pink);
    color: var(--text-light);
    border: 2px solid var(--primary-pink);
    border-radius: 30px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: background-color 0.3s, border-color 0.3s;
}

.callback-btn:hover {
    background-color: var(--cta-deep-pink);
    border-color: var(--cta-deep-pink);
    color: var(--text-light);
}

.callback-btn .arrow {
    font-size: 1.2rem;
    line-height: 1;
}

/* quick menu start */
.small-icn {
    height: 50px;
    width: 50px;
    padding-right: 15px;
}

.helpline {
    border-radius: 0px 20px 20px 0px !important;
}

.blank-card {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
    border: 1px solid #FF70A3;
    border-radius: 20px 0px 0px 20px;
    isolation: isolate;
    height: 250px;
}

.fill-card {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
    background-color: #9c1e42;

    isolation: isolate;
    height: 250px;
}

.arrow-icn {
    height: 18px;
    width: 18px;
    margin-left: 20px;
}

.book-link {
    border-bottom: 1px solid #FFF6C8;
}

/* quick menu end */
/*  Contact Us page end */

/* center tour starts  */

.video-section-k {
    border-radius: 30px;
    padding: 60px 20px;
    max-height: 50%;
    background-image: url('../images/bg-one.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin: 50px 30px 0;
    text-align: center;
}

.video-wrapper-k {
    border-radius: 30px;
    position: relative;
    width: 100%;
    max-height: 50%;
    /* max-width: 800px; */
    margin: 0 auto;
    padding-top: 56.25%;
    /* 16:9 aspect ratio (9/16 = 0.5625) */
    overflow: hidden;
}

.video-iframe-k {
    border-radius: 30px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    border: none;
}

/* center tour ends */

/* ===== Bottom Bar ===== */
.bottom-bar {
    background-color: var(--nav-color);
    padding: 10px 0;
}

.bottom-bar a {
    color: var(--dark-blue-bg);
    font-weight: 500;
}

.bottom-bar a:hover {
    color: #ec008c;
}

/* ===== Mobile Nav ===== */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    /*background: var(--accent-color);*/
    background: #ffffff;
    text-align: center;
    padding-top: 80px;
    transform: translateY(-100%);
    transition: transform 0.4s ease-in-out;
    z-index: 9999;
    overflow-y: auto;
}

.mobile-nav.active {
    transform: translateY(0);
}

.mobile-nav ul li {
    margin: 25px 0;
}

/*.mobile-nav .close-btn i{
color: #ffffff;
}*/
.top ul li {
    color: var(--dark-blue-bg);
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;

}

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .mainHeader1 .right {
        display: none !important;
    }

    .mainHeader1 a {
        color: var(--nav-font-color);
    }

    .navbar-toggler {
        display: block;
    }

    .mainHeader1 .cta-dp {

        background: var(--cta-deep-pink);
        border-radius: 10px;
        font-size: 16px;
        font-weight: 400;
        line-height: 1em;
        /* text-transform: capitalize; */
        color: var(--white-color);
        border: none;
        padding: 17px 30px 17px 30px;
        transition: all 0.5s ease-in-out;
        overflow: hidden;
        z-index: 0;
        width: 250px;
    }
}

@media (min-width: 992px) {
    .navbar-toggler {
        display: none;
    }

}

@media (max-width: 576px) {
    .mobile-nav .mt-3 {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .mobile-nav .cta-dp {
        width: auto;
        min-width: 150px;
        padding: 12px 18px;
        font-size: 14px;
    }

    .mobile-nav .cta-y {
        margin-top: 15px;
        width: 80%;
        font-size: 15px;
        padding: 14px;
    }
}

@media (max-width: 991px) {
    .mobile-nav .mt-3 {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .mobile-nav .cta-dp {
        width: auto;
        min-width: 150px;
        padding: 12px 18px;
        font-size: 14px;
    }

    .mobile-nav .cta-y {
        margin-top: 15px;
        width: 80%;
        font-size: 15px;
        padding: 14px;
    }
}

.parenthood-section .parenthood-content {
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.header-btn .callback-btn {
    font-size: 18px !important;
    background-color: transparent;
}

.book-appointment {
    background-image: linear-gradient(to right, rgb(255, 112, 163), rgb(32, 41, 110));
    /* Define your gradient colors and direction */
    -webkit-background-clip: text;
    /* Clip the background to the shape of the text */
    -webkit-text-fill-color: transparent;
    /* Make the text itself transparent so the background shows through */
    color: transparent;
    padding: 0px !important;
    padding-right: 20px !important;
    font-weight: 700 !important;
    font-size: 16px !important;
}

.topbar {
    width: 100%;
    /* max-width: 1480px; */
    margin: 0 auto;
    padding: 15px 0;
}

.pricing-body ul li {
    padding-bottom: 20px;
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 400;
}

.pricing-body ul li i {
    color: #a30050;
    ;
    padding: 2px;
    border-radius: 100px;
    padding-right: 10px;
}

.treatment-card-cta-btn {
    font-size: 20px !important;
    font-weight: 600 !important;
}

.book-appointment i {
    font-size: 18px;
    transition: transform 0.3s ease;
    background: transparent !important;
    align-content: center !important;
    gap: 0px !important;
    max-width: fit-content !important;
    padding: 0px !important;
}

.book-appointment i:hover {
    color: var(--dark-blue-bg);
}

.header-btn {
    text-align: end;
    padding-right: 10px;
}

.hero-banner-k {
    position: relative;
    width: 100%;
    /*height: 90vh;*/
    overflow: hidden;
}

.hero-banner-k .hero-image-k img {
    width: 100%;
    height: 80vh;
    object-fit: cover;
    filter: brightness(70%);
}

.hero-banner-k .hero-content-k {
    position: absolute;
    top: 50%;
    right: 20%;
    width: 100%;
    transform: translateY(-50%);
    color: #fff;
    z-index: 2;
}

.hero-banner-k .container {
    max-width: 1200px;
}

.hero-banner-k h3 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.hero-banner-k h3 span {
    color: #ff70a3;
}

.hero-banner-k ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.hero-banner-k ul li {
    font-size: 18px;
    margin-bottom: 10px;
}

.hero-banner-k ul li i {
    color: #ff70a3;
    margin-right: 10px;
}

.hero-buttons-k .btn1-k {
    background-color: #ff70a3;
    color: #fff;
    font-weight: 600;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.hero-buttons-k .btn1-k:hover {
    background-color: #e65b8f;
}

.hero-buttons-k .btn2-k {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.hero-buttons-k .btn2-k:hover {
    background-color: #fff;
    color: var(--dark-blue);
}

.mentor .mentor_content blockquote {
    background: url(../images/icon-blockquote.svg), var(--primary-color);
    background-repeat: no-repeat;
    background-position: 30px 30px;
    background-size: 45px;
    border: 1px solid var(--divider-color);
    border-radius: 18px;
    padding: 30px 30px 30px 90px;
    margin-bottom: 30px;
}

.banner .banner_slider .slick-slide .slide .slide_content a {
    /*background: #ffbc13;*/
    display: block;
    margin: 20px 0;
    /*width: 200px;*/
    text-align: center;
    padding: 15px 25px;
    text-decoration: none;
    color: white;
    font-size: 18px;
    opacity: 0;
    border-radius: 50px;
    transform: translate(0, 50%);
    transition: all 1s ease-in;
}

.footer-cta {
    background-color: #fff;
    padding-bottom: 50px;
}

.footer-cta-content {
    display: flex;
    align-content: end;
    align-items: flex-end;
    flex-direction: column;
    padding-right: 50px;
}

footer .footer-cta .ph1 .cta-box2 .footer-cta-content h2 {
    font-size: 50px;
}

footer .footer-cta .ph1 .cta-box2 .footer-cta-content p {
    padding-top: 20px;
}

footer .footer-cta .ph1 .cta-box2 .footer-cta-content .cta-btn::before {
    position: relative !important;
}

footer .footer-cta .ph1 .cta-box2 .footer-cta-btn {
    margin-top: 0px !important;
}

.faq-btn {
    max-width: fit-content;
}

.u-line-txt
 {
    border-radius: 50px;
    background: #fff0f5;
    padding: 20px;
    color: var(--text-color);
    font-size: 20px;
    margin-top: 20px !important;
}

.u-line-txt:hover {
    color: var(--cta-deep-pink);
}

.u-line-txt:hover span {
    text-decoration: underline;
}

.doc-book-btn {
    color: var(--primary-color) !important;
}

.doc-book-btn:hover {
    text-decoration: underline;
}

.doc-book-btn i {
    transform: rotate(-45deg);
    transition: all 0.5s ease-in-out;
}

.rating-star {
    color: orange;
}

.rating-star p {
    padding-right: 10px;
}

.hero-banner-sec {
    height: 70vh;
    background-image: url(../images/slider1.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}


.sidebar-icn {
    font-size: 18px !important;
    color: var(--accent-color);
}

.sidebar-cta-btn {
    background-color: #fff !important;
    padding: 15px 20px !important;
    text-align: center;
    border-radius: 100px;
}

.page-service-single .counter-one {
    background-color: var(--cta-deep-pink);
    padding: 20px;
    color: #fff;
    border-radius: 30px;
}

.page-service-single .counter-one h2 {
    color: #fff !important;
}

/* Swiper Slide - Related Treatment */
.related-treatment {
    width: 307.333px;
    margin-right: 30px;
}

/* Card Wrapper */
.related-treatment .cards {
    width: 100%;
}

/* Animation visibility and fadeInUp effect */
.related-treatment .wow {
    visibility: visible;
    animation-name: fadeInUp;
    animation-duration: 1s;
    animation-fill-mode: both;
}

/* IVF Card Image */
.related-treatment .card-img-top {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

/* Card Body */
.related-treatment .card-body {
    padding: 15px;
    text-align: left;
}

/* Card Title */
.related-treatment .card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Read More Button */
.related-treatment .btn.read-more1 {
    color: var(--cta-deep-pink);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    padding-top: 20px !important;
}

.related-treatment .btn.read-more1:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Arrow Icon */

.related-treatment .fa-arrow-right {
    margin-left: 8px;


}

.related-treatment .btn.read-more1:hover .fa-arrow-right {
    transform: rotate(-45deg);
    transition: all 0.5s ease-in-out;
}


/* Keyframes for fadeInUp Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.page-service-single .faqs-contact-box.sidebar-cta-box .cta-contact-item {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--dark-divider-color);
    margin: 0;
    padding: 0px !important;
}

.doc-book-consult {
    background-color: #fff !important;
    color: var(--primary-color) !important;

    /* font-size: 20px !important; */
}

.doc-book-consult :hover a {
    background-color: #fff !important;
    color: var(--cta-deep-pink) !important;
    text-decoration: underline !important;
}


/* Floating button container */
.floating-buttons {
    position: fixed;
    bottom: 80px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
}

/* Common button styles */
.floating-buttons a {
    font-size: 14px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #25d366;
    /* WhatsApp green */
    color: white;
    font-weight: 500;
    text-transform: uppercase;
    padding:8px 12px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.floating-buttons a.call-btn {
    background: linear-gradient(to right, rgb(255, 112, 163), rgb(32, 41, 110));
}

.floating-buttons a:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.floating-buttons a i {
    font-size: 1.2rem;
    margin-right: 8px;
    color: #fff;
}

@media (max-width: 576px) {
    .floating-buttons a {
        padding: 8px 12px;
        font-size: 14px;
    }

    .floating-buttons a i {
        margin-right: 5px;
    }
}

.slick-track {
    max-height: 600px !important;
}

.abt-para p {
    text-align: justify;
}

.m-f-cause .work-step-nav ul li .nav-link {
    /* background: var(--primary-color); */
    max-width: fit-content !important;
    text-align: center !important;
    padding: 15px 20px !important;
}

.m-f-cause .work-step-nav ul li {
    max-width: fit-content !important;
}

.m-f-cause .work-step-item p {
    color: #fff;
    text-align: justify;
}

.m-f-cause .work-step-item h3 {
    color: #fff;
}
.testi-card-k small{
    display: none;
}

.m-f-cause .work-step-item h2 {
    color: #fff;
}

.m-f-cause .section-row {
    margin-bottom: 20px;
}

.m-f-cause .how-it-work {
    padding-top: 50px;
    padding-bottom: 50px;
}

#cta1 .cta-btn {
    margin-top: 20px !important;
}

#cta1 p {
    margin-bottom: 0px !important;
}

#cta1 .section-title {
    margin-top: 30px;
    margin-bottom: 0px;
}

.gdifr-stats-section {
    margin-bottom: 150px;
}


.stats-image img {
    /* max-width: 450px; */
    border-radius: 8px;
    width: 100%;
    height: auto;
    max-width: 600px;
}

.stats-box {

    border-radius: 10px;
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); */
}

.stat-item {
    text-align: center;
    padding: 10px 15px;
}

.stat-item .icon i {
    font-size: 36px;
    color: #0d3b66;
    /* Navy blue accent */
}

.stat-item h4 {
    font-size: 28px;
    font-weight: 700;
    margin: 5px 0;
    color: #0d3b66;
}

.stat-item .stat-label {
    text-transform: uppercase;
    font-size: 14px;
    color: #555;
    letter-spacing: 0.5px;
}

.text-primary {
    color: #ff4da6 !important;
    /* GDIFR Pink accent */
}

footer .gdifr-stats-section .fact-counter-item p {
    text-transform: capitalize;
    margin-bottom: 0;
    color: var(--text-color);
}

footer .gdifr-stats-section .fact-counter-list {
    margin-top: 0px !important;
    background-color: #f9fcff;
    padding: 20px;
    border-radius: 20px;

}

.abt-para {
    text-align: justify;
}

.faq-accordion .accordion-item .accordion-body p {
    text-align: justify;
}

.testimonial-content p {
    text-align: justify;
}

.fa-circle-check {
    color: var(--accent-color);
}

div#wpforms-45-field_1-container {
    width: 100% !important;
}

div#wpforms-45-field_2-container {
    width: 100% !important;
}

div#wpforms-45-field_3-container {
    width: 100% !important;
}

div#wpforms-45-field_7-container {
    width: 100% !important;
}

div.wpforms-container-full .wpforms-form textarea.wpforms-field-medium {
    max-height: fit-content !important;
}

.wpforms-container .wpforms-submit-container {
    padding: 0px !important;
    display: flex;
}

.cta1 .wpforms-container .wpforms-submit-container {
    padding: 0px !important;
    display: flex;
}

.work {
    margin: 0px 50px !important;
    border-radius: 20px;
}

.timing-sec {
    /* margin-top: 40px; */
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 260px;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-card:hover img {
    transform: scale(1.15);
}

.gallery-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px 15px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    z-index: 3;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.8),
            rgba(0, 0, 0, 0));
}

.gallery-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-card:hover img {
    transform: scale(1.1);
}

.video-card .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-card:hover .play-btn {
    opacity: 1;
}


/* PHOTO GALLERY CARDS */
.gallery-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    color: #fff;
    font-size: 14px;
    text-align: center;
}

.play-button1 {
    font-size: 40px;
    color: #fff;
    margin-bottom: 10px;
}

.video-title {
    color: #fff;
    font-size: 14px;
    text-align: center;
}

#testimonials .section-title {
    display: flex;
    margin-bottom: 40px;
    flex-direction: column;
    align-content: center;
    align-items: center;
}

.gdifr-moto-banner {
    background: rgb(255, 112, 163);
    padding: 15px 0;
    width: 100%;
    /* padding: 100px 0; */
    overflow: hidden;
    position: relative;
}

.gdifr-moto-text {
    gap: 30px;
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    flex-direction: row;
    justify-content: center;
    opacity: 0;
    animation: textSlide 3s ease-in-out infinite;
    position: relative;
    display: inline-block;
}

@keyframes textSlide {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }

    20% {
        transform: translateY(0);
        opacity: 1;
    }

    70% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(-100%);
        opacity: 0;
    }
}

.video-card1 {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.video-card1 img {
    width: 100%;
    height: auto;
    display: block;
}

/* CENTER PLAY ICON */
.play-button1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C10055;
    font-size: 24px;
    border: 3px solid #fff;
    backdrop-filter: blur(8px);
    z-index: 3;
}

/* TITLE AT BOTTOM WITH GRADIENT */
.gallery-title {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 15px;
    text-align: center;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0));
    z-index: 2;
}

.info-left {
    border-radius: 30px 0px 0px 30px;
    display: flex !important;
    flex-direction: column;
    justify-content: center !important;
    gap: 20px;
}

.info-right {
    border-radius: 0px 30px 30px 0px;
    display: flex !important;
    flex-direction: column;
    justify-content: center !important;
    gap: 20px;
}

.info-section {
    max-width: 80%;
}

.brand-logo {
    margin-left: 10px;
}


/* .map-container{
    display: flex;
} */

.center-align {
    display: flex;
    justify-content: center;
}

.call-icn {
    display: flex;
    color: #a70050 !important;
    background: #ffffff;
    padding: 0;
    width: 35px;
    height: 35px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    /* padding-left: 7px;
    padding-top: 5px; */
    font-size: 24px;
    justify-content: center;
    align-items: center;
}

.title-icn {
    display: flex;
    font-size: 25px;
    margin-right: 10px;
    align-items: center;
}

.icn-title {
    display: flex;
}

.time-card-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.time-link span {
    color: #fff !important;
}

.time-link:hover {
    text-decoration: underline;
}

footer .footer-cta .ph1 .cta-box2 .footer-cta-content h2 {
    font-size: 40px;
    margin-top: 80px;
    margin-bottom: 20px;
    text-align: center !important;
}

footer .footer-cta .ph1 .cta-box2 .footer-cta-content p {
    padding-top: 0;
    font-size: 28px !important;
    /* text-align: left; */
    max-width: 600px !important;
    text-align: justify !important;
}

/* Section gradient background */
.founder-section {
    padding-bottom: 0px !important;
    background: linear-gradient(90deg, #f3e8ff, #fde6e6);
    background: url(../images/tbg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

/* Left big circular background behind image */
.founder-img-wrapper {
    width: 420px;
    height: 420px;
    background: #ffe8df;
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
}

.founder-img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    max-height: 100%;
}

/* Typography */
.sub-heading {
    color: #ff5599;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 14px;
}

.main-heading {
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.3;
}

.main-heading .highlight {
    color: #ff4fa3;
}

.description {
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.7;
}

/* Button */
.outline-btn {
    border: 2px solid #ff4fa3;
    padding: 10px 22px;
    border-radius: 30px;
    color: #ff4fa3;
    font-weight: 600;
    transition: 0.3s;
}

.outline-btn:hover {
    background: #ff4fa3;
    color: #fff;
}

/* Responsive */
@media (max-width: 767px) {
    .founder-img-wrapper {
        width: 300px;
        height: 300px;
    }
}


/* Happy STories */

.testi-subtitle-k {
    letter-spacing: 2px;
    color: #e93684;
    font-weight: 600;
    margin-bottom: 8px;
}

.testi-title-k {
    font-size: 40px;
    font-weight: 700;
    color: #112266;
    margin-bottom: 40px;
}

.testi-wrapper-k {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.testi-arrow-k {
    width: 45px;
    height: 45px;
    border: 2px solid #d9167e;
    color: #d9167e;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    z-index: 1000;
}

.testi-arrow-k:hover {
    background: #d9167e;
    color: #fff;
}

.testiSwiper-k {
    width: 100%;
    padding-bottom: 50px;
}

.testi-slide-k {
    display: flex;
    height: auto;
}

.testi-card-k {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-align: left;
    position: relative;
    width: 100%;
}

.stars-k {
    color: #ff9f1c;
    font-size: 16px;
    margin: 10px 0 15px;
    display: none;
}

.testi-card-k h5 {
    color: #112266;
    font-weight: 700;
    margin-bottom: 10px;
}

.testi-card-k p {
    margin-right: 5px;
    color: var(--text-color);
    line-height: 1.6;
}
.quote-k {
    position: absolute;
    right: 10px;
    top: 25px;
    font-size: 32px;
    font-weight: bold;
    color: #112266;
}

.testi-pagination-k .swiper-pagination-bullet {
    width: 40px !important;
    height: 4px !important;
    background: #ccc !important;
    border-radius: 10px;
}

.testi-pagination-k .swiper-pagination-bullet-active {
    background: #d9167e !important;
}


/* Base styles for both arrows */
.testi-prev-k,
.testi-next-k {
    width: 48px;
    height: 48px;
    border-radius: 50px;
    border: 2px solid var(--primary-color);
    background: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    z-index: 20;

    transition: all 0.3s ease;
}

/* Arrow icon inside */
.testi-prev-k i,
.testi-next-k i {
    color: var(--primary-color);
    font-size: 18px;
}

/* Hover effect */
.testi-prev-k:hover,
.testi-next-k:hover {
    background: var(--primary-color);
}

.testi-prev-k:hover i,
.testi-next-k:hover i {
    color: #fff;
}

/* Remove default Swiper arrow styles */
.swiper-button-prev::after,
.swiper-button-next::after {
    display: none !important;
}

.swiper-button-next.testi-next-k {
    margin-right: -70px;
}

.swiper-button-prev.testi-prev-k {
    margin-left: -70px;
}


.form-wrapper11 form{
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}
.form-wrapper11 .es-subscribe-btn.es-custom-button{
/* padding: 16px !important; */
height: 50px !important;
border-radius: 4px!important;
margin-left: -1px;
padding: 0 20px !important;
background-color: #ff6699 !important;
border: none !important;
}

body form.es_subscription_form.es_subscription_form[data-form-id="1"].wysiwyg-form {
    background-color: transparent;
    padding: 20px;
    border-radius: 8px;
}


/* aa code */
#es_form_f1-n1 form {
    max-width: 480px;
    margin: auto;
    background: #fff;
    padding: 14px 18px !important;
    border-radius: 20px !important;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.08);
    display: flex !important;
    align-items: flex-end;
    gap: 14px;
    flex-direction: row;
}
#es_form_f1-n1 form, #es_form_f1-n1 input, #es_form_f1-n1 label {
    display: flex !important;
    all: unset;
    /* display: block; */
    box-sizing: border-box;
    font-family: inherit;
    flex-direction: column;
    align-items: center;
}
#es_form_f1-n1 .es-field-wrap, #es_form_f1-n1 .es-submit-container {
    margin: 0 !important;
    padding: 0 !important;
}
#es_form_f1-n1 form, #es_form_f1-n1 input, #es_form_f1-n1 label {
    display: flex !important;
    all: unset;
    /* display: block; */
    box-sizing: border-box;
    font-family: inherit;
    flex-direction: column;
    align-items: center;
}

.es-form-1 label {
    color: #374151 !important;
    font-weight: 500 !important;
}
#es_form_f1-n1 input[type="email"] {
    flex: 1;
    font-size: 16px;
    padding: 8px 4px;
    border: none !important;
    outline: none !important;
    background: transparent;
    color: #333;
    border-bottom: 1px solid #b5b5b5 !important;
}
#es_form_f1-n1 form, #es_form_f1-n1 input, #es_form_f1-n1 label {
    display: flex !important;
    all: unset;
    /* display: block; */
    box-sizing: border-box;
    font-family: inherit;
    flex-direction: column;
    align-items: left;
    text-align: left !important;
    align-items: flex-start;
}
.subscribe-box input.es_required_field.es_txt_email.ig_es_form_field_email.ig-es-form-input {
    width: 100% !important;
}
.footer1 .wpforms-submit-container {
    display: flex;
    justify-content: center;
}

p.blog_card_text {
    color: #40435a;
    font-size: 1rem !important;
    text-align: left;
    margin-top: 5%;
}

section.default_pagesec h2 {
     margin-top: 1%;
    margin-bottom: 2%;
}

/* .video-radius iframe {
    width: 100%;
    height: 600px;
    border-radius: 25px ;
    overflow: hidden;
    border: none;
} */

/* contact cta form */
.contact-us-form {
    padding-bottom: 0px !important;
    background-image: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url(../images/contact-us-bg.png) !important;
}
.career-form {
    margin-left: 20px !important;
    padding-top: 30px !important;
    padding-bottom: 30px !important;
    margin-right: 20px !important;
}
.page-template-fertility-treatments .sub_treatment_list{
    padding-bottom: 20px !important;
    color: var(--primary-color) !important;
    font-size: 20px !important;
    font-weight: 400 !important;
    list-style-type: none !important;
    overflow-x: hidden !important;
    overflow-y: hidden !important;
    height: fit-content !important;
    max-height: fit-content !important;
    padding-bottom: 0px !important;
    padding-left: 0px !important;
}


.page-template-fertility-treatments .sub_treatment_list li{

    padding-bottom: 20px;
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 400;
}
.page-template-fertility-treatments .sub_treatment_list li a i {
    color: #a30050;
    padding: 2px;
    border-radius: 100px;
    padding-right: 10px;
}
.page-template-fertility-treatments .sub_treatment_list li a {
    padding-bottom: 20px !important;
    color: var(--primary-color) !important;
    font-size: 20px !important;
    font-weight: 400 !important;
}

.page-template-fertility-treatments #what-is-infertility .section-title {
    margin-bottom: 0px;
}

.page-template-fertility-treatments #what-is-infertility .right-sec{
    padding-bottom: 25px !important;
}
.page-template-fertility-treatments #what-is-infertility .left-sec{
    padding-left: 0px !important;
}
.page-template-fertility-treatments #what-is-infertility{
    padding-right: 20px !important;
    padding-left: 20px !important;
}

.events-one__left {
    margin-bottom: 20px !important;
}

.catalog-card {
    gap: 10px;
    width: 326px;
    background: #ffffff;
    border: 1px solid #e5e9f2;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 25px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.catalog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.15);
    background: var(--accent-color);
    color: #fff;
}
.catalog-card i{
transition: all 0.5s ease-in-out;
}
.catalog-card:hover i{
color: #fff;
transform: rotate(0deg);
}
.catalog-card:hover .def_theme_link{
transition: all 0.5s ease-in-out;
}
.catalog-card:hover .def_theme_link{
color: #fff;
}
.card-badge {
    padding-top: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: fit-content;
    align-content: center;
}
.research-grid .card-title{
    margin-top: 0px;
    line-height: 1.4;
    color: var(--cta-deep-pink);
}

.research-grid .read-more1 {
    padding-left: 0px !important;
}
.research-grid .card-text {
    line-height: 1.4;
    margin-bottom: 0px !important;
    text-align: start !important;
}

.infertility-icon {
    height: 200px;}

.default_pagesec h2 strong{
    font-weight: 600 !important;
}

.default_pagesec h1 strong{
    font-weight: 600 !important;
}

.wp-block-list li {
    font-size: 16px !important;
    color: var(--text-color) !important;
    padding-bottom: 8px;
}
h3.wp-block-heading{
    padding-bottom: 10px !important;
}
.page-template-home .cta-box-one #wpforms-624 .wpforms-submit-container button {
    background: #ffffff !important;
    border-radius: 50px !important;
    padding: 10px 20px !important;
    color: #20296e !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    display: flex;
    margin: 0px;
    margin-top: 20px !important;
    width: fit-content;
}


.error-page-image img {
    width: 30%;
    max-width: 60%;
}