@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/*--------------------------------------------------------------
# Root
--------------------------------------------------------------*/

:root {
    --font-manrope: "Manrope", sans-serif;
    --primary-color: #000000;
    --secondary-color: #D72148;
    --white-color: #fff;
    --btn-color: #22477B;
    --bg-color: #DBEAFF;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
    font-family: var(--font-manrope);
}

img {
    max-width: 100%;
}

a:focus {
    text-decoration: none;
    outline: 0;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    outline: 0;
}

p {
    margin: 0;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: var(--primary-color);
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
    margin-bottom: 0;
}

.bg-img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.bg-color {
    background: var(--bg-color);
}

.primary-btn {
    padding: 15px 25px;
    background-color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    border-radius: 10px;
    color: var(--white-color);
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;
    display: inline-block;
    transition: 0.5s all ease-in-out;
}

.primary-btn:hover {
    background: var(--white-color);
    color: var(--secondary-color);
}

.secondary-btn {
    padding: 15px 25px;
    background-color: var(--btn-color);
    border: 1px solid var(--btn-color);
    border-radius: 10px;
    color: var(--white-color);
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;
    display: inline-block;
    transition: 0.5s all ease-in-out;
}

.secondary-btn:hover {
    background: var(--white-color);
    color: var(--btn-color);
}

.py-150 {
    padding-top: clamp(60px, 8vw, 150px);
    padding-bottom: clamp(60px, 8vw, 150px);
}

.pt-150 {
    padding-top: clamp(60px, 8vw, 150px);
}

.pb-150 {
    padding-bottom: clamp(60px, 8vw, 150px);
}

.py-130 {
    padding-top: clamp(55px, 7vw, 130px);
    padding-bottom: clamp(55px, 7vw, 130px);
}

.pt-130 {
    padding-top: clamp(55px, 7vw, 130px);
}

.pb-130 {
    padding-bottom: clamp(55px, 7vw, 130px);
}

.py-100, .py-80 {
    padding-top: clamp(40px, 6vw, 100px);
    padding-bottom: clamp(40px, 6vw, 100px);
}

.pt-100, .pt-80 {
    padding-top: clamp(40px, 6vw, 100px);
}

.pb-100, .pb-80 {
    padding-bottom: clamp(40px, 6vw, 100px);
}

.py-50 {
    padding-top: clamp(20px, 4vw, 50px);
    padding-bottom: clamp(20px, 4vw, 50px);
}

.pt-50 {
    padding-top: clamp(20px, 4vw, 50px);
}

.pb-50 {
    padding-bottom: clamp(20px, 4vw, 50px);
}

.py-60 {
    padding-top: clamp(24px, 4.5vw, 60px);
    padding-bottom: clamp(24px, 4.5vw, 60px);
}

.pt-60 {
    padding-top: clamp(24px, 4.5vw, 60px);
}

.pb-60 {
    padding-bottom: clamp(24px, 4.5vw, 60px);
}

.row-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 100px;
    align-items: center;
}

h1 {
    font-weight: 700;
    font-size: clamp(28px, 4vw, 40px);
    line-height: clamp(38px, 5vw, 50px);
    /* font-size: 55px;
    line-height: 65px; */
    color: var(--primary-color);
    margin: 0;
}

h2 {
    font-weight: 700;
    font-size: clamp(28px, 4vw, 32px);
    line-height: clamp(38px, 5vw, 42px);
    /* font-size: 55px;
    line-height: 65px; */
    color: var(--primary-color);
    margin: 0;
}

h3 {
    font-weight: 600;
    font-size: clamp(20px, 3vw, 26px);
    line-height: clamp(28px, 4vw, 36px);
    color: var(--primary-color);
    margin: 0;
}


h4 {
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    margin: 0;

}

/*--------------------------------------------------------------
# Header subbar
--------------------------------------------------------------*/
.header-subbar {
    background-color: var(--btn-color);
    padding: 10px 0;
    font-size: 14px;
    line-height: 1.4;
    color: var(--white-color);
}

.header-subbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.header-subbar-location {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-subbar-location i {
    flex-shrink: 0;
    color: var(--white-color);
}

.header-subbar-phone a {
    color: var(--white-color);
    text-decoration: none;
    transition: 0.3s color;
}

.header-subbar-phone a:hover {
    color: var(--secondary-color);
}

.header-subbar-sep {
    margin: 0 6px;
    opacity: 0.8;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

.main-header {
    position: sticky;
    top: 0;
    padding: 0;
    z-index: 9999;
    background-color: var(--white-color);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.main-header .logo {
    padding: 0;
    margin: 0;
}

.main-header .logo img {
    max-width: 115px;
    height: auto;
    object-fit: cover;
    transition: max-width 0.25s ease;
}

/* When header is sticky (scrolled): smaller logo, no navbar vertical padding */
.main-header.header-stuck .logo img {
    max-width: 98px;
}

.main-header.header-stuck .navbar {
    padding-top: 0;
    padding-bottom: 0;
}

.main-header div#offcanvasExample {
    flex-direction: row;
    align-items: center;
}

.main-header .navbar-toggler {
    background-color: unset;
    border: 0;
    padding: 0;
}

.main-header .navbar-toggler .bars img {
    display: block;
    width: 30px;
    height: auto;
}

.main-header .btn-close {
    display: none;
}

.main-header .btn-close:focus {
    box-shadow: unset;
}

.main-header .nav-menu {
    align-items: center;
    gap: 22px;
}

.main-header .nav-menu .nav-item .nav-link {
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    padding: 30px 0;
    color: var(--primary-color);
    transition: 0.5s all;
}

.main-header .nav-menu .nav-item .nav-link:hover {
    color: var(--secondary-color);
}

.main-header .nav-menu .nav-item .nav-link.active {
    color: var(--secondary-color);
}

.navbar-toggler:focus {
    box-shadow: unset;
}

.main-header .nav-menu .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    top: 60px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    background-color: var(--white-color);
    border: 0;
    border-radius: 3px;
}

.main-header .nav-menu .nav-item.dropdown:hover .dropdown-menu li {
    margin-bottom: 10px;
}

.main-header .nav-menu .nav-item.dropdown:hover .dropdown-menu .dropdown-item:hover {
    color: var(--secondary-color);
    background-color: unset;
}
.dropdown-item{
    font-size: 14px;
}

/* Header CTA button: pill with white text + arrow circle (secondary color) */
.header-cta-btn {
    position: relative;
    display: inline-flex;
    align-items: stretch;
    height: 48px;
    border-radius: 50px;
    border: 2px solid var(--secondary-color);
    overflow: hidden;
    text-decoration: none;
    transition: 0.3s border-color, 0.3s box-shadow;
}

.header-cta-btn::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background-color: var(--secondary-color);
    transition: width 0.35s ease;
    z-index: 0;
}

.header-cta-btn:hover {
    border-color: var(--secondary-color);
}

.header-cta-btn:hover::before {
    width: 100%;
}

.header-cta-btn__text {
    position: relative;
    z-index: 1;
    background: var(--white-color);
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    transition: color 0.35s ease, background 0.35s ease;
}

.header-cta-btn:hover .header-cta-btn__text {
    color: var(--white-color);
    background: transparent;
}

.header-cta-btn__icon {
    position: relative;
    z-index: 1;
    width: 44px;
    min-width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--secondary-color);
    color: var(--white-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.header-cta-btn__icon img {
    display: block;
    width: 11px;
    height: auto;
}

/*--------------------------------------------------------------
# Form
--------------------------------------------------------------*/
.form-control {
    padding: 12px 16px;
}

.form-control:focus {
    outline: 0;
    box-shadow: unset;
    border-color: #d9d9d9;
}

.form-control::placeholder {
    color: #929191DD;
}

/*--------------------------------------------------------------
# Footer Css
--------------------------------------------------------------*/
footer {
    background: var(--btn-color);
    position: relative;
}

footer .footer-links h4,
footer .footer-info-box p,
footer .footer-info-box p a,
footer .footer-links ul li a,
footer .footer-copyright-text p {
    color: var(--white-color);
}

footer .footer-links ul li a:hover {
    color: var(--secondary-color);
}

footer .footer-info-box .icon-box i {
    color: var(--white-color);
}

footer .footer-copyright {
    border-top-color: rgba(255, 255, 255, 0.25);
}

footer .social-icon li a {
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white-color);
}

footer .social-icon li a i {
    color: var(--white-color);
}

.footer-form .form-control {
    border-radius: 50px;
}

.footer-form .header-cta-btn {
    width: 100%;
    justify-content: center;
    cursor: pointer;
    font-family: inherit;
}

.footer-form .header-cta-btn .header-cta-btn__text {
    flex: 1;
    justify-content: center;
}

.footer-logo {
    margin-bottom: 20px;
}


.wa-link a {
    color: green;
    font-size: 50px;
    right: 30px;
    position: fixed;
    bottom: 30px;
    z-index: 9999;
}

.footer-logo img {
    max-width: 115px;
    height: auto;
    object-fit: cover;
    margin: 0;
}

.footer-contact-box .footer-info-box {
    position: relative;
    padding-left: 30px;
    margin-bottom: 25px;
}

/* .footer-contact-box .footer-info-box:last-child {
    margin-bottom: 0;
} */
.footer-info-box .icon-box {
    position: absolute;
    top: 2px;
    left: 0;
}

.footer-links h3 {
    margin-bottom: 20px;
}

.footer-info-box .icon-box i {
    color: var(--primary-clr);
    font-size: 17px;
}

.footer-info-box p {
    font-weight: 500;
    font-size: 16px;
    color: var(--primary-color);
    margin: 0;
}

.footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li:last-child {
    margin-bottom: 0;
}

.footer-links ul li a {
    font-weight: 500;
    font-size: 16px;
    color: var(--primary-color);
    margin: 0;
    transition: all 0.3s ease-in-out;
}

.footer-links ul li a:hover {
    color: var(--secondary-color);
}

.footer-copyright {
    margin-top: 30px;
    padding: 30px 0 0;
    border-top: 1px solid var(--white-color);
}

.footer-copyright-text p {
    font-weight: 500;
    font-size: 14px;
    color: var(--primary-color);
    margin: 0;
}

.footer-social-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: 20px;
}

.footer-social-links ul li {
    display: inline-block;
    margin-right: 10px;
}

.footer-social-links ul li:last-child {
    margin-right: 0;
}

.footer-social-links ul li a {
    background-color: var(--secondary-clr);
    color: var(--white-clr);
    height: 36px;
    width: 36px;
    border-radius: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.footer-social-links ul li a i {
    font-size: 18px;
}

.footer-social-links ul li a:hover {
    background: var(--light-green-clr);
    color: var(--white-clr);
}

.copyright-bx {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copyright-credit p {
    font-weight: 500;
    font-size: 14px;
    margin: 0;
}

footer .footer-copyright-credit p,
footer .footer-copyright-credit a {
    color: var(--white-color);
}

footer .footer-copyright-credit a:hover {
    color: var(--secondary-color);
}

ul.social-icon {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 10px;
}

ul.social-icon li {
    margin: 0;
}

ul.social-icon li a {
    width: 34px;
    height: 34px;
    border: 1px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0;
    transition: 0.5s all ease-in-out;
}

ul.social-icon li a:hover {
    background: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}

ul.social-icon li a i {
    font-size: 16px;
}

ul.social-icon li a:hover i {
    color: var(--white-color);
}

.footer-links h4 {
    margin-bottom: 25px;
}

/*--------------------------------------------------------------
# Hero Secondary
--------------------------------------------------------------*/
.hero-secondary {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    z-index: 1;
}
.hero-secondary-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.90) 0%,
        rgba(0, 0, 0, 0.65) 35%,
        rgba(0, 0, 0, 0.45) 60%,
        rgba(0, 0, 0, 0.25) 85%,
        rgba(0, 0, 0, 0) 100%
    );
}
.hero-secondary .container.position-relative {
    z-index: 1;
}
.hero-secondary-content {
    max-width: 600px;
}
.hero-secondary-tagline {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--bg-color);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.hero-secondary-tagline::after {
    content: "";
    display: inline-block;
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
}
.hero-secondary-title {
    font-weight: 700;
    font-size: clamp(32px, 4.5vw, 48px);
    line-height: 1.2;
    color: var(--white-color);
    margin-bottom: 16px;
}
.hero-secondary-desc {
    font-size: 16px;
    line-height: 26px;
    color: var(--white-color);
    opacity: 0.92;
    margin-bottom: 24px;
}
.hero-secondary-btn .header-cta-btn {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.hero-secondary-btn .header-cta-btn::before {
    left: 0;
    width: 0;
    transition: width 0.45s ease;
}
.hero-secondary-btn .header-cta-btn:hover::before {
    width: 100%;
}
.hero-secondary-btn .header-cta-btn__text {
    color: var(--white-color);
    background: transparent;
}
.hero-secondary-btn .header-cta-btn:hover .header-cta-btn__text {
    color: var(--white-color);
}

/*--------------------------------------------------------------
# Stats section (separate section with icons)
--------------------------------------------------------------*/
.stats-section {
    background-color: #f4f4f4;
}
.stats-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    text-align: center;
}
.stats-item {
    flex: 1 1 160px;
    min-width: 140px;
    max-width: 200px;
    background: var(--white-color);
    border-radius: 12px;
    padding: 24px 20px;
    border: 1px solid rgba(34, 71, 123, 0.2);
    transition: transform 0.2s ease;
}
.stats-item:hover {
    transform: translateY(-2px);
}
.stats-item__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.stats-item__icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}
.stats-item__number {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 6px;
}
.stats-item__label {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
    margin: 0;
}
/*--------------------------------------------------------------
# About css
--------------------------------------------------------------*/
.about-us {
    position: relative;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-btn {
    margin-top: 30px;
}

.shape {
    position: absolute;
    bottom: 0;
    right: 0;
}

.shape img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/*--------------------------------------------------------------
# Our Specialist css
--------------------------------------------------------------*/
.our-specialist-content {
    display: flex;
    align-items: center;
    gap: 100px;
    justify-content: space-between;
    margin-bottom: 60px;
}

.our-specialist-bx {
    background: #fff;
    padding: 10px;
    border-radius: 15px;
    height: 100%;
    width: 100%;
}

.our-specialist-bx a {
    display: block;
    overflow: hidden;
    border-radius: 15px;
}

.our-specialist-bx img {
    background: var(--bg-color);
    width: 100%;
    height: 300px;
    object-fit: contain;
    border-radius: 15px;
    padding: 35px 25px 0;
    transition: transform 0.35s ease;
}

.our-specialist-bx:hover img {
    transform: scale(1.08);
}

.our-specialist-bx-content {
    text-align: center;
    padding: 15px 5px;
}

.our-specialist-bx-content .dr-name {
    font-weight: 600;
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 6px;
}

.our-specialist-bx-content .dr-designation {
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
}

/*--------------------------------------------------------------
# Meet Our Team css
--------------------------------------------------------------*/
.meet-our-team {
    position: relative;
    padding-bottom: 320px;
}

.our-team-content h2 {
    margin-bottom: 45px;
}

.our-team-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 40px;
}

.shape-bx .shape-1,
.shape-bx .shape-2 {
    width: 290px;
    height: 417px;
    object-fit: contain;
    z-index: -1;
}

.shape-bx .shape-1 {
    position: absolute;
    bottom: 0;
    left: 0;
}

.shape-bx .shape-2 {
    position: absolute;
    bottom: 0;
    right: 0;
}

/*--------------------------------------------------------------
# Emergency Contact css
--------------------------------------------------------------*/
.emergency-contact-content {
    margin-bottom: 40px;
}

.emergency-contact-content h2 {
    margin-bottom: 20px;
}

.contact-info-box {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-info-box:last-child {
    margin-bottom: 0;
}

.contact-info-box .icon {
    width: 88px;
    height: 88px;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid var(--btn-color);
    border-radius: 10px;
}

.contact-info-box .icon img {
    max-width: 50px;
    height: 50px;
    object-fit: contain;
}

.contact-detail .title {
    font-weight: 700;
    font-size: 22px;
    line-height: 45px;
    margin-bottom: 0px;
}

.contact-detail .desc {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
}

.dental-img {
    margin-top: -300px;
    position: relative;
}

.dental-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dental-phone-bx {
    background: var(--secondary-color);
    padding: 22px;
    border-radius: 10px;
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 15px;
    position: absolute;
    bottom: 100px;
    right: 0;
}

.small-icon {
    width: 67px;
    height: 64px;
    background: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.dental-phone-bx .small-icon img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(0%) sepia(3%) saturate(13%) hue-rotate(72deg) brightness(94%) contrast(103%);
}

.dental-emergency-bx .dental-emergency {
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    color: var(--white-color);
    margin-bottom: 5px;
}

.dental-emergency-bx .phone-no a {
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    color: var(--white-color);
    transition: 0.5s all ease-in-out;
}

.dental-emergency-bx .phone-no a:hover {
    color: var(--secondary-color);
}

/*--------------------------------------------------------------
# Our Specialized Facilities css
--------------------------------------------------------------*/
.facilities-content {
    margin-bottom: 40px;
}

.facilities-content h2 {
    margin-bottom: 20px;
}

.specialized-facilities-slide {
    border: 1px solid #D9D9D9;
    padding: 30px 45px 0;
    border-radius: 15px;
    height: 100%;
}

.speciality-inner-bx {
    padding: 25px;
    height: 100%;
}

.speciality-inner-bx:hover {
    background: var(--secondary-color);
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.speciality-inner-bx:hover img,
.speciality-inner-bx:hover h4,
.speciality-inner-bx:hover p {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(302deg) brightness(111%) contrast(102%);
    color: var(--white-color);
}

.speciality-inner-bx img {
    max-width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 25px;
    filter: brightness(0) saturate(100%) invert(0%) sepia(100%) saturate(13%) hue-rotate(336deg) brightness(101%) contrast(100%);
}

.speciality-inner-bx h4 {
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 15px;
}

.speciality-inner-bx p {
    font-weight: 400;
    font-size: 15px;
    line-height: 25px;
}

.specialized-facilities-slide.owl-carousel .owl-nav button {
    width: 46px;
    height: 46px;
    color: var(--white-color) !important;
    border-radius: 50%;
    background: var(--btn-color);
    border: 1px solid var(--btn-color);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.specialized-facilities-slide.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: 50%;
    left: -60px;
}

.specialized-facilities-slide.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    right: -60px;
}

.specialized-facilities-slide.owl-carousel .owl-nav button i {
    font-size: 17px;
    color: var(--white-color);
}

.specialized-facilities-slide.owl-theme .owl-nav [class*='owl-']:hover {
    background: var(--white-color);
}

.specialized-facilities-slide.owl-carousel .owl-nav button:hover i {
    color: var(--btn-color);
}

.specialized-facilities-slide.owl-theme .owl-nav {
    margin: 0;
}

/*--------------------------------------------------------------
# Journey Section (3 cols: cards | center | cards)
--------------------------------------------------------------*/
.journey-section {
    background: #f8f7fa;
}

.journey-cards-col {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
}

.journey-cards-col--left {
    align-items: flex-end;
}

.journey-cards-col--right {
    align-items: flex-start;
}

.journey-card {
    width: 100%;
    max-width: 100%;
}

.journey-cards-col--left .journey-card {
    margin-left: auto;
}

.journey-card-inner {
    background: var(--white-color);
    border-radius: 12px;
    padding: 20px 22px;
    transition: 0.3s ease;
    border: 1px solid #D9D9D970;
    box-shadow: 5px 5px 0 0 var(--btn-color);
}

.journey-card-inner:hover {
    background: var(--btn-color);
    box-shadow: 0 6px 20px rgba(34, 71, 123, 0.25);
}

.journey-card-inner:hover img {
    filter: brightness(0) invert(1);
}

.journey-card-inner:hover h4,
.journey-card-inner:hover p {
    color: var(--white-color);
}

.journey-card-inner img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin-bottom: 14px;
    filter: brightness(0) saturate(100%) invert(15%) sepia(40%) saturate(3000%) hue-rotate(210deg) brightness(95%) contrast(90%);
}

.journey-card-inner h4 {
    font-weight: 600;
    font-size: 17px;
    line-height: 1.35;
    margin-bottom: 8px;
    color: #1a1a2e;
}

.journey-card-inner p {
    font-size: 14px;
    line-height: 1.5;
    color: #5a5a6e;
    margin: 0;
}

.journey-card-connector {
    width: 2px;
    min-height: 24px;
    margin: 4px auto;
    background: repeating-linear-gradient(to bottom, var(--btn-color) 0, var(--btn-color) 4px, transparent 4px, transparent 10px);
    opacity: 0.5;
}

.journey-cards-col--left .journey-card-connector {
    margin-left: auto;
    margin-right: 24px;
}

.journey-cards-col--right .journey-card-connector {
    margin-left: 24px;
    margin-right: auto;
}

.journey-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.journey-center-content {
    margin-bottom: 24px;
}

.journey-center-content h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
    color: #1a1a2e;
}

.journey-center-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #5a5a6e;
    margin: 0;
}

.journey-center-image-wrap {
    position: relative;
    margin-bottom: 20px;
}

.journey-center-image-wrap::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    height: 85%;
    background: rgba(34, 71, 123, 0.08);
    border-radius: 50%;
    z-index: 0;
}

.journey-center-image {
    position: relative;
    z-index: 1;
    border-radius: 100px 10px 100px 10px;
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.journey-card--center {
    max-width: 100%;
    margin-top: 20px;
}

/*--------------------------------------------------------------
# Client Review css
--------------------------------------------------------------*/
.client-review-bx iframe,
.client-review-bx video {
    width: 100%;
    height: 500px;
}

.client-review-slide.owl-carousel .owl-nav button {
    width: 46px;
    height: 46px;
    color: var(--white-color) !important;
    border-radius: 50%;
    background: var(--btn-color);
    border: 1px solid var(--btn-color);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-review-slide.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: 50%;
    left: -60px;
}

.client-review-slide.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    right: -60px;
}

.client-review-slide.owl-carousel .owl-nav button i {
    font-size: 17px;
    color: var(--white-color);
}

.client-review-slide.owl-theme .owl-nav [class*='owl-']:hover {
    background: var(--white-color);
}

.client-review-slide.owl-carousel .owl-nav button:hover i {
    color: var(--btn-color);
}

.client-review-slide.owl-theme .owl-nav {
    margin: 0;
}

.view-more {
    text-align: center;
    margin: 50px 0 0;
}

/*--------------------------------------------------------------
# Awards & Recognition
--------------------------------------------------------------*/
.awards-section {
    background: #f8f9fb;
}

.awards-header {
    margin-bottom: 48px;
}

.awards-header--left {
    margin-bottom: 24px;
    text-align: left;
}

.awards-header--left .awards-section-desc {
    margin-top: 8px;
}

.awards-section-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.awards-section-desc {
    font-size: 1.0625rem;
    color: #5a5a6e;
    margin: 0;
}

.awards-content {
    padding-right: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(34, 71, 123, 0.2);
}

.awards-content-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--btn-color);
    margin-bottom: 16px;
}

.awards-content-text {
    font-size: 1rem;
    line-height: 1.65;
    color: #333;
    margin: 0;
}

/* Awards slider */
.awards-slider-wrap {
    position: relative;
    padding: 0 56px;
}

.awards-slider.owl-carousel .owl-stage-outer {
    overflow: hidden;
}

.award-slide {
    padding: 0 4px;
}

.award-slide a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.award-slide .award-card__frame {
    max-width: 320px;
    margin: 0 auto;
    aspect-ratio: 4 / 5;
    background: var(--white-color);
    border-radius: 12px;
    overflow: hidden;
    transition: opacity 0.25s ease;
}

.award-slide .award-card__frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.award-slide a:hover .award-card__frame {
    opacity: 0.92;
}

/* Awards slider nav */
.awards-slider.owl-carousel .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white-color);
    border: 2px solid var(--btn-color);
    color: var(--btn-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.awards-slider.owl-carousel .owl-nav button.owl-prev {
    left: 0;
}

.awards-slider.owl-carousel .owl-nav button.owl-next {
    right: 0;
}

.awards-slider.owl-carousel .owl-nav button:hover {
    background: var(--btn-color);
    color: var(--white-color);
}

.awards-slider.owl-carousel .owl-nav button i {
    font-size: 16px;
}

.awards-slider.owl-theme .owl-nav {
    margin: 0;
}

/*--------------------------------------------------------------
# FAQ
--------------------------------------------------------------*/
.faq-accordion .accordion-item {
    margin-bottom: 25px;
    border: 1px solid #c9c9c9;
    border-radius: 8px;
}

.faq-accordion .accordion-item:last-child {
    margin-bottom: 0;
}

.faq-accordion .accordion-button {
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    background-color: unset;
    box-shadow: unset;
    color: var(--primary-color);
}

.faq-accordion .accordion-body {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #000;
    padding-top: 0;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='currentColor' class='bi bi-plus' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
    transition: all 0.5s;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='currentColor' class='bi bi-dash' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
}

.accordion-button::after {
    transition: all 0.5s;
}



/***** Sumiran ********/
/* ******* About-us page style  ******* */
.about-banner {
    width: 100%;
    background-color: var(--bg-color);;
}
.about-banner .abouts-banner-box {
    text-align: center;
}
.about-banner .abouts-banner-box h1 {
    color: #000;
    margin-bottom: 10px;
}
.abouts-banner-box .breadcrumb {
    justify-content: center;
    margin-bottom: 0px;
}
.abouts-banner-box .breadcrumb-item+.breadcrumb-item {
    color: #000;
}
.abouts-banner-box .breadcrumb-item+.breadcrumb-item::before {
    color: #000;
}
.abouts-banner-box .breadcrumb-item a {
    color: #000;
}
.about-heading {
    text-align: center;
    margin-bottom: 40px;
}
.about-description p,
.about-description span {
    margin-bottom: 10px;
}
.about-description p:last-child,
.about-description span:last-child {
    margin-bottom: 0;
}
.about-img img {
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
}
section.our-vision {
    background: #d9d9d924;

}
.our-vision-card {
    background-color: #dbeaff;
    /* box-shadow: 0px 13px 24px -8px #0000000D; */
    height: 100%;
    /* border: 1px solid #c9c9c9; */
    border-radius: 10px;
    padding: 40px;
}
.our-vision-img {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fbfbf8;
    border-radius: 50%;
    height: 100px;
    width: 100px;
    margin: 0px auto 20px;
}
.our-vision-img img {
    object-fit: contain;
    width: 50px;
    height: 50px;
}
.our-vision-details {
    text-align: center;
}
.our-vision-details h4 {
    margin-bottom: 5px;
    font-size: 24px;
    padding-bottom: 15px;
}

/********* Archivement CSS **************/
.archivement-list {
    display: grid;
    grid-auto-rows: 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}
.heading-archive p, .elementor-heading p{
    font-family: var(--font-manrope);
    font-size: 22px;
    font-weight: 300;
    line-height: 34px;
}
.archive-service-box {
    text-align: center;
    --shape-size: 92px;
    padding: 20px 20px 20px 20px;
    border-radius: 10px;
    border: 2px solid #3e409517;
    position: relative;
    background-color: var(--white-color);
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
}
.archive-service-box:hover {
    border: 2px solid #3E4095;
    box-shadow: 0px 12px 47px 0px rgba(39, 71, 125, 0.07);
}
.archive-service-box .project-img {
    overflow: hidden;
}
.archive-service-box .project-img img {
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
    width: 100%;
    height: 270px;
    object-fit: contain;
}
.heading-archive {
    text-align: center;
}

/* ********** Our Doctor Page ************ */
.dr-team {
    background-color: #fff;
}
.team-image {
    border-radius: 10px;
    max-height: 550px;
    overflow: hidden;
}
.team-image img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.5s ease-in-out;
}
/* .dr-team:hover .team-image img {
    transform: scale(1.1);
} */
.team-content p {
    color: #00000080;
}
.team-member {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}
.team-body {
    padding: 20px 0;
}
.team-content {
    margin-bottom: 15px;
}
.team-content .dr-post {
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 7px;
    color: #3E4095;
}
.team-content .dr-name {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 28px;
}

/* Dr. Mehul Sukhadiya */
.team-member-img img {
    width: 100%;
    object-fit: cover;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    height: 650px;
    object-fit: cover;
}
.member-info {
    background-color: #dbeaff;
    height: 100%;
    padding: 20px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}
.member-about-data ul li {
    color: #000;
    line-height: 32px;
}
.section-title .dr-degree {
    color: #ED3237;
}
.section-title .dr-name {
    color: #000;
}
.member-about-data p {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #000;
}
.dr-edu-info {
    margin-bottom: 30px;
    border-bottom: 1px solid #c9c9c9;
    padding-bottom: 30px;
}
.dr-edu-info:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}
.dr-edu-list li {
    font-size: 16px;
    line-height: 28px;
    list-style-type: disc;
}
.dr-edu-info .title {
    margin-bottom: 20px;
    color: #000;
}
.dr-edu-list {
    list-style: circle;
}
.dr-edu-list li::marker {
    color: #3E4095;
}

/******** IVF Tritment page ************/
.tvf-cost-abt ul li {
    list-style-type: initial;
}
section.ivf-cost-full-bg {
    background-color: #F7F6F0;
}
.full-desc-ivf {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.ivf-cost-tble-bx {
    padding-top: 50px;
}
.ivf-cost-tble-bx h2 {
    text-align: center;
    padding-bottom: 30px;
}
.ivf-cost-tble-bx table {
    background-color: #fff;
    max-width: 900px;
    margin: 0px auto;
}

/* / ***** infrastructure page start ******* / */
.elementor-heading {
    text-align: center;
    margin-bottom: 40px;
}
.elementor-img img {
    width: 100%;
    object-fit: cover;
    border-radius: 6px;
}
.ivf-lab {
    background-color: #F7F6F0;
}
.equioment-detail .title {
    margin-bottom: 15px;
}
.andrology-section {
    background-color: #F7F6F0;
}
.andrology-heading .title {
    margin-bottom: 10px;
}
.andrology-slide.owl-theme .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 30px !important;
}
.andrology-slide.owl-theme .owl-dots .owl-dot span {
    background: #3e40956b;
    width: 16px;
    height: 16px;
}
.andrology-slide.owl-theme .owl-dots .owl-dot.active span,
.andrology-slide.owl-theme .owl-dots .owl-dot:hover span {
    background: #3E4095;
    width: 18px;
    height: 18px;
}

/* / ****** nabh-Accreditation ******* / */
.nabh-section {
    background-color: #F7F6F0;
}
.nabh-inner-box {
    background-color: #fff;
    padding: 40px;
    border-radius: 6px;
    box-shadow: 0px 4px 24px 0px #0000000F;
}
.nabh-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}
.nabh-description {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.nabh-description p,
.nabh-description span {
    margin-bottom: 10px;
}
.nabh-description p:last-child,
.nabh-description span:last-child {
    margin-bottom: 0;
}

/* Testimonials page start */
.testimonial {
    background-color: #F7F6F0;
}
.testimonial-videp-service video{
    height: 450px;
}
.testimonial-box {
    background: #fff;
    border-radius: 6px;
    padding: 30px;
    text-align: center;
    border: 1px solid #c9c9c9;
    height: 100%;
}
.testimonial-icon {
    margin-bottom: 20px;
}
.testimonial-icon img {
    width: 35px;
    height: 35px;
    object-fit: cover;
}
.testimonial-description {
    margin-bottom: 10px;
}
.testimonial-description p {
    font-size: 16px;
    font-style: italic;
    color: #666666;
}
.testimonial-profile .title {
    margin-bottom: 0;
    font-size: 24px;
    font-style: italic;
}

/******* 404 Page *********/
.errorpage {
    text-align: center;
}
.errorpage h1 {
    color: #ed3237;
    font-size: 120px;
    line-height: 130px;
}
.errorpage h3 {
    color: #919191;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 20px;
}

/******* treatment Page *********/
.vitro-img img {
    border-radius: 6px;
    width: 100%;
    object-fit: cover;
    height: 400px;
}
.dr-speciality {
    color: #3e4095;
}
.ivf-specialist {
    background-color: #F7F6F0;
}
.vitro-heading{
    margin-bottom: 15px;
}
.vitro-heading .dr-name{
    margin-bottom: 10px;
}
.vitro-description ul {
    list-style: disc;
    margin-bottom: 0;
    padding-left: 20px;
}
.vitro-description ul li {
    margin-bottom: 10px;
}
.vitro-description ul li:last-child {
    margin-bottom: 0;
}
.patient-testimonial {
    background-color: #F7F6F0;
}
.downloaded-video video {
    border-radius: 10px;
    width: 100%;
    /* object-fit: cover; */
    height: 100%;
}
.downloaded-video {
    height: 600px;
    object-fit: cover;
}
.video-review-box {
    background-color: #fff;
}
.ivf-cta {
    background-color: #242432;
    padding: 60px 0px;
    text-align: center;
}
.ivf-cta-desc {
    display: flex;
    flex-direction: column;
    gap: 25px;
    color: #fff;
}
.ivf-cta-desc p {
    color: #fff;
}
.why-chhose {
    background-color: #d9d9d924;
}
ul.two-column-li {
    column-count: 2;
    column-gap: 20px;
}
/******* Video Page *********/
section.video-review {
    background: #d9d9d924;
}
.client-say-description h2{
    margin-bottom: 30px;
    text-align: center;
}
.client-say-description p, .client-say-description span {
    text-align: center;
    margin-bottom: 10px;
}
.client-say-description p:last-child, .client-say-description span:last-child {
    margin-bottom: 0;
}
.client-video-box {
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0px 4px 24px 0px #0000000F;
    height: 100%;
}
.client-video-box .downloaded-video video{
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}
.video-review-description {
    text-align: center;
    padding: 20px 10px;
}
.video-review-description h3 {
    padding-bottom: 5px;
    font-size: 23px;
}
.video-review-description h4 {
    padding-bottom: 5px;
}
.video-review-description p{
    color: #ED3237;
    font-size: 16px;
}

/******* Contact-us Page *********/
.contact-us {
    background-color: #F7F6F0;
}
.contact-us .ivf-form{
    margin-top: 0;
}
.location iframe{
    border-radius: 6px;
    height: 500px;
}
.contact-address-box {
    background-color: #fff;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0px 4px 24px 0px #0000000F;
    height: 100%;
    text-align: center;
}
.contact-address-box .icon {
    width: 70px;
    height: 70px;
    margin: auto auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #3E4095;
    border-radius: 50%;
}
.contact-address-box .icon img {
    max-width: 35px;
    height: 35px;
    object-fit: cover;
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(305deg) brightness(103%) contrast(103%);
}
.contact-address-box h3{
    padding-bottom: 15px;
    text-align: center;
}
.contact-address-box span i {
    padding-right: 10px;
    font-size: 22px;
    color: #3E4095;
}
.contact-address-box .contact-link {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 300;
}
.contact-address-box .contact-link:last-child{
    margin-bottom: 0;
}
.contact-address-box .contact-link:hover{
    color: #3E4095;
}
.contact-address-box .contact-link a:hover{
    color: #3E4095;
}

/*********** book Modal ***********/
.book-modal .modal-dialog {
    max-width: 650px;
}
.book-modal .modal-body {
    padding: 30px;
}
.input-box.book-appoinment-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

/*********** faq ***********/
.faq{
    background-color: #F7F6F0;
}
.faq-accordion .accordion-body ul {
    list-style: circle;
    padding-left: 20px;
}
.faq-accordion .accordion-body .title{
    padding-bottom: 15px;
    color: #ed3237;
}
.faq-accordion .accordion-body ul li{
    padding-bottom: 10px;
}
.faq-accordion .accordion-body ul li::marker{
    color: #000;
}

/*********** patient-information page ***********/
.patient-responsibilities{
    background-color: unset;
}
.glossary-term {
    border: 1px solid #c9c9c9;
    padding: 20px;
    border-radius: 6px;
}
.glossary-term ul{
    list-style: disc;
    padding-left: 20px;
}
.glossary-term ul li{
    padding-bottom: 10px;
}
.glossary-term ul li:last-child{
    padding-bottom: 0;
}
.glossary-term ul li::marker{
    color: #ed3237;
}

/****** Thank you *********/
.thankyou-desc {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ivf-form {
    position: relative;
    z-index: 1;
}
.ivf-form form {
    background: #fff;
    padding: 40px;
    box-shadow: 0px 4px 64px -19px #00000040;
    position: relative;
    z-index: 1;
}
.ivf-form::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    height: 80%;
    width: 80%;
    z-index: -1;
    background: #dbeaff;
    border-radius: 20px;
}
.ivf-form .form-control {
    background-color: #F8F6EF;
}
form .input-box {
    margin-bottom: 15px;
}