﻿@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Oswald:wght@200..700&family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Sansita:ital,wght@0,400;0,700;0,800;0,900;1,400;1,700;1,800;1,900&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "DM Sans", sans-serif;
}
body,html{
    width:100%;
    overflow-x:hidden !important;
}
a{
    text-decoration:none;
}
.header {
    position: relative;
    transition: all 0.3s ease;
    background: white;
}

.topHeader {
    background: #6a2962;
    padding: 10px 0px;
}

.fixedHeader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000; /* Keep it on top */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Optional: add shadow for better visibility */
    width: 100%;
    background: white;
}

.topHeader span {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    background: #193139;
}

.topHeader p, .topHeader a {
    color: white;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.45em;
    text-decoration: none;
    display: inline-block;
    margin-left: 5px;
}

.topHeader i {
    color: white;
    font-size: 20px;
}

.topSocialLinks {
    display: flex;
    gap: 10px;
    justify-content: right;
}

    .topSocialLinks span {
        height: 44px;
        width: 44px;
        border-radius: 10px;
    }

    .topSocialLinks i {
        font-size: 22px;
    }


.ApplyBtn {
    background-color: #45AF36;
    font-size: 17px;
    font-weight: 600;
    padding: 16px 40px 16px 40px;
    border-radius: 3px;
    color: #fff;
    display: inline-flex !important;
    fill: #fff;
    border: none;
    box-shadow: none;
    text-decoration: none;
    line-height: 1;
    text-align: center;
    transition: all .3s;
    justify-content: center;
    align-items: center;
}

.hero-section {
    min-height: 384px;
    height: 100%;
    background-image: url("bc741e22-b4a2-4e91-bbc4-1bdf251de029.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 100px 0 0 50px;
}

    /* Optional soft overlay to match tone */
    .hero-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)), url('../Images/HeroBackground.jpg');
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }

.hero-text {
    position: relative;
    z-index: 9;
    margin-top: 120px !important;
}

    .hero-text h1 {
        font-size: 60px;
        font-weight: 500;
        line-height: 75px;
        font-family: "Sansita", sans-serif;
    }



.highlight {
    color: #35c9c5; /* teal accent */
    font-family: "Sansita", sans-serif;
}


.about-intro-section {
    background-image: linear-gradient(to right, rgb(0 0 0 / 4%), rgba(0, 0, 0, 0.2)), url(../Images/AbouBackground.jpg);
    background-size: cover;
    background-position: 470px -182px;
    background-attachment: fixed;
}

/* LEFT PANEL */
.about-left {
    background-image: linear-gradient(90deg, #eef6fb, transparent);
    position: relative;
    padding: 70px 60px;
}

    /* Diagonal edge */
    .about-left::after {
        content: "";
        position: absolute;
        top: 0;
        right: -10px;
        width: 100%;
        height: 100%;
        background: #eef6fb;
        transform: skewX(-10deg);
        z-index: 1;
    }

.about-content {
    position: relative;
    z-index: 2;
    max-width: 520px;
}

    /* Typography */


    .about-content .intro {
        text-align: justify;
        font-family: "Montserrat", Sans-serif;
        font-size: 18px;
        font-weight: 500;
        text-transform: none;
        font-style: normal;
        text-decoration: none;
        line-height: 1.75em;
        letter-spacing: 0px;
        color: #333333;
    }

.about-heading {
    color: #000000;
    font-family: "Montserrat", Sans-serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 48px;
}

    .about-heading span {
        font-size: 38px;
        font-weight: 700;
        background-color: transparent;
        background-image: linear-gradient(180deg, #6a2962 71%, #193139 100%);
        color: #6a2962;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

/* Signature */
.doctor-signature {
    font-family: "Pacifico", cursive;
    font-size: 22px;
    color: #e53935;
}

.AppointmentBtn {
    background-color: #45AF36;
    font-size: 20px;
    font-weight: 600;
    padding: 15px 35px 15px 35px;
    border-radius: 3px;
    color: #fff;
    display: inline-flex !important;
    fill: #fff;
    border: none;
    box-shadow: none;
    text-decoration: none;
    line-height: 1;
    text-align: center;
    transition: all .3s;
    justify-content: center;
    align-items: center;
}

.service-heading {
    font-family: "Sansita", Sans-serif;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.2px;
    color: #6a2962;
}

.service-subHeading {
    font-family: "Montserrat", Sans-serif;
    font-size: 42px;
    font-weight: 500;
    text-transform: none;
    font-style: normal;
    text-decoration: none;
    line-height: 1.25em;
    letter-spacing: -1px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .about-left::after {
        display: none;
    }

    .about-left {
        padding: 40px 25px;
    }

    .about-right {
        min-height: 280px;
    }
}






/* Responsive tweaks */
@media (max-width: 768px) {
    .about-content{
        padding:10px;
    }
    .hero-text h1 {
        font-size: 44px;
        line-height: 49px;
        text-align: center;
        margin-top: 110px;
    }
    .hero-section {
        padding: 0px !important;
        position: relative;
        min-height: 446px;
    }
    .requestappoint {
        position: absolute;
        bottom: 0px;
        width: 100%;
    }

    .navbar-toggler {
        background: #193139 !important;
        padding: 6px !important;
    }
        .hero-text h3 {
        font-size: 1.2rem;
    }

    .topHeader a, .topHeader p {
        font-size: 15px;
    }

    .topSocialLinks i {
        font-size: 17px;
    }

    .topSocialLinks span {
        height: 40px;
        width: 40px;
        border-radius: 10px;
    }
    .navbar-brand img{
        max-width:200px !important;
    }
}


.why-choose {
    background: #e9fbfb;
    padding: 60px 0;
}

.image-box {
    background: #fff;
}

    .image-box img {
        width: 100%;
        display: block;
    }

.image-caption {
    background: #4caf32;
    color: #fff;
    padding: 15px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

.content-box h6 {
    color: #6a1b9a;
    font-weight: 600;
    margin-bottom: 10px;
}

.content-box h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.content-box p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}

.service-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
}

    .service-item span {
        width: 22px;
        height: 22px;
        border: 1px solid #6a1b9a;
        color: #6a1b9a;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-right: 10px;
        font-weight: bold;
    }

.offers-section {
    padding: 40px 0;
}

.offer-box {
    position: relative;
    min-height: 320px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
    background-size: cover;
    background-position: center;
    margin: 3px;
}

    .offer-box::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(80, 110, 120, 0.75);
    }

.offer-content {
    position: relative;
    z-index: 2;
    max-width: 90%;
}

    .offer-content h4 {
        font-weight: 700;
        text-decoration: underline;
        margin-bottom: 20px;
    }

    .offer-content p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 25px;
    }

.offer-price {
    font-size: 22px;
    font-weight: 700;
    text-decoration: underline;
}

.offer-btn {
    background: #5cb85c;
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 4px;
    font-size: 16px;
}

    .offer-btn:hover {
        background: #4cae4c;
    }

.payment-section {
    background: #e3f3ff;
    padding: 70px 0;
    text-align: center;
}

    .payment-section h2 {
        font-size: 36px;
        font-weight: 600;
        color: #20343b;
        margin-bottom: 15px;
    }

        .payment-section h2 span {
            font-weight: 800;
            color: #000;
        }

/* Divider */
.divider {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}

    .divider::before {
        content: "•••";
        color: #57b947;
        margin-right: 10px;
        font-size: 20px;
    }

    .divider span {
        width: 280px;
        height: 4px;
        background: #57b947;
        border-radius: 2px;
        display: inline-block;
    }

/* Logo cards */
.payment-card {
    background: #fff;
    border-radius: 25px;
    /*height: 180px;*/
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 rgba(0,0,0,0);
}

    .payment-card img {
        max-width: 100%;
        max-height: auto;
        object-fit: contain;
    }

.footer-bottom {
    background: #6b2b63;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.footer-middle {
    border-left: 1px solid rgba(255,255,255,0.4);
    border-right: 1px solid rgba(255,255,255,0.4);
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: #fff;
    color: #6b2b63;
    border-radius: 50%;
    margin-left: 8px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
}

.text-purple {
    color: #6b2b63;
}

.service-card {
    position: relative;
    padding-bottom: 15px;
}

    .service-card img {
        border-radius: 4px;
    }

.icon-circle {
    width: 100px;
    height: 100px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -30px auto 10px;
    font-size: 28px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 9;
    position: relative;
}

.service-card h5 {
    margin-top: 10px;
    font-weight: 600;
}

.icon-circle img {
    width: 70px;
}

@media only screen and (max-width:768px)
{
    
}
.footer-links li {
    line-height: 35px;
}

.offcanvas .navbar-nav li {
    position: relative;
    margin: auto;
}

.offcanvas .navbar-nav li ul li{
    border-bottom: 1px solid #d5d5d5;
    line-height: 34px;
}
    .offcanvas .navbar-nav li ul li a {
        color: #5c5b5b;
    }
    .offcanvas .navbar-nav ul {
        list-style: none;
        margin: 0;
        padding: 10px 0 10px 15px;
        position: absolute;
        left: 0;
        top: 100%;
        min-width: 250px;
        background: #fff;
        display: none;
        z-index: 999;
    }

.offcanvas .navbar-nav li:hover > ul {
    display: block;
}


.plus {
    float: right;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.nav-item ul a {
    text-decoration: none;
}

.has-submenu {
    position: relative;
}

.submenu {
    list-style: none;
    margin: 0;
    padding-left: 15px;
    display: none;
}

.plus {
    float: right;
    transition: transform 0.3s ease;
}

.has-submenu.active .plus {
    transform: rotate(45deg);
}

.icon img{
    width:100px;
}
.border-end {
    border-right: 1px solid #45AF36 !important;
}
/* ACTIVE / OPEN accordion button */
.accordion-button:not(.collapsed) {
    background-color: #6d245f !important; /* Purple background */
    color: #fff;
    box-shadow: none;
}
/* Default accordion button */
.accordion-button {
    background-color: #6d245f;
    color: #333;
    font-weight: 500;

    padding: 14px 20px;
}

    

    /* Remove Bootstrap focus ring */
    .accordion-button:focus {
        box-shadow: none;
    }

    /* Optional: arrow color */
    .accordion-button:not(.collapsed)::after {
        filter: brightness(0) invert(1);
    }

/* RESET */
.navbar__box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
    .navbar__box ul li {
        position: relative;
    }

        .navbar__box ul li a {
            display: block;
            padding-right: 40px; /* space for + icon */
        }

@media (max-width: 991px) {
    .navbar__box ul li ul {
        display: none;
    }

    .navbar__box ul li.active > ul {
        display: block;
    }

    .nav_plus {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        font-size: 20px;
        cursor: pointer;
    }
}

.navbar__box ul li.active .nav_plus i {
    transform: rotate(45deg);
    transition: 0.3s;
}

/* MAIN MENU */
.navbar__box > ul {
    display: flex;
    align-items: center;
}

.navbar__box ul li {
    position: relative;
}

    .navbar__box ul li a {
        display: block;
        padding: 12px 16px;
        text-decoration: none;
        color: #000;
        font-weight: 500;
        width: 100%;
    }

    /* DROPDOWN */
    .navbar__box ul li ul {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 220px;
        background: #fff;
        display: none;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        z-index: 999;
    }

        .navbar__box ul li ul li a {
            padding: 10px 15px;
            white-space: nowrap;
        }

/* DESKTOP HOVER */
@media (min-width: 992px) {
    .navbar__box ul li:hover > ul {
        display: block;
    }

    .nav_plus {
        display: none;
    }
}

/* MOBILE VIEW */
@media (max-width: 991px) {
    .navbar__box > ul {
        flex-direction: column;
    }

    .navbar__box ul li {
        width: 100%;
        border-bottom: 1px solid #eee;
    }

        .navbar__box ul li ul {
            position: static;
            display: none;
            box-shadow: none;
        }

        .navbar__box ul li.active > ul {
            display: block;
        }

    .nav_plus {
        position: absolute;
        right: 15px;
        top: 12px;
        cursor: pointer;
    }
}
