*,

*::before,

*::after {

    -webkit-box-sizing: border-box;

    box-sizing: border-box;

}



* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

    transition: 0.1s linear;

    font-family: "Poppins", sans-serif;

}



:root {

    --color-primary: #071E5B;

    --color-secondary: #1E76BD;

    --color-accent: #F75050;

    --color-text: #3F3F3F;

}



body {

    margin: 0;

    font-size: 16px;

    font-family: "Manrope", sans-serif;

    font-weight: 400 !important;

    line-height: normal;

    color: var(--text-color) !important;

    -webkit-text-size-adjust: 100%;

    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);

    position: relative;

}



section {

    background-color: #fff;

}



hr {

    margin: 0;

    border-color: #ddd;

}



hr:not([size]) {

    height: 1px;

}



h1 {

    font-size: 46px;

}



h2 {

    font-size: 40px;

}



h3 {

    font-size: 26px;

    margin-bottom: 0;

}



h4 {

    font-size: 24px;

}



h5 {

    font-size: 20px;

}



h6 {

    font-size: 16px;

}





img {

    width: 100%;

}



ol,

ul {

    padding-left: 34px;

}



ol,

ul,

dl {

    margin-top: 0;

    margin-bottom: 0;

    list-style: none;

    padding: 0;

}



ol ol,

ul ul,

ol ul,

ul ol {

    margin-bottom: 0;

}



blockquote {

    margin: 0 0 14px;

}



b {

    font-weight: 800;

}



strong {

    font-weight: 700;

}



small {

    font-size: 12px;

}



a {

    color: inherit;

    text-decoration: none;

}



p {

    color: #444;

    font-size: 16px;

    font-weight: 400;

    line-height: 1.8;

}



a:hover {

    color: var(--color-accent);

    text-decoration: none;

}



button {

    border-radius: 0;

    outline: 0;

    box-shadow: none;

    border: 0;

}



button:focus:not(:focus-visible) {

    outline: 0;

    box-shadow: none;

}



input,

button,

select,

optgroup,

textarea,

.form-control {

    margin: 0;

    font-family: inherit;

    font-size: inherit;

    line-height: inherit;

    background-color: #fff;

    border: 1px solid #DBDBDB;

    padding: 15px 20px;

}



::-moz-selection {

    background-color: #200468;

    color: #FFF;

    text-shadow: none
}



::selection {

    background-color: #200468;

    color: #fff;

    text-shadow: none
}



section {

    padding: 60px 0;

    position: relative;

}



.section-title {

    text-align: center;

    margin-bottom: 40px;

}



.section-title .title {

    position: relative;

    display: inline-block;

    margin-bottom: 5px;

}



.section-title .title .text {

    padding: 6px 18px;

    border: 1px solid var(--color-secondary);

    border-radius: 100px;

    color: var(--color-secondary);

    font-size: 14px;

    font-weight: 600;

    display: inline-block;

    position: relative;

}



.section-title .title .dot-left,

.section-title .title .dot-right {

    content: "";

    background-color: var(--color-secondary);

    width: 10px;

    height: 10px;

    border-radius: 100px;

    position: absolute;

    top: 35%;

    display: block;

}



.section-title .title .dot-left {

    left: -25px;

}



.section-title .title .dot-right {

    right: -25px;

}



.section-title .title .dot-left::before {

    content: "";

    position: absolute;

    top: 35%;

    right: 1px;

    background: linear-gradient(90deg, #1E76BD 0%, #ffffff00 76.44%);

    width: 200px;

    height: 4px;

    transform: scale(-1);

}



.section-title .title .dot-right::before {

    content: "";

    position: absolute;

    top: 35%;

    left: 1px;

    background: linear-gradient(90deg, #1E76BD 0%, #ffffff00 76.44%);

    width: 200px;

    height: 4px;

}



.section-title .title::before {

    left: -110%;

    transform: scale(-1);

}



.section-title .heading {

    font-size: 28px;

    line-height: 1.5;

    font-weight: 700;

    color: var(--color-text);

    padding-bottom: 5px;

}



.section-title .heading span {

    color: var(--color-accent);

}



.section-title p {

    font-weight: 400;

}



.section-title.text-white .title .text,

.section-title.text-white .heading,

.section-title.text-white .heading span {

    color: #fff;

}



.section-title.text-white .title .dot-left,

.section-title.text-white .title .dot-right {

    background-color: #fff;

}



.section-title.text-white .title .text {

    color: #fff;

}



.section-title.text-white .title .dot-left::before,

.section-title.text-white .title .dot-right::before {

    background: linear-gradient(90deg, #fff 0%, #ffffff00 76.44%);

}



.button-theme {

    background-color: var(--color-primary);

    border-radius: 50px;

    border: 2px solid var(--color-primary);

    outline: none;

    color: #fff;

    font-size: 14px;

    line-height: 1;

    font-weight: 500;

    text-align: center;

    display: inline-flex;

    justify-content: center;

    align-items: center;

    gap: 10px;

    padding: 10px 20px;

    transition: all 0.5s ease-in;

}



.button-theme i {

    font-size: 18px;



}



.button-theme i.bx-arrow-back {

    rotate: 148deg;

}



.button-theme .icon {

    background-color: #fff;

    width: 30px;

    height: 30px;

    border-radius: 100px;

    display: flex;

    justify-content: center;

    align-items: center;

}



.button-theme .icon img {

    width: 20px;

    height: 20px;

    object-fit: contain;

}



.button-theme:has(.icon) {

    padding: 6px 20px 6px 6px;

}



.button-theme.btn-outline {

    background-color: transparent;

    color: var(--color-primary);

}



.button-theme.btn-outline:hover {

    background-color: var(--color-primary);

    color: #fff;

}



.button-theme.btn-secondary {

    background-color: var(--color-secondary);

    border-color: var(--color-secondary);

    color: #fff;

}



.button-theme.btn-secondary:hover {

    background-color: transparent;

    color: var(--color-secondary);

}



.button-theme.btn-secondary.btn-outline {

    background-color: transparent;

    color: var(--color-secondary);

}



.button-theme.btn-secondary.btn-outline:hover {

    background-color: var(--color-secondary);

    color: #fff;

}



.button-theme.btn-accent {

    background-color: var(--color-accent);

    border-color: var(--color-accent);

    color: #fff;

}



.button-theme.btn-accent:hover {

    background-color: transparent;

    color: var(--color-accent);

}



.button-theme.btn-accent.btn-outline {

    background-color: transparent;

    color: var(--color-accent);

}



.button-theme.btn-accent.btn-outline:hover {

    background-color: var(--color-accent);

    color: #fff;

}



.button-theme:hover {

    background-color: #fff;

    color: var(--secoundary-color);

}



.main-header {

    position: relative;

    z-index: 999;

}



.main-header .top-head {

    background-color: var(--color-primary);

    padding: 10px 0 34px;

}



.main-header .top-head .youtube-button {

    display: flex;

    align-items: center;

    justify-content: start;

    gap: 15px;

}



.main-header .top-head .youtube-button p {

    margin: 0;

    color: #fff;

    font-size: 14px;

    font-weight: 600;

}



.main-header .top-head .youtube-button img {

    width: 100%;

    max-width: 100px;

}



.main-header .header-wrapper .nav-head .navbar-nav {

    display: contents;

}




.main-header .header-info ul {

    display: flex;

    justify-content: end;

    align-items: center;

    gap: 25px;

}



.main-header .header-info ul li {

    display: flex;

    justify-content: start;

    align-items: center;

}



.main-header .header-info ul li i {

    color: #fff;

    font-size: 18px;

    line-height: 1;

}



.main-header .header-info ul li a {

    color: #fff;

    font-size: 14px;

    font-weight: 500;

    line-height: 1.5;

    padding-left: 10px;

}



.main-header .nav-head {

    position: absolute;

    top: 52px;

    width: 100%;

}



.main-header .nav-head .row {

    box-shadow: 0px 2px 24px 0px #00000026;

    background: #FFFFFF;

    border-radius: 10px;

    padding: 8px 20px;

}



.main-header .nav-head .logo-head {

    height: 100%;

    display: flex;

    align-items: center;

}



.main-header .nav-head .logo-head img {

    width: 100%;

    max-width: 180px;

}



.mobile-header {

    display: none;

}



.main-header .nav-head .main-menu ul li a {

    padding: 10px 0;

    display: block;

}



.main-header .nav-head .button-theme {

    font-size: 14px;

    padding: 5px 15px 5px 5px;

}



.main-header .navbar-nav ul {

    display: flex;

    gap: 20px;

}

/* RESET */
.nav-head .main-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* MAIN MENU */
.nav-head .main-menu>ul>li {
    position: relative;
    display: inline-block;
    margin: 0 15px;
}

/* LINK STYLE */
.nav-head .main-menu>ul>li>a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
    padding: 10px 0;
    display: inline-block;
    transition: 0.3s;
}

/* HOVER COLOR */
.nav-head .main-menu>ul>li:hover>a {
    color: #007bff;
}

/* ===== SUBMENU FIX ===== */
.nav-head .main-menu ul li .sub-menu {
    position: absolute;
    top: 100%;
    /* IMPORTANT: gap remove */
    left: 0;
    min-width: 300px;
    background: #fff;
    border-radius: 10px;
    padding: 10px 0;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    z-index: 999;
    display: block;
}


/* SHOW ON HOVER */
.nav-head .main-menu ul li:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* SUBMENU ITEMS */
.nav-head .main-menu ul li .sub-menu li {
    display: block;
    position: relative;
    padding-right: 0 !important;
}

/* SUBMENU LINKS */
.nav-head .main-menu ul li .sub-menu li a {
    display: block;
    padding: 10px 20px;
    color: #333;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* SUBMENU HOVER EFFECT */
.nav-head .main-menu ul li .sub-menu li a:hover {
    background: var(--color-secondary);
    color: #fff;
    padding-left: 25px;
}

/* MULTI LEVEL */
.nav-head .main-menu ul li .sub-menu li .sub-menu {
    top: 0;
    left: 100%;
    margin-left: 0;
    /* gap remove */
}

/* ===== ARROW MAIN ===== */
.nav-head .main-menu ul li.menu-item-has-children>a {
    position: relative;
    padding-right: 18px;
}

.nav-head .main-menu ul li.menu-item-has-children>a::after {
    content: "";
    position: absolute;
    right: 0;
    top: 18px;
    width: 7px;
    height: 7px;
    border-right: 2px solid #222;
    border-bottom: 2px solid #222;
    transform: translateY(-50%) rotate(45deg);
    transition: 0.3s ease;
}

/* ROTATE ON HOVER */
.nav-head .main-menu ul li:hover>a::after {
    transform: translateY(5%) rotate(222deg);
    border-color: #007bff;
}

/* ===== SUBMENU ARROW ===== */
.nav-head .main-menu ul li .sub-menu li.menu-item-has-children>a {
    padding-right: 20px;
}

.nav-head .main-menu ul li .sub-menu li.menu-item-has-children>a::after {
    content: "";
    position: absolute;
    right: 15px;
    top: 50%;
    width: 6px;
    height: 6px;
    border-right: 2px solid #555;
    border-bottom: 2px solid #555;
    transform: translateY(-50%) rotate(-45deg);
    transition: 0.3s ease;
}

/* SUBMENU ARROW HOVER */
.nav-head .main-menu ul li .sub-menu li:hover>a::after {
    border-color: #007bff;
    transform: translateY(-50%) rotate(-45deg) translateX(3px);
}

.home-banner {
    background: linear-gradient(45deg, #e8f1f8, #3583c2);
    background-position: center right;

    background-repeat: no-repeat;

    background-size: cover;

    padding: 120px 0 0;

}



.home-banner .banner-content {

    padding-bottom: 0;

}



.home-banner .banner-content .banner-title {

    font-size: 30px;

    font-weight: 700;

    color: var(--color-accent);

    padding-bottom: 25px;

    position: relative;

    display: inline-block;

}



.home-banner .banner-content .banner-title::after {

    content: "";

    background-image: url(../images/Line.svg);

    background-position: center;

    background-repeat: no-repeat;

    background-size: contain;

    width: 100%;

    height: 30px;

    position: absolute;

    left: 0;

    bottom: 6px;

}



.home-banner .banner-content h1 {

    font-size: 26px;

    font-weight: 600;

    color: var(--color-text);

    line-height: 1.6;

}



.home-banner .banner-content p {

    font-weight: 600;

}



.home-banner .banner-content ul {

    display: flex;

    justify-content: start;

    align-items: center;

    gap: 15px;

    margin-top: 25px;

}



.home-banner .banner-content ul li {

    background: #FFFFFF;

    border-bottom: 3.03px solid var(--color-secondary);

    border-radius: 10px;

    padding: 10px 15px;

    text-align: center;

}



.home-banner .banner-content ul li span {

    color: #000000;

    font-size: 12px;

    font-weight: 500;

    line-height: 1.4;

    display: block;

    margin-bottom: 5px;

}



.home-banner .banner-content ul li img {

    width: 100px;

    height: 30px;

    object-fit: contain;

}



.home-banner .image-outer {

    position: relative;

    padding-left: 40px;

}



.home-banner .image-outer .image {

    box-shadow: 0px 12.48px 7.8px 0px #00000040;

    border: 2.88px solid #FFFFFF;

    width: 280px;

    height: 160px;

    border-radius: 5px;

    overflow: hidden;

}



.home-banner .image-outer .image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}



.home-banner .image-outer .image.imagecard-2 {

    position: relative;

    top: -35px;

    left: 60px;

    z-index: 1;

}



.home-banner .image-outer .image.imagecard-3 {

    position: relative;

    top: -60px;

}



.home-banner .middle-doctorimg {

    object-position: bottom;

    object-fit: contain;

    height: 100%;

    position: absolute;

    left: 25px;

    right: 0;

    margin: auto;

    width: 440px;

    bottom: 0;

}



.education-channel {

    background: linear-gradient(166.86deg, #FFFFFF 12.67%, #DAE4FF 158.76%);

}



.education-channel .image-doctor img {

    width: 170px;

}



.education-channel .heading-icons {

    gap: 20px;

    justify-content: center;

}



.education-channel .heading-icons h6 {

    margin-bottom: 0;

}



.education-channel .section-title p {

    margin-bottom: 8px;

}



.education-channel .section-title .verify-icon img {

    width: 30px;

}



.education-channel .section-title .youtube-icon img {

    width: 110px;

}



.video-gallery-section {

    margin-bottom: 80px;

}



.video-gallery-section .main-video-container {

    position: relative;

    border-radius: 15px;

    overflow: hidden;

    height: 425px;

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);

    width: 95%;

}



.video-gallery-section .main-thumb {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

}



.video-gallery-section .play-overlay {

    position: absolute;

    bottom: 25px;

    left: 0;

    right: 0;

    margin: auto;

    width: max-content;

}



.video-gallery-section .watch-btn {

    background: #ffffff;

    padding: 10px 20px;

    border-radius: 50px;

    display: flex;

    align-items: center;

    gap: 12px;

    font-weight: 700;

    color: #333;

}



.video-gallery-section .play-icon {

    background: #e63946;

    color: #fff;

    width: 32px;

    height: 32px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 12px;

}



.video-gallery-section .video-item {

    background: #ffffff;

    border-radius: 0;

    transition: all 0.3s ease;

    box-shadow: 0px 2px 34px 0px #00000017;

    padding-left: 6px !important;

}

.video-gallery-section .video-item:hover {
    background-color: var(--color-secondary) !important;
    color: #fff;
}

.video-gallery-section .video-item:hover h6,
.video-gallery-section .video-item:hover p {
    color: #fff;
}


.video-gallery-section .nav-link.active.video-item {

    background: var(--color-secondary) !important;

}



.video-gallery-section .nav-link img {

    border: 2px solid #fff;
    height: 115px;
    object-fit: cover;

}



.video-gallery-section .nav-link.active .video-title {

    color: #ffffff !important;

}



.video-gallery-section .nav-link.active .meta-info,

.video-gallery-section .nav-link.active .views {

    color: #ffffff !important;

}



.video-gallery-section .video-title {

    font-size: 0.9rem;

    font-weight: 700;

    color: #333;

    margin: 0;

    line-height: 1.4;

}



.video-gallery-section .meta-info {

    font-size: 12px;

    line-height: 18px;

    color: #707070;

    margin: 6px 0;

    font-weight: 600;

}



.video-gallery-section .views {

    font-size: 14px;

    font-weight: 600;

    color: #707070;

    margin: 0;

}



.video-gallery-section .video-item:not(.active):hover {

    background: #f8f9fa;

    transform: translateX(5px);

}



.pitch-section .pitch-box {

    background-color: var(--color-primary);

    border-radius: 20px;

    position: relative;

    padding: 0;

}



.pitch-section .pitch-box .leftside-image {

    position: absolute;

    left: 25px;

    width: 220px;

    height: auto;

    bottom: -40px;

}



.pitch-section .pitch-box .rightside-image {

    position: absolute;

    right: 0;

    width: 300px;

    height: 100%;

    top: 0;

    bottom: 0;

    padding: 0;

    object-fit: cover;

}



.pitch-section .pitch-box .pitch-content {

    text-align: center;

    padding: 30px 0 50px;

}



.pitch-section .pitch-box .pitch-content h3 {

    color: #fff;

    font-size: 26px;

    line-height: 1.5;

    font-weight: 600;

    margin-bottom: 10px;

}



.pitch-section .pitch-box .pitch-content p {

    color: #fff;

    margin: 0;

}



.pitch-section .pitch-box .btn-group {

    gap: 15px;

    justify-content: center;

    position: absolute;

    bottom: -20px;

    left: 0;

    right: 0;

    margin: auto;

}



.pitch-section .pitch-box .btn-group a {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 15px;

    background-color: var(--color-secondary);

    padding: 10px 15px;

    font-size: 16px;

    font-weight: 600;

    border-radius: 10px;

    border: 1px solid var(--color-secondary);

    color: #fff;

}

.pitch-section .pitch-box .btn-group a:hover {
    background-color: var(--color-accent);
    border: 1px solid var(--color-accent);
}

.pitch-section .pitch-box .btn-group a.btn-online:hover {
    background-color: var(--color-primary);
    border: 1px solid var(--color-primary);
}

.pitch-section .pitch-box .btn-group img {

    width: 30px;

}



.pitch-section .pitch-box .btn-group a.btn-online {

    border-color: var(--color-accent);

    background-color: var(--color-accent);

}



.success-stories .card-stories {

    width: 100%;

    height: 100%;

    background: #FFFFFF;

    border-bottom: 4px solid #2480CB;

    box-shadow: 0px 1px 44px 0px #0000001C;

    padding: 15px;

    border-radius: 10px;

    display: flex;

    justify-content: start;

    align-items: stretch;

}



.success-stories .row.row.justify-content-center {

    row-gap: 20px;

}



.success-stories .card-stories .image {

    width: 220px;

    height: 180px;

    border-radius: 10px;

    position: relative;

    overflow: hidden;

}



.success-stories .card-stories .image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

}



.success-stories .card-stories .image .play-btn {

    width: 100%;

    height: 100%;

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    background: #000000B2;

    display: flex;

    justify-content: center;

    align-items: center;

    opacity: 0.5;

    visibility: hidden;

    transition: all 0.3s ease;

}



.success-stories .card-stories .image .play-btn i {

    width: 40px;

    height: 40px;

    border-radius: 100px;

    background-color: var(--color-accent);

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 24px;

    color: #fff;

}



.success-stories .card-stories:hover .image .play-btn {

    visibility: visible;

    opacity: 1;

}



.success-stories .card-stories .content {

    width: calc(100% - 220px);

    padding-left: 20px;

}



.success-stories .card-stories .content h4 {

    font-size: 18px;

    font-weight: 600;

    color: var(--color-text);

    line-height: 1.6;

}



.success-stories .card-stories .content .button-theme {

    padding: 5px 15px;

    margin-top: 10px;

}



.success-stories .card-stories .content .button-theme img {

    width: 25px;

    height: 25px;

    object-fit: contain;

}



.button-theme.btn-youtube {

    box-shadow: 0px 4px 20px 0px #0000001A;

    border: 1px solid #DDDDDD;

    background: #FFFFFF;

    color: var(--color-text);

    font-size: 16px;

    font-weight: 600;

}



.button-theme.btn-youtube img {

    height: 20px;

    width: auto;

    object-fit: contain;

}



.about-doctor {

    background-position: center;

    background-repeat: no-repeat;

    background-size: cover;

    padding-top: 120px;

}



.about-doctor .outer-box {

    background: linear-gradient(90deg, #FFFFFF 0%, #FFFFFF 70%, rgba(255, 255, 255, 0.5) 100%);

    max-width: 90%;

    padding: 40px;

    padding-left: 150px;

    border-radius: 20px;

    margin-left: 120px;

}



.about-doctor .section-title {

    max-width: 750px;

    margin-bottom: 0;

    margin-left: auto;

    padding-right: 60px;

}



.about-doctor .doctor-image {

    position: absolute;

    bottom: 0;

    left: 50%;

    transform: translateX(-145%);

    width: 450px;



}



.about-doctor .section-title .designation {

    font-size: 16px;

    line-height: 1.5;

    max-width: 500px;

    display: block;

    font-weight: 600;

    color: var(--color-secondary);

    margin: auto;

}



.about-doctor .section-title ul {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 20px;

    padding: 20px 0;

}



.about-doctor .section-title ul li {

    box-shadow: 0px 2px 14px 0px #00000026;

    background: var(--color-secondary);

    padding: 14px 20px;

    border-radius: 10px;

    color: #fff;

    font-size: 14px;

    font-weight: 600;

    line-height: 1.5;

}



.about-doctor .section-title p {

    max-width: 600px;

    margin: 0 auto 15px;

}



.about-us {

   background: #f9fcff;

}



.about-us .section-title .heading {

    max-width: 800px;

    margin: auto;

}



.about-us .our-rating ul {

    display: flex;

    justify-content: start;

    align-items: center;

    gap: 15px;

    margin-top: 25px;

}



.about-us .our-rating ul li {

    background: #FFFFFF;

    border: 1px solid #8D8D8D;

    border-bottom: 3.03px solid var(--color-secondary);

    border-radius: 10px;

    padding: 10px 15px;

    text-align: center;

}



.about-us .our-rating ul li span {

    color: #000000;

    font-size: 12px;

    font-weight: 500;

    line-height: 1.4;

    display: block;

    margin-bottom: 5px;

}



.about-us .our-rating ul li img {

    width: 100px;

    height: 30px;

    object-fit: contain;

}



.about-us .about-content h4 {

    font-size: 24px;

    line-height: 1.5;

    font-weight: 600;

    color: var(--color-text);

    padding: 25px 0 20px;

    margin-bottom: 0;

}



.about-us .about-content ul li {

    padding-left: 30px;

    color: #555555;

    font-weight: 500;

    font-size: 16px;

    line-height: 1.5;

    margin-bottom: 10px;

    position: relative;

}



.about-us .about-content ul li::before {

    content: "\ea51";

    font-family: 'boxicons';

    font-weight: 400;

    font-size: 20px;

    position: absolute;

    left: 0;

    top: -2px;

    color: var(--color-secondary);

}



.about-us .image-box {

    width: 100%;

    height: 100%;

}



.about-us .image-box img {

    width: 100%;

    height: 100%;

    object-fit: contain;

    object-position: center;

}



.about-us .specializations {

    padding-top: 40px;

}



.about-us .specializations .section-title .heading {

    font-size: 26px;

}



.about-us .card-about {

    background: #FFFFFF;

    box-shadow: 0px 2px 34px 0px #00000017;

    width: 100%;

    height: 100%;

    border-radius: 20px;

    padding: 20px;

    text-align: center;

}



.about-us .card-about .icon {

    box-shadow: 0px 0px 10px 0px #0000001A;

    background: #FFFFFF;

    width: 80px;

    height: 80px;

    border-radius: 100px;

    display: flex;

    justify-content: center;

    align-items: center;

    padding: 15px;

    margin: 0 auto 15px;

}



.about-us .card-about .icon img {

    width: 100%;

    height: 100%;

    object-fit: contain;

}



.about-us .card-about .content h4 {

    font-size: 16px;

    font-weight: 700;

    line-height: 1.5;

    color: var(--color-text);

    margin-bottom: 15px;

}



.about-us .card-about .content p {

    margin: 0;

    font-weight: 400;

    color: #555
}



.services {

    background: linear-gradient(176.59deg, rgba(255, 255, 255, 0) -10.77%, rgba(222, 246, 255, 0.7) 97.19%);

}



.services .nav-pills {

    justify-content: center;

    gap: 20px;

}



.services .nav-pills .nav-item .nav-link {

    background: #FFFFFF;

    border: 1px solid #4A4A4A4D;

    border-radius: 10px;

    padding: 15px;

    width: 150px;

    text-align: center;

    font-size: 16px;

    color: var(--color-text);

    font-weight: 600;

    position: relative;

}

.services .nav-pills .nav-item .nav-link:hover {
    background-color: var(--color-text);
    color: #fff;
}


.services .nav-pills .nav-item .nav-link::after {

    content: "\ed91";

    color: var(--color-text);

    font-family: 'boxicons';

    font-weight: 400;

    position: absolute;

    bottom: -18px;

    left: 0;

    right: 0;

    font-size: 26px;

    opacity: 0;

}



.services .nav-pills .nav-item .nav-link.active::after {

    opacity: 1;

}



.services .nav-pills .nav-item .nav-link .icon {

    background: #F1F1F1;

    width: 60px;

    height: 60px;

    border-radius: 100px;

    padding: 10px;

    margin: 0 auto 10px;

}



.services .nav-pills .nav-item .nav-link .icon img {

    width: 100%;

    height: 100%;

    object-fit: contain;

}



.services .nav-pills .nav-item .nav-link.active {

    background-color: var(--color-text);

    color: #fff;

}



.services .nav-pills .nav-item .nav-link.active .icon {

    background-color: #fff;

}



.services .tab-content.tab-outer {

    background: #FFFFFF;

    padding: 20px;

    border-radius: 20px;

}



.services .tab-content.tab-outer .nav-link {

    display: flex;

    justify-content: start;

    align-items: center;

    gap: 15px;

    border: 1px solid #C3C3C3;

    border-radius: 5px;

    padding: 8px 10px;

    color: #222;
    text-align: start;

}

.services .tab-content.tab-outer .nav-link:hover {
    background-color: var(--color-secondary);
    color: #fff;
}

.services .tab-content.tab-outer .nav-link .icon {

    width: 40px;

    height: 40px;

    border-radius: 100px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 6px;

    background-color: #fff;

}



.services .tab-content.tab-outer .nav-link .icon img {

    width: 100%;

    height: 100%;

    object-fit: contain;

}



.services .tab-content.tab-outer .nav-link.active {

    background-color: var(--color-secondary);

    color: #fff;

}



.services .tab-content.tab-outer .nav-link.active .icon img {

    filter: invert(45%) sepia(11%) saturate(5579%) hue-rotate(175deg) brightness(82%) contrast(89%);

}



.services .tab-content .content-service {

    padding-left: 40px;

}



.services .tab-content .content-service h4 {

    font-size: 24px;

    line-height: 1.5;

    font-weight: 600;

    color: var(--color-secondary);

    margin-bottom: 15px;

}



.services .tab-content .content-service .btn-group {

    margin-top: 15px;

    gap: 15px
}



.services .tab-content .content-service .btn-group .button-theme.button-theme.btn-accent {

    padding: 8px 8px 8px 15px;

}



.services .tab-content .content-service .btn-group .button-theme.button-theme.btn-accent i {

    color: var(--color-accent);

    font-size: 24px;

}



.services .tab-content iframe {

    width: 100%;

    height: 350px;

    border-radius: 10px;

}



.award-section {

    margin: 50px 0;

}



.award-section:after {

    content: "";

    background-image: url(../images/award-banner.png);

    background-repeat: no-repeat;

    background-size: cover;

    background-position: center;

    position: absolute;

    width: 75%;

    height: 100%;

    top: 0;

    left: 0;

    right: 0;

    margin: auto;

    border-radius: 20px;

}



.award-section .section-title {

    position: relative;

    z-index: 1;

    margin-bottom: 20px;

}



.award-section .items {

    padding: 30px 15px 15px;

}



.award-section .image-award {

    width: 100%;

    height: 280px;

    border-radius: 5px;

    border: 1px solid #FF8A00;

    box-shadow: 0px 16px 10px 0px #00000040;

    overflow: hidden;

    position: relative;

}



.award-section .owl-item.center .image-award {

    transform: translateY(-20px);

}



.award-section .image-award img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}



.award-section .image-award a {

    position: absolute;

    width: 100%;

    height: 100%;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    background: linear-gradient(180deg, rgba(221, 82, 38, 0.2) 0%, rgba(68, 68, 68, 0.2) 100%),

        linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);

    padding: 20px;

    color: #fff;

    display: flex;

    justify-content: center;

    align-items: flex-end;

    font-size: 30px;

    opacity: 0;

    transition: all 0.3s ease;

}



.award-section .image-award:hover a {

    opacity: 1;

}



.google-review {

    background: linear-gradient(166.86deg, #FFFFFF 12.67%, #FFF3E5 111.76%);

}



.google-review .google-title {

    display: flex;

    justify-content: start;

    align-items: center;

    gap: 20px
}



.google-review .google-title .image-doc img {

    width: 130px;

    height: 130px;

}



.google-review .google-title h4 {

    font-size: 24px;

    font-weight: 700;

    color: var(--color-text);

    line-height: 1.5;

    margin: 0;

}



.google-review .google-title h4 span {

    color: var(--color-accent);

}



.google-review .google-box {

    display: flex;

    justify-content: center;

    align-items: stretch;

    gap: 20px;

}



.google-review .google-box .google-rating-button {

    display: flex;

    justify-content: center;

    align-items: center;

    background: #FFFFFF;

    border: 1.22px solid #DDDDDD;

    border-radius: 6px;

    padding: 10px 15px;

    gap: 10px;

}



.google-review .google-box .google-rating-button img {

    width: 25px;

    height: 25px;

    object-fit: contain;

}



.google-review .google-box .google-rating-button .box-rating {

    line-height: 1;

}



.google-review .google-box .google-rating-button p {

    margin-bottom: 0;

    line-height: 1;

    font-size: 12px;

    font-weight: 600;

    color: #333;

}



.google-review .google-box .google-rating-button .box-rating span {

    color: #f4b400;

    font-size: 12px;

    font-weight: 600;

    line-height: 1;

}



.google-review .google-box .google-rating-button .rating {

    border-left: 1px solid #ddd;

    padding-left: 10px;

    font-weight: 500;

    font-size: 14px;

}



.google-review .google-box .google-review {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

    background: #FFFFFF;

    border: 1.22px solid #DDDDDD;

    border-radius: 6px;

    padding: 10px 15px;

    font-size: 16px;

    color: #5E6271;

    font-weight: 600;

}



.google-review .google-box .google-review img {

    width: 25px;

    height: 25px;

    object-fit: contain;

}



.google-review .card-review {

    box-shadow: 3.56px 3.56px 17.8px 8.9px #00000010;

    background: #FFFFFF;

    border-radius: 10px;

    padding: 20px 20px 60px;

    height: 100%;

    position: relative;

}



.google-review .card-review .review-icon {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding-bottom: 25px;

}



.google-review .card-review .review-icon .quotes {

    width: 40px;

    height: 40px;

    object-fit: contain;

}



.google-review .card-review .review-icon .rating {

    height: 15px;

    width: auto;

}



.google-review .card-review h4 {

    font-size: 16px;

    color: var(--color-text);

    margin: 0;

    font-weight: 700;

    position: absolute;

    bottom: 20px;

}



.google-review .card-review p {

    margin: 0;

    color: #444444;

    font-weight: 400;



}



.contact-form {

    background-image: url(../images/contact_us.png);

    background-position: center;

    background-repeat: no-repeat;

    background-size: cover;

}



.contact-form .form-box {

    box-shadow: 0px 8.24px 24.73px 0px #959DA533;

    background: #FFFFFF;

    padding: 20px;

    width: 100%;

    max-width: 400px;

    border-radius: 20px;

}



.contact-form .input-group-text {

    border: 0;

    height: 45px;

    position: absolute;

    left: 5px;

    top: 0;

    background-color: transparent;

    z-index: 1;

}



.contact-form .input-group-text i {

    font-size: 18px;

    color: #1B2336;

    margin-top: 6px;

}



.contact-form .form-control {

    border: 1px solid #DDDDDD;

    background: #F8FAFB;

    border-radius: 50px !important;

    height: 45px;

    padding: 10px 20px 10px 50px;

}



.contact-form textarea.form-control {

    height: 100px;

    border-radius: 20px !important;

}



.contact-form .form-control::placeholder {

    font-size: 14px;

    font-weight: 400;

    color: #1B2336BF;

}



.contact-form .form-label {

    font-size: 14px;

    color: #0D1B2A;

    font-weight: 400;

}



.contact-form .form-box .button-theme {
    width: 100%;
    padding: 10px 25px;
    gap: 10px;

}



.contact-form .form-box .button-theme input {

    background-color: transparent;

    border: 0;

    padding: 0;

    color: #fff;

    font-size: 14px;

    line-height: 1;

    font-weight: 500;

    text-transform: uppercase;

}



.contact-form .form-box .button-theme:hover input {

    color: var(--color-accent);

}



.contact-form .contact-box {

    width: 100%;

}



.contact-form .contact-box h4,

.contact-form .map-box h4 {

    font-weight: 600;

    line-height: 1.5;

    font-size: 22px;

    color: var(--color-text);

    margin-bottom: 15px;

}



.contact-form .contact-box .info-box {

    display: flex;

    gap: 20px;

    align-items: center;

    justify-content: space-between;

}



.contact-form .contact-box .info-box .inner-box {

    padding: 12px 20px;

    border-radius: 10px;

    width: 48%;

    background-color: var(--color-secondary);

}



.contact-form .contact-box .info-box .inner-box a {

    display: flex;

    justify-content: start;

    align-items: center;

    gap: 20px;

}



.contact-form .contact-box .info-box .inner-box .icon {

    background: #FFFFFF33;

    width: 50px;

    height: 50px;

    border-radius: 100px;

    display: flex;

    justify-content: center;

    align-items: center;

    padding: 12px;

}



.contact-form .contact-box .info-box .inner-box .icon img {

    width: 100%;

    height: 100%;

    object-fit: contain;

}



.contact-form .contact-box .info-box .inner-box .content h5 {

    color: #fff;

    font-weight: 600;

    line-height: 1.5;

    font-size: 18px;

    margin-bottom: 0;

}



.contact-form .contact-box .info-box .inner-box .content p {

    line-height: 1.5;

    margin-bottom: 0;

    color: #fff;

    font-size: 14px;

    font-weight: 400;

}



.contact-form .contact-box .info-box .inner-box.black-box {

    background-color: var(--color-text);

}



.contact-form .map-box {

    width: 100%;

    box-shadow: 0px 8.24px 24.73px 0px #959DA533;

    background: #FFFFFF;

    border-radius: 20px;

    margin-top: 40px;

    padding: 20px;

}



.contact-form .map-box iframe {

    width: 100%;

    height: 200px;

    border-radius: 20px;

}



.contact-form .map-box p {

    display: flex;

    justify-content: start;

    align-items: center;

    gap: 15px;

}



.contact-form .map-box p i {

    color: var(--color-secondary);

    font-weight: 500;

    line-height: 1;

    font-size: 30px;

}



.blogs {

    background-color: #E2F2FF;

}



.blogs .blog-card {

    background: #FFFFFF;

    border-radius: 45px;

}



.blogs .blog-card .blog-img {
    width: 100%;
    height: 180px;
    border-radius: 35px;
    object-fit: cover;
    object-position: top;

}



.blogs .blog-card .blog-img img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}



.blogs .blog-card .blog-body {

    padding: 20px;

}



.blogs .blog-card .blog-body .date {

    color: #556171;

    font-size: 12px;

    font-weight: 400;

    line-height: 1.5;

    margin: 0;

    display: flex;

    align-items: center;

    gap: 10px;

}



.blogs .blog-card .blog-body .date span {

    width: 6px;

    height: 6px;

    opacity: 1;

    border-radius: 3px;

    display: block;

    background: #55617124;

}



.blogs .blog-card .blog-body .blog-title {

    font-size: 16px;

    line-height: 1.5;

    font-weight: 600;

    color: #0B1030;

    margin: 12px 0;

}



.faq-section .accordion-item {

    background: #FFFFFF;

    border: 1.39px solid #DDDDDD;

    margin-bottom: 20px;

    border-radius: 5px !important;

}



.faq-section .accordion-item:has(.accordion-button:not(.collapsed)) {

    border-top: 3px solid var(--color-secondary);

}



.faq-section .accordion-item .accordion-button {

    background-color: transparent;

    border: 0;

    font-size: 16px;

    font-weight: 600;

    color: var(--color-text);

    box-shadow: none;

}



.faq-section .accordion-item .accordion-button:not(.collapsed) {

    color: var(--color-secondary);

}



.faq-section .accordion-item .accordion-button::after {

    content: "\ebc0";

    font-family: "boxicons";

    background-image: none;

    transform: none;

}



.faq-section .accordion-item .accordion-button:not(.collapsed)::after {

    content: "\eb8b";

    transform: none;

}



.faq-section .accordion-body {

    padding-top: 10px;

}



.faq-section .accordion-body p {

    color: #888888;

    font-size: 14px;

    font-weight: 500;

}



.faq-section .accordion-body p:last-child {

    margin-bottom: 0;

}



.footer-section {

    background-size: cover;

    background-repeat: no-repeat;

    background-position: center;

}



.footer-section .upper-box {

    padding: 40px 0;

    border-bottom: 2px dashed #ffff;

}



.footer-section .upper-box .footer-logo img {

    width: 100%;

    max-width: 180px;

    border-radius: 5px;

}



.footer-section .upper-box .follow-us {

    display: flex;

    justify-content: end;

    align-items: center;

    gap: 20px
}



.footer-section .upper-box .follow-us p {

    margin: 0;

    color: #fff;

    font-weight: 600;

    font-size: 14px;

}



.footer-section .upper-box .follow-us ul {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 10px;

}



.footer-section .upper-box .follow-us ul li a {

    width: 35px;

    height: 35px;

    border-radius: 100px;

    background-color: #fff;

    display: flex;

    justify-content: center;

    align-items: center;

    padding: 5px;

}



.footer-section .upper-box .follow-us ul li img {

    width: 100%;

    height: 100%;

    object-fit: contain;

}



.footer-section .middle-box {

    padding: 40px 0;

}



.footer-section .middle-box h5 {

    color: #fff;

    font-size: 16px;

    font-weight: 700;

}



.footer-section .middle-box .footer-info li {

    padding-left: 25px;

    margin-bottom: 15px;

    position: relative;

}



.footer-section .middle-box .footer-info li i {

    color: #fff;

    position: absolute;

    left: 0;

    top: 2px;

    font-size: 18px;

}



.footer-section .middle-box .footer-info li a {

    color: #fff;

    font-size: 14px;

    font-weight: 400;

    line-height: 1.5;

}



.footer-section .middle-box .footer-info li a:hover {

    color: var(--color-accent);

}



.footer-section .middle-box .footer-info li a strong {

    font-weight: 600;

}



.footer-section .middle-box .footer-links li {

    margin-bottom: 12px;

}



.footer-section .middle-box .footer-links li a {

    color: #fff;

    font-size: 14px;

    font-weight: 500;

    line-height: 1.5;

}



.footer-section .middle-box .footer-links li a:hover {

    color: var(--color-accent);

}



.footer-section .copyright {

    background-color: var(--color-secondary);

    padding: 10px 20px;

    text-align: center;

}



.footer-section .copyright p {

    color: #fff;

    margin: 0;

    font-size: 14px;

    font-weight: 600;

}



/* about doctor page start */



.doctor-hero-section {
 background: linear-gradient(45deg, #f9fbfc, #c0dbed);
    background-position: center right;

    background-repeat: no-repeat;

    background-size: cover;

    padding: 80px 0 0 0;

}



.doctor-hero-section h1 {

    font-size: 32px;

    line-height: 1.5;

    font-weight: 700;

    color: var(--color-text);

    padding-bottom: 5px;

}



.doctor-hero-section .name-highlight {

    color: #e63946;

}



.doctor-hero-section .credentials {

    font-weight: 600;

    color: #444;

    font-size: 1.1rem;

    line-height: 1.5;

}



.doctor-hero-section .row.justify-content-center .col-6:nth-child(1) .stat-card,

.doctor-hero-section .row.justify-content-center .col-6:nth-child(3) .stat-card {

    border-top: 4px solid var(--color-secondary);

}



.doctor-hero-section .row.justify-content-center .col-6:nth-child(2) .stat-card,

.doctor-hero-section .row.justify-content-center .col-6:nth-child(4) .stat-card {

    border-bottom: 4px solid var(--color-secondary);

}





.doctor-hero-section .stat-card {

    background: #ffffff;

    border-radius: 15px;

    padding: 20px 10px;

    text-align: center;

    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);



}



.doctor-hero-section .stat-card p {

    font-size: 14px;

    font-weight: 600;

    margin-bottom: 0;

}



.doctor-hero-section .stat-card h3 {

    font-weight: 700;

    font-size: 1.6rem;

    color: #444444;

    margin: 0;

}





.doctor-hero-section .dr-image {

    width: 100%;

    display: block;

    margin-top: 20px;

}





.Qualification {

    padding: 80px 0;

    background: linear-gradient(166.86deg, #FFFFFF 12.67%, #ffebeb 158.76%);

}



.Qualification .qualifications-left-box {

    background: #fff;

    padding: 6px;

    border-radius: 10px;

    box-shadow: 0 0 20px 0 rgba(0, 0, 0, .05);

    border: 1px solid #ddd;

}



.Qualification .qualifications-left-box h5 {

    color: #27374e;

    font-weight: 600
}



.Qualification .qualifications-left-box p {

    font-weight: 500;

    font-size: 15px;

    line-height: 1.5;

    margin-bottom: 0px
}



.Qualification .qualifications-left-box .inner-qualifications {

    background-color: var(--color-text);

    border-radius: 10px;

}



.Qualification .qualifications-left-box .head-timing:first-child {

    margin-bottom: 12px
}



.Qualification .qualifications-left-box {

    position: relative;

}



.Qualification .qualification-tabs {

    box-shadow: 0 0 20px 0 rgba(0, 0, 0, .05);

    border: 1px solid #ddd;

    padding: 10px;

    border-radius: 10px
}



.Qualification .qualification-tabs ul {

    column-gap: 10px;

    flex-direction: row;

    flex-wrap: nowrap;

    overflow-x: scroll;

    padding-bottom: 10px
}



.Qualification .qualification-tabs ul::-webkit-scrollbar {

    width: 100%;

    height: 5px
}



.Qualification .qualification-tabs ul::-webkit-scrollbar-track {

    background: #f1f1f1
}



.Qualification .qualification-tabs ul::-webkit-scrollbar-thumb {

    background: #888
}



.Qualification .qualification-tabs ul li button {

    color: #555;

    border: 1px solid #ddd;

    padding: 10px 10px;

    width: max-content;

    font-weight: 500;

}



.Qualification .qualification-tabs ul li button.active {

    background: var(--color-secondary);

    color: #fff;

    border: 1px solid var(--primary-color)
}



.Qualification .qualification-content {

    box-shadow: 0 0 20px 0 rgba(0, 0, 0, .05);

    border: 1px solid #ddd;

    padding: 20px;

    border-radius: 10px;

    margin-top: 20px;

    background: #fff
}



.Qualification .content-box h4 {

    font-weight: 600;

    color: var(--color-accent);

}



.Qualification .qualification-content p,

.Qualification .qualification-content ul {

    margin-bottom: 10px;

    line-height: 2
}



.Qualification .qualification-content ul {

    list-style: disc;

    padding-left: 20px
}



.Qualification .qualification-content ul li {

    line-height: 2
}



.Qualification .qualification-content ul li strong {

    color: var(--color-secondary);

}



.Qualification .qualification-content ul li::marker {

    color: var(--color-secondary);

}



.Qualification .year-box {

    background-color: #fff;

    display: flex;

    align-items: center;

}



.Qualification .year-box img {

    width: 30px;

    border-radius: 0 !important;

}



.Qualification .year-box h3 {

    font-weight: 600;

    font-size: 32px;

    margin: 0 10px;

    color: var(--color-accent);

}



.Qualification .qualifications-left-box img {

    border-radius: 10px;

}



.Qualification .qualifications-left-box h3 {

    font-size: 22px;

    text-align: center;

    padding-top: 20px;

    padding-bottom: 20px;

    color: #fff;

    font-weight: 600;

}



.Qualification .year-box {

    margin-top: 10px;

    background-color: #fff;

    position: absolute;

    bottom: 10px;

    width: 92%;

    border-radius: 8px;

    left: 0;

    padding: 15px 10px;

    right: 0;

    margin: auto;

}



.Qualification .year-box h3 {

    color: var(--color-accent);

    font-size: 28px;

    font-weight: 600;

    padding: 0;

}



.Qualification .year-box p {

    font-weight: 600;

}



/* about doctor page end*/



/* .recovery-section {

    background: url(https://naveen.knowyourright.net/wp-content/uploads/2025/12/background-5.webp);

} */



.gallery-curve-section {

    overflow: hidden;

    margin-top: -50px;



}



.gallery-curve-section .owl-stage-outer {

    padding: 60px 0;

}



.gallery-curve-section .item {

    transition: all 0.6s ease-in-out;

    overflow: hidden;

    height: 450px;

    border-radius: 10px;

}



.gallery-curve-section .owl-item:not(.center) .item {

    transform: scale(0.85) perspective(1500px) rotateY(35deg);

}



.gallery-curve-section .owl-item.center+.owl-item .item {

    transform: scale(0.85) perspective(1500px) rotateY(-35deg);

    transform-origin: left center;

}



.gallery-curve-section .owl-item.center {

    z-index: 10;

}



.gallery-curve-section .owl-item.center .item {

    transform: scale(1.1);

    opacity: 1;

}



.gallery-curve-section img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

}



.gallery-curve-section .owl-dots {

    display: none;

}



.recovery-section .gallery-curve-section .recovery-carousel .owl-item.owl-item.active.center .item {

    height: 300px;

}



.recovery-section .gallery-curve-section .recovery-carousel .owl-stage-outer .owl-stage {

    align-items: center;

    display: flex;

}



.recovery-section .gallery-curve-section .recovery-carousel .owl-item.prev-1 .item {

    transform: scale(.8) perspective(1500px) rotateY(35deg);

    margin-left: -90px;

    margin-right: -40px;

}



.recovery-section .gallery-curve-section .recovery-carousel .owl-item.prev-2 .item {

    transform: scale(1) perspective(1500px) rotateY(41deg);

    margin-left: -30px;

}



.recovery-section .gallery-curve-section .recovery-carousel .owl-item.next-1 .item {

    transform: scale(.76) perspective(1500px) rotateY(-35deg);

    margin-left: 45px;

    margin-right: -100px;

}



.recovery-section .gallery-curve-section .recovery-carousel .owl-item.next-2 .item {

    transform: scale(1) perspective(1500px) rotateY(-41deg);

    margin-left: -20px;

    margin-right: -30px;

}



.aosih-hospital-section {

    background-color: #ffffff;

    padding: 100px 0 70px 0;

    background-position: center right;

    background-repeat: no-repeat;

    background-size: cover;

    overflow: hidden;



}



.aosih-hospital-section .content-column {

    padding-right: 50px;

}



.aosih-hospital-section .main-title {

    font-weight: 700;

    font-size: 38px;

    color: #333333;

    line-height: 1.4;

    margin-bottom: 10px;

}



.aosih-hospital-section .main-title span.highlight {

    color: #ef4444;

}



.aosih-hospital-section .description {

    color: #666666;

    margin-bottom: 20px;

    line-height: 1.6;

}



.aosih-hospital-section .feature-pill {

    background: linear-gradient(90deg, #B9EDFF 0%, #ffffff00 100%);

    border-left: 1px solid #2B8FE6;

    border-radius: 50px;

    padding: 15px 30px;

    margin-bottom: 15px;

    display: flex;

    align-items: center;

    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);

    transition: transform 0.3s ease;

}



.aosih-hospital-section .feature-pill:hover {

    transform: translateX(10px);

}



.aosih-hospital-section .feature-pill span {

    font-weight: 600;

    color: #1e293b;

    font-size: 16px;

}



.aosih-hospital-section .rating-card {

    background: #ffffff;

    border-radius: 12px;

    padding: 15px;

    text-align: center;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);

    border-bottom: 4px solid var(--color-secondary);

    min-width: 140px;

}



.aosih-hospital-section .rating-val {

    font-weight: 700;

    font-size: 0.9rem;

    color: #334155;

    display: block;

}



.aosih-hospital-section .brand-logo {

    max-width: 100px;

    margin-top: 5px;

}



.aosih-hospital-section .hospital-image-container {

    position: relative;

    border-radius: 20px;

    overflow: hidden;

    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);

}



.aosih-hospital-section .hospital-image-container img {

    width: 100%;

    height: auto;

    display: block;

}



/* stats */

.stats-section::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    bottom: 0;

    right: 0;

    width: 100%;

    max-width: 1200px;

    margin: auto;

    height: auto;

    background-image: url(../image/stats-bg.png);

    background-position: center;

    background-repeat: no-repeat;

    background-size: contain;

}



.stats-section .container {

    position: relative;

}



.stats-section .stats-list {

    display: flex;

    justify-content: center;

    align-items: stretch;

}



.stats-section .stats-list .stats-card {

    width: 33%;

    text-align: center;

    padding: 30px;

}



.stats-section .stats-list .stats-card[class*="border-"] {

    border-color: #CDCDCD;

}



.stats-section .stats-list .stats-card span {

    font-size: 3.375rem;

    font-weight: 600;

    line-height: 1.5;

    color: #000;

    line-height: 1.2;

}



.stats-section .stats-list .stats-card p {

    color: #000;

    font-size: 0.875rem;

    font-weight: 600;

    margin: 0;

}



.stats-section .ourclients {

    padding: 0 40px;

}



.stats-section .ourclients .items-clients {

    display: flex;

    justify-content: end;

    align-items: center;

    gap: 15px;

    margin-bottom: 30px;

}



.stats-section .ourclients.items-end .items-clients {

    justify-content: start;

}



.stats-section .ourclients .items-clients img {

    height: 40px;

    max-width: 250px;

    object-fit: contain;

}



.stats-section .ourclients-card {

    width: 100%;

    height: 100%;

    border-radius: 10px;

    overflow: hidden;

    background-repeat: no-repeat;

    background-position: center;

    background-size: cover;

    padding: 30px;

}



.stats-section .ourclients-card span.globally {

    color: #fff;

    font-size: 16px;

    line-height: 1.5;

    font-weight: 500;

}



.stats-section .ourclients-card .button-clients {

    display: flex;

    justify-content: start;

    align-items: center;

    margin-top: 25px;

    color: #fff;

    font-size: 0.875rem;

    line-height: 1.5;

    font-weight: 400;

    gap: 8px;

}



.stats-section .ourclients-card .button-clients a {

    text-decoration: underline;

}



.stats-section .ourclients-card .button-clients a:hover {

    color: var(--primary-color);

}



.stats-section .ourclients-card h3 {

    color: #fff;

    font-size: 2.875rem;

    line-height: 1.2;

    font-weight: 600;

}



.ortho-facilities-section {

    font-family: 'Poppins', sans-serif;

    position: relative;

    padding: 60px 0;

    background-size: cover;

    background-position: center;

    background-attachment: fixed;

    text-align: center;

    color: #ffffff;

}



.ortho-facilities-section .facility-badge {

    border: 1px solid #ffffff;

    border-radius: 50px;

    padding: 5px 25px;

    font-size: 0.9rem;

    display: inline-block;

    margin-bottom: 20px;

    text-transform: capitalize;

}



.ortho-facilities-section .facility-card {

    background: #ffffff;

    border-radius: 15px;

    padding: 40px 25px;

    height: 100%;

    transition: transform 0.3s ease, box-shadow 0.3s ease;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);

}



.ortho-facilities-section .facility-card:hover {

    transform: translateY(-10px);

}



.ortho-facilities-section .icon-box {

    width: 85px;

    height: 85px;

    background: linear-gradient(135deg, #ff6b6b 0%, #ee4444 100%);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0 auto 25px auto;

    border: 6px solid #fef2f2;

}



.ortho-facilities-section .icon-box img {

    width: 45px;

    height: 45px;

    filter: brightness(0) invert(1);

}



.ortho-facilities-section .card-title {

    color: #333333;

    font-weight: 700;

    font-size: 1.25rem;

    margin-bottom: 15px;

}



.ortho-facilities-section .card-text {

    color: #333333;

    line-height: 1.6;

}





.ortho-facilities-section .line {

    height: 1px;

    width: 50px;

    background-color: rgba(255, 255, 255, 0.5);

}



.ortho-facilities-section .section-title .title .text {

    color: #fff;

    border: 1px solid #fff;

}





.ortho-facilities-section .section-title .title .dot-left,



.ortho-facilities-section .section-title .title .dot-right {

    background-color: #fff;

}



.ortho-facilities-section .section-title .title .dot-right::before {

    background: linear-gradient(90deg, #fff 0%, #ffffff00 76.44%);

}



.ortho-facilities-section .section-title .title .dot-left::before {

    background: linear-gradient(90deg, #ffffff 0%, #ffffff00 76.44%);

}



.ortho-facilities-section .section-title .heading {

    color: #fff;

}



.ortho-facilities-section .section-title .heading span {

    color: #fff;

}



.safety-protocols-sec .section-title .title .dot-left::before {

    display: none;

}



.safety-protocols-sec .safety-content ul li {

    padding-left: 28px;

    color: #555555;

    font-weight: 600;

    font-size: 16px;

    line-height: 1.5;

    margin-bottom: 10px;

    position: relative;

}



.safety-protocols-sec .safety-content ul li::before {

    content: "\ea51";

    font-family: 'boxicons';

    font-weight: 400;

    font-size: 20px;

    position: absolute;

    left: 0;

    top: -2px;

    color: var(--color-secondary);

}



.safety-protocols-sec .image-sec img {

    width: 90%;

}



.page-id-211 .recovery-section {

    background: linear-gradient(176.59deg, rgba(255, 255, 255, 0) -10.77%, rgba(222, 246, 255, 0.7) 97.19%);

}



.machinery-section .machinery-content ul li {

    border: 1px solid #ddd;

    color: #27374e;

    border-radius: 100px;

    background: #F5F3F3;

    padding: 10px 20px 10px 50px;

    position: relative;

    margin-bottom: 20px;

    width: max-content;

}





.machinery-section .machinery-content ul li::before {

    content: "";

    font-family: boxicons !important;

    font-weight: 400;

    font-size: 34px;

    position: absolute;

    left: -10px;

    top: 0;

    bottom: 0;

    margin: auto;

    display: flex;

    justify-content: center;

    align-items: center;

    background: #E8F3F4;

    width: 50px;

    height: 50px;

    border-radius: 100px;

    color: var(--color-accent);

}



.machinery-section .machinery-image img {

    width: 80%;

}



.service-banner {

    padding: 120px 0 60px 0;


    background-repeat: no-repeat;

    background-size: cover;



}

.service-banner h1 {
    font-size: 38px;
}


.service-banner .doctor-card img {

    width: 160px;

}



.service-banner .doctor-info {

    background-color: var(--color-primary);

    padding: 15px 40px 15px 20px;

    border-radius: 0 20px 20px 0;

}



.service-banner .doctor-info h3 {

    font-size: 26px;

    margin-bottom: 10px;

    color: #fff;

    font-weight: 700;

}



.service-banner .doctor-info p {

    margin-bottom: 0;

    color: #fff;

}



.service-banner h1 {

    font-weight: 600;

    margin-top: 20px;

    text-align: center;

}



.overview-section {

    background: linear-gradient(166.86deg, #FFFFFF 50%, #FFF3E5 100.76%);

}



.overview-section .overview-image {

    box-shadow: 0px 2px 34px 0px #00000017;

    padding: 15px;

    border-radius: 15px;

    border: solid 2px rgb(209, 209, 209);

    width: 80%;

}



.overview-section .overview-image img {

    border-radius: 15px;
    height: 330px;
    object-fit: cover;

}



.overview-section .overview-image h5 {

    font-size: 32px;

    text-align: center;

    font-weight: 700;

    margin-top: 10px;

    color: var(--color-accent);

}



.overview-section .overview-image h6 {

    font-weight: 600;

    text-align: center;

    font-size: 18px;

}





.overview-section ul li {

    padding-left: 32px;

    color: #555555;

    font-weight: 600;

    font-size: 18px;

    line-height: 1.5;

    margin-bottom: 18px;

    position: relative;

}



.overview-section ul li::before {

    content: "\ea51";

    font-family: 'boxicons';

    font-weight: 400;

    font-size: 24px;

    position: absolute;

    left: 0;

    top: -4px;

    color: var(--color-secondary);

}



.feature-section {



    padding: 60px 0;



}







.feature-section .custom-card {



    background-color: #ffffff;



    border: 1px solid #dee2e6;



    border-radius: 12px;



    padding: 30px;



    height: 100%;



    display: flex;



    flex-direction: column;



    justify-content: space-between;



    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);



    /* Soft shadow */



    transition: transform 0.3s;



}







.feature-section .custom-card:hover {



    transform: translateY(-3px);



}







.feature-section .card-reviews {



    border: 1px solid #ff005c20;

    background-color: var(--color-primary);

    width: 90%;

    margin: auto;

}



.feature-section .google-review {

    background: transparent;

    justify-content: start;

    display: flex;

    margin-top: 20px;

}





.feature-section .card-center {



    border: 1px solid #ff005c20;

    width: 90%;

    margin: auto;





}







.feature-section .card-easy-appointments {



    border: 1px solid #ff005c20;

    width: 95%;

    margin: auto;



    background-color: var(--color-primary);



}







.feature-section .rating-text {



    font-size: 16px;

    margin-bottom: 0;

    font-weight: 400;

    color: #fff;





}







.feature-section .star-rating {



    font-size: 28px;



    color: #ffc107;



}







.feature-section .happy-reviews {



    font-size: 50px;



    font-weight: 300;



    color: #fff;



    display: inline-block;



    margin-right: 6px;



    line-height: 1.1;



}







.feature-section .reviews-text {



    font-size: 22px;



    font-weight: 400;



    color: #fff;



    display: inline-block;



    vertical-align: top;



    margin-top: 15px;



    line-height: 1.1;



}







.feature-section .google-verified {



    margin-top: 15px;



    font-size: 20px;



    color: var(--font-color);



    font-weight: 500;



}







.feature-section .google-verified img {



    width: 80px;



    margin-right: 10px;



}







.feature-section .card-heading {



    font-size: 24px;



    font-weight: 600;



    color: #fff;



    margin-bottom: 5px;



}







.feature-section .card-body-text {



    font-size: 16px;



    color: #212529;



    line-height: 1.6;



    margin-bottom: 10px;



}







.feature-section .card-timing {



    font-size: 16px;



    font-weight: 600;



    color: var(--matte-black);



}







.feature-section .appointment-description {



    font-size: 18px;



    color: #ffffff;



}







.feature-section .icon-group {



    display: flex;



    gap: 15px;



}







.feature-section .icon {

    width: 50px;

    height: 50px;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 22px;

    color: white;

}



.feature-section .icon img {

    width: 25px;

}



.feature-section .icon-call {

    background-color: #1a73e8;

}



.feature-section .icon-whatsapp {

    background-color: #25d366;

}



.feature-section .icon-online {

    background-color: #dc3545;

}



.feature-section .custom-card.card-center img {

    width: 100%;

    object-fit: cover;

    height: 100%;

    border-radius: 15px;
    object-position: left;

}



.symptoms-section {

    background: linear-gradient(166.86deg, #FFF3E5 12.67%, #FFFFFF 111.76%);

}



.symptoms-section .symptom-card {

    background: #ffffff;

    border-radius: 15px;

    padding: 30px 25px;

    height: 100%;

    border: none;

    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);

    transition: transform 0.3s ease;

}



.symptoms-section .symptom-card:hover {

    transform: translateY(-5px);

}



.symptoms-section .icon-wrapper {

    width: 50px;

    height: 50px;

    margin-bottom: 20px;

}



.symptoms-section .icon-wrapper img {

    width: 100%;

    height: 100%;

    object-fit: contain;

}



.symptoms-section .symptom-title {

    font-size: 18px;

    font-weight: 600;

    color: #3F3F3F;

    margin-bottom: 15px;

}



.symptoms-section .symptom-desc {

    font-size: 15px;

    color: #3F3F3F;

    line-height: 1.6;

    margin-bottom: 0;

}



/* Adjusting gutters for the grid */

.symptoms-section .custom-gutter {

    --bs-gutter-x: 1.5rem;

    --bs-gutter-y: 1.5rem;

}







.procedure {



    background: url(https://naveen.knowyourright.net/wp-content/uploads/2025/12/Procedure-background.webp);

    background-position: center right;

    background-repeat: no-repeat;

    background-size: cover;



}







.procedure .section-tag {



    background: var(--primary-color);



    color: #fff;



}







.procedure .section-title {



    color: var(--font-color);



}



















.procedure .treat-box h4 {



    font-size: 18px;



    font-weight: 600;



    color: #222;



    margin-bottom: 8px;



}







.procedure .treat-box p {



    color: #555;



    line-height: 1.6;



}







.procedure .heart-circle {



    width: 360px;



    height: 360px;



    margin: auto;



    position: relative;



    display: flex;



    align-items: center;



    justify-content: center;



}







.procedure .heart-circle img {



    width: 85%;



}







.procedure .treat-icon {



    width: 50px;



    height: auto;



}



.technology-section .technology-image img {

    width: 80%;

}





.technology-section ul li {

    padding-left: 28px;

    color: #555555;

    font-weight: 600;

    font-size: 16px;

    line-height: 1.5;

    margin-bottom: 10px;

    position: relative;

}



.technology-section ul li::before {

    content: "\ea51";

    font-family: 'boxicons';

    font-weight: 400;

    font-size: 20px;

    position: absolute;

    left: 0;

    top: -2px;

    color: var(--color-secondary);

}





.whychoose-items .whychoose-box .icon {

    width: 80px;

    height: 80px;

    padding: 20px;

    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1);

    border-radius: 50%;

    margin: auto auto 12px;

    background: #fff;

    position: relative;

    margin-bottom: -30px;

}



.whychoose-items .whychoose-box .icon:after {

    position: absolute;

    width: 225px;

    border-bottom: 3px dotted var(--color-accent);

    content: "";

    left: 95px;

    top: 40px
}



.whychoose-items .whychoose-box .content-box {

    padding: 40px 10px 10px;

    border-radius: 20px;

    margin-top: -30px;

    min-height: 200px;

    box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 34px 0px;

    max-height: 100%;

    border-bottom: 3px solid var(--color-primary);

    width: 90%;

    margin: auto;

}



.whychoose-items .whychoose-box .content-box h4 {

    font-weight: 600;

    font-size: 18px;

    margin-bottom: 6px;

}



.whychoose-items .col-md-3:last-child .whychoose-box .icon:after {

    display: none;

}



.page-id-220 .success-stories {

    background: linear-gradient(176.59deg, #EBF0FF -10.77%, rgba(255, 255, 255, 0) 97.19%);

}



.page-id-220 section.google-review {

    background: linear-gradient(166.86deg, #FFF3E5 12.67%, #FFFFFF 111.76%);

}

.contact-us-slider>div {
    align-items: center;
    display: flex;
}

.main-sliderh3 {
    font-weight: 600;
    border-left: 4px solid var(--secondary-color);
}

.main-slider {
    background-image: url(https://naveen.knowyourright.net/wp-content/uploads/2026/01/Banner-3-scaled.webp);
    object-fit: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 250px 0 150px 0px;
}

.link-div .text-red {
    color: var(--secondary-color);
}

.link-div h2 {
    font-size: 14px;
    font-weight: 600;
    color: #000;
}

.link-div {
    text-transform: uppercase;
    justify-self: flex-end;
    text-align: center;
    justify-content: center;
    background-color: #ffffff;
    border-radius: 66px;
    display: inline-block;
    width: 320px;
    margin-bottom: -210px;
    height: 45px;
    align-items: center;
}

.main-slider .section-title {
    width: 40%;
    margin: auto;
}

.news .news-box {
    border: solid #c7c7c7 1px !important;
    border-radius: 15px;
}

.news .news-image {
    height: 270px;
    width: 100%;
}


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


.emergency-contact {
    background-attachment: fixed !important;
    padding: 90px 0 40px 0;
}

.emergency-contact .emergency-inner {
    padding: 20px;
    border-radius: 10px
}

.emergency-contact .content-box h3 {
    color: #fff;
    font-size: 24px;
    line-height: 1.5;
    font-weight: 600;
    margin-bottom: 10px;
}

.emergency-contact .content-box h4 {
    color: #fff;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 600;
    margin-bottom: 10px;
}

.emergency-contact .emergency-inner .image {
    width: 170px;
    bottom: -10px;
    height: 170px;
    border: 1px solid #fff;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    padding-top: 10px;
    padding-right: 15px
}

.contact-action .card-doctor .img img,
.emergency-contact .emergency-inner .image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center
}

.emergency-contact .social-contact .social {
    padding: 10px;
    background: #fff;
    border-radius: 10px;
    gap: 12px;
    display: flex;
    align-items: center;
    border: 1px solid #fff;
    transition: .3s
}

.emergency-contact .social-contact .social .icon img {
    width: 25px
}

.emergency-contact .social-contact .social .title a {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    transition: .3s
}

.emergency-contact .social-contact .social:hover {
    background: var(--secoundary-color);
    color: #fff;
    border: 1px solid #fff
}

.emergency-contact .social-contact .social:hover a {
    color: #fff
}

.blog .blog-card {
    box-shadow: 2px 9px 13px 3px #959da566;
}

.blog .blogs {
    background-color: #ffffff;
}

.blog-banner {
    padding: 50px 0;
    text-align: center
}

.banner-treatment,
.blog-details {
    padding: 60px 0;
    margin-top: 50px;
}

.banner-treatment.banner-surgeon .col-md-6 {
    margin: auto
}

.banner-treatment.banner-surgeon .content-box .top-box .content-doc p.doc-name {
    text-align: start
}

.blog-banner .content-box .box-doc img {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
    border-radius: 100px
}

.blog-banner .content-box .box-doc p {
    margin: 0;
    font-size: 20px;
    color: var(--secoundary-color);
    font-weight: 600;
    margin-bottom: 10px
}

.blog-banner h1 {
    font-weight: 600;
    font-size: 30px;
    margin-bottom: 10px
}

.blog-single-post h1,
.blog-single-post h3 {
    font-weight: 700;
    margin-bottom: 15px;
    position: relative
}

.blog-banner .content-box {
    background: rgb(255 255 255 / 90%);
    padding: 20px;
    border-radius: 10px
}

.blogs-section .blog-card.blog-page-card {
    border-radius: 8px;
    box-shadow: 0 0 13px 2px #eee;
    height: 100%
}

.blogs-section .blog-card.blog-page-card .blog-thumbnail {
    height: 200px
}

.blogs-section .blog-card.blog-page-card .blog-thumbnail img {
    height: 100%;
    object-fit: cover
}

.blogs-section .blog-card.blog-page-card .blog-content {
    position: relative;
    background: 0;
    height: auto
}

.blog-single-post {
    position: relative;
    margin-bottom: 40px
}

.blog-single-post.blog-salah .image img {
    width: auto;
    height: 500px
}

.blog-single-post .image {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    height: 370px;
    border-radius: 20px;
}

.blog-single-post .lower-content {
    position: relative;
    padding: 30px;
    border: 1px solid #ebf2f3;
    border-top: 0;
    border-radius: 5px
}

.blog-single-post ul.post-meta {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 14px;
    margin-bottom: 13px
}

.blog-single-post .post-meta li {
    margin-right: 15px;
    padding-right: 15px;
    font-weight: 600;
    border-right: 1px solid #ddd
}

.blog-single-post .post-meta li i {
    margin-right: 8px;
    color: var(--secoundary-color)
}

.blog-single-post .post-meta li:last-child {
    border-right: 0
}

.faq-section .faq-card:hover .icon,
.faq-section .faq-card:hover .inner-box {
    border-color: var(--secoundary-color)
}

.blog-single-post h1 {
    font-size: 30px;
    line-height: 44px;
    color: #3f3f3f
}

.blog-single-post h3 {
    font-size: 28px;
    line-height: 42px;
    color: #3f3f3f
}

.blog-single-post .text {
    margin-bottom: 40px
}

.blog-single-post .text ul {
    padding-left: 0
}

.blog-single-post .text ul li {
    list-style: none;
    margin-bottom: 10px;
    color: #3f3f3f;
    position: relative;
    padding-left: 30px
}

.blog-single-post .text ul li:before {
    color: var(--secoundary-color);
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 16px;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0
}

.blog-single-post .text ol {
    list-style: auto
}

.blog-single-post .text ol li {
    list-style: inherit;
    margin-bottom: 15px;
    color: #3f3f3f;
    font-size: 16px
}

.blog-single-post .text b,
.blog-single-post .text strong {
    font-weight: 600;
    color: var(--heading-1)
}

.blog-single-post .text h2 {
    position: relative;
    font-size: 28px;
    line-height: 44px;
    font-weight: 700;
    font-family: inherit;
    margin-bottom: 15px
}

.blog-single-post .text h3,
.blog-single-post .text h4,
.blog-single-post .text h5 {
    line-height: 40px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    font-family: inherit
}

.blog-single-post .text h3 {
    font-size: 24px
}

.blog-single-post .text h4 {
    font-size: 22px
}

.blog-single-post .text h5 {
    font-size: 20px
}

.blog-single-post .text h6 {
    position: relative;
    font-size: 18px;
    line-height: 30px;
    font-weight: 700;
    font-family: inherit;
    margin-bottom: 15px
}

.blog-single-post .text table tr td,
.blog-single-post .text table tr th {
    border: 2px solid #ddd;
    padding: 8px 10px;
    font-size: 14px;
    font-weight: 500
}

.blog-single-post blockquote {
    position: relative;
    padding-left: 30px;
    font-size: 16px;
    color: #565872;
    margin-bottom: 30px
}

.blog-single-post blockquote:before {
    position: absolute;
    content: '';
    top: 0;
    width: 8px;
    bottom: 0;
    background: var(--secoundary-color);
    left: 0;
    border-radius: 5px
}

.widget {
    position: relative;
    margin-bottom: 50px
}

.widget_popular_post {
    position: relative;
    max-width: 350px;
    margin-left: auto
}

.widget .widget-title {
    position: relative;
    font-size: 20px;
    color: #3f3f3f;
    margin-bottom: 20px;
    font-weight: 600
}

.widget_popular_post .post-thumb {
    position: relative;
    margin-right: 15px;
    margin-bottom: 0;
    overflow: hidden
}

.widget_popular_post .post-thumb:before {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    content: '';
    width: 0;
    height: 0;
    background: rgb(16 34 53/59%);
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: 10;
    pointer-events: none;
    transition: .3s ease-in
}

.widget_popular_post .post-thumb:hover:before {
    opacity: 1;
    width: 100%;
    height: 100%;
    border-radius: 0;
    -webkit-animation: .75s circle;
    animation: .75s circle
}

.widget_popular_post .post-thumb img {
    border-radius: 5px;
    float: left;
    height: 60px;
    width: 60px;
    object-fit: cover
}

.widget_popular_post .post {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
    border: 1px solid #e3e3e3;
    padding: 14px;
    border-radius: 5px
}

.widget_popular_post .content {
    position: relative;
    width: calc(100% - 75px)
}

.widget_popular_post .content h5 {
    position: relative;
    font-size: 16px;
    margin-bottom: 3px;
    font-weight: 600;
    font-family: inherit
}

.widget_popular_post .content h5 a {
    color: #3f3f3f;
    transition: .5s
}

.widget_popular_post .content .post-info {
    font-size: 14px;
    color: #3f3f3f
}

.widget_popular_post .content .post-info i {
    margin-right: 4px;
    color: var(--secoundary-color)
}

.faq-section .faq-card {
    height: 100%;
    padding-top: 50px;
    position: relative
}

.faq-section .faq-card .inner-box {
    height: 100%;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 40px 20px 20px;
    text-align: center;
    transition: .4s ease-in
}

.faq-section .faq-card .icon {
    width: 80px;
    height: 80px;
    border-radius: 100px;
    border: 1px solid #ddd;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    background: #f2f2f2;
    padding: 15px;
    transition: .4s ease-in
}

.error_404 img,
.faq-section .faq-card .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.aosih-hospital-section h6 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-accent);
    position: relative;
    display: inline-block;
}

.mdodal-appointment .modal-dialog {
    max-width: 800px
}

.mdodal-appointment form .input-group .input-group-text {
    position: absolute;
    left: 0;
    z-index: 1;
    border-radius: 0;
    border: 0;
    height: 45px;
    background: 0
}

.mdodal-appointment form .input-group .form-control {
    height: 50px;
    padding: 10px 10px 10px 45px
}

.mdodal-appointment form .input-group .input-group-text p {
    margin: 0;
    display: flex;
    width: 100%
}

.mdodal-appointment form .form-label {
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 500
}

.mdodal-appointment form .default-btn {
    background-color: var(--heading-4);
    height: auto;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 500;
    color: #fff
}

.mdodal-appointment .modal-header {
    position: absolute;
    right: -30px;
    padding: 0;
    border: 0;
    top: 10px
}

.mdodal-appointment .modal-header .btn-close {
    background: #fff;
    opacity: 1;
    padding: 0;
    width: 35px;
    height: 35px;
    align-items: center;
    display: flex;
    justify-content: center
}

.mdodal-appointment .modal-header .btn-close i {
    font-size: 25px;
    padding: 0
}

.mdodal-appointment .modal-body {
    padding: 10px 0
}

.mdodal-appointment .content-inner {
    padding: 15px;
    border-radius: 10px;
    background: #1d839624;
    height: 100%;
    position: relative;
    border: 1px solid #ddd
}

.mdodal-appointment .content-inner .doctor-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap
}

.mdodal-appointment .content-inner .doctor-box .dr-img img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    object-position: top;
    border-radius: 100px
}

.mdodal-appointment .content-inner .doctor-box .content .drname {
    margin: 0;
    font-weight: 600;
    font-size: 20px;
    color: var(--secoundary-color)
}

.mdodal-appointment .content-inner .doctor-box .content p {
    margin: 0;
    font-weight: 600;
    color: #4b4b4b;
    line-height: 1.4;
    font-size: 14px
}

.mdodal-appointment .content-inner ul {
    display: flex;
    justify-items: start;
    align-items: stretch;
    gap: 10px
}

.mdodal-appointment .content-inner ul li {
    background-color: #fff;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, .2);
    text-align: center;
    border-radius: 10px;
    padding: 10px
}

.mdodal-appointment .content-inner ul li img {
    width: 35px;
    height: 35px;
    object-fit: contain;
    margin-bottom: 5px
}

.mdodal-appointment .content-inner ul li span {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    display: block
}

.mdodal-appointment .content-inner .ckbiral-logo {
    max-width: 200px;
    position: relative;
    display: block;
    background: #fff;
    padding: 5px;
    border-radius: 5px;
    margin: 10px auto
}

.mdodal-appointment .content-inner p {
    font-size: 14px;
    line-height: 1.5;
    margin: 10px 0;
    text-align: center
}

.contact-form .form-box p {
    margin-bottom: 0;
}

.contact-form .button-theme i.bx-arrow-back {
    color: #fff;
    position: absolute;
    top: 15px;
    margin-left: 6px;
}

.contact-form .button-theme {
    position: relative;
}

.modal .content-inner .logo {
    width: 200px;
    margin: auto;
    justify-content: center;
    display: flex;
    margin-top: 15px;
    margin-bottom: 15px;
}

.modal .contact-form .form-box {
    box-shadow: none;
    padding: 20px 0px;
}

/* Default state */
.nav-head {
    width: 100%;
    z-index: 999;
    transition: all 0.4s ease;
}

/* Sticky state */
.nav-head.sticky {
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    /* apni theme ke hisaab se change kar sakta h */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    animation: slideDown 0.4s ease;
}
.nav-head.sticky .row{
    box-shadow: inherit;
  background: transparent;
}
/* Smooth slide animation */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

#menu-treatment {
    column-count: 2;
    display: block;
}

#menu-treatment li {
    margin-bottom: 15px;
}

#menu-treatment li a {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
}

#menu-treatment li a:hover {
    color: var(--color-accent);

}

/* Parent item */
.recovery-carousel .item {
    overflow: hidden;
    position: relative;
    border-radius: 12px;
}

/* Image default */
.recovery-carousel .item img {
    width: 100%;
    display: block;
    transition: all 0.5s ease;
}

/* Overlay effect */
.recovery-carousel .item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: all 0.4s ease;
}

/* Hover Effects */
.recovery-carousel .item:hover img {
    transform: scale(1.1) rotate(1deg);
}

.recovery-carousel .item:hover::after {
    opacity: 1;
}

/* Optional: smooth shadow lift */
.recovery-carousel .item:hover {
    transform: translateY(-8px);
    transition: 0.4s ease;
}

.modal .input-group textarea {
    height: 100px !important;
}

.top-head .btn-online img {
    width: 20px;
}

.top-head .btn-online:hover {
    background: #fff;
    color: var(--color-text);
}

.top-head .btn-online {
    background-color: var(--color-accent);
    padding: 6px 16px;
    color: #fff;
    border-radius: 7px;
    justify-content: start;
    display: flex;
    width: max-content;
    font-size: 14px;
    font-weight: 500;
    gap: 10px;
}

.main-header .top-head .col-md-5 {
    align-items: center;
    display: flex;
    justify-content: end;
}

.main-header .top-head .btn-online {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 20px;
    border-radius: 30px;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    font-size: 14px;

    /* Gradient Background */
    background: #4fce5d;
    /* Animation */
    animation: gradientMove 6s ease infinite;

    transition: all 0.3s ease;
}

/* Gradient Animation */
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Hover Effect */
.main-header .top-head .btn-online:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Icon Animation */
.main-header .top-head .btn-online img {
    width: 20px;
    transition: transform 0.3s ease;
}

.main-header .top-head .btn-online:hover img {
    transform: scale(1.15) rotate(-8deg);
}
.submitting-section {
    background-color: #bb376f14;
    padding:100px 0 50px;
}

.submitting-section .section-title {
    text-align: center;
}

.submitting-section .section-title img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin: 0 auto 15px;
    display: block;
}
.associate {
    padding: 50px 0 80px;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important
}
.associate .address{
        padding: 20px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1);
    border-radius: 10px;
    background: #fff;
}
.associate .associate-items .image img {
    width: 100%;
    border-radius: 10px;
    height: 100%
}

.associate .associate-items .image-logo {
    width: 200px;
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    position: absolute;
    right: 0;
    bottom: 30px;
    left: 0;
    margin: auto
}

.associate .associate-icon {
    width: 100px
}

.associate .doctor-associate-box {
    padding: 20px 20px 0;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 4.49px 11.23px 0 #0000004D
}

.associate .doctor-associate-box h6 {
    font-size: 18px;
    font-weight: 600
}

.associate .address .address-box .icon img {
    border-radius: 10px;
    border: 1px solid #ddd;
    object-fit: cover
}
.associate .address-box ul li{
        padding-left: 25px;
    margin-bottom: 15px;
    position: relative;
}
.associate .address-box ul li i{
    color: var(--color-accent);
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 18px;
}
