/*
Theme Name: tiss-theme
*/


@font-face {
	font-family: urbanist-semibold;
	src: url(../tiss-theme/assets/urbanist/Urbanist-SemiBold.ttf);
	font-weight: 600;
}

@font-face {
	font-family: urbanist-medium;
	src: url(../tiss-theme/assets/urbanist/Urbanist-Medium.ttf);
	font-weight: 600;
}




h1,h2,h3,h4,h5,h6{
     font-family: "Poppins", sans-serif;
}
p, a{
   font-family: "Roboto", sans-serif;
    color: #000000de;  
    font-size: 16px;                                         
}
span{
    font-family: "Roboto", sans-serif;  
}
a:hover{
   
    text-decoration: none !important;
}


/* .error-404 img{
    width: 100%;
    height: 485px;
    object-fit: contain;
    margin: 106px 0;
} */

/* width */
::-webkit-scrollbar {
  width: 4px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #1D1D1D;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #0BC4F3;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

html {
    scroll-behavior: smooth;
}

body{
    background: #ffffff !important;
}

/* DEFAULT CURSOR */
body{
    cursor: url('https://cdn.custom-cursor.com/db/10444/32/medical-cursor.png'), auto;
}

/* POINTER CURSOR */
a,
button,
input[type="submit"]{
    cursor: url('https://cdn.custom-cursor.com/db/10445/32/medical-pointer.png'), pointer;
}


.container {
    max-width: unset !important;
    padding: 0 4% !important;
}



/* 404 page start  */

.error-page {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #081b29, #0f2d44);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 20px;
}

/* Floating shapes */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: .15;
    animation: float 8s infinite ease-in-out;
}

.shape1 {
    width: 250px;
    height: 250px;
    background: #00d4ff;
    top: 10%;
    left: 10%;
}

.shape2 {
    width: 180px;
    height: 180px;
    background: #6c63ff;
    bottom: 15%;
    right: 12%;
    animation-delay: 2s;
}

.shape3 {
    width: 120px;
    height: 120px;
    background: #ffffff;
    top: 25%;
    right: 20%;
    animation-delay: 4s;
}

/* Main box */
.error-box {
    position: relative;
    z-index: 10;
    max-width: 700px;
    width: 100%;
    text-align: center;
    padding: 60px 40px;
    border-radius: 25px;
}

/* 404 number */
.error-code {
    font-size: 150px;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(45deg, #00d4ff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

/* Heading */
.error-box h1 {
    font-size: 42px;
    color: #fff;
    margin-bottom: 20px;
}

/* Description */
.error-box p {
    font-size: 18px;
    color: rgba(255,255,255,.8);
    line-height: 1.8;
    margin-bottom: 35px;
}

/* Buttons */
.error-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.error-buttons a {
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: .3s ease;
}

.home-btn {
    background: #00d4ff;
    color: #081b29;
}

.back-btn {
    border: 1px solid rgba(255,255,255,.4);
    color: white;
}

.error-buttons a:hover {
    transform: translateY(-3px);
}

/* Animation */
@keyframes float {
    0%,100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-30px);
    }
}


/* 404 page end  */


.scroll-animate {
    opacity: 0;
    transform: translateY(-120px);
    transition:
        opacity 1s ease,
        transform 1s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;
}

/* SHOW ON SCROLL */
.scroll-animate.show {
    opacity: 1;
    transform: translateY(0);

}



/* floating buttons  */

.floating-contact-wrap{
    position: fixed;
    right: 25px;
    bottom: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: .4s ease;
}

.floating-contact-wrap.move-up{
    bottom: 110px;
}

.floating-call-btn, .floating-whatsapp-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    font-size: 24px;
    position: relative;
    transition: .4s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,.18);
}

.floating-call-btn{
    background: #002E5D;
}

.floating-whatsapp-btn{
    background: #25D366;
}

.floating-call-btn:hover,
.floating-whatsapp-btn:hover{
    color: #fff;
    transform: translateY(-4px);
}

.floating-whatsapp-btn::before{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(37,211,102,.45);
    animation: whatsappPulse 1.8s infinite;
    z-index: -1;
}

@keyframes whatsappPulse {

    0%{
        transform: scale(1);
        opacity: .7;
    }

    70%{
        transform: scale(1.8);
        opacity: 0;
    }

    100%{
        transform: scale(1.8);
        opacity: 0;
    }

}

.scroll-top-btn {
    position: fixed;
    right: 25px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: #002E5D;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    z-index: 9999;
    transform: translateY(120px);
    transition: .4s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,.18);
}

.scroll-top-btn.active {
    transform: translateY(0);
}



/* search page  */


.search-page-section{
    padding:100px 0;
}

.search-card{

    background:#fff;

    padding:25px;

    border-radius:18px;

    height:100%;

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

    transition:.4s;
}

.search-card:hover{

    transform:translateY(-8px);

}

.search-card img{

    width:100%;
    height:240px;

    object-fit:cover;

    border-radius:14px;

    margin-bottom:20px;
}

.search-card h3{

    font-size:22px;

    margin-bottom:10px;
}

.search-card h3 a{

    color:#002E5D;

    text-decoration:none;
}

.custom-search-pagination{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    margin-top:60px;

    flex-wrap:wrap;
}

.custom-search-pagination .page-numbers{

    width:46px;
    height:46px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    background:#f4f7fa;

    color:#002E5D;

    font-weight:600;

    transition:.3s;
}

.custom-search-pagination .page-numbers:hover{

    background:#0BC4F3;

    color:#fff;
}

.custom-search-pagination .current{

    background:#002E5D;

    color:#fff;
}

/* search page end  */



/* header section start */


.header-wrapper {
    width: 100%;
    background: rgb(255 255 255);
    text-align: center;
    position: fixed;
    top: 0px;
    z-index: 9;
    padding: 8px 0;
    /* box-shadow: 0px 4px 4px 0 #00000021; */
}

.f-nav .header-wrapper {
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    transition: .3s ease;
}

.header-logo img {
    width: 150px;
    object-fit: cover;
    height: auto;
    margin-right: auto;
    display: block;
}

.f-nav .header-wrapper .header-logo img {
    height: auto;
    width: 120px;
}

.header-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {
    color: #002E5D;
    font-family: 'urbanist-semibold';
    padding: 0px 12px 0px 12px !important;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link:hover {
    color: #00A8BC !important;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link {
    background: rgba(51, 51, 51, 0);
    color: #00A8BC;
}

.menu-divider {
    width: 1px;
    height: 45px;
    background: #dcdcdc;
    margin: 0 25px;
}

.search-icon {
    font-size: 18px;
    padding-left: 5px;
    color: #0b2c5d;
    cursor: pointer;
}

.header-search-wrap{
    position: relative;
}

.search-icon{
    font-size: 22px;
    color: #0b2c5d;
    cursor: pointer;
}

/* SEARCH BOX */
.header-search-box{
    position: absolute;
    top: 45px;
    right: 0;
    width: 320px;
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s;
    z-index: 999;
}

.header-search-box.active{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-search-box form{
    display: flex;
    align-items: center;
}

.header-search-box input{
    width: 100%;
    height: 46px;
    border: 1px solid #ddd;
    border-radius: 8px 0 0 8px;
    padding: 0 15px;
    outline: none;
    font-size: 14px;
}

.header-search-box button{
    width: 50px;
    height: 46px;
    border: 0;
    background: #18c5f4;
    color: #fff;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
}

.header-contact {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.header-contact h6 {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-family: 'urbanist-semibold';
    color: #666;
    font-weight: 500;
    margin-bottom: 5px;
}

.header-contact a {
    font-size: 18px;
    font-family: 'urbanist-semibold';
    font-weight: 700;
    color: #00c6d7;
    text-decoration: none;
}


/* header section ends */



/* banner section start  */

.banner-section {
    padding: 105px 20px 0;
}

.banner-section-wrap {
    position: relative;
    min-height: 110vh;
    border-radius: 30px;
    overflow: hidden;
}

/* Background image slider */
.banner-bg-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.banner-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.banner-slide.active {
    opacity: 1;
}

.banner-section-wrap::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,49,73,0.92), rgba(0,49,73,0));
    z-index: 1;
}

.banner-section-content {
    position: absolute;
    left: 70px;
    top: 42%;
    transform: translateY(-58%);
    z-index: 2;
    max-width: 500px;
    color: #fff;
}

.banner-section-content h1 {
    font-size: 70px;
    font-family: 'urbanist-semibold';
    line-height: 1;
    margin-bottom: 20px;
    display: inline-block;
    overflow: hidden;
}

.banner-section-content h1,
.banner-para {
    visibility:hidden;
}

.banner-section-content h1 .word {
    visibility: visible;
}

.banner-section-content p {
    font-size: 18px;
    font-family: 'urbanist-medium';
    color: #fff;
    margin-bottom: 25px;
}

.banner-section-btns {
    display: flex;
    gap: 15px;
}

.banner-section-primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #0BC4F3;
    color: #fff;
    padding: 14px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease-in-out;
}

.banner-section-primary-btn:hover {
    background: #fff;
    color: #002E5D;   
}

.banner-section-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #002E5D;
    padding: 14px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease-in-out;
}

.banner-section-secondary-btn:hover {
    background: #0BC4F3;
    color: #fff;
}

.banner-section-btns .banner-section-primary-btn,
.banner-section-btns .banner-section-secondary-btn{
    opacity:0;
    visibility:hidden;
}

.banner-loaded .banner-section-primary-btn {
    visibility:visible;
    animation:bannerFloatUp 0.6s ease-out 2.0s forwards;
}

.banner-loaded .banner-section-secondary-btn {
    visibility:visible;
    animation:bannerFloatUp 0.8s ease-out 2.2s forwards;
}


/* FLOAT UP */
@keyframes bannerFloatUp{

    0%{
        opacity:0;
        transform:translateY(70px) scale(.8);
    }

    60%{
        opacity:1;
        transform:translateY(-8px) scale(1.04);
    }

    100%{
        opacity:1;
        transform:translateY(0) scale(1);
    }

}

.banner-section-experience-box {
    position: absolute;
    bottom: 38px;
    left: 50px;
    width: 140px;
    height: 140px;
    background: #0BC4F3;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 25px;
    z-index: 2;
}

.banner-section-experience-box h3 {
    font-size: 40px;
    font-family: 'urbanist-semibold';
    font-weight: 700;
    color: #fff;
    margin-bottom: 0;
}

.banner-section-experience-box p {
    font-size: 16px;
    font-family: 'urbanist-medium';
    color: #fff;
}

.banner-section-form-box {
    position: absolute;
    right: 45px;
    bottom: 20px;
    width: 550px;
    background: #fff;
    border-radius: 0px 20px 20px;
    overflow: visible;
    z-index: 5;
}

.banner-section-tabs {
    display: flex;
    align-items: center;
    position: absolute;
    top: -39px;
    left: 0;
}

.banner-tab-btn {
    border: 0;
    height: 40px;
    padding: 0 26px;
    background: #fff;
    color: #0b2c5d;
    font-size: 13px;
    font-family: 'urbanist-semibold';
    cursor: pointer;
    transition: 0.3s;
}

.banner-tab-btn:first-child {
    border-radius: 12px 0px 0 0;
}

.banner-tab-btn:last-child {
    border-radius: 0px 12px 0 0;
}

.banner-tab-btn.active {
    background: #0BC4F3;
    color: #fff;
}

.banner-form-wrapper {
    display: none;
    padding: 22px 20px 20px;
}

.banner-form-wrapper.active {
    display: block;
}

.banner-form-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 0;
}

.banner-form-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 4px solid #94d7e9;
    background: #0BC4F3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-form-icon p {
    margin: 0;
}

.banner-form-icon i {
    font-size: 18px;
    color: #ffffff;
}

.banner-form-heading h3 {
    margin: 0;
    font-size: 20px;
    line-height: 1;
    color: #002E5D;
    font-family: 'urbanist-semibold';
}

.banner-form-group{
    position: relative;
    margin-bottom: 14px;
}

.banner-form-group label{
    width: 100%;
    margin: 0;
}

.banner-form-group i {
    position: absolute;
    left: 0;
    top: 15px;
    z-index: 2;
    font-size: 15px;
    color: #0BC4F3;
}

.banner-appointment-form select {
    width: 100%;
    height: 44px;
    border: 0;
    border-bottom: 1px solid #d9d9d9;
    border-radius: 0;
    background-color: transparent;
    padding-left: 24px;
    padding-right: 25px;
    font-size: 14px;
    color: #002E5D;
    font-family: 'urbanist-medium';
    outline: none;
    appearance: none;
    box-shadow: none;
    background-repeat: no-repeat;
    background-position: right 3px center;
}

.banner-appointment-form input[type="submit"] {
    width: 100%;
    padding: 12px;
    border: 0;
    border-radius: 6px;
    background: #0BC4F3;
    color: #fff;
    font-size: 14px;
    font-family: 'urbanist-semibold';
    cursor: pointer;
    transition: 0.3s;
    margin-top: 12px;
}

.banner-appointment-form input[type="submit"]:hover{
    background: #002E5D;
}

.wpcf7-spinner{
    display: none;
}

.wpcf7-response-output{
    margin: 12px 0 0 !important;
    padding: 10px !important;
    border-radius: 6px;
    font-size: 13px;
}



/* banner section ends */


/* banner section ends */


/* about us seciton start  */


.about-section {
    padding: 80px 0;
}

.about-section-heading {
    text-align: center;
    max-width: 850px;
    margin: auto;
    margin-bottom: 40px;
}

.about-section-heading span {
    color: #0BC4F3;
    font-size: 14px;
    font-family: 'urbanist-semibold';
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-section-heading h2 {
    font-size: 50px;
    font-family: 'urbanist-semibold';
    line-height: 1.1;
    color: #002E5D;
    margin: 15px 0 25px;
}

.about-section-heading p {
    font-size: 18px;
    font-family: 'urbanist-medium';
    line-height: 1.8;
    color: #7b8794;
    margin: auto;
}

.about-section-image-box{
    position: relative;
    border-radius: 35px;
    overflow: hidden;
}

.about-section-image-box img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    object-position: center;
}

.about-section-btn {
    position: absolute;
    right: 40px;
    bottom: 40px;
    background: #fff;
    color: #002E5D;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 14px;
    font-size: 18px;
    font-family: 'urbanist-semibold';
    transition: 0.3s ease-in-out;
}

.about-section-btn:hover{
    background: #0BC4F3;
    color: #fff;
}


/* about us section end  */



/* service section start  */


.service-section {
    padding: 0 0 80px;
    overflow: hidden;
}

.service-card {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 100%;
    padding: 35px 0;
    border-bottom: 1px solid #e5e5e5;
}

.service-card-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 235px;
    max-width: 350px;
    width: 50%;
}

.service-card-icon img {
    width: 55px;
    height: 55px;
    object-fit: contain;
}

.service-card-content h4 {
    font-size: 26px;
    line-height: 1.2;
    color: #002E5D;
    margin-bottom: 15px;
    font-family: 'urbanist-semibold';
}

.service-card-content p {
    font-size: 16px;
    font-family: 'urbanist-medium';
    line-height: 1.8;
    color: #7d8790;
    margin-bottom: 20px;
}

.service-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #0BC4F3;
    text-decoration: none;
    font-size: 16px;
    font-family: 'urbanist-semibold';
    transition: 0.3s;
}

.service-card-btn:hover {
    color: #002E5D;
}

.service-card-image {
    width: 50%;
}

.service-card-image img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 18px;
}


/* service section end  */



/* department section start  */


.department-section {
    padding: 80px 0;
    overflow: hidden;
    background: #FFF9F7;
}

.department-section-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 45px;
    gap: 20px;
}

.department-section-heading span {
    color: #0BC4F3;
    font-size: 14px;
    font-family: 'urbanist-semibold';
    letter-spacing: 2px;
    text-transform: uppercase;
}

.department-section-heading h2 {
    font-size: 50px;
    font-family: 'urbanist-semibold';
    line-height: 1.1;
    color: #002E5D;
    margin: 15px 0 25px;
}

.department-view-btn {
    display: inline-flex;
    align-items: center;
    background: #0BC4F3;
    color: #fff;
    padding: 14px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease-in-out;
    font-family: 'urbanist-semibold';
}

.department-view-btn:hover {
    background: #002E5D;
    color: #fff;
}

/* SLIDER */
.department-slider-wrap {
    overflow: hidden;
    position: relative;
}

.department-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: auto;
    cursor: grab;
    user-select: none;
    padding-bottom: 10px;

    scrollbar-width: none;
}

.department-slider::-webkit-scrollbar {
    display: none;
}

.department-slider.dragging {
    cursor: grabbing;
}

.department-empty-card,
.department-empty-sub-card {
    flex: 0 0 calc(4% - 30px);
}

/* CARD */
.department-card {
    flex: 0 0 55%;
    flex-shrink: 0;
}

.department-card-image {
    overflow: hidden;
    border-radius: 22px;
    margin-bottom: 18px;
    position: relative;
    cursor: none;
}

.department-card-image img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    transition: 0.5s ease;
    display: block;
    pointer-events: none;
}

.department-card:hover .department-card-image img {
    transform: scale(1.04);
}

/* CONTENT */
.department-card-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.department-card-content,
.department-card-content * {
    cursor: auto !important;
}

.department-card-content h3 {
    margin: 0 0 6px;
}

.department-card-content h3 a {
    font-size: 24px;
    line-height: 1.2;
    text-decoration: none;
    color: #0BC4F3;
    font-family: 'urbanist-semibold';
}

.department-card-content p {
    margin: 0;
    font-size: 14px;
    font-family: 'urbanist-medium';
    color: #8b95a1;
    line-height: 1.5;
}

.department-arrow {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 50%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s;
}

.department-arrow:hover {
    background: #0BC4F3;
    color: #fff;
}

/* DARK GLASS EFFECT */

.drag-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgb(18 19 19 / 33%);
    border: 1px solid rgba(255,255,255,0.10);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
    transition: opacity 0.12s linear,
        transform 0.12s linear,
        background 0.15s linear;
    white-space: nowrap;
    box-shadow: 0 6px 20px rgba(0,0,0,0.14);
}
/* SHOW */
.drag-cursor.visible {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);

}

/* DRAGGING */
.drag-cursor.dragging {
    transform: translate(-50%, -50%) scale(0.92);
    background: rgba(0, 46, 93, 0.32);

}



/* department section end  */



/* team section start  */

.team-section {
    padding: 80px 0 0;
}

.team-section-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 45px;
}

.team-section-top span {
    color: #0BC4F3;
    font-size: 14px;
    font-family: 'urbanist-semibold';
    letter-spacing: 2px;
    text-transform: uppercase;
}

.team-section-top h2 {
    font-size: 50px;
    font-family: 'urbanist-semibold';
    line-height: 1.1;
    color: #002E5D;
    margin: 15px 0 25px;
}

.team-section-top-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #0BC4F3;
    color: #fff;
    padding: 14px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease-in-out;
    font-family: 'urbanist-semibold';
}

.team-section-top-btn:hover {
    background: #002E5D;
    color: #fff;
}

/* slick spacing */
.team-slider .slick-track {
    display: flex !important;
}

.team-slider .slick-slide > div {
    height:375px;
}

.team-card {
    padding: 15px;
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
}

.team-image {
    background: linear-gradient(180deg,rgba(255, 255, 255, 1) 0%, rgba(0, 0, 0, 0.77) 100%);
    border-radius: 30px;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.team-card h4 {
    margin-top: 15px;
    font-size: 20px;
    font-weight: 600;
}

.team-designation {
    color: #0BC4F3;
    margin-bottom: 30px;
    font-family: 'urbanist-medium';
	font-size: 15px;
}

.team-btn {
    display:block;
    text-align:center;
    background:#0BC4F3;
    color:#fff;
    padding:12px;
    border-radius:8px;
    text-decoration:none;
    transition: 0.3s ease-in-out;
}

.team-btn:hover {
    background: #002E5D;
    color: #fff;
}


/* team section end  */



/* book to visit section start */

.book-to-visit-section {
    position: relative;
    padding: 80px 20px;
}

.book-to-visit-item {
    position: relative;
}

.book-to-visit-image {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
}

.book-to-visit-image::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at bottom left, rgb(0 49 73 / 71%) 0%, rgb(0 49 73 / 56%) 25%, rgb(0 49 73 / 12%) 50%, rgba(0, 49, 73, 0.10) 70%, transparent 100%);
}

.book-to-visit-image img {
    width: 100%;
    height: 555px;
    object-fit: cover;
    display: block;
}

.book-to-visit-content {
    position: absolute;
    left: 40px;
    right: 40px;
    bottom: 50px;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
    color: #fff;
}

.book-to-visit-text {
    max-width: 760px;
}

.book-to-visit-text h2 {
    font-size: 52px;
    font-family: 'urbanist-semibold';
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #fff;
}

.book-to-visit-text p {
    font-size: 16px;
    font-family: 'urbanist-medium';
    line-height: 1.7;
    margin: 0;
    color: #fff;
}

.book-to-visit-btn {
    background: #0BC4F3;
    color: #fff;
    text-decoration: none;
    padding: 16px 35px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
    transition: 0.3s ease;
}

.book-to-visit-btn:hover {
    background: #002E5D;
    color: #fff;
}


/* book to visit section end */



/* blog section start  */


.health-stories-section {
    padding: 80px 0;
    background: #f8f8f8;
    overflow: hidden;
}

.health-stories-section-top{
    margin-bottom: 50px;
}

.health-stories-section-sub-title {
    color: #0BC4F3;
    font-size: 14px;
    font-family: 'urbanist-semibold';
    letter-spacing: 2px;
    text-transform: uppercase;
}

.health-stories-section-title {
font-size: 50px;
    font-family: 'urbanist-semibold';
    line-height: 1.1;
    color: #002E5D;
    margin: 15px 0 25px;
}

.health-stories-section-content {
    font-size: 18px;
    font-family: 'urbanist-medium';
    line-height: 1.9;
    color: #7b8a8f;
    margin-bottom: 20px;
}

.health-stories-section-card {
    position: relative;
}

.health-stories-section-img {
    display: block;
    overflow: hidden;
    border-radius: 28px;
}

.health-stories-section-img img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    transition: 0.4s ease;
}

.health-stories-section-card:hover 
.health-stories-section-img img {
    transform: scale(1.05);
}

.health-stories-section-card-content {
    padding-top: 20px;
}

.health-stories-section-category {
    font-size: 13px;
    font-family: 'urbanist-semibold';
    letter-spacing: 1px;
    color: #7d8b91;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 10px;
}

.health-stories-section-card-title a {
    font-size: 35px;
    font-family: 'urbanist-semibold';
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 15px;
    color: #12343b;
    text-decoration: none;
}

.health-stories-section-meta {
    font-size: 14px;
    color: #8a969b;
    font-family: 'urbanist-medium';
}

.health-stories-section-row 
.col-lg-6:nth-child(2) {
    margin-top: 70px;
}


 /* blog section end */



/* contact section start   */


 .appointment-section {
    padding: 80px 0;
    background: #eef7f8;
}

.appointment-section-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    min-height: 420px;
}

.appointment-section-bg {
    background-image: url(http://localhost/dr-menon/wp-content/uploads/2026/05/contact-banner.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    scale: none;
    opacity: 1;
    transform: translate(0px, 0px);
    position: absolute;
    inset: 0;
    z-index: 1;
}

.appointment-section-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.appointment-section-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: rgba(0,0,0,0.45);
}

.appointment-section-content {
    position: absolute;
    bottom: 0;
    z-index: 3;
    padding: 50px 35px;
}

.appointment-section-title {
    color: #fff;
    font-size: 50px;
    font-family: 'urbanist-semibold';
    font-weight: 600;
    margin-bottom: 40px;
}

.appointment-contact-form .row {
    row-gap: 35px;
    align-items: end;
}

.appointment-contact-form-group label {
    display: block;
    color: rgba(255,255,255,0.9);
    font-size: 13px;
    margin-bottom: 8px;
    font-weight: 400;
}

.appointment-contact-form-group input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.55);
    color: #fff;
    font-size: 14px;
    padding: 0 0 10px;
    outline: none;
    border-radius: 0;
    box-shadow: none;
}

.appointment-contact-form-group input::placeholder,
.appointment-contact-form-group textarea::placeholder {
    color: #ffffff;
    font-size: 14px;
    opacity: 1;
}

.appointment-contact-form-group input:focus {
    border-bottom-color: #0BC4F3;
}

.appointment-contact-form-btn {
    height: 100%;
    display: flex;
    align-items: flex-end;
}

.appointment-contact-form-btn p {
    width: 100%;
}

.appointment-submit-btn {
    padding: 15px;
    width: 100%;
    border: none;
    border-radius: 8px;
    background: #0BC4F3;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
}

.appointment-submit-btn:hover{
    background: #08b2de;
}


/* contact us section end  */




/* testimonial Section start  */


.patient-stories-section {
    padding: 80px 0;
    background: #eef7f8;
    overflow: hidden;
}

.patient-stories-header {
    margin-bottom: 50px;
}

.patient-stories-subtitle {
    color: #0BC4F3;
    font-size: 14px;
    font-family: 'urbanist-semibold';
    letter-spacing: 2px;
    text-transform: uppercase;
}

.patient-stories-title {
    font-size: 50px;
    font-family: 'urbanist-semibold';
    line-height: 1.1;
    color: #002E5D;
    margin: 15px 0 25px;
}

.highlight-cyan {
    color: #00d1ff;
}

/* Testimonial Cards */
.testimonial-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 40px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}

.quote-icon {
    margin-bottom: 25px;
}

.quote-icon i {
    font-size: 32px;
    color: #bcccd1;
}

.testimonial-content {
    font-family: 'urbanist-medium';
    font-size: 16px;
    line-height: 1.6;
    color: #4a5d66;
    margin: 0;
    flex-grow: 1;
    margin-bottom: 30px;
}

/* Author Box */
.testimonial-author-box,
.video-author-box {
    display: flex;
    align-items: center;
}

.author-img-wrap {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.author-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.author-info {
    margin-left: 15px;
}

.testimonial-author-box .author-name {
    font-family: 'urbanist-semibold';
    font-size: 18px;
    font-weight: 700;
    color: #0c3848;
    margin: 0 0 4px 0;
}

.testimonial-author-box .author-role {
    font-family: 'urbanist-medium';
    font-size: 14px;
    color: #8c9fa6;
    display: block;
}

/* Video Testimonial Cards */
/* Video Testimonial Cards */
.video-testimonial-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 350px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.video-cover {
    width: 100%;
    height: 100%;
    position: relative;
}

.video-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 40%);
}

.play-btn-circle {
    width: 60px;
    height: 60px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.play-btn-circle:hover {
    transform: scale(1.1);
}

.play-btn-circle i {
    color: #000000;
    font-size: 20px;
    margin-left: 4px;
}

.video-author-box {
    position: absolute;
    bottom: 30px;
    right: 30px;
    justify-content: flex-end;
}

.video-author-box .author-info {
    text-align: left;
}

.video-author-box .author-name {
    font-family: 'urbanist-semibold';
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 4px 0;
}

.video-author-box .author-role {
    font-family: 'urbanist-semibold';
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    display: block;
}

.video-iframe-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #343a40;
}

.video-iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    position: absolute;
    top: 0;
    left: 0;
}




/* Video Testimonials Slider */

.video-testimonials-slider-wrap {
    position: relative;
    margin-top: 40px;
}

.video-testimonials-slider .vt-slide {
    padding: 0 12px;
}

/* NAV ARROWS */
.vt-slider-nav {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-bottom: 20px;
}

.vt-slider-nav button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #002E5D;
    background: transparent;
    color: #002E5D;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
    flex-shrink: 0;
}

.vt-slider-nav button:hover {
    background: #0BC4F3;
    border-color: #0BC4F3;
    color: #fff;
    transform: scale(1.08);
}

/* video testimonials ends here */  

/* testimonial Section end  */



/* counter section start  */


.stats-counter-section {
    padding: 80px 0;
    overflow: hidden;
}

.stats-item {
    margin-bottom: 20px;
}

.stats-number {
    color: #0BC4F3;
    font-size: 72px;
    font-family: 'urbanist-semibold';
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1;
}

.stats-label {
    color: #002E5D;
    font-size: 18px;
    font-family: 'urbanist-semibold';
    font-weight: 500;
    margin: 0;
}


/* counter section end  */



/* footer section start  */

.hospital-footer {
    background: #032f33;
    border-radius: 25px;
    margin: 0 20px;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    color: #fff;
    height: 122vh;
}

.footer-box {
    position:relative;
    z-index:2;
}

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

.footer-logo-image {
    width: 230px;
    object-fit: contain;
    height: 150px;
}

.footer-about-text {
    color: #c7d6d7;
    line-height: 1.8;
    margin-bottom: 25px;
    font-family: 'urbanist-medium';
    font-size: 18px;
}

.footer-social {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 15px;
}

.footer-social p {
    color: #fff;
    font-size: 18px;
    margin: 0; 
}

.footer-social a {
    color: #fff;
    font-size: 22px;
}

.footer-phone {
    display: flex;
    gap: 10px;
}

.footer-whatsapp p {
    display: flex !important;
    align-items: center;
    margin: 0;
    gap: 10px;
}

.footer-whatsapp a {
    margin: 0 !important;
}

.footer-contact p, .footer-contact a {
    color: #fff;
    text-decoration: none;
    margin-bottom: 10px;
    display: block;
    font-family: 'urbanist-semibold';
    font-size: 18px;
    margin-bottom: 10px;
}

.office-item p {
    font-family: 'urbanist-medium';
    font-size: 18px;
    line-height: 35px;
    color: #A8BFC1;
    margin-bottom: 25px;
    max-width: 300px;
}

.office-email p {
    font-family: 'urbanist-medium';
    font-size: 18px;
    line-height: 35px;
    color: #A8BFC1;
    margin-bottom: 10px;
}

.office-email a {
    font-family: 'urbanist-medium';
    font-size: 18px;
    line-height: 35px;
    color: #A8BFC1;
}

.footer-box h4 {
    font-size: 22px;
    margin-bottom: 40px;
}

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

.footer-box ul li {
    margin-bottom: 18px;
}

.footer-box ul li a {
    font-family: 'urbanist-medium';
    color: #A8BFC1;
    text-decoration: none;
}

.footer-box ul li a:hover {
    color: #0BC4F3;
}

.footer-bg-text {
    position: absolute;
    left: 25px;
    bottom: 0;
    font-size: 380px;
    font-family: 'urbanist-semibold';
    font-weight: 700;
    color: rgba(255,255,255,0.04);
    line-height: 1;
    pointer-events: none;
}

.footer-bg-text{
    display:flex;
    justify-content:center;
    overflow:hidden;
}

.footer-bg-text span{
    display:inline-block;
    transform:translateX(-80px);
    margin-right:25px;
    transition:all .8s ease;
}

.footer-bg-text span.active{
    transform:translateX(0);
}

.footer-bg-text span.close-gap{
    margin-right:0;
}

.footer-bg-text span:last-child{
    margin-right:0;
}

.footer-copyright {
    text-align: center;
    padding: 20px 0;
    color: #fff;
}

.footer-copyright p {
    margin: 0;
    color: #000;
    font-family: 'urbanist-semibold';
}

.footer-copyright a {
    margin: 0;
    color: #000;
    font-family: 'urbanist-semibold';
}

/* footer section end  */



/* inner header section start  */


.innerpage-header {
    position: relative;
    height: 65vh;
    overflow: hidden;
    margin: 105px 20px 0;
    border-radius: 25px;
}

.innerpage-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(54 54 54 / 50%);
    z-index: 1;
}

.innerpage-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
	    object-position: top;
}

.pageheading-middle {
    position: absolute;
    top: 45%;
    left: 0;
    right: 0;
    text-align: center;
    color: #fff;
    z-index: 2;
    transform: translateY(-55%);
}

.pageheading-middle h2 {
    font-size: 38px;
    font-family: 'urbanist-semibold';
    line-height: 1.1;
    color: #fff;
    margin: 0 auto;
    min-width: 180px;
    max-width: 550px;
}

.pageheading-middle a {
  color: #0BC4F3;
}



/* inner header section end  */



/* inner page about us section start  */


.inner-about-us-section{
    padding:80px 0;
    overflow: hidden;
}

.inner-about-us-section-label {
    color: #0BC4F3;
    font-size: 14px;
    font-family: 'urbanist-semibold';
    letter-spacing: 2px;
    text-transform: uppercase;
}

.inner-about-us-description h1 {
    font-size: 50px;
    font-family: 'urbanist-semibold';
    line-height: 1.1;
    color: #002E5D;
    margin: 15px 0 25px;
}

.inner-about-us-description p {
    font-size: 18px;
    font-family: 'urbanist-medium';
    line-height: 1.8;
    color: #7b8794;
    margin: auto;
}

.inner-about-us-layout {
    display: flex;
    gap: 20px;
    width: 100%;
    height: 560px;
}

.inner-about-us-left-column, .inner-about-us-right-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.inner-about-us-left-column {
    flex: 1.1;
}

.inner-about-us-right-column {
    flex: 0.9;
}

.inner-about-us-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.inner-about-us-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.2);
    animation: imageZoom 1.5s ease forwards;
}

.inner-about-us-main-image {
    flex: 1.8;
}

.inner-about-us-counter-card {
    background: #0BC4F3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 25px;
}

.inner-about-us-right-column .inner-about-us-card:first-child {
    flex: 0.9;
}

.inner-about-us-right-column .inner-about-us-card:last-child {
    flex: 1.8;
}

.inner-about-us-counter-number{ 
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
}

.inner-about-us-counter-text {
    margin-top: 8px;
    font-size: 16px;
    color: #fff;
}

.inner-about-us-main-image,
.inner-about-us-counter-card,
.inner-about-us-right-column .inner-about-us-card {
    opacity: 0;
    transform: translateY(70px);
    animation: imageCardReveal 1s cubic-bezier(.22,1,.36,1) forwards;
}

/* Main image first */
.inner-about-us-main-image{
    animation-delay:.15s;
}

/* Right top image */
.inner-about-us-right-column .inner-about-us-card:nth-child(1){
    animation-delay:.55s;
}

/* Right bottom image */
.inner-about-us-right-column .inner-about-us-card:nth-child(2){
    animation-delay:.95s;
}

.inner-about-us-counter-card{
    animation-delay:1.6s;
}

.inner-about-us-main-image::before,
.inner-about-us-counter-card::before,
.inner-about-us-right-column .inner-about-us-card::before{
    content: "";
    position: absolute;
    inset: 0;
    background: #fff;
    z-index: 5;
    animation: swipeReveal 1.1s ease forwards;
}

@keyframes imageCardReveal{

    0%{
        opacity:0;
        transform:translateY(70px);
    }

    100%{
        opacity:1;
        transform:translateY(0);
    }

}

@keyframes imageZoom{

    from{
        transform:scale(1.2);
    }

    to{
        transform:scale(1);
    }

}

@keyframes swipeReveal{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(101%);
    }

}



.director-note {
    padding: 60px 0px;
    overflow: hidden;
}

.director-note-inner {
    padding: 20px;
    background: #F1F8FC;
    border: 1px solid #52dafc;
    border-radius: 13px;
}

.director-note-photo-wrap {
    border-radius: 6px;
    overflow: hidden;
    opacity: 0;
    transform: translateX(-50px);
}

.director-note-photo {
    width: 100%;
    height: 450px;
    object-fit: cover;
    object-position: top center;
    display: block;
    border-radius: 10px;
}

.director-note-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 20px 60px 20px 0px;
    flex: 1;
    opacity: 0;
    transform: translateX(50px);
}

.director-note-eyebrow {
    color: #0BC4F3;
    font-size: 14px;
    font-family: 'urbanist-semibold';
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.director-note-heading {
    font-size: 40px;
    font-family: 'urbanist-semibold';
    font-weight: 600;
    color: #152E5E;
    line-height: 1.3;
    margin: 0 0 22px 0;
}

.director-note-message {
    font-size: 16px;
    font-family: 'urbanist-medium';
    line-height: 1.7;
    color: #7b8794;
    margin-bottom: 30px;
}

.director-note-sign-block {
	max-width: 440px;
}

.director-note-name {
    font-size: 22px;
    font-family: 'urbanist-semibold';
    font-weight: 600;
    color: #1e2a2a;
    margin: 0 0 4px 0;
}

.director-note-qualification {
    font-size: 16px;
    font-family: 'urbanist-medium';
    color: #00000099;
    margin: 0;
    letter-spacing: 0.3px;
}


/* mission and vision  */


.inner-about-mv-section {
    padding: 80px 0;
    overflow: hidden;
}

.inner-about-mv-wrapper {
    display:flex;
    align-items:stretch;
    justify-content:space-between;
    background:#002E5D;
    border-radius:18px;
    padding:40px 30px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
    position:relative;
    opacity:0;
}

.inner-about-mv-card {
    display:flex;
    align-items:center;
    gap:20px;
    width:45%;
    opacity:0;
    position:relative;
}

/* initial states */

.inner-about-mv-card:first-child{
    transform:translateX(-80px);
}

.inner-about-mv-card:last-child{
    transform:translateX(80px);
}

.inner-about-mv-icon {
    width:90px;
    height:90px;
    min-width:90px;
    border-radius:50%;
    background:#e6f4ff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:40px;
    color:#0b5ed7;
    transform:scale(.3) rotate(-180deg);
}

.inner-about-mv-content h3 {
    font-size: 28px;
    font-family: 'urbanist-semibold';
    margin-bottom: 10px;
    color: #fff;
}

.inner-about-mv-content p {
    font-size: 16px;
    font-family: 'urbanist-medium';
    line-height: 1.7;
    color: #fdfeff;
    margin: 0;
}

.inner-about-mv-divider {
    width:1px;
    background:#dbe9f5;
    margin:0 25px;
    transform:scaleY(0);
    transform-origin:center;
}


.inner-about-mv-active .inner-about-mv-wrapper{
    animation:wrapperReveal .6s ease forwards;
}

.inner-about-mv-active .inner-about-mv-card:first-child{
    animation:missionReveal 1s cubic-bezier(.22,1,.36,1) forwards;
    animation-delay:.3s;
}

.inner-about-mv-active .inner-about-mv-card:last-child{
    animation:visionReveal 1s cubic-bezier(.22,1,.36,1) forwards;
    animation-delay:.7s;
}

.inner-about-mv-active .inner-about-mv-icon{
    animation:iconReveal .8s ease forwards;
    animation-delay:1s;
}

.inner-about-mv-active .inner-about-mv-divider{
    animation:dividerGrow .8s ease forwards;
    animation-delay:1.1s;
}

@keyframes wrapperReveal{

    from{
        opacity:0;
    }

    to{
        opacity:1;
    }

}

@keyframes missionReveal{

    from{
        opacity:0;
        transform:translateX(-80px);
    }

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

}

@keyframes visionReveal{

    from{
        opacity:0;
        transform:translateX(80px);
    }

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

}

@keyframes iconReveal{

    from{
        transform:scale(.3) rotate(-180deg);
    }

    to{
        transform:scale(1) rotate(0deg);
    }

}

@keyframes dividerGrow{

    from{
        transform:scaleY(0);
    }

    to{
        transform:scaleY(1);
    }

}



/* inner page about us section end  */



/* inner page team section start  */


.innerpage-team-section {
    padding: 80px 0;
    overflow: hidden;
}

.innerpage-team-section-top {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 45px;
}

.innerpage-team-section-top span {
    color: #0BC4F3;
    font-size: 14px;
    font-family: 'urbanist-semibold';
    letter-spacing: 2px;
    text-transform: uppercase;
}

.innerpage-team-section-top h2 {
    font-size: 50px;
    font-family: 'urbanist-semibold';
    line-height: 1.1;
    color: #002E5D;
    margin: 15px 0 25px;
}

.innerpage-team-section-top p {
    font-size: 18px;
    font-family: 'urbanist-medium';
    line-height: 1.8;
    color: #7b8794;
    max-width: 850px;
    margin: auto;
}

.innerpage-team-section .row {
	justify-content: center;
}

.innerpage-team-section-col {
    margin-bottom: 20px;
}

.innerpage-team-card {
    padding: 15px;
    text-align: center;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
}

.innerpage-team-image {
    border-radius: 20px;
    overflow: hidden;
 
}

.innerpage-team-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.innerpage-team-card h4 {
    margin-top: 20px;
    font-family: 'urbanist-semibold';
    font-size: 20px;
    font-weight: 600;
}

.innerpage-team-designation {
    color: #0BC4F3;
    font-size: 13px;
    margin-bottom: 20px;
    font-family: 'urbanist-medium';
}

.innerpage-team-btn {
    display: block;
    text-align: center;
    background: #0BC4F3;
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s ease-in-out;
}

.innerpage-team-btn:hover {
    background: #002E5D;
    color: #fff;
}

.doctor-popup-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.7);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:9999;
}

.doctor-popup-box{
    background:#fff;
    width:500px;
    max-width:90%;
    padding:30px;
    border-radius:20px;
    position:relative;
    animation:popupScale .3s ease;
}

@keyframes popupScale{
    from{
        transform:scale(0.7);
        opacity:0;
    }
    to{
        transform:scale(1);
        opacity:1;
    }
}

.doctor-popup-close{
    position:absolute;
    right:15px;
    top:10px;
    font-size:28px;
    cursor:pointer;
    color:#002E5D;
}

.doctor-popup-box h2 {
    font-size: 26px;
    font-family: 'urbanist-semibold';
    margin-bottom: 10px;
    color: #002E5D;
}

.doctor-popup-box h4 {
    font-size: 16px;
    font-family: 'urbanist-semibold';
    margin-bottom: 15px;
    color: #0BC4F3;
}

#popupContent {
    font-size: 15px;
    font-family: 'urbanist-medium';
    line-height: 1.8;
}

.doctor-popup-box br {
    display: none;
}


/* inner page team section end  */



/* inner page department section start  */


.innerpage-department-section {
    padding: 80px 0;
    background: #f4f7fb;
    overflow: hidden;
}

.innerpage-department-section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.innerpage-department-section-intro span {
    color: #0BC4F3;
    font-size: 14px;
    font-family: 'urbanist-semibold';
    letter-spacing: 2px;
    text-transform: uppercase;
}

.innerpage-department-section-intro h2 {
    font-size: 50px;
    font-family: 'urbanist-semibold';
    line-height: 1.1;
    color: #002E5D;
    margin: 15px 0 25px;
}

.innerpage-department-section-intro p {
    font-family: 'urbanist-medium';
    font-size: 18px;
    color: #7b8794;
    line-height: 1.8;
}

.innerpage-department-col {
    margin-bottom: 20px;
}

.innerpage-department-section-card {
    position: relative;
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,46,93,0.07);
    transition: box-shadow 0.4s ease, transform 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 300px;
    cursor: pointer;
    border: 1px solid rgba(0,46,93,0.06);
}

.innerpage-department-section-card:hover {
    box-shadow: 0 16px 48px rgba(0,46,93,0.18);
    transform: translateY(-4px);
}

.innerpage-department-section-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity 0.5s ease, transform 0.5s ease;
    z-index: 0;
}

.innerpage-department-section-card:hover .innerpage-department-section-card-bg {
    opacity: 1;
    transform: scale(1);
}

.innerpage-department-section-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,46,93,0.88) 0%, rgba(0,46,93,0.55) 50%, rgba(0,46,93,0.25) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.innerpage-department-section-card:hover .innerpage-department-section-card-overlay {
    opacity: 1;
}

.innerpage-department-section-card-inner {
    position: relative;
    z-index: 2;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.innerpage-department-section-card-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #e8f8fd;
    border: 1px solid rgba(11, 196, 243, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: background 0.4s ease, border-color 0.4s ease;
}

.innerpage-department-section-card:hover .innerpage-department-section-card-icon-wrap {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.35);
}

.innerpage-department-section-card-icon-default {
    font-size: 22px;
    color: #0BC4F3;
    transition: color 0.4s ease;
}

.innerpage-department-section-card:hover .innerpage-department-section-card-icon-default {
    color: #fff;
}

.innerpage-department-section-card-inner h3 {
    margin: 0;
}

.innerpage-department-section-card-inner h3 a {
    font-size: 20px;
    font-family: 'urbanist-semibold';
    line-height: 1.25;
    color: #002E5D;
    text-decoration: none;
    transition: color 0.4s ease;
}

.innerpage-department-section-card:hover .innerpage-department-section-card-inner h3 a {
    color: #fff;
}

.innerpage-department-section-card-divider {
    width: 36px;
    height: 3px;
    background: #0BC4F3;
    border-radius: 2px;
    margin: 5px 0 20px;
    transition: background 0.4s ease, width 0.4s ease;
}

.innerpage-department-section-card:hover .innerpage-department-section-card-divider {
    background: rgba(255, 255, 255, 0.6);
    width: 70px;
}

.innerpage-department-section-card-inner p {
    font-size: 14px;
    font-family: 'urbanist-medium';
    color: #7b8794;
    line-height: 1.75;
    margin: 0;
    flex: 1;
    transition: color 0.4s ease;
}

.innerpage-department-section-card:hover .innerpage-department-section-card-inner p {
    color: rgba(255, 255, 255, 0.82);
}

.innerpage-department-section-card-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(0,46,93,0.18);
    color: #002E5D;
    font-size: 15px;
    text-decoration: none;
    margin-top: 22px;
    align-self: flex-start;
    transition: all 0.4s ease;
}

.innerpage-department-section-card:hover .innerpage-department-section-card-arrow {
    background: #0BC4F3;
    border-color: #0BC4F3;
    color: #fff;
    transform: translateX(4px);
}

.innerpage-department-section-empty {
    font-size: 18px;
    color: #7b8794;
    text-align: center;
    padding: 60px 0;
}


/* inner page department section end  */



/* single page department section start  */


.dept-single-section {
    padding: 80px 0;
    background: #f6fbfd;
    overflow: hidden;
}

.dept-single-section-img {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 46, 93, 0.08);
}

.dept-single-section-img img {
    width: 100%;
    object-fit: cover;
    height: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.dept-single-section-img:hover img {
    transform: scale(1.02);
}

.dept-single-body-content {
    font-size: 16px;
    color: #444;
    line-height: 1.85;
}

.dept-single-body-content p {
    margin-bottom: 18px;
    color: #555;
    font-family: 'urbanist-medium';
}

.dept-single-body-content h2,
.dept-single-body-content h3,
.dept-single-body-content h4 {
    color: #002E5D;
    font-family: 'urbanist-semibold';
    margin-top: 28px;
    margin-bottom: 12px;
}

.dept-single-body-content img {
    max-width: 100%;
    border-radius: 14px;
    margin: 20px 0;
}

.dept-single-procedures {
    background: #fff;
    border-radius: 22px;
    padding: 40px;
    box-shadow: 0 4px 28px rgba(0, 46, 93, 0.07);
    margin-bottom: 30px;
}

.dept-single-sub-heading {
    font-family: 'urbanist-semibold';
    font-size: 28px;
    color: #002E5D;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 14px;
}

.dept-single-sub-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 48px;
    height: 3px;
    background: #0BC4F3;
    border-radius: 2px;
}

.dept-single-proc-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #f6fbfd;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(11, 196, 243, 0.15);
    transition: 0.3s;
    height: 100%;
}

.dept-single-proc-item:hover {
    box-shadow: 0 6px 24px rgba(0, 46, 93, 0.1);
    transform: translateY(-3px);
}

.dept-single-proc-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: #e8f8fd;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dept-single-proc-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.dept-single-proc-text h4 {
    font-family: 'urbanist-semibold';
    font-size: 17px;
    color: #002E5D;
    margin-bottom: 6px;
}

.dept-single-proc-text p {
    font-size: 14px;
    color: #7b8794;
    margin: 0;
    line-height: 1.6;
}

.single-department-sidebar-cta-card {
    background: linear-gradient(135deg, #002E5D 0%, #0056a3 100%);
    border-radius: 22px;
    padding: 36px 32px;
    text-align: center;
    margin-bottom: 24px;
}

.single-department-sidebar-cta-icon {
    width: 64px;
    height: 64px;
    background: rgba(11, 196, 243, 0.18);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.single-department-sidebar-cta-icon i {
    font-size: 28px;
    color: #0BC4F3;
}

.single-department-sidebar-cta-card h3 {
    color: #fff;
    font-size: 24px;
    font-family: 'urbanist-semibold';
    margin-bottom: 12px;
}

.single-department-sidebar-cta-card p {
    font-size: 14px;
    font-family: 'urbanist-medium';
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 24px;
}

.single-department-sidebar-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0BC4F3;
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: 'urbanist-medium';
    text-decoration: none;
    transition: 0.3s;
}

.single-department-sidebar-cta-btn:hover {
    background: #fff;
    color: #002E5D;
}

.single-department-sidebar-other {
    background: #fff;
    border-radius: 22px;
    padding: 25px 20px;
    box-shadow: 0 4px 28px rgba(0, 46, 93, 0.07);
    margin-bottom: 24px;
}

.single-department-sidebar-heading {
    font-size: 20px;
    color: #002E5D;
    margin-bottom: 20px;
    border-bottom: 2px solid #e8f4fd;
    padding-bottom: 14px;
}

.single-department-sidebar-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 15px;
    transition: 0.3s ease-in-out;
}

.single-department-sidebar-item:hover {
    background: #002E5D;
    color: #fff;
}

.single-department-sidebar-item:hover p {
    color: #fff;
}

.single-department-sidebar-thumb {
    width: 150px;
    height: 100px;
    border-radius: 12px;
    background: #e8f8fd;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.single-department-sidebar-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-department-sidebar-title {
    font-size: 18px;
    margin-bottom: 10px;
    font-family: 'urbanist-semibold';
}

.single-department-sidebar-text {
    font-size: 14px;
    margin: 0;
    font-family: 'urbanist-medium';
}

.single-department-sidebar-view-all {
    display: inline-flex;
    gap: 8px;
    color: #0BC4F3;
    font-size: 15px;
    text-decoration: none;
    transition: 0.3s;
}

.single-department-sidebar-view-all:hover {
    gap: 14px;
    color: #002E5D;
}


/* single page department section end  */



/* inner page blog section start  */


.inner-blog-section {
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
}

.inner-blog-heading {
    margin-bottom: 40px;
}

.inner-blog-subtitle {
    color: #0BC4F3;
    font-size: 14px;
    font-family: 'urbanist-semibold';
    letter-spacing: 2px;
    text-transform: uppercase;
}

.inner-blog-main-title {
    font-size: 50px;
    font-family: 'urbanist-semibold';
    line-height: 1.1;
    color: #002E5D;
    margin: 15px 0 25px;
}

.inner-blog-top-row {
    margin-bottom: 60px;
    align-items: flex-start;
}

.inner-blog-featured-card {
    position: relative;
    display: block;
    border-radius: 25px;
    overflow: hidden;
}

.inner-blog-featured-img {
    width: 100%;
    height: 650px;
    object-fit: cover;
}

.inner-blog-featured-content {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 35px;
    color: #fff;
    background: linear-gradient(to top, rgba(0,0,0,.85), transparent);
}

.inner-blog-tags {
    margin-bottom: 20px;
}

.inner-blog-tags span {
    background: #0BC4F3;
    color: #fff;
    font-size: 12px;
    font-family: 'urbanist-semibold';
    padding: 8px 12px;
    border-radius: 5px;
    text-transform: uppercase;
}

.inner-blog-meta {
    font-size: 14px;
    font-family: 'urbanist-semibold';
    color: #ffffff;
    margin-bottom: 10px;
}

.inner-blog-featured-content h2 {
    font-size: 40px;
    font-family: 'urbanist-semibold';
    line-height: 1.2;
    color: #fff;
}

.inner-blog-featured-content p {
    font-size: 16px;
    font-family: 'urbanist-medium';
    line-height: 1.7;
    margin: 0;
    color: #fff;
}

.inner-blog-sidebar {
    display: flex;
    flex-direction: column;
}

.inner-blog-sidebar-card {
    display: flex;
    gap: 18px;
    align-items: center;
    margin-bottom: 22px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.inner-blog-sidebar-img {
    width: 170px;
    min-width: 170px;
    height: 130px;
    object-fit: cover;
    border-radius: 14px;
}

.inner-blog-sidebar-content {
    display:flex;
    flex-direction:column;
}

.inner-blog-sidebar-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.inner-blog-sidebar-tags span {
    font-size: 10px;
    font-family: 'urbanist-semibold';
    padding: 5px 10px;
    border-radius: 5px;
    background: #0BC4F3;
    color: #fff;
    text-transform: uppercase;
}

.inner-blog-sidebar-meta {
    font-size: 12px;
    font-family: 'urbanist-semibold';
    color: #777;
    margin: 0;
}

.inner-blog-sidebar-title {
    margin-top: 8px;
    font-size: 18px;
    font-family: 'urbanist-semibold';
    line-height: 1.5;
    color: #002b5b;
}

.inner-blog-below-card {
    margin-bottom: 35px;
}

.inner-blog-below-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 18px;
    margin-bottom: 15px;
}

.inner-blog-below-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.inner-blog-below-tags span {
    background: #0BC4F3;
    color: #fff;
    font-size: 12px;
    font-family: 'urbanist-semibold';
    padding: 8px 12px;
    border-radius: 5px;
    text-transform: uppercase;
}

.inner-blog-below-card h6 {
    margin: 15px 0;
    font-size: 20px;
    line-height: 1.4;
}

.inner-blog-below-btn{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #0BC4F3;
    text-decoration: none;
    font-size: 16px;
    font-family: 'urbanist-semibold';
    transition: 0.3s ease-in-out;
}

.inner-blog-below-btn:hover{
    color: #002E5D;
}



/* inner page blog section end  */




/* single page blog section start  */

.single-blog-section{
    padding: 80px 0;
    background: #f8fbff;
    overflow: hidden;
}

.single-blog-section-main {
    overflow: hidden;
}

.single-blog-section-content {
    padding-top: 40px;
}

.single-blog-section-content h1 {
    font-size: 42px;
    font-family: 'urbanist-semibold';
    color: #002E5D;
    margin-bottom: 20px;
    line-height: 1.2;
}

.single-blog-section-meta{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
    font-size: 14px;
    color: #777;
}

.single-blog-section-tag {
    background: #0BC4F3;
    color: #fff;
    font-size: 12px;
    font-family: 'urbanist-semibold';
    padding: 8px 12px;
    border-radius: 5px;
    text-transform: uppercase;
}

.single-blog-section-image{
    margin-bottom: 30px;
}

.single-blog-section-image img{
    width:100%;
    height:500px;
    object-fit:cover;
    border-radius:20px;
}

.single-blog-content-para li {
    font-size: 16px;
    font-family: 'urbanist-medium';
    line-height: 1.8;
    color: #666;    
}

.single-blog-content-para li strong {
    color: #3b3b3b;    
}

.single-blog-section-content p {
    font-size: 16px;
    font-family: 'urbanist-medium';
    line-height: 1.8;
    color: #666;
}

.single-blog-section-sidebar-box {
    background: #fff;
    padding: 15px;
    border-radius: 20px;
    box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 4%);
}

.single-blog-section-sidebar-box h3 {
    color: #0d2d62;
    margin: 12px 12px 25px;
}

.single-blog-section-recent-post {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 15px;
    transition: 0.3s ease-in-out;
}

.single-blog-section-recent-post:hover {
    background: #002E5D;
}

.single-blog-section-recent-post:hover h4, .single-blog-section-recent-content span:hover {
    color: #fff;
}

.single-blog-section-recent-post:hover .single-blog-section-recent-content span {
    color: #fff;
}

.single-blog-section-thumb {
    width: 240px;
    height: 100px;
    border-radius: 12px;
    background: #e8f8fd;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.single-blog-section-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

.single-blog-section-recent-content h4{
    font-size:16px;
    color:#0d2d62;
    margin-bottom:8px;
}

.single-blog-section-recent-content span{
    font-size:13px;
    color:#777;
}

.single-blog-section-comments{
    padding:40px;
    border-top:1px solid #eee;
}


/* single page blog section end  */



/* inner page service section start  */


.inner-service-section {
    padding: 80px 0;
    overflow: hidden;
}

.inner-service-section-header {
    text-align: center;
    max-width: 915px;
    margin: auto;
    margin-bottom: 50px;
}

.inner-service-section-header span {
    color: #0BC4F3;
    font-size: 14px;
    font-family: 'urbanist-semibold';
    letter-spacing: 2px;
    text-transform: uppercase;
}

.inner-service-section-header h2 {
    font-size: 50px;
    font-family: 'urbanist-semibold';
    line-height: 1.1;
    color: #002E5D;
    margin: 15px 0 25px;
}

.inner-service-section-header p {
    font-size: 18px;
    font-family: 'urbanist-medium';
    line-height: 1.8;
    color: #7b8794;
    max-width: 850px;
    margin: auto;
}

.inner-service-section-item {
    margin: 20px 0;
}

.inner-service-section-card {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 20px;
    box-shadow: 0px 0px 6px 0 #0000002e;
    border-radius: 20px;
}

.inner-service-section-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 220px;
    width: 60%;
}

.inner-service-section-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.inner-service-section-content h4 {
    font-size: 20px;
    font-family: 'urbanist-semibold';
    line-height: 1.2;
    color: #002E5D;
    margin-bottom: 10px;
}

.inner-service-section-content p {
    font-size: 15px;
    font-family: 'urbanist-medium';
    line-height: 1.8;
    color: #7d8790;
    margin-bottom: 10px;
    padding-right: 8px;
}

.inner-service-section-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #0BC4F3;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
}

.inner-service-section-btn:hover {
    color: #002E5D;
}

.inner-service-section-image {
    width: 40%;
}

.inner-service-section-image img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 18px;
}

.inner-service-section-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 0;
    padding: 25px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.inner-service-section-tab {
    background: transparent;
    color: #002E5D;
    padding: 5px 25px;
    border-radius: 18px;
    font-size: 15px;
    text-transform: uppercase;
    font-family: 'urbanist-semibold';
    cursor: pointer;
    position: relative;
    transition: .4s ease;
    z-index: 1;
    border: 1px solid #002E5D;
}

.inner-service-section-tab:hover {
    color: #fff;
    background: #002E5D;
    outline: none;
}

.inner-service-section-tab:hover:before {
    opacity: 1;
    transform: scale(1);
}

.inner-service-section-tab.active {
    color: #fff;
    background: #002E5D;
}

.inner-service-section-tab.active:before {
    opacity: 1;
    transform: scale(1);
}


/* inner page service section end  */



/* single page service section start  */

.single-service-section{
    padding:80px 0;
    overflow:hidden;
}

.single-service-content-wrap{
    padding-right:40px;
}

.single-service-image{
    margin-bottom:35px;
}

.single-service-image img{
    width:100%;
    height:500px;
    object-fit:cover;
    border-radius:24px;
}

.single-service-title{
    font-size:42px;
    line-height:1.2;
    color:#002E5D;
    margin-bottom:25px;
    font-family:'urbanist-semibold';
}

.single-service-content{
    color:#666;
    line-height:1.9;
    font-size:17px;
}

.single-service-content p {
    margin-bottom: 20px;
    font-size: 16px;
    font-family: 'urbanist-medium';
}

.single-service-specialists{
    margin-top:70px;
}

.single-service-specialists h2 {
    font-size: 24px;
    font-family: 'urbanist-semibold';
    color: #002E5D;
    margin: 25px 0;
}

.single-service-doctor-card{
    display:flex;
    align-items:center;
    gap:18px;
    padding:20px;
    border-radius:20px;
    background:#fff;
    margin-bottom:25px;
    border:1px solid #eee;
    transition:.4s ease;
}

.single-service-doctor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,.08);
}

.single-service-doctor-image img {
    width:90px;
    height:90px;
    border-radius:50%;
    object-fit:cover;
}

.single-service-doctor-content h4 {
    font-size: 18px;
    font-family: 'urbanist-semibold';
    color: #002E5D;
    margin-bottom: 5px;
}

.single-service-doctor-content span {
    color:#0BC4F3;
    font-size:15px;
}

.single-service-sidebar {
    background: #f7f9fc;
    padding: 15px;
    border-radius: 20px;
}

.single-service-sidebar h4 {
    margin: 20px;
}

.single-service-sidebar-card {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 20px;
    text-decoration: none;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.single-service-sidebar-image img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 14px;
    flex-shrink: 0;
}

.single-service-sidebar-content h5 {
    color: #0BC4F3;
    font-size: 18px;
    font-family: 'urbanist-semibold';
    margin-bottom: 8px;
}

.single-service-sidebar a {
    border-radius: 15px;
    transition: 0.3s ease-in-out;
}

.single-service-sidebar a:hover {
    background: #002E5D;
    color: #fff;
}

.single-service-sidebar a:hover h5 {
    color: #fff;
}

.single-service-sidebar a:hover p {
    color: #fff;
}

.single-service-sidebar-content p {
    color: #777;
    font-size: 14px;
    font-family: 'urbanist-medium';
    line-height: 1.6;
    margin: 0;
}

/* single page service section end  */



/* inner page contact us section start  */

.inner-contact-us-section {
    padding: 80px 0;
    background: #f4f7fb;
    overflow: hidden;
}

.inner-contact-us-page-info {
    background: #002E5D;
    padding: 30px;
    border-radius: 35px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.inner-contact-us-info-header{
    margin-bottom:40px;
}

.inner-contact-us-page-label{
    display:inline-block;
    color:#0BC4F3;
    font-size:13px;
    font-family:'urbanist-semibold';
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:16px;
}

.inner-contact-us-page-info h2 {
    font-family: 'urbanist-semibold';
    font-size: 36px;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #fff;
}

.inner-contact-us-info-header p{
    font-size: 16px;
    font-family: 'urbanist-medium';
    line-height: 1.7;
    color: rgba(255,255,255,.8);
}

.inner-contact-us-page-info-list{
    display:flex;
    flex-direction:column;
    gap:30px;
}

.inner-contact-us-page-info-item{
    display:flex;
    align-items:center;
    gap:20px;
}

.inner-contact-us-page-info-icon{
    width:54px;
    height:54px;
    border-radius:14px;
    background:rgba(11,196,243,.15);
    display:flex;
    justify-content:center;
    align-items:center;
    flex-shrink:0;
    transition:.3s;
}

.inner-contact-us-page-info-item:hover .inner-contact-us-page-info-icon{
    transform:translateX(5px);
}

.inner-contact-us-page-info-icon i{
    color:#0BC4F3;
    font-size:22px;
}

.inner-contact-us-page-info-text h4 {
    color: #fff;
    font-family: 'urbanist-semibold';
    font-size: 18px;
    margin-bottom: 5px;
}

.inner-contact-us-page-info-text p, .inner-contact-us-page-info-text a {
    font-size: 16px;
    font-family: 'urbanist-medium';
    color: rgba(255,255,255,.7);
    text-decoration: none;
    margin: 0;
}

.inner-contact-us-page-info-text a:hover{
    color:#0BC4F3;
}

.inner-contact-us-info-social{
    margin-top:50px;
    padding-top:30px;
    border-top:1px solid rgba(255,255,255,.1);
    display:flex;
    gap:20px;
    align-items:center;
}

.inner-contact-us-social-links{
    display:flex;
    gap:15px;
}

.inner-contact-us-social-link{
    width:45px;
    height:45px;
    border-radius:12px;
    background:rgba(255,255,255,.08);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.inner-contact-us-social-link:hover{
    transform:translateY(-5px);
    background:#0BC4F3;
}

.inner-contact-us-page-form-wrap {
    background: #fff;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 8px 40px rgba(0,46,93,.08);
}

.inner-contact-us-page-form-wrap h3 {
    font-size: 30px;
    font-family: 'urbanist-semibold';
    color: #002E5D;
    margin-bottom: 15px;
}

.inner-contact-us-page-form-wrap p {
    color: #7b8794;
    margin-bottom: 30px;
    font-family: 'urbanist-medium';
}

.inner-contact-us-page-form-wrap input,
.inner-contact-us-page-form-wrap textarea,
.inner-contact-us-page-form-wrap select{
    width:100%;
    padding:14px 18px;
    border:1px solid #dde5ee;
    border-radius:12px;
    background:#f8fafc;
    transition:.3s;
}

.inner-contact-us-page-form-wrap input:focus,
.inner-contact-us-page-form-wrap textarea:focus,
.inner-contact-us-page-form-wrap select:focus{
    border-color:#0BC4F3;
    outline:none;
}

.inner-contact-us-page-form-wrap textarea{
    height:200px;
}

.inner-contact-us-page-form-wrap .wpcf7-submit{
    width:100%;
    height:52px;
    border:none;
    border-radius:12px;
    color:#fff;
    background:linear-gradient(135deg,#0BC4F3,#0091b5);
    transition:.3s;
}

.inner-contact-us-page-form-wrap .wpcf7-submit:hover{
    transform:translateY(-2px);
}

/* MAPS SECTION */

.inner-contact-us-maps-section {
    padding: 20px 0 80px;
    background: #f4f7fb;
    overflow: hidden;
}

.inner-contact-us-map-item {
    margin-bottom: 20px;
}

.inner-contact-us-map-title {
    font-family: 'urbanist-semibold';
    font-size: 24px;
    color: #002E5D;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.inner-contact-us-map-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #0BC4F3;
    border-radius: 2px;
}

.inner-contact-us-map-iframe {
    border-radius: 24px;
    overflow: hidden;
    height: 330px !important;
}

.inner-contact-us-map-iframe iframe {
    width: 100%;
    height: 330px;
    filter: grayscale(0.2) contrast(1.1);
    transition: filter 0.5s ease;
}

.inner-contact-us-map-item:hover .inner-contact-us-map-iframe iframe {
    filter: grayscale(0);
}

/* inner page contact us section end  */


/* inner page testimonial section start  */

.inner-testimonial-section {
    padding: 80px 0;
    background: #f1f7f9;
}

.inner-testimonial-section-card {
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
    border: none;
    position: relative;
}

.inner-testimonial-section-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.inner-testimonial-section-quote-icon {
    display: block;
    font-size: 32px;
    color: #cbd5e0;
    margin-bottom: 20px;
    text-align: left;
}

.inner-testimonial-section-content {
    font-family: 'urbanist-medium';
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 25px;
    flex-grow: 1;
}

.inner-testimonial-section-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0BC4F3;
    font-family: 'urbanist-semibold';
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .5px;
    cursor: pointer;
    transition: .3s;
    background: transparent;
    border: none;
    padding: 0;
    margin-bottom: 25px;
    opacity: .8;
}

.inner-testimonial-section-read-more:hover {
    opacity: 1;
    color: #002E5D;
}

.inner-testimonial-section-author-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

.inner-testimonial-section-author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.inner-testimonial-section-author-img img {
    width:100%;
    height:100%;
    object-fit:cover;
}

.inner-testimonial-section-author-details h4{
    font-size:16px;
    color:#002E5D;
    margin:0 0 2px;
    font-family:'urbanist-semibold';
}

.inner-testimonial-section-author-details span{
    font-size:13px;
    color:#a0aec0;
    font-family:'urbanist-medium';
}

/* MODAL */

.inner-testimonial-section-modal{
    position:fixed;
    inset:0;
    z-index:10000;
    background:rgba(0,46,93,.4);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
    display:none;
    align-items:center;
    justify-content:center;
    padding:20px;
    opacity:0;
    transition:opacity .4s ease;
}

.inner-testimonial-section-modal.active{
    display:flex;
    opacity:1;
}

.inner-testimonial-section-modal-content{
    background:#fff;
    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);
    width:100%;
    max-width:750px;
    height:auto;
    max-height:85vh;
    border-radius:30px;
    position:relative;
    padding:60px;
    box-shadow:0 25px 50px rgba(0,0,0,.15);
    border:1px solid rgba(255,255,255,.4);
    transform:translateY(30px) scale(.95);
    transition:
    transform .5s cubic-bezier(
    .175,.885,.32,1.275);
    display:flex;
    flex-direction:column;
}

.inner-testimonial-section-modal.active 
.inner-testimonial-section-modal-content{
    transform:translateY(0) scale(1);

}

.inner-testimonial-section-modal-body{
    display:flex;
    flex-direction:column;
    min-height:0;
    flex:1;
}

.inner-testimonial-section-modal-quote {
    font-size: 20px;
    line-height: 1.8;
    color: #4a5568;
    font-family:'urbanist-medium';
    position: relative;
    overflow-y: auto;
    padding-right: 15px;
    margin-bottom: 20px;
    flex: 1;
}

.inner-testimonial-section-modal-quote::-webkit-scrollbar{
    width: 6px;
}

.inner-testimonial-section-modal-quote::-webkit-scrollbar-thumb{
    background: rgba(11,196,243,.2);
    border-radius: 10px;
}

.inner-testimonial-section-modal-close{
    position:absolute;
    top: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: #f8fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #002E5D;
    transition: .3s;
    border: none;
    z-index: 2;
}

.inner-testimonial-section-modal-close:hover{
    background:#0BC4F3;
    color:#fff;
    transform:rotate(90deg);

}

.inner-testimonial-section-modal-quote::before{
    content:'"';
    position:absolute;
    top:-20px;
    left:-20px;
    font-size:100px;
    color:rgba(11,196,243,.1);
    font-family:serif;
    line-height:1;
}

.inner-testimonial-section-modal-author{
    display:flex;
    align-items:center;
    gap:25px;
    padding-top:40px;
    border-top:
    1px solid rgba(
    0,46,93,.2);

}

.inner-testimonial-section-modal-author img{
    width:85px;
    height:85px;
    border-radius:50%;
    border:4px solid #0BC4F3;
    box-shadow:
    0 8px 20px
    rgba(11,196,243,.15);

}

.inner-testimonial-section-modal-author-details h4{
    font-size:22px;
    color:#002E5D;
    margin:0 0 5px;
    font-family:'urbanist-semibold';
}

.inner-testimonial-section-modal-author-details span{
    font-size:15px;
    color:#0BC4F3;
    font-family:'urbanist-medium';
}


/* inner page testimonial section end  */





@media only screen and (min-width: 300px) and (max-width: 575.5px) {
	
	
/* floating buttons  */
	
.floating-contact-wrap {
    right: 15px;
    bottom: 30px;
    gap: 15px;
}

.floating-call-btn, .floating-whatsapp-btn {
    width: 50px;
    height: 50px;
	font-size: 18px;
}
	
.scroll-top-btn {
    position: fixed;
    right: 16px;
    bottom: 35px;
    width: 45px;
    height: 45px;
    font-size: 18px;
}
	

/* header section start  */

.header-logo img {
    width: 100px;
    object-fit: cover;
    height: auto;
}

.header-contact, .header-search-wrap, .menu-divider  {
    display: none;
}

#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner, #mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::before, #mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::after {
    background-color: #0BC4F3 !important;
}

#mega-menu-wrap-primary .mega-menu-toggle + #mega-menu-primary {
    background: #fff;
}

/* header section end  */



/* banner section start  */

.banner-section {
    padding: 80px 10px 0;
}

.banner-section-wrap {
    min-height: 600px;
    height: 126vh;
    max-height: 700px;
}

.banner-section-content {
    position: absolute;
    left: 25px;
    top: 120px;
    transform: none;
    max-width: 500px;
}

.banner-section-content h1 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 0;
}

.banner-section-content p {
    font-size: 14px;
    margin-bottom: 15px;
}

.banner-section-primary-btn, .banner-section-secondary-btn {
    font-size: 13px;
    padding: 10px 15px;
}

.banner-section-experience-box {
    display: none;
}

.banner-section-form-box {
    position: absolute;
    right: 5px;
    bottom: 30px;
    width: 95%;
    margin: auto;
}

.banner-tab-btn {
    height: 40px;
    padding: 0 26px;
    color: #0b2c5d;
    font-size: 12px;
}

.banner-form-icon {
    width: 35px;
    height: 35px;
}

.banner-form-icon i {
    font-size: 12px;
    color: #ffffff;
}

.banner-form-heading h3 {
    margin: 0;
    font-size: 16px;
}

.banner-appointment-form select {
    font-size: 12px;
}

.banner-appointment-form input[type="submit"] {
    font-size: 14px;
    padding: 10px;
}


/* banner section end  */



/* about us section start  */

.about-section {
    padding: 60px 0;
}

.about-section-heading {
    text-align: center;
    max-width: unset;
    margin: auto;
    margin-bottom: 40px;
}

.about-section-heading span {
    font-size: 12px;
}

.about-section-heading h2 {
    font-size: 28px;
}

.about-section-heading p {
    font-size: 14px;
}

.about-section-btn {
    position: absolute;
    right: 20px;
    bottom: 20px;
    padding: 10px 15px;
    border-radius: 14px;
    font-size: 14px;
}


/* about us section end  */



/* service section start  */

.service-section {
    padding: 0 0 60px;
}

.service-card-content {
    height: 210px;
}

.service-card-icon {
    margin-bottom: 10px;
}

.service-card-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.service-card-content h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

.service-card-content p {
    font-size: 12px;
    margin-bottom: 15px;
}

.service-card-btn {
    font-size: 14px;
}

.service-card-image img {
    width: 100%;
    height: 215px;
    object-fit: cover;
    border-radius: 18px;
}


/* service section end  */



/* department section start  */

.department-section {
    padding: 60px 0;
}

.department-section-top {
    display: block;
    margin-bottom: 35px;
    gap: 20px;
}

.department-section-heading span {
    font-size: 12px;
}

.department-section-heading h2 {
    font-size: 28px;
    margin: 15px 0 25px;
}

.department-view-btn {
    padding: 10px 15px;
    font-size: 14px;
}

.department-card {
    flex: 0 0 85%;
    flex-shrink: 0;
}

.department-card-image img {
    width: 100%;
    height: 300px;
}

.department-card-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.department-card-content h3 a {
    font-size: 20px;
}

.department-card-content p {
    margin: 0;
    font-size: 12px;
    line-height: 1.5;
}

.department-arrow {
    width: 30px;
    height: 30px;
    min-width: 30px;
}

.drag-cursor {
    width: 65px;
    height: 65px;
    font-size: 12px;
}


/* department section end  */



/* doctor section start  */

.team-section {
    padding: 60px 0;
}

.team-section-top {
    display: block;
    margin-bottom: 35px;
}

.team-section-top span {
    font-size: 12px;
}

.team-section-top h2 {
    font-size: 28px;
    margin: 15px 0 25px;
}

.team-section-top-btn {
    padding: 10px 15px;
    font-size: 14px;
}

.team-card h4 {
    margin-top: 15px;
    font-size: 16px;
}

.team-designation {
    font-size: 14px;
    margin-bottom: 30px;
}

.team-btn {
    padding: 12px;
    font-size: 14px;
}

/* doctor section end  */




/* booking section start   */

.book-to-visit-section {
    padding: 60px 10px;
}

.book-to-visit-content {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 60px;
    z-index: 2;
    display: unset;
}

.book-to-visit-text {
    max-width: unset;
}

.book-to-visit-text h2 {
    font-size: 28px;
}

.book-to-visit-text p {
    font-size: 14px;
    margin: 0 0 40px;
}

.book-to-visit-btn {
    padding: 10px 18px;
    font-size: 14px;
}

/* booking section end   */



/* blog section start  */

.health-stories-section {
    padding: 60px 0;
}

.health-stories-section-sub-title {
    font-size: 12px;
}

.health-stories-section-title {
    font-size: 28px;
    margin: 15px 0 25px;
}

.health-stories-section-content {
    font-size: 14px;
    margin-bottom: 10px;
}

.health-stories-section-img img {
    width: 100%;
    height: 330px;
}

.health-stories-section-category {
    font-size: 12px;
}

.health-stories-section-card-title a {
    font-size: 22px;
    margin-bottom: 15px;
}

.health-stories-section-meta {
    font-size: 12px;
}


/* blog section end  */



/* contact us section start  */

.appointment-section {
    padding: 60px 0;
}

.appointment-section-wrapper {
    min-height: 530px;
}

.appointment-section-content {
    padding: 20px;
}

.appointment-contact-form .row {
    row-gap: 10px;
}

.appointment-section-title {
    font-size: 28px;
    margin-bottom: 40px;
}

.appointment-submit-btn {
    padding: 10px;
    font-size: 14px;
}

/* contact us section end  */



/* testimonials section start  */

.patient-stories-section {
    padding: 60px 0;
}

.patient-stories-header {
    margin-bottom: 20px;
}

.patient-stories-subtitle {
    font-size: 12px;
}

.patient-stories-title {
    font-size: 28px;
    margin: 15px 0 25px;
}

.testimonial-content {
    margin-bottom: 30px;
    font-size: 14px;
}

.testimonial-author-box .author-name {
    font-size: 14px;
    margin: 0 0 4px 0;
}

.testimonial-author-box .author-role {
    font-size: 12px;
}

.vt-slider-nav button {
    width: 30px;
    height: 30px;
}

.stats-counter-section {
    padding: 60px 0;
}

.stats-number {
    font-size: 35px;
}

.stats-label {
    font-size: 16px;
    margin: 0;
}


/* testimonials section end  */



/* footer section start  */

.hospital-footer {
    margin: 0 10px;
    padding: 60px 0 90px;
    min-height: 600px;
    height: 100%;
}

.footer-logo-image {
    width: 185px;
    object-fit: contain;
    height: 100px;
}

.footer-about-text {
    font-size: 14px;
}

.footer-box h4 {
    font-size: 22px;
    margin: 25px 0;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-social p {
    font-size: 16px;
    margin: 0;
}

.footer-social a {
    font-size: 20px;
}

.footer-contact p, .footer-contact a {
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-phone {
    display: flex;
    gap: 6px;
}

.office-item p {
    font-size: 14px;
    line-height: 30px;
    margin-bottom: 10px;
    max-width: 300px;
}

.office-email p {
    font-size: 16px;
    margin-bottom: 10px;
}

.office-email a {
    font-size: 16px;
}

.footer-bg-text {
    position: absolute;
    left: 22px;
    bottom: 10px;
    font-size: clamp(68px, 22vw, 130px);
}

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

/* footer section end  */



/* inner page header section start  */

.innerpage-header {
    position: relative;
    height: 40vh;
    overflow: hidden;
    margin: 105px 10px 0;
    border-radius: 25px;
}

.pageheading-middle h2 {
    font-size: 24px;
    min-width: 180px;
    max-width: 550px;
}


/* inner page header section end  */



/* inner page about us section start  */

.inner-about-us-section {
    padding: 60px 0;
}

.inner-about-us-layout {
    display: flex;
    gap: 12px;
    width: 100%;
    height: 380px;
}

.inner-about-us-counter-number {
    font-size: 28px;
}

.inner-about-us-counter-text {
    margin-top: 8px;
    font-size: 14px;
    text-align: center;
}

.inner-about-us-counter-card {
    padding: 15px;
}

.inner-about-us-content {
    padding-top: 60px;
}

.inner-about-us-description h1 {
    font-size: 28px;
    margin: 15px 0 25px;
}

.inner-about-us-description p {
    font-size: 14px;
    margin: auto;
}


.director-note-photo {
    width: 100%;
    height: 230px;
    object-fit: contain;
}

.director-note-eyebrow {
    font-size: 12px;
}

.director-note-heading {
    font-size: 26px;
    margin: 0 0 22px 0;
}

.director-note-body {
    padding: 10px;
}

.director-note-message {
    font-size: 14px;
    margin-bottom: 30px;
}

.director-note-name {
    font-size: 18px;
    margin: 0 0 4px 0;
}

.director-note-qualification {
    font-size: 14px;
}


/* mv section  */

.inner-about-mv-section {
    padding: 60px 0;
}

.inner-about-mv-wrapper {
    display: block;
    padding: 30px 20px;
}

.inner-about-mv-card {
    display: block;
    width: unset;
}

.inner-about-mv-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    margin: 20px 0;
}

.inner-about-mv-content h3 {
    font-size: 25px;
    margin-bottom: 10px;
}

.inner-about-mv-content p {
    font-size: 14px;
    margin: 0;
}


/* inner page about us section end  */



/* inner page team section start  */


.innerpage-team-section {
    padding: 60px 0;
}

.innerpage-team-section-top span {
    font-size: 12px;
}

.innerpage-team-section-top h2 {
    font-size: 28px;
    margin: 15px 0 25px;
}

.innerpage-team-section-top p {
    font-size: 14px;
    margin: auto;
}

.innerpage-team-image img {
    width: 100%;
    height: 200px;
}

.innerpage-team-card h4 {
    margin-top: 20px;
    font-size: 16px;
}

.innerpage-team-designation {
    margin-bottom: 20px;
    font-size: 14px;
}

.innerpage-team-btn {
    padding: 10px;
    font-size: 14px;
}

.doctor-popup-close {
    position: absolute;
    right: 15px;
    top: 0px;
}

.doctor-popup-box {
    max-width: 90%;
    padding: 15px;
}

.doctor-popup-box h2 {
    font-size: 16px;
    margin-bottom: 10px;
}

.doctor-popup-box h4 {
    font-size: 12px;
    margin-bottom: 15px;
}


/* inner page team section end  */



/* inner page department section start  */

.innerpage-department-section {
    padding: 60px 0;
}

.innerpage-department-section-intro span {
    font-size: 12px;
}

.innerpage-department-section-intro h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.innerpage-department-section-intro p {
    font-size: 14px;
}


/* inner page department section end  */



/* single page department section start   */


.dept-single-body-content p {
    margin-bottom: 18px;
    font-size: 14px;
}

.dept-single-section-img img {
    width: 100%;
    object-fit: cover;
    height: 320px;
}

.single-department-sidebar-cta-card {
    background: linear-gradient(135deg, #002E5D 0%, #0056a3 100%);
    border-radius: 22px;
    padding: 20px;
    text-align: center;
    margin-bottom: 24px;
}

.single-department-sidebar-other {
    padding: 15px;
    margin-bottom: 24px;
}

.single-department-sidebar-cta-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.single-department-sidebar-cta-btn {
    padding: 10px 15px;
    font-size: 14px;
}

.single-department-sidebar-heading {
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 14px;
}

.single-department-sidebar-thumb {
    width: 150px;
    height: 100px;
}

.single-department-sidebar-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.single-department-sidebar-text {
    font-size: 12px;
    margin: 0;
    font-family: 'urbanist-medium';
}


/* single page department section end   */



/* inner page blog section start  */


.inner-blog-subtitle {
    font-size: 12px;
}

.inner-blog-main-title {
    font-size: 28px;
    margin: 15px 0 25px;
}

.inner-blog-featured-content {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 15px;
}

.inner-blog-featured-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.inner-blog-tags span {
    font-size: 10px;
    padding: 8px 10px;
}

.inner-blog-meta {
    font-size: 12px;
    color: #ffffff;
    margin-bottom: 10px;
}

.inner-blog-featured-content h2 {
    font-size: 20px;
}

.inner-blog-featured-content p {
    font-size: 14px;
}

.inner-blog-sidebar {
    margin-top: 30px;
}

.inner-blog-sidebar-img {
    width: 140px;
    min-width: 140px;
    height: 150px;
}

.inner-blog-sidebar-tags span {
    font-size: 10px;
    padding: 5px 10px;
}

.inner-blog-sidebar-meta {
    font-size: 10px;
    margin: 0;
}

.inner-blog-sidebar-title {
    margin-top: 8px;
    font-size: 14px;
}


/* inner page blog section end  */


/* single page blog section start  */

.single-blog-section {
    padding: 60px 0;
}

.single-blog-section-tag {
    font-size: 10px;
}

.single-blog-section-meta {
    margin-bottom: 30px;
    font-size: 12px;
}

.single-blog-section-content h1 {
    font-size: 28px;
}

.single-blog-section-content p {
    font-size: 14px;
}

.single-blog-content-para li {
    font-size: 14px;
}

.single-blog-section-sidebar-box h3 {
    margin: 12px 12px 25px;
    font-size: 24px;
}

.single-blog-section-thumb {
    width: 200px;
    height: 100px;
}

.single-blog-section-recent-content h4 {
    font-size: 14px;
    margin-bottom: 8px;
}

/* single page blog section end  */


/* inner page contact us  */

.inner-contact-us-page-label {
    font-size: 12px;
    margin-bottom: 16px;
}

.inner-contact-us-page-info h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.inner-contact-us-info-header p {
    font-size: 14px;
    font-family: 'urbanist-medium';
}

.inner-contact-us-page-info-text h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.inner-contact-us-page-info-text p, .inner-contact-us-page-info-text a {
    font-size: 14px;
    margin: 0;
}

.inner-contact-us-info-social span {
    font-family: 'urbanist-semibold';
    font-size: 14px;    
}

.inner-contact-us-social-links {
    display: flex;
    gap: 10px;
}

.inner-contact-us-social-link {
    width: 40px;
    height: 40px;
    font-size: 14px;
}

.inner-contact-us-page-info {
    background: #002E5D;
    padding: 20px;
    margin-bottom: 30px;
}

.inner-contact-us-page-form-wrap h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.inner-contact-us-page-form-wrap p {
    color: #7b8794;
    margin-bottom: 30px;
    font-size: 14px;
}

.inner-contact-us-page-form-wrap input, .inner-contact-us-page-form-wrap textarea, .inner-contact-us-page-form-wrap select {
    width: 100%;
    padding: 14px 18px;
    font-size: 14px;
}

.inner-contact-us-map-title {
    font-family: 'urbanist-semibold';
    font-size: 20px;
}


/* inner page contact us end  */




/* inner page service section start  */

.inner-service-section {
    padding: 60px 0;
    overflow: hidden;
}

.inner-service-section-header span {
    font-size: 12px;
}

.inner-service-section-header h2 {
    font-size: 28px;
    margin: 15px 0 25px;
}

.inner-service-section-header p {
    font-size: 14px;
}

.inner-service-section-tabs {
    gap: 15px;
}

.inner-service-section-tab {
    padding: 5px 25px;
    border-radius: 18px;
    font-size: 14px;
}

.inner-service-section-content h4 {
    font-size: 16px;
    margin-bottom: 10px;
}

.inner-service-section-content p {
    font-size: 14px;
    margin-bottom: 10px;
    padding-right: 8px;
}

.inner-service-section-btn {
    font-size: 14px;
    transition: 0.3s;
}



/* inner page service section end  */



/* single page service section start  */


.single-service-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.single-service-title {
    font-size: 28px;
    margin-bottom: 25px;
}

.single-service-content p {
    margin-bottom: 20px;
    font-size: 14px;
}

.single-service-sidebar h4 {
    margin-bottom: 25px;
    font-size: 20px;
}

/* single page service section end  */



}





@media only screen and (min-width: 575px) and (max-width: 767.5px) {



/* header section start  */

.header-logo img {
    width: 125px;
    object-fit: cover;
    height: auto;
}

.f-nav .header-wrapper .header-logo img {
    height: auto;
    width: 110px;
}

.header-contact, .header-search-wrap, .menu-divider  {
    display: none;
}

#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner, #mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::before, #mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::after {
    background-color: #0BC4F3 !important;
}

#mega-menu-wrap-primary .mega-menu-toggle + #mega-menu-primary {
    background: #fff;
}

/* header section end  */



/* banner section start  */

.banner-section {
    padding: 75px 10px 0;
}

.banner-section-wrap {
    min-height: 600px;
    height: 130vh;
    max-height: 800px;
}

.banner-section-content {
    position: absolute;
    left: 25px;
    top: 120px;
    transform: none;
    max-width: 500px;
}

.banner-section-content h1 {
    font-size: 48px;
    line-height: 1.3;
    margin-bottom: 0;
}

.banner-section-content p {
    font-size: 16px;
    margin-bottom: 15px;
}

.banner-section-primary-btn, .banner-section-secondary-btn {
    font-size: 16px;
    padding: 10px 15px;
}

.banner-section-experience-box {
    display: none;
}

.banner-section-form-box {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 30px;
    width: 95%;
    margin: auto;
}

.banner-tab-btn {
    height: 40px;
    padding: 0 26px;
    color: #0b2c5d;
    font-size: 14px;
}

.banner-form-icon {
    width: 40px;
    height: 40px;
}

.banner-form-icon i {
    font-size: 14px;
    color: #ffffff;
}

.banner-form-heading h3 {
    margin: 0;
    font-size: 18px;
}

.banner-appointment-form select {
    font-size: 14px;
}

.banner-appointment-form input[type="submit"] {
    font-size: 16px;
}


/* banner section end  */



/* about us section start  */

.about-section {
    padding: 60px 0;
}

.about-section-heading {
    text-align: center;
    max-width: unset;
    margin: auto;
    margin-bottom: 40px;
}

.about-section-heading span {
    font-size: 14px;
}

.about-section-heading h2 {
    font-size: 34px;
}

.about-section-heading p {
    font-size: 16px;
}

.about-section-btn {
    position: absolute;
    right: 20px;
    bottom: 20px;
    padding: 10px 15px;
    border-radius: 14px;
    font-size: 15px;
}


/* about us section end  */




/* service section start  */

.service-section {
    padding: 0 0 60px;
}

.service-card-content {
    height: 210px;
}

.service-card-icon {
    margin-bottom: 10px;
}

.service-card-icon img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.service-card-content h4 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-card-content p {
    font-size: 16px;
    margin-bottom: 20px;
}

.service-card-btn {
    font-size: 16px;
}

.service-card-image img {
    width: 100%;
    height: 215px;
    object-fit: cover;
    border-radius: 18px;
}


/* service section end  */



/* department section start  */

.department-section {
    padding: 60px 0;
}

.department-section-heading span {
    font-size: 14px;
}

.department-section-heading h2 {
    font-size: 34px;
    margin: 15px 0 25px;
}

.department-view-btn {
    padding: 10px 15px;
    font-size: 16px;
}

.department-card {
    flex: 0 0 70%;
    flex-shrink: 0;
}

.department-card-image img {
    width: 100%;
    height: 300px;
}

.department-card-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.department-card-content h3 a {
    font-size: 22px;
}

.department-arrow {
    width: 35px;
    height: 35px;
    min-width: 35px;
}


/* department section end  */



/* doctor section start  */

.team-section {
    padding: 60px 0;
}

.team-section-top span {
    font-size: 14px;
}

.team-section-top h2 {
    font-size: 34px;
    margin: 15px 0 25px;
}

.team-section-top-btn {
    padding: 10px 15px;
    font-size: 16px;
}

.team-card h4 {
    margin-top: 15px;
    font-size: 16px;
}

.team-designation {
    font-size: 16px;
    margin-bottom: 30px;
}

.team-btn {
    padding: 12px;
    font-size: 16px;
}

/* doctor section end  */




/* booking section start   */

.book-to-visit-section {
    padding: 60px 10px;
}

.book-to-visit-content {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 60px;
    z-index: 2;
    display: unset;
}

.book-to-visit-text {
    max-width: unset;
}

.book-to-visit-text h2 {
    font-size: 32px;
}

.book-to-visit-text p {
    font-size: 16px;
    margin: 0 0 40px;
}

.book-to-visit-btn {
    padding: 10px 18px;
    font-size: 16px;
}

/* booking section end   */



/* blog section start  */

.health-stories-section {
    padding: 60px 0;
}

.health-stories-section-sub-title {
    font-size: 14px;
}

.health-stories-section-title {
    font-size: 34px;
    margin: 15px 0 25px;
}

.health-stories-section-content {
    font-size: 16px;
    margin-bottom: 10px;
}

.health-stories-section-img img {
    width: 100%;
    height: 330px;
}

.health-stories-section-category {
    font-size: 12px;
}

.health-stories-section-card-title a {
    font-size: 26px;
    margin-bottom: 15px;
}

.health-stories-section-meta {
    font-size: 14px;
}

/* blog section end  */



/* contact us section start  */

.appointment-section {
    padding: 60px 0;
}

.appointment-section-wrapper {
    min-height: 530px;
}

.appointment-section-content {
    padding: 20px;
}

.appointment-contact-form .row {
    row-gap: 10px;
}

.appointment-section-title {
    font-size: 28px;
    margin-bottom: 40px;
}

.appointment-submit-btn {
    padding: 10px;
    font-size: 14px;
}

/* contact us section end  */



/* testimonials section start  */

.patient-stories-section {
    padding: 60px 0;
}

.patient-stories-header {
    margin-bottom: 20px;
}

.patient-stories-subtitle {
    font-size: 14px;
}

.patient-stories-title {
    font-size: 34px;
    margin: 15px 0 25px;
}

.stats-number {
    font-size: 40px;
}

.stats-label {
    font-size: 16px;
    margin: 0;
}


/* testimonials section end  */



/* footer section start  */

.hospital-footer {
    margin: 0 10px;
    padding: 60px 0 165px;
    min-height: 600px;
    height: 100%;
}

.footer-logo-image {
    width: 200px;
    object-fit: contain;
    height: 110px;
}

.footer-about-text {
    font-size: 16px;
}

.footer-box h4 {
    font-size: 22px;
    margin: 25px 0;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-social p {
    font-size: 16px;
    margin: 0;
}

.footer-social a {
    font-size: 20px;
}

.footer-contact p, .footer-contact a {
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-phone {
    display: flex;
    gap: 6px;
}

.office-item p {
    font-size: 14px;
    line-height: 30px;
    margin-bottom: 10px;
    max-width: 300px;
}

.office-email p {
    font-size: 16px;
    margin-bottom: 10px;
}

.office-email a {
    font-size: 16px;
}

.footer-bg-text {
    position: absolute;
    left: 22px;
    bottom: 10px;
    font-size: clamp(68px, 25vw, 24vw);
}

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

/* footer section end  */



/* inner page header section start  */

.innerpage-header {
    position: relative;
    height: 65vh;
    overflow: hidden;
    margin: 105px 10px 0;
    border-radius: 25px;
}

.innerpage-header {
    position: relative;
    height: 45vh;
    margin: 80px 10px 0;
    border-radius: 25px;
}

.pageheading-middle h2 {
    font-size: 24px;
    min-width: 180px;
    max-width: 550px;
}


/* inner page header section end  */



/* inner page about us section start  */

.inner-about-us-section {
    padding: 60px 0;
}

.inner-about-us-layout {
    display: flex;
    gap: 12px;
    width: 100%;
    height: 380px;
}

.inner-about-us-counter-number {
    font-size: 28px;
}

.inner-about-us-counter-text {
    margin-top: 8px;
    font-size: 14px;
    text-align: center;
}

.inner-about-us-counter-card {
    padding: 15px;
}

.inner-about-us-content {
    padding-top: 60px;
}

.inner-about-us-description h1 {
    font-size: 28px;
    margin: 15px 0 25px;
}

.inner-about-us-description p {
    font-size: 14px;
    margin: auto;
}



.director-note-photo {
    width: 100%;
    height: 230px;
    object-fit: contain;
}

.director-note-eyebrow {
    font-size: 12px;
}

.director-note-heading {
    font-size: 26px;
    margin: 0 0 22px 0;
}

.director-note-body {
    padding: 10px;
}

.director-note-message {
    font-size: 14px;
    margin-bottom: 30px;
}

.director-note-name {
    font-size: 18px;
    margin: 0 0 4px 0;
}

.director-note-qualification {
    font-size: 14px;
}

/* mv section  */

.inner-about-mv-section {
    padding: 60px 0;
}

.inner-about-mv-wrapper {
    display: block;
    padding: 30px 20px;
}

.inner-about-mv-card {
    display: block;
    width: unset;
}

.inner-about-mv-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    margin: 20px 0;
}

.inner-about-mv-content h3 {
    font-size: 25px;
    margin-bottom: 10px;
}

.inner-about-mv-content p {
    font-size: 14px;
    margin: 0;
}


/* inner page about us section end  */



/* inner page team section start  */


.innerpage-team-section {
    padding: 60px 0;
}

.innerpage-team-section-top span {
    font-size: 12px;
}

.innerpage-team-section-top h2 {
    font-size: 28px;
    margin: 15px 0 25px;
}

.innerpage-team-section-top p {
    font-size: 14px;
    margin: auto;
}

.innerpage-team-image img {
    width: 100%;
    height: 200px;
}

.innerpage-team-card h4 {
    margin-top: 20px;
    font-size: 16px;
}

.innerpage-team-designation {
    margin-bottom: 20px;
    font-size: 13px;
}

.innerpage-team-btn {
    padding: 10px;
    font-size: 14px;
}

.doctor-popup-close {
    position: absolute;
    right: 15px;
    top: 0px;
}

.doctor-popup-box h2 {
    font-size: 16px;
    margin-bottom: 10px;
}

.doctor-popup-box h4 {
    font-size: 14px;
    margin-bottom: 15px;
}


/* inner page team section end  */



/* inner page department section start  */

.innerpage-department-section {
    padding: 60px 0;
}

.innerpage-department-section-intro span {
    font-size: 12px;
}

.innerpage-department-section-intro h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.innerpage-department-section-intro p {
    font-size: 14px;
}


/* inner page department section end  */



/* single page department section start   */

.dept-single-section-img img {
    width: 100%;
    object-fit: cover;
    height: 320px;
}

.single-department-sidebar-cta-card {
    background: linear-gradient(135deg, #002E5D 0%, #0056a3 100%);
    border-radius: 22px;
    padding: 20px;
    text-align: center;
    margin-bottom: 24px;
}

.single-department-sidebar-other {
    padding: 15px;
    margin-bottom: 24px;
}

.single-department-sidebar-cta-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.single-department-sidebar-cta-btn {
    padding: 10px 15px;
    font-size: 14px;
}

.single-department-sidebar-heading {
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 14px;
}

.single-department-sidebar-thumb {
    width: 150px;
    height: 100px;
}

.single-department-sidebar-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.single-department-sidebar-text {
    font-size: 12px;
    margin: 0;
    font-family: 'urbanist-medium';
}


/* single page department section end   */



/* inner page blog section start  */


.inner-blog-subtitle {
    font-size: 12px;
}

.inner-blog-main-title {
    font-size: 28px;
    margin: 15px 0 25px;
}

.inner-blog-featured-content {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 15px;
}

.inner-blog-featured-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.inner-blog-tags span {
    font-size: 10px;
    padding: 8px 10px;
}

.inner-blog-featured-content h2 {
    font-size: 20px;
}

.inner-blog-featured-content p {
    font-size: 14px;
}

.inner-blog-sidebar {
    margin-top: 30px;
}

.inner-blog-sidebar-img {
    width: 140px;
    min-width: 140px;
    height: 150px;
}

.inner-blog-sidebar-tags span {
    font-size: 10px;
    padding: 5px 10px;
}

.inner-blog-sidebar-meta {
    font-size: 10px;
    margin: 0;
}

.inner-blog-sidebar-title {
    margin-top: 8px;
    font-size: 14px;
}


/* inner page blog section end  */


/* single page blog section start  */

.single-blog-section-tag {
    font-size: 10px;
}

.single-blog-section-meta {
    margin-bottom: 30px;
    font-size: 14px;
}

.single-blog-section-content h1 {
    font-size: 28px;
}

.single-blog-section-content p {
    font-size: 14px;
}

.single-blog-content-para li {
    font-size: 14px;
}

.single-blog-section-sidebar-box h3 {
    margin: 12px 12px 25px;
    font-size: 24px;
}

.single-blog-section-thumb {
    width: 200px;
    height: 100px;
}

.single-blog-section-recent-content h4 {
    font-size: 14px;
    margin-bottom: 8px;
}

/* single page blog section end  */


/* inner page contact us  */

.inner-contact-us-page-label {
    font-size: 12px;
    margin-bottom: 16px;
}

.inner-contact-us-page-info h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.inner-contact-us-info-header p {
    font-size: 14px;
    font-family: 'urbanist-medium';
}

.inner-contact-us-page-info-text h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.inner-contact-us-page-info-text p, .inner-contact-us-page-info-text a {
    font-size: 14px;
    margin: 0;
}

.inner-contact-us-info-social span {
    font-family: 'urbanist-semibold';
    font-size: 14px;    
}

.inner-contact-us-social-links {
    display: flex;
    gap: 10px;
}

.inner-contact-us-social-link {
    width: 40px;
    height: 40px;
    font-size: 14px;
}

.inner-contact-us-page-info {
    background: #002E5D;
    padding: 30px;
    margin-bottom: 30px;
}

.inner-contact-us-page-form-wrap h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.inner-contact-us-page-form-wrap p {
    color: #7b8794;
    margin-bottom: 30px;
    font-size: 14px;
}

.inner-contact-us-page-form-wrap input, .inner-contact-us-page-form-wrap textarea, .inner-contact-us-page-form-wrap select {
    width: 100%;
    padding: 14px 18px;
    font-size: 14px;
}

.inner-contact-us-map-title {
    font-family: 'urbanist-semibold';
    font-size: 20px;
}



}




@media only screen and (min-width: 768px) and (max-width: 1200.5px) {



/* header section start  */

.header-logo img {
    width: 125px;
    object-fit: cover;
    height: auto;
}

.f-nav .header-wrapper .header-logo img {
    height: auto;
    width: 110px;
}

.header-contact, .header-search-wrap, .menu-divider  {
    display: none;
}

#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner, #mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::before, #mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::after {
    background-color: #0BC4F3 !important;
}

#mega-menu-wrap-primary .mega-menu-toggle + #mega-menu-primary {
    background: #fff;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {
    font-size: 16px !important;
}

/* header section end  */



/* banner section start  */

.banner-section {
    padding: 75px 10px 0;
}

.banner-section-wrap {
    min-height: 600px;
    height: 130vh;
    max-height: 800px;
}

.banner-section-content {
    position: absolute;
    left: 25px;
    top: 120px;
    transform: none;
    max-width: 500px;
}

.banner-section-content h1 {
    font-size: 60px;
    line-height: 1.3;
    margin-bottom: 0;
}

.banner-section-primary-btn, .banner-section-secondary-btn {
    font-size: 16px;
    padding: 12px 20px;
}

.banner-section-experience-box {
    display: none;
}

.banner-section-form-box {
    position: absolute;
    right: 10px;
    /* left: 0; */
    bottom: 30px;
    width: 70%;
    margin: auto;
}

.banner-tab-btn {
    height: 40px;
    padding: 0 26px;
    color: #0b2c5d;
    font-size: 14px;
}

.banner-form-icon {
    width: 45px;
    height: 45px;
}

.banner-form-icon i {
    font-size: 16px;
    color: #ffffff;
}

.banner-form-heading h3 {
    margin: 0;
    font-size: 18px;
}

.banner-appointment-form select {
    font-size: 16px;
}

.banner-appointment-form input[type="submit"] {
    font-size: 16px;
}


/* banner section end  */



/* about us section start  */

.about-section {
    padding: 60px 0;
}

.about-section-heading {
    text-align: center;
    max-width: unset;
    margin: auto;
    margin-bottom: 40px;
}

.about-section-heading span {
    font-size: 14px;
}

.about-section-heading h2 {
    font-size: 42px;
}

.about-section-heading p {
    font-size: 16px;
}

.about-section-btn {
    position: absolute;
    right: 20px;
    bottom: 20px;
    padding: 12px 20px;
    border-radius: 14px;
    font-size: 18px;
}


/* about us section end  */




/* service section start  */

.service-section {
    padding: 0 0 60px;
}

.service-card-icon {
    margin-bottom: 10px;
}

.service-card-icon img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.service-card-content h4 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-card-content p {
    font-size: 14px;
    margin-bottom: 20px;
}

.service-card-btn {
    font-size: 16px;
}

.service-card-image img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 18px;
}


/* service section end  */



/* department section start  */

.department-section {
    padding: 60px 0;
}

.department-section-heading span {
    font-size: 14px;
}

.department-section-heading h2 {
    font-size: 42px;
    margin: 15px 0 25px;
}

.department-view-btn {
    padding: 12px 20px;
    font-size: 16px;
}

.department-card {
    flex: 0 0 70%;
    flex-shrink: 0;
}

.department-card-image img {
    width: 100%;
    height: 400px;
}

.department-card-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

/* department section end  */



/* doctor section start  */

.team-section {
    padding: 60px 0;
}

.team-section-top span {
    font-size: 14px;
}

.team-section-top h2 {
    font-size: 42px;
    margin: 15px 0 25px;
}

.team-section-top-btn {
    padding: 12px 20px;
    font-size: 16px;
}

.team-card h4 {
    margin-top: 15px;
    font-size: 18px;
}

.team-designation {
    font-size: 16px;
    margin-bottom: 30px;
}

.team-btn {
    padding: 12px;
    font-size: 16px;
}

/* doctor section end  */




/* booking section start   */

.book-to-visit-section {
    padding: 60px 10px;
}

.book-to-visit-content {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 60px;
    z-index: 2;
    display: unset;
}

.book-to-visit-text {
    max-width: unset;
}

.book-to-visit-text h2 {
    font-size: 42px;
}

.book-to-visit-text p {
    font-size: 16px;
    margin: 0 0 40px;
}

.book-to-visit-btn {
    padding: 12px 20px;
    font-size: 16px;
}

/* booking section end   */



/* blog section start  */

.health-stories-section {
    padding: 60px 0;
}

.health-stories-section-sub-title {
    font-size: 14px;
}

.health-stories-section-title {
    font-size: 42px;
    margin: 15px 0 25px;
}

.health-stories-section-content {
    font-size: 16px;
    margin-bottom: 10px;
}

.health-stories-section-img img {
    width: 100%;
    height: 330px;
}

.health-stories-section-card-title a {
    font-size: 30px;
    margin-bottom: 15px;
}

/* blog section end  */



/* contact us section start  */

.appointment-section {
    padding: 60px 0;
}

.appointment-section-wrapper {
    min-height: 530px;
}

.appointment-section-content {
    padding: 20px;
}

.appointment-contact-form .row {
    row-gap: 10px;
}

.appointment-section-title {
    font-size: 32px;
    margin-bottom: 40px;
}

.appointment-submit-btn {
    padding: 12px;
    font-size: 14px;
}

/* contact us section end  */



/* testimonials section start  */

.patient-stories-section {
    padding: 60px 0;
}

.patient-stories-header {
    margin-bottom: 20px;
}

.patient-stories-subtitle {
    font-size: 14px;
}

.patient-stories-title {
    font-size: 42px;
    margin: 15px 0 25px;
}

.stats-number {
    font-size: 60px;
}

.stats-label {
    font-size: 18px;
    margin: 0;
}


/* testimonials section end  */



/* footer section start  */

.hospital-footer {
    margin: 0 10px;
    padding: 60px 0 200px;
    min-height: 600px;
    height: 100%;
}

.footer-logo-image {
    width: 230px;
    object-fit: contain;
    height: 135px;
}

.footer-about-text {
    font-size: 18px;
}

.footer-box h4 {
    font-size: 22px;
    margin: 25px 0;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-social p {
    font-size: 18px;
    margin: 0;
}

.footer-social a {
    font-size: 20px;
}

.footer-contact p, .footer-contact a {
    font-size: 16px;
    margin-bottom: 10px;
}

.footer-phone {
    display: flex;
    gap: 6px;
}

.office-item p {
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 10px;
    max-width: 300px;
}

.office-email p {
    font-size: 18px;
    margin-bottom: 10px;
}

.office-email a {
    font-size: 18px;
}

.footer-bg-text {
    position: absolute;
    left: 22px;
    bottom: 10px;
    font-size: clamp(68px, 25vw, 24vw);
}

.footer-copyright p {
    margin: 0;
    font-size: 16px;
}

/* footer section end  */



/* inner page header section start  */

.innerpage-header {
    position: relative;
    height: 65vh;
    overflow: hidden;
    margin: 105px 10px 0;
    border-radius: 25px;
}

.innerpage-header {
    position: relative;
    height: 45vh;
    margin: 80px 10px 0;
    border-radius: 25px;
}

.pageheading-middle h2 {
    font-size: 24px;
    min-width: 180px;
    max-width: 550px;
}


/* inner page header section end  */



/* inner page about us section start  */

.inner-about-us-section {
    padding: 60px 0;
}

.inner-about-us-layout {
    display: flex;
    gap: 12px;
    width: 80%;
    height: 380px;
    margin: auto;
}

.inner-about-us-counter-number {
    font-size: 34px;
}

.inner-about-us-counter-text {
    margin-top: 8px;
    font-size: 16px;
    text-align: center;
}

.inner-about-us-counter-card {
    padding: 15px;
}

.inner-about-us-content {
    padding-top: 60px;
}

.inner-about-us-description h1 {
    font-size: 35px;
    margin: 15px 0 25px;
}

.inner-about-us-description p {
    font-size: 16px;
    margin: auto;
}



.director-note-photo {
    width: 100%;
    height: 300px;
    object-fit: contain;
}

.director-note-eyebrow {
    font-size: 14px;
}

.director-note-heading {
    font-size: 36px;
    margin: 10px 0 22px 0;
}

.director-note-body {
    padding: 10px;
}

.director-note-message {
    font-size: 16px;
    margin-bottom: 30px;
}

.director-note-name {
    font-size: 20px;
    margin: 0 0 4px 0;
}

.director-note-qualification {
    font-size: 16px;
}

/* mv section  */

.inner-about-mv-section {
    padding: 60px 0;
}

.inner-about-mv-wrapper {
    display: block;
    padding: 30px 20px;
}

.inner-about-mv-card {
    display: block;
    width: unset;
}

.inner-about-mv-icon {
    width: 75px;
    height: 75px;
    min-width: 60px;
    margin: 20px 0;
}

.inner-about-mv-content h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.inner-about-mv-content p {
    font-size: 15px;
    margin: 0;
}


/* inner page about us section end  */



/* inner page team section start  */


.innerpage-team-section {
    padding: 60px 0;
}

.innerpage-team-section-top h2 {
    font-size: 42px;
    margin: 15px 0 25px;
}

.innerpage-team-section-top p {
    font-size: 18px;
    margin: auto;
}

.innerpage-team-image img {
    width: 100%;
    height: 200px;
}

.innerpage-team-card h4 {
    margin-top: 20px;
    font-size: 18px;
}

.innerpage-team-designation {
    margin-bottom: 20px;
    font-size: 16px;
}

.innerpage-team-btn {
    padding: 10px;
    font-size: 16px;
}

.doctor-popup-close {
    position: absolute;
    right: 15px;
    top: 0px;
}

.doctor-popup-box h2 {
    font-size: 22px;
    margin-bottom: 10px;
}

.doctor-popup-box h4 {
    font-size: 16px;
    margin-bottom: 15px;
}


/* inner page team section end  */



/* inner page department section start  */

.innerpage-department-section {
    padding: 60px 0;
}

.innerpage-department-section-intro span {
    font-size: 12px;
}

.innerpage-department-section-intro h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.innerpage-department-section-intro p {
    font-size: 18px;
}


/* inner page department section end  */



/* single page department section start   */

.dept-single-section-img img {
    width: 100%;
    object-fit: cover;
    height: 320px;
}

.single-department-sidebar-cta-card {
    background: linear-gradient(135deg, #002E5D 0%, #0056a3 100%);
    border-radius: 22px;
    padding: 20px;
    text-align: center;
    margin-bottom: 24px;
}

.single-department-sidebar-other {
    padding: 15px;
    margin-bottom: 24px;
}

.single-department-sidebar-cta-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.single-department-sidebar-cta-btn {
    padding: 10px 15px;
    font-size: 14px;
}

.single-department-sidebar-heading {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 14px;
}

.single-department-sidebar-thumb {
    width: 150px;
    height: 100px;
}

.single-department-sidebar-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.single-department-sidebar-text {
    font-size: 16px;
    margin: 0;
    font-family: 'urbanist-medium';
}


/* single page department section end   */



/* inner page blog section start  */


.inner-blog-main-title {
    font-size: 42px;
    margin: 15px 0 25px;
}

.inner-blog-featured-content {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 15px;
}

.inner-blog-featured-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.inner-blog-tags span {
    font-size: 12px;
    padding: 8px 10px;
}

.inner-blog-featured-content h2 {
    font-size: 30px;
}

.inner-blog-featured-content p {
    font-size: 16px;
}

.inner-blog-sidebar {
    margin-top: 30px;
}

.inner-blog-sidebar-img {
    width: 160px;
    min-width: 160px;
    height: 150px;
}

.inner-blog-sidebar-tags span {
    font-size: 10px;
    padding: 5px 10px;
}

.inner-blog-sidebar-meta {
    font-size: 12px;
    margin: 0;
}

.inner-blog-sidebar-title {
    margin-top: 8px;
    font-size: 18px;
}



/* inner page blog section end  */


/* single page blog section start  */

.single-blog-section {
    padding: 60px 0;
    background: #f8fbff;
    overflow: hidden;
}

.single-blog-section-meta {
    margin-bottom: 30px;
    font-size: 14px;
}

.single-blog-section-content h1 {
    font-size: 35px;
}

.single-blog-section-content p {
    font-size: 16px;
}

.single-blog-content-para li {
    font-size: 16px;
}

.single-blog-section-sidebar-box h3 {
    margin: 12px 12px 25px;
    font-size: 24px;
}

.single-blog-section-thumb {
    width: 200px;
    height: 100px;
}

.single-blog-section-recent-content h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

/* single page blog section end  */


/* inner page contact us  */

.inner-contact-us-page-label {
    font-size: 14px;
    margin-bottom: 16px;
}

.inner-contact-us-page-info h2 {
    font-size: 34px;
    margin-bottom: 20px;
}

.inner-contact-us-info-header p {
    font-size: 16px;
    font-family: 'urbanist-medium';
}

.inner-contact-us-page-info-text h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.inner-contact-us-page-info-text p, .inner-contact-us-page-info-text a {
    font-size: 16px;
    margin: 0;
}

.inner-contact-us-info-social span {
    font-family: 'urbanist-semibold';
    font-size: 16px;
}

.inner-contact-us-social-links {
    display: flex;
    gap: 10px;
}

.inner-contact-us-social-link {
    width: 40px;
    height: 40px;
    font-size: 14px;
}

.inner-contact-us-page-info {
    background: #002E5D;
    padding: 30px;
    margin-bottom: 30px;
}

.inner-contact-us-page-form-wrap h3 {
    font-size: 26px;
    margin-bottom: 15px;
}

.inner-contact-us-page-form-wrap p {
    color: #7b8794;
    margin-bottom: 30px;
    font-size: 16px;
}

.inner-contact-us-page-form-wrap input, .inner-contact-us-page-form-wrap textarea, .inner-contact-us-page-form-wrap select {
    width: 100%;
    padding: 14px 18px;
    font-size: 14px;
}

.inner-contact-us-map-title {
    font-family: 'urbanist-semibold';
    font-size: 24px;
}


/* inner page contact us section end  */



/* inner page service section start   */


.inner-service-section-content {
    height: 245px;
    width: 60%;
}


/* inner page service section end  */



/* single page service section start  */

.single-service-title {
    font-size: 36px;
    margin-bottom: 25px;
}


/* single page service section end  */




}



@media only screen and (min-width: 991px) and (max-width: 1200.5px) { 

.hospital-footer {
    margin: 0 10px;
    padding: 60px 0 200px;
    min-height: 600px;
    height: 122vh;
}

.inner-about-us-layout {
    display: flex;
    gap: 12px;
    width: 100%;
    height: 450px;
}

.inner-about-us-content {
    padding-top: 0;
}

    
}


@media only screen and (min-width: 1200px) and (max-width: 1400.5px) { 
	
.hospital-footer {
    margin: 0 10px;
    padding: 60px 0 200px;
    min-height: 600px;
    height: 130vh;
}

.footer-bg-text {
    position: absolute;
    left: 22px;
    bottom: 10px;
    font-size: clamp(68px, 25vw, 24vw);
}
	
	
}