* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@400;500;600;700;800;900&family=Allura&family=Manrope:wght@400;500;600;700&display=swap');
:root {
    --primary: #102f73;
    --primary-dark: #092052;
    --pink: #d51d68;
    --pink-dark: #b91455;
    --light-pink: #fff2f7;
    --light-blue: #f4f7fc;
    --text: #333;
    --white: #fff;
    --border: #e6e8ee;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "DM Sans", sans-serif;
    color: var(--text);
    background: #fff;
}

img {
    max-width: 100%;
}

img {
    max-width: 100%;
}

a,
a:hover,
a:focus,
a:visited,
a:active {
    text-decoration: none;
}

p,
ul,
li {
    padding: 0;
    margin: 0;
}
/* ================= HEADER ================= */

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 222;
}

header .headermn {
    background: transparent;
    padding: 12px 0;
    transition: .4s;
}

header .container {
    max-width: 1320px;
}

/* ================= LOGO ================= */

header .navbar-brand {
    width: 130px;
    padding: 0;
}

header .navbar-brand img {
    width: 100%;
    display: block;
}

/* ================= MENU ================= */

header .navbar-nav {
    gap: 38px;
}

header .nav-link {
    color: #163574;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .3px;
    position: relative;
    padding: 8px 0 !important;
    transition: .35s;
}

/* Underline */

header .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: #d51d67;
    transition: .35s;
    transform: translateX(-50%);
    border-radius: 10px;
}

header .nav-link:hover,
header .nav-link.active {
    color: #d51d67;
}

header .nav-link:hover::after,
header .nav-link.active::after {
    width: 100%;
}

/* Dropdown toggle par underline nahi */

header .nav-link.dropdown-toggle::after {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    transform: none;
    border-radius: 0;
    margin-left: 5px;
}

/* ================= APPOINTMENT BUTTON ================= */

header .whatsapp {
    margin-left: 30px;
}

header .whatsapp li {
    list-style: none;
}

header .whatsapp li a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 22px;
    border-radius: 30px;
    background: #d51d67;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: .35s;
    box-shadow: 0 6px 18px rgba(213, 29, 103, .20);
}

header .whatsapp li a:hover {
    background: #163574;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(22, 53, 116, .22);
}

header .whatsapp li a span {
    background: transparent;
    width: auto;
    height: auto;
    color: inherit;
}

/* ================= STICKY HEADER ================= */

.sticky {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 5px 25px rgba(22, 53, 116, .10);
    animation: header .4s ease;
    /* backdrop-filter: blur(8px); */
}

@keyframes header {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

/* ================= TOGGLE ================= */

header .navbar-toggler {
    border: none;
    color: #163574;
    font-size: 28px;
    padding: 5px;
}

header .navbar-toggler:focus {
    box-shadow: none;
}

/* ================= OFFCANVAS ================= */

header .offcanvas {
    background: #fff;
}

header .offcanvas-header {
    padding: 20px;
    border-bottom: 1px solid #edf0f6;
}

header .offcanvas-title img {
    width: 100px;
}

header .btn-close {
    opacity: 1;
    filter: none;
}

header .offcanvas .nav-link {
    color: #163574;
    font-size: 16px;
    font-weight: 700;
    padding: 13px 0 !important;
}

header .offcanvas .nav-link:hover,
header .offcanvas .nav-link.active {
    color: #d51d67;
}

/* Offcanvas dropdown arrow */

header .offcanvas .nav-link.dropdown-toggle::after {
    color: #d51d67;
}

/* ================= MOBILE BUTTON ================= */

@media (max-width: 991px) {

    header .navbar-nav {
        gap: 0;
    }

    header .whatsapp {
        margin-left: 0;
        margin-top: 20px;
    }

    header .whatsapp li a {
        width: 100%;
    }

}

/* ================= COMMON ================= */

.section-heading {
    max-width: 750px;
    margin: 0 auto 50px;
}

.section-heading > span {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--pink);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
}

.section-heading h2 {
    margin: 0 0 15px;
    color: var(--primary);
    font-family: "Playfair Display", serif;
    font-size: 45px;
    line-height: 1.2;
    font-weight: 700;
}

.section-heading h2 strong {
    color: var(--pink);
}

.section-heading p {
    margin: 0;
    color: #6d7480;
    font-size: 16px;
    line-height: 1.8;
}


/* ================= HERO ================= */
#hero-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fbe4ee 0%, #ffffff 55%, #fae8f0 100%);
    overflow: hidden;
}

#hero-section .hero-content {
    padding-right: 50px;
}

#hero-section .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    border-radius: 30px;
    background: #fff;
    color: #183b82;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

#hero-section .hero-tag i {
    color: #d51d67;
}

#hero-section h1 {
    font-size: 52px;
    line-height: 1.12;
    font-weight: 800;
    color: #163574;
    margin-bottom: 20px;
}

#hero-section h1 span {
    display: block;
    color: #d51d67;
}

#hero-section .hero-content > p {
    max-width: 600px;
    color: #555;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 30px;
}

#hero-section .hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 35px;
}

#hero-section .primary-btn,
#hero-section .call-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: .3s;
}

#hero-section .primary-btn {
    background: #163574;
    color: #fff;
}

#hero-section .primary-btn:hover {
    background: #d51d67;
    color: #fff;
}

#hero-section .call-btn {
    background: #d51d67;
    color: #fff;
}

#hero-section .call-btn:hover {
    background: #163574;
    color: #fff;
}
#hero-section .hero-doctors {
    display: flex;
    align-items: center;
    gap: 25px;
}

#hero-section .hero-doctor {
    display: flex;
    align-items: center;
}

#hero-section .doctor-contact {
    display: flex;
    align-items: center;
    gap: 10px;
}

#hero-section .doctor-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 50%;
    background: #163574;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

#hero-section .doctor-icon.pink {
    background: #d51d67;
}

#hero-section .doctor-contact strong {
    display: block;
    color: #163574;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 2px;
}

#hero-section .doctor-contact a {
    display: block;
    color: #111;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}

#hero-section .doctor-contact a:hover {
    color: #d51d67;
}

#hero-section .hero-divider {
    width: 1px;
    height: 42px;
    background: #d8d8d8;
}

#hero-section .hero-divider {
    width: 1px;
    height: 45px;
    background: #d8d8d8;
}


/* ENQUIRY FORM */

#hero-section .hero-enquiry {
    position: relative;
    background: #fff;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(22, 53, 116, .12);
    border: 1px solid #edf0f8;
}

#hero-section .enquiry-heading {
    text-align: center;
    margin-bottom: 22px;
}

#hero-section .enquiry-heading span {
    color: #d51d67;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#hero-section .enquiry-heading h3 {
    color: #163574;
    font-size: 28px;
    font-weight: 800;
    margin: 5px 0 8px;
}

#hero-section .enquiry-heading p {
    color: #777;
    font-size: 13px;
    margin: 0;
}

#hero-section .form-group {
    position: relative;
    margin-bottom: 14px;
}

#hero-section .form-group > i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #163574;
    z-index: 2;
}

#hero-section .form-group input,
#hero-section .form-group select,
#hero-section .form-group textarea {
    width: 100%;
    border: 1px solid #e1e4ec;
    border-radius: 9px;
    padding: 13px 15px 13px 43px;
    outline: none;
    color: #444;
    font-size: 14px;
    background: #fafbfe;
    transition: .3s;
}

#hero-section .form-group textarea {
    resize: none;
}

#hero-section .form-group input:focus,
#hero-section .form-group select:focus,
#hero-section .form-group textarea:focus {
    border-color: #d51d67;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(213, 29, 103, .08);
}

#hero-section .textarea-group > i {
    top: 18px;
    transform: none;
}

#hero-section .enquiry-btn {
    width: 100%;
    border: 0;
    padding: 14px 20px;
    border-radius: 9px;
    background: #163574;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: .3s;
}

#hero-section .enquiry-btn:hover {
    background: #d51d67;
}

#hero-section .enquiry-btn i {
    margin-left: 7px;
}


/* ================= ABOUT ================= */

#about-section {
     padding: 40px 0;
    overflow:hidden;
    background: #fff;
}

#about-section .about-image {
    position: relative;
    padding: 15px;
}

#about-section .about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 25px;
}

#about-section .about-image:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 150px;
    height: 150px;
    border-top: 5px solid var(--pink);
    border-left: 5px solid var(--pink);
    border-radius: 20px 0 0 0;
}

#about-section .about-badge {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 25px;
    background: var(--primary);
    color: #fff;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(16, 47, 115, 0.2);
}

#about-section .about-badge strong {
    font-size: 40px;
    line-height: 1;
}

#about-section .about-badge span {
    font-size: 13px;
}

#about-section .about-text {
    color: #666;
    line-height: 1.9;
}

#about-section .about-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 25px;
}

#about-section .about-points div {
    color: var(--primary);
    font-weight: 600;
}

#about-section .about-points i {
    margin-right: 7px;
    color: var(--pink);
}


/* ================= DOCTORS ================= */

#doctors-section {
     padding: 40px 0;
    overflow:hidden;
    background: var(--light-blue);
}

#doctors-section .doctor-card {
    height: 100%;
    display: flex;
    overflow: hidden;
    background: #fff;
    border-radius: 25px;
    box-shadow: 0 12px 40px rgba(16, 47, 115, 0.08);
}

#doctors-section .doctor-image {
    width: 42%;
    min-width: 42%;
    background: linear-gradient(160deg, #e8eef9, #f8dce8);
}

#doctors-section .doctor-image img {
    width: 100%;
    height: 100%;
    /* min-height: 480px; */
    object-fit: cover;
    object-position: top center;
}

#doctors-section .doctor-content {
    padding: 15px;
}

#doctors-section .doctor-speciality {
    color: var(--pink);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

#doctors-section .doctor-content h3 {
    margin: 8px 0;
    color: var(--primary);
    font-family: "Playfair Display", serif;
    font-size: 29px;
}

#doctors-section .doctor-content h5 {
    color: #555;
    font-size: 13px;
    line-height: 1.6;
}

#doctors-section .doctor-content p {
    color: #707070;
    font-size: 14px;
    line-height: 1.7;
}

#doctors-section .doctor-content ul {
    padding: 0;
    margin: 20px 0;
    list-style: none;
}

#doctors-section .doctor-content li {
    margin-bottom: 10px;
    color: #555;
    font-size: 13px;
}

#doctors-section .doctor-content li i {
    margin-right: 6px;
    color: var(--pink);
}

#doctors-section .doctor-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 17px;
    border-radius: 25px;
    background: var(--primary);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

#doctors-section .pink-call {
    background: var(--pink);
}


/* ================= SERVICES ================= */

#services-section {
   padding: 40px 0;
    overflow:hidden;
    background: #fff;
}

#services-section .service-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 60px 0 30px;
    padding: 20px 25px;
    background: var(--light-pink);
    border-left: 5px solid var(--pink);
    border-radius: 12px;
}

#services-section .service-heading-ortho {
    margin-top: 80px;
    background: var(--light-blue);
    border-left-color: var(--primary);
}

#services-section .service-heading span {
    color: var(--pink);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

#services-section .service-heading-ortho span {
    color: var(--primary);
}

#services-section .service-heading h3 {
    margin: 4px 0 0;
    color: var(--primary);
    font-family: "Playfair Display", serif;
    font-size: 30px;
}

#services-section .service-heading-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    color: var(--pink);
    font-size: 25px;
}

#services-section .service-heading-ortho .service-heading-icon {
    color: var(--primary);
}

#services-section .service-card {
    height: 100%;
    padding: 30px 25px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #fff;
    transition: 0.3s ease;
}

#services-section .service-card:hover {
    transform: translateY(-7px);
    border-color: transparent;
    box-shadow: 0 15px 40px rgba(16, 47, 115, 0.1);
}

#services-section .service-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 14px;
    background: var(--light-pink);
    color: var(--pink);
    font-size: 25px;
}

#services-section .service-card h4 {
    margin-bottom: 10px;
    color: var(--primary);
    font-size: 19px;
    cursor: pointer;
    font-weight: 700;
}

#services-section .service-card p {
    margin: 0;
    color: #777;
    font-size: 14px;
    line-height: 1.7;
}


/* ================= WHY ================= */

#why-section {
    padding: 40px 0;
    overflow:hidden;
    background: var(--light-blue);
}

#why-section .why-image {
    position: relative;
}

#why-section .why-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 25px;
}

#why-section .experience-box {
    position: absolute;
    right: -20px;
    bottom: 25px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--pink);
    color: #fff;
    border-radius: 15px;
}

#why-section .experience-box strong {
    font-size: 42px;
}

#why-section .experience-box span {
    font-size: 13px;
}

#why-section .why-list {
    display: grid;
    gap: 20px;
}

#why-section .why-item {
    display: flex;
    gap: 18px;
}

#why-section .why-icon {
    flex: 0 0 55px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: #fff;
    color: var(--pink);
    font-size: 23px;
    box-shadow: 0 5px 20px rgba(16, 47, 115, 0.07);
}

#why-section .why-item h4 {
    margin: 0 0 5px;
    color: var(--primary);
    font-size: 18px;
}

#why-section .why-item p {
    margin: 0;
    color: #777;
    font-size: 14px;
    line-height: 1.7;
}



/* ================= APPOINTMENT ================= */

#appointment-section {
    padding: 40px 0;
    overflow:hidden;
    background: #fff;
    
}

#appointment-section .appointment-box {
    padding: 60px;
    overflow: hidden;
    border-radius: 30px;
    background:
        radial-gradient(circle at 90% 10%, #650933 0, transparent 25%), var(--primary);
}

#appointment-section .appointment-tag {
    color: #f5a2c5;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}

#appointment-section h2 {
    margin: 15px 0;
    color: #fff;
    font-family: "Playfair Display", serif;
    font-size: 45px;
}

#appointment-section p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
}

#appointment-section .appointment-contact {
    display: grid;
    gap: 20px;
    margin-top: 30px;
}

#appointment-section .appointment-contact > div {
    display: flex;
    gap: 15px;
}

#appointment-section .appointment-contact i {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,.12);
    color: #fff;
}

#appointment-section .appointment-contact small,
#appointment-section .appointment-contact a,
#appointment-section .appointment-contact span {
    display: block;
}

#appointment-section .appointment-contact small {
    color: #bfc8dd;
}

#appointment-section .appointment-contact a,
#appointment-section .appointment-contact span {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    width: 400px;
}

#appointment-section .appointment-form {
    padding: 30px;
    background: #fff;
    border-radius: 20px;
}

#appointment-section .form-control,
#appointment-section .form-select {
    min-height: 52px;
    border: 1px solid #e2e5eb;
    border-radius: 10px;
    box-shadow: none;
}

#appointment-section textarea.form-control {
    min-height: 120px;
    resize: none;
}

#appointment-section .form-control:focus,
#appointment-section .form-select:focus {
    border-color: var(--pink);
    box-shadow: 0 0 0 3px rgba(213, 29, 104, 0.08);
}

#appointment-section .form-btn {
    width: 100%;
    padding: 14px;
    border: 0;
    border-radius: 30px;
    background: var(--pink);
    color: #fff;
    font-weight: 700;
}

#appointment-section .form-btn:hover {
    background: var(--primary);
}


/* ================= CONTACT ================= */

#contact-section {
    padding: 80px 0;
    background: #f7f8fb;
}

#contact-section .contact-card {
    height: 100%;
    padding: 35px;
    text-align: center;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(16, 47, 115, 0.06);
}

#contact-section .contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--light-pink);
    color: var(--pink);
    font-size: 25px;
}

#contact-section .contact-card h4 {
    color: var(--primary);
}

#contact-section .contact-card p {
    color: #777;
    line-height: 1.8;
    font-size: 16px;
}

#contact-section .contact-card a {
    color: var(--pink);
    font-weight: 700;
    text-decoration: none;
}

#contact-section .contact-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    border-radius: 25px;
    background: var(--primary);
    color: #fff !important;
}


/* ================= FOOTER ================= */

#main-footer {
    padding: 40px 0 0;
    background: #071d4b;
    color: #fff;
}

#main-footer .footer-logo {
    width: 190px;
    margin-bottom: 20px;
    background: #fff;
    padding: 8px;
    border-radius: 8px;
}
#main-footer .para {
    color: #b9c2d4;
    font-size: 16px;
    line-height: 1.8;
    /* width:340px */
}


#main-footer p {
    color: #b9c2d4;
    font-size: 16px;
    line-height: 1.8;
}

#main-footer h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

#main-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

#main-footer li {
    margin-bottom: 10px;
}

#main-footer li a {
    color: #b9c2d4;
    font-size: 16px;
    text-decoration: none;
}

#main-footer li a:hover {
    color: #fff;
}

#main-footer .footer-bottom {
    margin-top: 50px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,.1);
    text-align: center;
}

#main-footer .footer-bottom p {
    margin: 0;
}


/* ================= ENQUIRY MODAL ================= */

#enquiryModal .modal-dialog {
    max-width: 450px;
}

#enquiryModal .modal-content {
    border: none;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 20px 55px rgba(22, 53, 116, .18);
}

/* ================= MODAL HEADER ================= */

#enquiryModal .modal-header {
    background: linear-gradient(135deg, #163574, #1d478d);
    color: #fff;
    padding: 18px 22px;
    border: none;
}

#enquiryModal .modal-title {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

#enquiryModal .btn-close {
    filter: brightness(0) invert(1);
    opacity: 1;
    box-shadow: none;
}

/* ================= MODAL BODY ================= */

#enquiryModal .modal-body {
    padding: 28px;
    background: #fff;
}

/* ================= FORM ================= */

#enquiryModal .form-control,
#enquiryModal .form-select {
    height: 50px;
    border: 1px solid #e2e6ef;
    border-radius: 9px;
    box-shadow: none;
    font-size: 14px;
    color: #333;
    background: #fafbfe;
    transition: .3s;
}

#enquiryModal .form-control::placeholder {
    color: #999;
}

#enquiryModal textarea.form-control {
    height: 110px;
    resize: none;
}

/* Focus */

#enquiryModal .form-control:focus,
#enquiryModal .form-select:focus {
    border-color: #d51d67;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(213, 29, 103, .08);
}

/* ================= FORM GROUP ================= */

#enquiryModal .form-group {
    margin-bottom: 15px;
}

/* ================= SUBMIT BUTTON ================= */

#enquiryModal .submit {
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 9px;
    background: #d51d67;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    transition: .3s;
    box-shadow: 0 7px 18px rgba(213, 29, 103, .20);
}

#enquiryModal .submit:hover {
    background: #163574;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 9px 22px rgba(22, 53, 116, .20);
}


/* gallery */
#gallery {
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

#gallery .row {
  row-gap: 20px;
}


#gallery .gallery-item {
  position: relative;
  overflow: hidden;
  display: block;
  background: #000;
}

#gallery .gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: .5s;
  display: block;
}

#gallery .gallery-item:hover img {
  transform: scale(1.08);
  opacity: .8;
}


#gallery  .owl-dots{
    margin-top:35px;
    text-align:center;
}

#gallery  .owl-dot span{
    width:12px;
    height:12px;
    background:#d9c4b0;
    margin:5px;
    display:block;
    border-radius:50%;
}
#gallery .owl-dot.active span{
    background:#d51d67;
    width:35px;
    border-radius:30px;
}


/* ================= TESTIMONIAL ================= */

#testimonial-section {
     padding: 40px 0;
    overflow:hidden;
    background: var(--light-blue);
}

#testimonial-section .testimonial-carousel {
    padding: 10px 5px 20px;
}

#testimonial-section .testimonial-carousel .item {
    padding: 10px;
}

#testimonial-section .testimonial-card {
    position: relative;
    height: 100%;
    min-height: 300px;
    padding: 35px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(16, 47, 115, 0.07);
}

#testimonial-section .quote {
    position: absolute;
    top: 20px;
    right: 25px;
    color: rgba(213, 29, 103, .15);
    font-size: 45px;
}

#testimonial-section .stars {
    margin-bottom: 15px;
    color: #f3a400;
    letter-spacing: 3px;
}

#testimonial-section .testimonial-card p {
    min-height: 105px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 0;
}

#testimonial-section .patient {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

#testimonial-section .patient-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
}

#testimonial-section .patient strong,
#testimonial-section .patient span {
    display: block;
}

#testimonial-section .patient strong {
    color: var(--primary);
}

#testimonial-section .patient span {
    color: #888;
    font-size: 12px;
}


/* ================= OWL NAV ================= */

#testimonial-section .owl-nav {
    display: none;
}
/* ================= OWL DOTS ================= */
#testimonial-section  .owl-dots{
    margin-top:35px;
    text-align:center;
}

#testimonial-section  .owl-dot span{
    width:12px;
    height:12px;
    background:#d9c4b0;
    margin:5px;
    display:block;
    border-radius:50%;
}
#testimonial-section .owl-dot.active span{
    background:#d51d67;
    width:35px;
    border-radius:30px;
}



/* ================= MOBILE ================= */

@media (max-width: 575px) {

    #testimonial-section {
        padding: 70px 0;
    }

    #testimonial-section .testimonial-card {
        padding: 28px 22px;
    }

    #testimonial-section .testimonial-card p {
        min-height: auto;
    }

}


/* quickcontact */

.quickcontact {
    width: 45px;
    position: fixed;
    top: 65%;
    right: 15px;
    z-index: 102;
}

/*=====================================*
* Thank You Section
*=====================================*/

#lp-thankyou {
    width: 100%;
    padding: 80px 0;
    background: #f8f9ff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

#lp-thankyou .thankyou-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

#lp-thankyou .thankyou-box {
    max-width: 650px;
    margin: 0 auto;
    padding: 60px 45px;
    background: #fff;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 45px rgba(22, 53, 116, .12);
}

#lp-thankyou .thankyou-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #163574, #d51d67);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
}

#lp-thankyou h2 {
    margin: 0 0 18px;
    color: #163574;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
}

#lp-thankyou p {
    margin: 0 auto 30px;
    max-width: 500px;
    color: #666;
    font-size: 18px;
    line-height: 1.8;
}

#lp-thankyou .thankyou-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 32px;
    background: #d51d67;
    color: #fff;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: .3s;
    box-shadow: 0 7px 20px rgba(213, 29, 103, .18);
}

#lp-thankyou .thankyou-btn:hover {
    background: #163574;
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(22, 53, 116, .20);
}

#lp-thankyou .thankyou-btn i {
    transition: .3s;
}

#lp-thankyou .thankyou-btn:hover i {
    transform: translateX(5px);
}


/*=========================*
* Responsive
*=========================*/

@media (max-width: 991px) {

    #lp-thankyou {
        padding: 70px 0;
    }

    #lp-thankyou .thankyou-box {
        padding: 50px 35px;
    }

    #lp-thankyou h2 {
        font-size: 36px;
    }

}

@media (max-width: 767px) {

    #lp-thankyou {
        padding: 60px 0;
    }

    #lp-thankyou .thankyou-box {
        padding: 40px 25px;
        border-radius: 16px;
    }

    #lp-thankyou .thankyou-icon {
        width: 75px;
        height: 75px;
        font-size: 34px;
    }

    #lp-thankyou h2 {
        font-size: 30px;
    }

    #lp-thankyou p {
        font-size: 16px;
    }

    #lp-thankyou .thankyou-btn {
        width: 100%;
    }

}


/*=====================================*
* Breadcrumb
*=====================================*/

#lp-breadcrumb {
    position: relative;
    padding: 120px 0 40px;
    background: linear-gradient(135deg, #ffffff, #ffffff);
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Decorative Circle */

#lp-breadcrumb::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .07);
    top: -120px;
    right: -80px;
}

#lp-breadcrumb::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(213, 29, 103, .15);
    bottom: -100px;
    left: -70px;
}

#lp-breadcrumb .container {
    position: relative;
    z-index: 2;
}


/*=====================================*
* Breadcrumb Box
*=====================================*/

#lp-breadcrumb #lp-breadcrumb-box {
    display: inline-block;
    background: #fff;
    padding: 12px 22px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .10);
    margin-bottom: 20px;
}

#lp-breadcrumb #lp-breadcrumb-box .breadcrumb {
    margin: 0;
    align-items: center;
}

#lp-breadcrumb #lp-breadcrumb-box .breadcrumb-item {
    font-size: 15px;
    font-weight: 600;
}

#lp-breadcrumb #lp-breadcrumb-box .breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: #777;
}

#lp-breadcrumb #lp-breadcrumb-box .breadcrumb-item a {
    color: #163574;
    text-decoration: none;
    transition: .3s;
}

#lp-breadcrumb #lp-breadcrumb-box .breadcrumb-item a:hover {
    color: #d51d67;
}

#lp-breadcrumb #lp-breadcrumb-box .breadcrumb-item.active {
    color: #d51d67;
    font-weight: 700;
}

#lp-breadcrumb #lp-breadcrumb-box i {
    color: #d51d67;
    margin-right: 8px;
}


/*=====================================*
* Breadcrumb Heading
*=====================================*/

#lp-breadcrumb #lp-breadcrumb-content h2 {
    color: #d51d67;
    font-size: 52px;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
}


/*=====================================*
* Breadcrumb Responsive
*=====================================*/

@media (max-width: 767px) {

    #lp-breadcrumb {
        padding: 50px 0;
    }

    #lp-breadcrumb #lp-breadcrumb-content h2 {
        font-size: 36px;
    }

    #lp-breadcrumb #lp-breadcrumb-box {
        padding: 10px 17px;
        margin-bottom: 15px;
    }

    #lp-breadcrumb #lp-breadcrumb-box .breadcrumb-item {
        font-size: 13px;
    }

}

@media (max-width: 575px) {

    #lp-breadcrumb #lp-breadcrumb-content h2 {
        font-size: 30px;
    }

}

.offcanvas-backdrop.show {
    opacity: 0 !important;
    pointer-events: none !important;
}

.offcanvas-backdrop {
    pointer-events: none !important;
}