/*=====================================
Google Fonts
=====================================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@600;700;800&display=swap');

/*=====================================
Root
=====================================*/

:root {

    --primary: #d95b8c;
    --secondary: #c7a03a;
    --light: #fff7fb;
    --white: #ffffff;
    --dark: #333333;
    --text: #666666;
    --border: #f2d8e5;

}

/*=====================================
Common
=====================================*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {

    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;

}

h1,
h2,
h3,
h4,
h5,
h6 {

    font-family: 'Playfair Display', serif;
    color: var(--dark);

}

a {
    text-decoration: none;
}

img {
    width: 100%;
}

.section-padding {

    padding: 90px 0;

}
  
.section-title {

    color: var(--primary);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;

}

.main-title {

    font-size: 45px;
    font-weight: 700;
    margin-bottom: 20px;

}

p {

    line-height: 30px;

}

/*=====================================
Navbar
=====================================*/

.custom-navbar {

    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(12px);
    /* padding: 12px 0; */
    transition: .4s;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .06);

}

.navbar-brand img {
    height: 100px;
    width: 105px;
    margin-top: -5px;
}

.navbar-nav .nav-link {

    color: var(--dark);
    font-weight: 500;
    margin-left: 20px;
    transition: .4s;

}

.navbar-nav .nav-link:hover {

    color: var(--primary);

}

.book-btn {

    background: linear-gradient(45deg, var(--primary), #f48fb1);
    color: #fff;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    transition: .4s;

}

.book-btn:hover {

    background: var(--secondary);
    color: #fff;
    transform: translateY(-3px);

}

/*==========================
Services Menu Dropdown
==========================*/

.services-dropdown {

    min-width: 320px;
    border: none;
    border-radius: 15px;
    padding: 12px 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .12);

}

.services-dropdown .dropdown-item {

    padding: 12px 22px;
    font-size: 15px;
    font-weight: 500;
    transition: .3s;

}

.services-dropdown .dropdown-item:hover {

    background: var(--primary);
    color: #fff;
    padding-left: 28px;

}

/* Desktop Hover */

@media(min-width:992px) {

    .nav-item.dropdown:hover .dropdown-menu {

        display: block;
        margin-top: 0;

    }

}

/*=====================================
Hero Section
=====================================*/

.hero-section {
    margin-top: 95px;
}

#heroCarousel,
#heroCarousel .carousel-inner,
#heroCarousel .carousel-item {
    height: 90vh;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 90vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgb(217 91 140 / 19%), rgba(0, 0, 0, .55));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: auto;
    text-align: center;
    color: #fff;
}

.hero-subtitle {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 40px;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 25px;
}

.hero-content h1 {
    color: #fff;
    font-size: 50px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 25px;
}

.hero-content p {
    color: #fff;
    font-size: 20px;
    line-height: 34px;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: .4s;
}

.hero-btn:hover {
    background: var(--secondary);
    color: #fff;
    transform: translateY(-4px);
}

.hero-call {
    background: transparent;
    border: 2px solid #fff;
}

.hero-call:hover {
    background: #fff;
    color: var(--primary);
}

/* Carousel Controls */

.carousel-control-prev,
.carousel-control-next {
    width: 70px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, .25);
    background-size: 40%;
}

/* .carousel-indicators{
    bottom:30px;
} */

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 6px;
    background: #fff;
    display: none;
}

.carousel-item.active .hero-content {
    animation: heroFadeUp 1s ease;
}

@keyframes heroFadeUp {

    from {
        opacity: 0;
        transform: translateY(60px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

.hero-brand {
    width: 200px;
    height: 200px;
    margin: 0 auto 35px;
    padding: 20px;
    text-align: center;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .25);
    animation: logoFloat 3s ease-in-out infinite;
}

.hero-brand img {
    width: 150px;
    height: auto;
}

.hero-brand h5 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-top: 12px;
    margin-bottom: 0;
    font-family: 'Poppins', sans-serif;
}

@keyframes logoFloat {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }

}

@media(max-width:768px) {

    .hero-brand {
        width: 180px;
        padding: 15px;
        display: none;
    }

    .hero-brand img {
        width: 90px;
    }

    .hero-brand h5 {
        font-size: 16px;
    }

}

/*=========================
Responsive
=========================*/

@media(max-width:991px) {

    .hero-section {
        margin-top: 85px;
    }

    #heroCarousel,
    #heroCarousel .carousel-inner,
    #heroCarousel .carousel-item,
    .hero-slide {
        height: 75vh;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content p {
        font-size: 17px;
        line-height: 30px;
    }

}

@media(max-width:576px) {

    .hero-section {
        margin-top: 80px;
    }

    #heroCarousel,
    #heroCarousel .carousel-inner,
    #heroCarousel .carousel-item,
    .hero-slide {
        height: 70vh;
    }

    .hero-content {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 30px;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 15px;
        line-height: 28px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-btn {
        width: 100%;
        max-width: 260px;
        justify-content: center;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }

}

/*=====================================
About Section
=====================================*/

.about-section {
    background: #fff;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .10);
}

.experience-box {
    position: absolute;
    bottom: -16px;
    right: -25px;
    background: var(--primary);
    color: #fff;
    width: 180px;
    padding: 25px;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .15);
}

.experience-box h2 {
    color: #fff;
    font-size: 42px;
    margin-bottom: 8px;
}

.experience-box span {
    font-size: 15px;
}

.about-feature {
    display: flex;
    gap: 15px;
    background: #fff7fb;
    border-radius: 18px;
    padding: 20px;
    transition: .3s;
    height: 100%;
}

.about-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
}

.about-feature h5 {
    margin-bottom: 8px;
}

.about-feature p {
    margin: 0;
    font-size: 15px;
    line-height: 24px;
}

@media(max-width:991px) {

    .experience-box {
        right: 15px;
        bottom: 15px;
    }

}

@media(max-width:576px) {

    .experience-box {
        width: 150px;
        padding: 18px;
    }

    .experience-box h2 {
        font-size: 32px;
    }

}

/*=====================================
Services Section
======================================*/

.services-section {
    background: #fff7fb;
}

.service-description {
    /*max-width: 700px;*/
    margin: auto;
}

.service-box {
    position: relative;
    height: 380px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

.service-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s;
}

.service-box:hover img {
    transform: scale(1.12);
}

.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgb(217 91 140 / 35%), rgba(217, 91, 140, .15));
    padding: 25px;
}

.service-content {
    position: absolute;
    left: 25px;
    right: 25px;
    bottom: 25px;
    transition: .4s;
}

.service-box:hover .service-content {
    transform: translateY(0);
}

.service-icon-box {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #fff;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 15px;
}

.service-content h4 {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 0;
    min-height: 60px;
    /* Same height for all titles */
    display: flex;
    align-items: flex-end;
}

.service-content p {
    color: #fff;
    margin-top: 15px;
    line-height: 26px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: .4s;
}

.service-box:hover .service-content p {
    opacity: 1;
    max-height: 120px;
}

.service-box:hover .service-content {
    bottom: 35px;
}

.service-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .15);
    transition: .4s;
}

.service-box:hover::before {
    background: rgba(0, 0, 0, .35);
}

@media(max-width:991px) {

    .service-box {
        height: 330px;
    }

    .service-content {
        transform: translateY(0);
    }

    .service-content p {
        opacity: 1;
    }

}

@media(max-width:576px) {

    .service-box {
        height: 300px;
    }

    .service-content {
        padding-bottom: 5px;
    }

    .service-content h4 {
        font-size: 20px;
    }

    .service-content p {
        font-size: 14px;
        line-height: 24px;
    }

    .service-icon-box {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }

}

/*=====================================
Why Choose Us
======================================*/

.why-section {

    background: #ffffff;

}

.why-box {

    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    background: #fff;
    border-radius: 18px;
    transition: .4s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    height: 100%;

}

.why-box:hover {

    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(217, 91, 140, .15);

}

.why-icon {

    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #f4a5c2);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    flex-shrink: 0;

}

.why-box h5 {

    margin-bottom: 10px;
    font-size: 22px;
    color: var(--dark);

}

.why-box p {

    margin: 0;
    line-height: 28px;

}

.why-section img {

    border-radius: 25px;
}

@media(max-width:991px) {

    .why-section img {

        margin-top: 40px;

    }

}

@media(max-width:576px) {

    .why-box {

        padding: 20px;

    }

    .why-icon {

        width: 60px;
        height: 60px;
        font-size: 24px;

    }

    .why-box h5 {

        font-size: 18px;

    }

}

/*=====================================
Care Process
======================================*/

.process-section {
    background: #fff7fb;
}

.process-card {

    position: relative;
    background: #fff;
    padding: 40px 25px;
    text-align: center;
    border-radius: 20px;
    overflow: hidden;
    transition: .4s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

}

.process-card:hover {

    transform: translateY(-10px);

}

.process-number {

    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 60px;
    font-weight: 700;
    color: rgba(217, 91, 140, .08);

}

.process-icon {

    width: 90px;
    height: 90px;
    margin: auto;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #f5a6c3);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 36px;
    margin-bottom: 25px;

}

.process-card h4 {

    margin-bottom: 15px;

}

.process-card p {

    margin-bottom: 0;

}

.process-card:hover .process-icon {

    background: linear-gradient(135deg, var(--secondary), #e7c56c);
    transform: rotate(360deg);
    transition: .7s;

}

@media(max-width:767px) {

    .process-card {

        padding: 35px 20px;

    }

    .process-number {

        font-size: 45px;

    }

    .process-icon {

        width: 75px;
        height: 75px;
        font-size: 30px;

    }

}

/*=====================================
Doctor Section
======================================*/

.doctor-section {

    background: #ffffff;

}

.doctor-image {

    position: relative;

}

.doctor-image img {

    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .1);

}

.experience-box {

    position: absolute;
    bottom: -5px;
    right: 0px;
    background: linear-gradient(135deg, var(--primary), #f59dbd);
    color: #fff;
    padding: 25px;
    border-radius: 20px;
    width: 180px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, .15);

}

.experience-box h2 {

    color: #fff;
    font-size: 42px;
    margin-bottom: 5px;

}

.experience-box p {

    color: #fff;
    margin: 0;
    line-height: 24px;

}

.doctor-designation {

    color: var(--primary);
    margin-bottom: 25px;
    font-weight: 600;

}

.doctor-feature {

    background: #fff7fb;
    border-left: 5px solid var(--primary);
    padding: 15px 18px;
    border-radius: 10px;
    font-weight: 500;
    transition: .4s;

}

.doctor-feature i {

    color: var(--primary);
    margin-right: 10px;
    font-size: 18px;

}

.doctor-feature:hover {

    background: var(--primary);
    color: #fff;

}

.doctor-feature:hover i {

    color: #fff;

}

@media(max-width:991px) {

    .experience-box {

        right: 20px;
        bottom: 20px;

    }

    .doctor-image {

        margin-bottom: 50px;

    }

}

@media(max-width:576px) {

    .experience-box {

        width: 140px;
        padding: 15px;

    }

    .experience-box h2 {

        font-size: 32px;

    }

}

/*=====================================
Our Facilities
======================================*/

.facility-section {

    background: #ffffff;

}

.facility-card {

    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 300px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);

}

.facility-card img {

    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s;

}

.facility-card:hover img {

    transform: scale(1.1);

}

.facility-overlay {

    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 30px;
    background: linear-gradient(to top, rgb(217 91 140 / 8%), rgba(217, 91, 140, .10));
    transition: .4s;

}

.facility-overlay h4 {

    color: #fff;
    margin: 0;
    font-size: 24px;
    transform: translateY(20px);
    transition: .4s;

}

.facility-card:hover .facility-overlay h4 {

    transform: translateY(0);

}

@media(max-width:991px) {

    .facility-card {

        height: 260px;

    }

}

@media(max-width:576px) {

    .facility-card {

        height: 230px;

    }

    .facility-overlay h4 {

        font-size: 20px;

    }

}

/*=====================================
Testimonial Slider
======================================*/

.testimonial-section {
    background: #fff7fb;
}

.testimonial-card {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
    height: 100%;
    transition: .4s;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.quote-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.stars {
    color: #ffc107;
    font-size: 20px;
    margin: 20px 0;
}

.patient-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.patient-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.carousel-control-prev,
.carousel-control-next {
    width: 55px;
    height: 55px;
    background: var(--primary);
    border-radius: 50%;
    top: 45%;
}

.carousel-control-prev {
    left: -70px;
}

.carousel-control-next {
    right: -70px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
}

@media(max-width:991px) {

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }

    .testimonial-card {
        margin-bottom: 20px;
    }

}

/*=====================================
FAQ Section
======================================*/

.faq-section {

    background: #ffffff;

}

.accordion-item {

    border: none;
    border-radius: 15px !important;
    margin-bottom: 18px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);

}

.accordion-button {

    font-size: 18px;
    font-weight: 600;
    padding: 22px 25px;
    color: var(--dark);
    background: #fff;
    box-shadow: none;

}

.accordion-button:not(.collapsed) {

    background: var(--primary);
    color: #fff;

}

.accordion-button:focus {

    box-shadow: none;

}

.accordion-body {

    padding: 20px 25px;
    line-height: 30px;

}

.accordion-button::after {

    filter: brightness(0);

}

.accordion-button:not(.collapsed)::after {

    filter: brightness(0) invert(1);

}

.faq-section img {

    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .1);

}

@media(max-width:991px) {

    .faq-section img {

        margin-bottom: 35px;

    }

}

/*=====================================
Appointment CTA
======================================*/

.appointment-section {

    position: relative;
    padding: 120px 0;
    background: url('../images/appointment-bg.jpg') center center/cover no-repeat;
    overflow: hidden;

}

.appointment-overlay {

    position: absolute;
    inset: 0;
    background: linear-gradient(rgb(217 91 140 / 29%), rgba(75, 35, 55, .82));

}

.appointment-section .container {

    position: relative;
    z-index: 2;

}

.appointment-tag {

    display: inline-block;
    background: rgba(255, 255, 255, .2);
    color: #fff;
    padding: 10px 28px;
    border-radius: 40px;
    margin-bottom: 25px;
    backdrop-filter: blur(8px);
    font-weight: 600;

}

.appointment-section h2 {

    color: #fff;
    font-size: 52px;
    margin-bottom: 25px;
    line-height: 1.2;

}

.appointment-section p {

    color: #fff;
    font-size: 19px;
    line-height: 34px;
    margin-bottom: 40px;

}

.appointment-buttons {

    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;

}

.appointment-btn {

    background: #fff;
    color: var(--primary);
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    transition: .4s;

}

.appointment-btn:hover {

    background: var(--secondary);
    color: #fff;

}

.appointment-btn-outline {

    border: 2px solid #fff;
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    transition: .4s;

}

.appointment-btn-outline:hover {

    background: #fff;
    color: var(--primary);

}

@media(max-width:768px) {

    .appointment-section {

        padding: 80px 0;

    }

    .appointment-section h2 {

        font-size: 34px;

    }

    .appointment-section p {

        font-size: 16px;
        line-height: 28px;

    }

    .appointment-btn,
    .appointment-btn-outline {

        width: 100%;

    }

}

/*=====================================
Contact Section
======================================*/

.contact-section {

    background: #fff7fb;

}

.contact-info {

    display: flex;
    flex-direction: column;
    gap: 25px;

}

.info-box {

    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #fff;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

}

.info-icon {

    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--primary), #f6a4c3);
    border-radius: 50%;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    flex-shrink: 0;

}

.info-box h5 {

    margin-bottom: 8px;

}

.contact-form {

    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);

}

.contact-form .form-control {

    height: 55px;
    border-radius: 12px;
    border: 1px solid #ddd;

}

.contact-form textarea.form-control {

    height: 160px;
    resize: none;

}

.contact-form .form-control:focus {

    border-color: var(--primary);
    box-shadow: none;

}

.map-section iframe {

    display: block;

}

@media(max-width:768px) {

    .contact-form {

        padding: 25px;

    }

    .info-box {

        padding: 20px;

    }

}

/*=====================================
Cards
=====================================*/

.service-card,
.about-card,
.why-card {

    background: #fff;
    border-radius: 20px;
    padding: 35px;
    transition: .4s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);

}

.service-card:hover,
.about-card:hover,
.why-card:hover {

    transform: translateY(-10px);

}

.service-icon {

    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: var(--light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 20px;
    transition: .4s;

}

.service-card:hover .service-icon {

    background: var(--primary);
    color: #fff;

}

/*=====================================
Buttons
=====================================*/

.primary-btn {
    display: table;
    margin: 30px auto 0;
    background: var(--primary);
    color: #fff;
    padding: 15px 35px;
    border-radius: 40px;
    transition: .4s;
}

.primary-btn:hover {

    background: var(--secondary);
    color: #fff;

}


/*=====================================
Counter
=====================================*/

.counter-section {

    background: linear-gradient(45deg, var(--primary), #f49ab9);
    color: #fff;

}

.counter-box {

    text-align: center;
    padding: 40px 20px;

}

.counter-box h2 {

    color: #fff;
    font-size: 50px;

}

.counter-box p {

    color: #fff;

}

/*=====================================
Gallery
=====================================*/

.gallery-item {

    overflow: hidden;
    border-radius: 20px;

}

.gallery-item img {

    transition: .5s;

}

.gallery-item:hover img {

    transform: scale(1.1);

}

/*=====================================
Contact
=====================================*/

.contact-box {

    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);

}

.form-control {

    height: 55px;
    border-radius: 10px;
    border: 1px solid #ddd;

}

textarea.form-control {

    height: 150px;

}

.form-control:focus {

    box-shadow: none;
    border-color: var(--primary);

}

/*=====================================
Footer
======================================*/

.footer-section {
    background: #2d2d2d;
    color: #ddd;
    padding: 80px 0 20px;
}

.footer-logo {
    width: 180px;
    background: #fff;
    padding: 10px;
    border-radius: 12px;
}

.footer-section h4 {
    color: #fff;
    margin-bottom: 25px;
    position: relative;
    font-size: 24px;
}

.footer-section h4::after {
    content: '';
    width: 45px;
    height: 3px;
    background: var(--primary);
    display: block;
    margin-top: 10px;
}

.footer-section p {
    color: #bbb;
    line-height: 30px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 15px;
    color: #bbb;
    transition: .3s;
}

.footer-section ul li:hover {
    color: #fff;
}

.footer-section ul li a {
    color: #bbb;
    transition: .3s;
    text-decoration: none;
}

.footer-section ul li a:hover {
    color: var(--primary);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact i {
    color: var(--primary);
    font-size: 18px;
    margin-top: 3px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #444;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .4s;
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

.footer-section hr {
    border-color: rgba(255, 255, 255, .1);
    margin: 50px 0 25px;
}

.footer-bottom p {
    margin: 0;
    color: #bbb;
}

/* --- FIXED FOOTER DROPDOWN & SUBMENU ALIGNMENT --- */

.footer-dropdown {
    position: relative;
    display: block;
    /* Matha list items madhiri block aah maatha */
}

.footer-dropdown>a {
    color: #bbb;
    /* Matha links kooda color match aaga */
    display: block;
    padding: 0;
}

.footer-dropdown:hover>a {
    color: var(--primary);
}

.footer-submenu {
    list-style: none;
    position: absolute;
    bottom: 33px;
    left: -20%;
    /* margin-left: 10px; */
    margin-top: 10px;

    background: #ffffff;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.25);
    /* padding: 10px 0; */
    padding-left: 15px;
    width: 280px;
    display: none;
    z-index: 999;
    border-radius: 8px;
}

/* Hover pannum pothu display aaganum */
.footer-dropdown:hover .footer-submenu {
    display: block;
}

.footer-submenu li {
    margin-bottom: 0 !important;
}

.footer-submenu li a {
    color: #fffdfd !important;
    padding: 8px 20px;
    display: block;
    font-size: 14px;
    transition: background 0.2s ease;
}

.footer-submenu li a:hover {
    background-color: #f8f9fa;
    color: var(--primary) !important;
    padding-left: 25px;
    /* Smooth hover slide effect */
}

/* ------------------------------------------------ */

.tech {
    color: var(--primary);
    font-weight: 600;
}

.tech:hover {
    color: var(--secondary);
}

@media(min-width:992px) {

    .footer-submenu {
        position: absolute;
        bottom: 100%;
        left: 0;
        width: 280px;
        background: #333;
        border-radius: 10px;
        padding: 15px;
        display: none;
        z-index: 999;
    }

    .footer-dropdown:hover .footer-submenu {
        display: block;
    }

}

@media(max-width:991px) {
    .footer-section {
        text-align: center;
    }

    .footer-contact li {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    /* Mobile-la dropdown side-la pogamal, keezha varugira mathiri (optional) */
    .footer-submenu {
        position: static;
        /* Important */
        width: 100%;
        background: transparent;
        padding: 10px 0 0 15px;
        margin-top: 10px;
        border-left: 2px solid #d95b8c;
    }

    .footer-submenu li {
        margin-bottom: 8px;
    }
}

@media(max-width:576px) {
    .footer-logo {
        width: 150px;
    }

    .footer-section {
        padding: 60px 0 20px;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom .text-md-end {
        margin-top: 10px;
    }
}

/*=====================================
Floating Icons
======================================*/

.floating-left,
.floating-right {

    position: fixed;
    top: 85%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;

}

.floating-left {

    left: 18px;

}

.floating-right {

    right: 18px;

}

.floating-icon {

    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .18);
    transition: .35s;

}

.floating-icon:hover {

    transform: translateY(-6px) scale(1.08);

}

/* WhatsApp */

.whatsapp {

    background: #25D366;

}

/* Instagram */

.instagram {

    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);

}

/* Call */

.call {

    background: var(--primary);

}

/* Google Review */

.google {

    width: 58px;
    height: 58px;
    background: #fff;
    border-radius: 50%;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .18);

}

.google img {

    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;

}

/* Mobile */

@media(max-width:768px) {

    .floating-left {

        left: 10px;

    }

    .floating-right {

        right: 10px;

    }

    .floating-icon {

        width: 50px;
        height: 50px;
        font-size: 24px;

    }

    .google img {

        width: 28px;
        height: 28px;

    }

}

/*=====================================
Responsive
=====================================*/

@media(max-width:991px) {

    .hero {

        padding-top: 150px;
        text-align: center;

    }

    .hero h1 {

        font-size: 42px;
        line-height: 55px;

    }

    .hero-image {

        margin-top: 50px;

    }

    .main-title {

        font-size: 35px;

    }

    .navbar-brand img {

        height: 60px;

    }


}

@media(max-width:576px) {

    .hero h1 {

        font-size: 34px;
        line-height: 45px;

    }

    .main-title {

        font-size: 30px;

    }

    .section-padding {

        padding: 70px 0;

    }

    .book-btn {

        display: none;

    }



}

/*==========================
ABOUT PAGE
===========================*/

.page-banner {

    position: relative;
    background: url('../images/about-banner.jpg') center/cover;
    padding: 170px 0 120px;

}

.banner-overlay {

    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .55);

}

.banner-content {

    position: relative;
    z-index: 2;
    color: #fff;

}

.banner-content h1 {

    color: #fff;
    font-size: 60px;
    margin-bottom: 15px;

}

.banner-content p {

    color: #fff;
    font-size: 18px;

}

.banner-content span {

    color: var(--secondary);

}

.about-doctor {

    background: #fff;

}

.about-doctor img {

    border-radius: 25px;

}

.highlight-box {

    background: #fff7fb;
    border-radius: 18px;
    text-align: center;
    padding: 30px;
    transition: .4s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

}

.highlight-box:hover {

    transform: translateY(-8px);
    background: var(--primary);

}

.highlight-box:hover h3,
.highlight-box:hover p {

    color: #fff;

}

.highlight-box h3 {

    color: var(--primary);
    font-size: 42px;

}

.highlight-box p {

    margin: 0;

}

@media(max-width:768px) {

    .banner-content h1 {

        font-size: 40px;

    }

    .page-banner {

        padding: 140px 0 80px;

    }

}

/*=====================================
About Hospital
=====================================*/

.about-hospital {

    background: #fff;

}

.about-hospital-image {

    position: relative;

}

.about-hospital-image img {

    border-radius: 25px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .12);

}

.experience-card {

    position: absolute;
    right: -20px;
    bottom: 30px;
    width: 180px;
    background: linear-gradient(135deg, var(--primary), #f48fb1);
    color: #fff;
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(217, 91, 140, .35);

}

.experience-card h2 {

    color: #fff;
    font-size: 48px;
    margin-bottom: 5px;

}

.experience-card span {

    font-size: 16px;
    font-weight: 500;

}

.about-point {

    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 18px;
    background: #fff7fb;
    border-radius: 12px;
    transition: .3s;

}

.about-point:hover {

    background: var(--primary);
    color: #fff;

}

.about-point i {

    color: var(--primary);
    font-size: 22px;

}

.about-point:hover i {

    color: #fff;

}

@media(max-width:991px) {

    .experience-card {

        position: relative;
        right: 0;
        bottom: 0;
        margin: 25px auto 0;

    }

}

/*=====================================
Vision Section
=====================================*/

.vision-section {

    background: #fff7fb;

}

.vision-box {

    background: #fff;
    padding: 40px 35px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
    transition: .4s;
    height: 100%;
    border-top: 5px solid var(--primary);

}

.vision-box:hover {

    transform: translateY(-10px);

}

.vision-icon {

    width: 90px;
    height: 90px;
    margin: auto;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #f49ab9);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 36px;
    margin-bottom: 25px;
    transition: .5s;

}

.vision-box:hover .vision-icon {

    transform: rotate(360deg);

}

.vision-box h3 {

    margin-bottom: 20px;

}

.vision-image {

    position: relative;

}

.vision-image img {

    width: 100%;
    max-width: 340px;
    border-radius: 50%;
    border: 10px solid #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .15);

}

@media(max-width:991px) {

    .vision-image {

        margin: 20px 0;

    }

}

/*=====================================
Why Choose Us
=====================================*/

.why-choose {

    background: #fff7fb;

}

.choose-card {

    position: relative;
    background: #fff;
    padding: 45px 30px;
    border-radius: 25px;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
    transition: .4s;
    height: 100%;

}

.choose-card:hover {

    transform: translateY(-12px);
    background: linear-gradient(135deg, #d95b8c, #f48fb1);

}

.choose-number {

    position: absolute;
    top: 18px;
    right: 20px;
    font-size: 60px;
    font-weight: 700;
    color: rgba(217, 91, 140, .08);

}

.choose-card:hover .choose-number {

    color: rgba(255, 255, 255, .18);

}

.choose-icon {

    width: 85px;
    height: 85px;
    border-radius: 50%;
    margin: auto;
    background: #fff7fb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #d95b8c;
    margin-bottom: 25px;
    transition: .4s;

}

.choose-card:hover .choose-icon {

    background: #fff;
    color: #d95b8c;
    transform: rotateY(360deg);

}

.choose-card h4 {

    margin-bottom: 15px;
    transition: .4s;

}

.choose-card p {

    margin: 0;
    transition: .4s;

}

.choose-card:hover h4,
.choose-card:hover p {

    color: #fff;

}

/*====================================
Consultation CTA
====================================*/

.consultation-cta {
    position: relative;
    padding: 120px 0;
    background: url('../images/cta-bg.jpg') center center/cover no-repeat;
    overflow: hidden;
}

.consultation-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgb(217 91 140 / 29%), rgb(80 35 65 / 28%));
}

.consultation-cta .container {
    position: relative;
    z-index: 2;
}

.cta-subtitle {
    display: inline-block;
    padding: 10px 28px;
    background: rgba(255, 255, 255, .18);
    backdrop-filter: blur(10px);
    color: #fff;
    border-radius: 40px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.consultation-cta h2 {
    color: #fff;
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
}

.consultation-cta p {
    color: #fff;
    font-size: 18px;
    line-height: 32px;
    max-width: 700px;
    margin: auto;
}

.cta-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 38px;
    border-radius: 50px;
    background: #fff;
    color: var(--primary);
    font-weight: 600;
    transition: .4s;
}

.cta-btn:hover {
    background: var(--secondary);
    color: #fff;
    transform: translateY(-5px);
}

.cta-call {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.cta-call:hover {
    background: #fff;
    color: var(--primary);
}

@media(max-width:991px) {

    .consultation-cta {
        padding: 90px 0;
    }

    .consultation-cta h2 {
        font-size: 38px;
    }

}

@media(max-width:576px) {

    .consultation-cta {
        padding: 70px 20px;
    }

    .consultation-cta h2 {
        font-size: 30px;
    }

    .consultation-cta p {
        font-size: 16px;
        line-height: 28px;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
    }

}

/*=====================================
FAQ Section
=====================================*/

.faq-section {

    background: #fff7fb;

}

.custom-faq .accordion-item {

    border: none;
    margin-bottom: 18px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

}

.custom-faq .accordion-button {

    background: #fff;
    color: #333;
    font-weight: 600;
    font-size: 17px;
    padding: 22px 25px;
    box-shadow: none;

}

.custom-faq .accordion-button:not(.collapsed) {

    background: linear-gradient(135deg, #d95b8c, #f48fb1);
    color: #fff;

}

.custom-faq .accordion-button:focus {

    box-shadow: none;

}

.custom-faq .accordion-body {

    padding: 22px 25px;
    line-height: 30px;
    background: #fff;

}

.custom-faq .accordion-button::after {

    filter: brightness(0);

}

.custom-faq .accordion-button:not(.collapsed)::after {

    filter: brightness(0) invert(1);

}

/*=====================================
Pregnancy Banner
======================================*/

.pregnancy-banner {
    position: relative;
    background: url('../images/about-banner.jpg') center center/cover no-repeat;
    min-height: 480px;
    display: flex;
    align-items: center;
}

.pregnancy-banner .banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .55);
}

.banner-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.banner-subtitle {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 40px;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(8px);
    color: #fff;
    margin-bottom: 25px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
}

.banner-content h1 {
    color: #fff;
    font-size: 62px;
    font-weight: 700;
    margin-bottom: 20px;
}

.banner-content p {
    color: #fff;
    max-width: 720px;
    margin: auto;
    font-size: 19px;
    line-height: 34px;
}

.banner-breadcrumb {
    margin-top: 30px;
    font-size: 17px;
}

.banner-breadcrumb a {
    color: #fff;
    text-decoration: none;
    transition: .3s;
}

.banner-breadcrumb a:hover {
    color: #ffd36a;
}

.banner-breadcrumb span {
    margin: 0 10px;
    color: #ffd36a;
}

@media(max-width:991px) {

    .banner-content h1 {
        font-size: 44px;
    }

    .pregnancy-banner {
        min-height: 380px;
    }

}

@media(max-width:576px) {

    .banner-content h1 {
        font-size: 34px;
    }

    .banner-content p {
        font-size: 16px;
        line-height: 28px;
    }

    .pregnancy-banner {
        min-height: 320px;
    }

}

/*=====================================
Pregnancy About
======================================*/

.pregnancy-about {
    background: #fff;
}

.pregnancy-image {
    height: 650px;
    /* Increase image height */
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.pregnancy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Fill the container */
    display: block;
}

.pregnancy-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: #fff;
    padding: 20px 30px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
    text-align: center;
}

.pregnancy-badge h3 {
    color: var(--primary);
    font-size: 42px;
    margin-bottom: 5px;
}

.pregnancy-badge span {
    color: #666;
    font-weight: 500;
}

.pregnancy-feature {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 20px;
    border-radius: 15px;
    background: #fff7fb;
    transition: .4s;
    height: 100%;
}

.pregnancy-feature:hover {
    background: var(--primary);
    transform: translateY(-8px);
}

.pregnancy-feature i {
    font-size: 34px;
    color: var(--primary);
    transition: .4s;
}

.pregnancy-feature h5 {
    margin-bottom: 8px;
    font-size: 20px;
}

.pregnancy-feature p {
    margin: 0;
    font-size: 15px;
    line-height: 24px;
}

.pregnancy-feature:hover i,
.pregnancy-feature:hover h5,
.pregnancy-feature:hover p {
    color: #fff;
}

@media(max-width:991px) {

    .pregnancy-badge {
        right: 20px;
        bottom: 20px;
    }

    .pregnancy-image {
        height: 450px;
    }

}

@media(max-width:576px) {

    .pregnancy-badge {
        position: relative;
        right: 0;
        bottom: 0;
        margin-top: 20px;
    }

    .pregnancy-image {
        height: 320px;
    }

}

/*=====================================
Pregnancy Timeline
======================================*/


.pregnancy-journey {
    background: #fff7fb;
}

.journey-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    transition: .4s;
    height: 100%;
}

.journey-card:hover {
    transform: translateY(-10px);
}

.journey-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.journey-number {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 55px;
    height: 55px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    font-weight: 700;
}

.journey-content {
    padding: 25px;
    text-align: center;
}

.journey-content h4 {
    margin-bottom: 8px;
}

.journey-content small {
    color: var(--primary);
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.journey-content p {
    margin: 0;
    color: #666;
    line-height: 28px;
}

@media(max-width:991px) {

    .journey-card img {
        height: 200px;
    }

}

/*=====================================
Pregnancy Benefits
======================================*/

.pregnancy-benefits {
    background: #fff;
}

.benefit-card {

    background: #fff7fb;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    height: 100%;
    transition: .4s;
    border: 1px solid #f6dce7;

}

.benefit-card:hover {

    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(217, 91, 140, .15);

}

.benefit-icon {

    width: 85px;
    height: 85px;
    margin: auto;
    border-radius: 50%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    font-size: 38px;
    box-shadow: 0 10px 25px rgba(217, 91, 140, .15);
    margin-bottom: 25px;

}

.benefit-card h4 {

    margin-bottom: 15px;

}

.benefit-card p {

    margin: 0;
    line-height: 28px;

}

.benefit-card:hover .benefit-icon {

    background: var(--primary);
    color: #fff;
    transition: .4s;

}

@media(max-width:768px) {

    .benefit-card {

        padding: 30px 20px;

    }

}

/*=====================================
Warning Section
======================================*/

.warning-section {
    background: #fff;
}

.warning-item {

    display: flex;
    gap: 20px;
    padding: 25px;
    background: #fff7fb;
    border-radius: 18px;
    transition: .4s;
    height: 100%;
    border-left: 5px solid var(--primary);

}

.warning-item:hover {

    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);

}

.warning-item i {

    font-size: 34px;
    color: #ff6b6b;
    flex-shrink: 0;

}

.warning-item h5 {

    margin-bottom: 10px;

}

.warning-item p {

    margin: 0;
    line-height: 28px;
}

/*=====================================
Checkup Process
======================================*/

.checkup-process {
    background: #fff7fb;
}

.process-card {
    background: #fff;
    padding: 35px 30px;
    border-radius: 20px;
    text-align: center;
    height: 100%;
    transition: .4s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
}

.process-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: rgba(217, 91, 140, .12);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 34px;
    transition: .4s;
}

.process-card:hover .process-icon {
    background: var(--primary);
    color: #fff;
    transform: rotateY(180deg);
}

.process-card h5 {
    margin-bottom: 15px;
    font-weight: 600;
}

.process-card p {
    margin: 0;
    line-height: 28px;
    color: #666;
}

/*=====================================
Appointment Banner
======================================*/

.appointment-banner {

    padding: 0 0 80px;

}

.appointment-content {

    background: linear-gradient(135deg, #974b68f7, #ffa6c8eb);
    border-radius: 25px;
    padding: 60px;
    color: #fff;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .15);

}

.appointment-content h2 {

    color: #fff;
    font-size: 42px;
    margin: 15px 0;

}

.appointment-content p {

    color: #fff;
    line-height: 30px;

}

.appointment-btn {

    display: block;
    text-align: center;
    background: #fff;
    color: var(--primary);
    padding: 15px;
    border-radius: 50px;
    margin-bottom: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: .4s;

}

.call-btn {

    background: #222;
    color: #fff;

}

.appointment-btn:hover {

    transform: translateY(-4px);

}

/*=====================================
FAQ
======================================*/

.pregnancy-faq {

    background: #fff;

}

.pregnancy-faq .accordion-item {

    border: none;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);

}

.pregnancy-faq .accordion-button {

    padding: 22px;
    font-weight: 600;
    font-size: 17px;

}

.pregnancy-faq .accordion-button:not(.collapsed) {

    background: var(--primary);
    color: #fff;

}

.pregnancy-faq .accordion-button:focus {

    box-shadow: none;

}

.pregnancy-faq .accordion-body {

    padding: 25px;
    line-height: 30px;

}

@media(max-width:991px) {

    .appointment-content {

        padding: 40px 30px;
        text-align: center;

    }

    .appointment-content h2 {

        font-size: 32px;

    }

}

/* Infertility Evaluation & IUI Guidance */
/*=====================================
About Infertility 
======================================*/

.infertility-about {
    background: #fff;
}

.infertility-image {
    position: relative;
}

.infertility-image img {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .12);
}

.experience-box {
    position: absolute;
    bottom: 25px;
    right: 25px;
    background: var(--primary);
    color: #fff;
    padding: 22px 28px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .15);
}

.experience-box h3 {
    color: #fff;
    margin: 0;
    font-size: 28px;
}

.experience-box span {
    font-size: 15px;
}

.fertility-feature {

    display: flex;
    gap: 15px;
    align-items: flex-start;
    background: #fff7fb;
    padding: 18px;
    border-radius: 15px;
    transition: .35s;
    height: 100%;

}

.fertility-feature:hover {

    background: #ffeaf2;
    transform: translateY(-5px);

}

.fertility-feature i {

    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;

}

.fertility-feature h5 {
    margin-bottom: 6px;
    font-size: 18px;
}

.fertility-feature p {
    margin: 0;
    color: #666;
    font-size: 15px;
    line-height: 26px;
}

@media(max-width:991px) {

    .experience-box {

        position: static;
        width: 220px;
        margin: 20px auto 0;

    }

}

.iui-benefits-section {
    background: #fff7fb;
}

/* contact page */
.contact-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    transition: .35s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(232, 93, 142, .18);
}

.contact-icon {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: #fde8f1;
    color: #e85d8e;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.contact-icon i {
    font-size: 30px;
}

.contact-card h4 {
    margin-bottom: 18px;
    font-size: 30px;
    color: #222;
}

.contact-card p,
.contact-card a {
    color: #666;
    line-height: 1.9;
    text-decoration: none;
    font-size: 17px;
    margin: 0;
}

.contact-card a:hover {
    color: #e85d8e;
}

.appointment-form {
    background: #fff;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, .08);
}

.form-control,
.form-select {
    height: 55px;
    border-radius: 12px;
}

textarea.form-control {
    height: auto;
}

.contact-hero {
    background-image:
        linear-gradient(rgba(0, 0, 0, .55), rgba(0, 0, 0, .55)),
        url("../images/about-banner.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    min-height: 550px;

    display: flex;
    align-items: center;

    padding: 180px 0 120px;
}

.emergency-contact {
    background: #d94d87;
    color: #fff;
    padding: 60px 0;
}

@media(max-width:991px) {
    .contact-card {
        margin-bottom: 20px;
    }
}

/* gallery page */
.luxury-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.gallery-large {
    height: 550px;
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 25px;
}

.gallery-small {
    height: 265px;
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.gallery-bottom {
    height: 260px;
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(232, 93, 142, .45);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: .4s;
}

.gallery-overlay i {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #fff;
    color: #e85d8e;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    transform: scale(.6);
    transition: .4s;
}

.gallery-large:hover img,
.gallery-small:hover img,
.gallery-bottom:hover img {
    transform: scale(1.08);
}

.gallery-large:hover .gallery-overlay,
.gallery-small:hover .gallery-overlay,
.gallery-bottom:hover .gallery-overlay {
    opacity: 1;
}

.gallery-large:hover .gallery-overlay i,
.gallery-small:hover .gallery-overlay i,
.gallery-bottom:hover .gallery-overlay i {
    transform: scale(1);
}

.gallery-large,
.gallery-small,
.gallery-bottom {
    box-shadow: 0 15px 40px rgba(0, 0, 0, .12);
}

@media(max-width:991px) {

    .gallery-large {
        height: 350px;
    }

    .gallery-small,
    .gallery-bottom {
        height: 220px;
    }

}

/* ---------- Mobile Navbar ---------- */

@media (max-width:991.98px) {

    .custom-navbar {

        padding: 8px 0;
        min-height: 80px;

    }

    .custom-navbar .container {

        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;

    }

    /* Logo */

    .navbar-brand {

        margin: 0;
        z-index: 10;

    }

    .navbar-brand img {

        width: 65px;
        height: 65px;
        object-fit: contain;

    }

    /* Website Name */

    .mobile-site-title {

        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        line-height: 1.1;
        pointer-events: none;

    }

    .mobile-site-title span {

        display: block;
        font-size: 19px;
        font-weight: 700;
        color: #222;
        font-family: 'Playfair Display', serif;

    }

    .mobile-site-title small {

        display: block;
        font-size: 12px;
        font-weight: 500;
        color: #e85d8e;
        letter-spacing: 1px;
        text-transform: uppercase;

    }

    /* Toggle */

    .navbar-toggler {

        width: 50px;
        height: 50px;
        padding: 0;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
        margin-right: 10px;
    }

    .navbar-toggler:focus {

        box-shadow: none;

    }
      /* Default */
    .mobile-site-title{
        display:block;
    }

    /* Menu open ஆனதும் hide */
    .navbar-collapse.show ~ .mobile-site-title{
        display:none !important;
    }

}

.pregnancy-benefits{
    padding:80px 0;
    background:#fff8fb;
}

.pregnancy-benefits .container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/*.container{*/
/*    margin-bottom:50px;*/
/*}*/

.container p{
    color:#666;
    font-size:16px;
    line-height:30px;
}

.benefits-list{
    list-style:none;
    padding:0;
    margin:0;
}

.benefits-list li{
    position:relative;
    padding:18px 20px 18px 60px;
    font-size:17px;
    line-height:28px;
    color:#555;
   
}

.benefits-list li::before{
    content:"✔";
    position:absolute;
    left:18px;
    top:18px;
    width:28px;
    height:28px;
    background:#e95c9b;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
    font-weight:bold;
}

.benefits-list strong{
    color:#222;
}

@media(max-width:768px){

.section-title h2{
    font-size:30px;
}

.benefit-card{
    padding:25px;
}

.benefit-card h3{
    font-size:24px;
}

.benefits-list li{
    padding:16px 15px 16px 55px;
    font-size:16px;
}

}
