@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap');

@import '../../node_modules/bootstrap/dist/css/bootstrap.min.css';




html {
    scroll-behavior: smooth;
    font-size: 15px;
    font-family: "Titillium Web", sans-serif;
    font-weight: 400;
    font-style: normal;
    overflow-x: hidden;
    padding: 0px;
    margin: 0px;
    height: auto !important;
}

body {
    font-size: 15px;
    font-family: "Titillium Web", sans-serif;
    font-weight: 400;
    font-style: normal;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    color: #081f3a;
    background-color: white;
    padding: 0px;
    margin: 0px;
    min-height: 100vh;
    background: linear-gradient(45deg, rgb(0 123 255 / 28%) 0%, rgb(1 180 141 / 27%) 10%, rgb(1 180 141 / 16%) 20%, rgb(1 180 141 / 27%) 30%, rgb(0 123 255 / 28%) 40%, rgb(1 180 141 / 27%) 50%, rgb(0 123 255 / 28%) 60%, rgb(1 180 141 / 27%) 70%, rgb(0 123 255 / 28%) 80%, rgb(1 180 141 / 27%) 90%, rgb(0 123 255 / 28%) 100%) 0% 0% / 100% 100% no-repeat
}


p {
    color: #081f3a !important;
}

a {
    color: #081f3a;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    color: #081f3a;
}

h1 {
    font-size: 26px;
    font-weight: 900;
}

h2 {
    font-size: 24px;
    font-weight: 700;
}

h3 {
    font-size: 20px;
    font-weight: 700;
}


::-moz-selection {
    background-color: #154d92;
    color: white;
}

::selection {
    background-color: #154d92;
    color: white;
}

body::-webkit-scrollbar {
    width: 4px;
}

body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px white;
    box-shadow: inset 0 0 6px white;
}

body::-webkit-scrollbar-thumb {
    background-color: #154d92;
    outline: 1px solid #154d92;
}


.section {
    padding: 50px 0px;
}

.image-white {
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(309deg) brightness(103%) contrast(103%);
    -webkit-filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(309deg) brightness(103%) contrast(103%);
}

.image-blue {
    filter: invert(26%) sepia(83%) saturate(684%) hue-rotate(175deg) brightness(93%) contrast(100%);
    -webkit-filter: invert(26%) sepia(83%) saturate(684%) hue-rotate(175deg) brightness(93%) contrast(100%);
}

.image-aqua {
    filter: invert(52%) sepia(59%) saturate(2468%) hue-rotate(131deg) brightness(92%) contrast(99%);
    -webkit-filter: invert(52%) sepia(59%) saturate(2468%) hue-rotate(131deg) brightness(92%) contrast(99%);
}

.border-blue {
    border-color: #154d92 !important;
}



.font-100 {
    font-weight: 100 !important;
}

.font-200 {
    font-weight: 200 !important;
}

.font-400 {
    font-weight: 400 !important;
}

.font-500 {
    font-weight: 500 !important;
}

.font-600 {
    font-weight: 600 !important;
}

.font-700 {
    font-weight: 700 !important;
}

.font-800 {
    font-weight: 800 !important;
}

.font-900 {
    font-weight: 900 !important;
}


.text-blue {
    color: #154d92 !important;
}

.text-aqua {
    color: #01b48d !important;
}

.text-white {
    color: #fff !important;
}



.border-radius-5 {
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    overflow: hidden;
}

.border-radius-10 {
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    overflow: hidden;
}

.border-radius-15 {
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.border-radius-20 {
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    overflow: hidden;
}

.border-radius-50 {
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    overflow: hidden;
}

.form-border-red {
    border: 2px solid red !important;
}

button:focus {
    outline: 0;
    box-shadow: none;
}

.btn {
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    position: relative;
    overflow: hidden !important;
}

.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: white;
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
    z-index: 1;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}


/* Backgrounds Starts */
.bg-blue {
    background-color: #154d92 !important;
}

.bg-blue-fade {
    background-color: #154d9226 !important;
}

.bg-aqua {
    background-color: #01b48d !important;
}

.bg-aqua-fade {
    background-color: #01b48d1c !important;
}

.bg-gray {
    background-color: #F6FAFF !important;
}

.bg-gradient {
    background-image: linear-gradient(45deg, #154d92 0%, #01b48d 100%) !important;
}

.bg-gradient-fade {
    background-image: linear-gradient(45deg, #154d9214 0%, #01b48d21 100%) !important
}

/* Backgrounds Ends */

/* Buttons Starts */
.btn {
    transition: all 0.5s linear;
    -webkit-transition: all 0.6s linear;
    -moz-transition: all 0.6s linear;
    -ms-transition: all 0.6s linear;
    -o-transition: all 0.6s linear;
    position: relative;
    overflow: hidden !important;
    padding: 12px 50px;
}

.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: white;
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
    z-index: 1;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.btn-blue {
    background-color: #154d92 !important;
    border-color: #154d92 !important;
    color: white !important;
}

.btn-outline-blue {
    background-color: transparent !important;
    border: 1px solid #154d92 !important;
    color: #154d92 !important;
}

.btn-aqua {
    background-color: #01b48d !important;
    border-color: #01b48d !important;
    color: white !important;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1.1px;
}

.btn-sm {
    padding: 12px !important;
}

/* Buttons Ends */

/* Navbar Starts */
.navbar {
    margin-top: 15px;
    background-color: #ffffff6b !important;
    backdrop-filter: blur(20px);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.nav-link {
    color: #081f3a;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1.2px;
    margin-right: 25px;
}

/* Navbar Ends */


/* Home Banner Starts */
.home-banner-section {
    margin-top: 115px;
}

.home-banner-content-wrapper {
    position: relative;
    background-color: #020c2d;
}

.home-banner-content-wrapper img {
    height: 400px;
    width: 100% !important;
    object-fit: contain;
    object-position: right;

}

.home-banner-content {
    position: absolute;
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.home-banner-content h1 {
    font-size: 2.5rem;
}

.home-banner-content .lead {
    font-size: 1.5rem;
}

.form-wrapper {
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border: 0.5px solid #01b48d;
}


.home-banner-form {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}


.form-control,
.form-select {
    height: 50px;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
    border: 0px;
    border-bottom: 0.5px solid #081f3a;
}


.form-control:focus,
.form-select:focus {
    outline: 0px;
    box-shadow: none;
}

/* Home Banner Ends */

/* Stats Starts */
.counter-section h3 {
    font-size: 2.2rem;
}

.counter-section img {
    width: auto !important;
    margin: 0 auto;
}

/* Stats Ends */


/* Cancer Starts */
/* Cancer Ends */

/* Technology Starts */
.technology-image {
    height: 290px;
    object-fit: cover;
    object-position: top;
}

/* Technology Ends */

/* Doctors Starts */
.doctor-image {
    height: 280px;
    margin: 0 auto;
    object-fit: cover;
    object-position: top center;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.doctor-phone {
    display: flex;
    justify-content: center;
    align-items: center;
}

.doctor-phone img {
    width: auto !important;
    margin-right: 10px;
}

.doctor-content h4 {
    font-size: 18px;
}

/* Doctors Ends */


/* FAQ Starts */
.custom-accordion-item {
    margin-bottom: 10px;
    border-radius: 6px;
}

.custom-accordion-item-header {
    padding: 11px;
    color: #154d92;
    cursor: pointer;
    position: relative;
    font-size: 19px;
    font-weight: 600;
}

.custom-accordion-item-content {
    display: none;
    padding: 10px;
    color: #154d92;
}

.custom-accordion-item-content p {
    color: #154d92 !important;
    font-weight: 500;
    font-size: 16px;
}

.custom-accordion-item-header::after {
    content: '+';
    position: absolute;
    right: 10px;
    top: 10px;
}

.custom-accordion-item.open .custom-accordion-item-header::after {
    content: '-';
}


/* FAQ Ends */


h2 {
    position: relative;
    display: inline-block;
}


.why-box {
    background-color: #f2f8ff;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}


.hospital-wrapper {
    background-color: #2263b3 !important;
}

.hospital-button {
    display: flex;
    justify-content: center;
    align-items: center;
}

.treatment-box {
    cursor: pointer;
    height: 233px !important;
}

.treatment-box img {
    height: 70px !important;
    width: auto !important;
    margin: 0 auto;
}

.modal.fade {
    backdrop-filter: blur(20px);
}

.bg-doctor-gradient {
    background-image: linear-gradient(45deg, #154d9282 0%, #01b48d80 100%) !important;
}


.icon-animation-bell {
    animation: bell-ring 3s ease-in-out infinite;
    -webkit-animation: bell-ring 3s ease-in-out infinite;
    transform-origin: center center;
}

/* Symmetrical bell rotation */
@keyframes bell-ring {
    0% {
        transform: rotate(0deg);
    }

    10% {
        transform: rotate(10deg);
    }

    20% {
        transform: rotate(-10deg);
    }

    30% {
        transform: rotate(8deg);
    }

    40% {
        transform: rotate(-8deg);
    }

    50% {
        transform: rotate(5deg);
    }

    60% {
        transform: rotate(-5deg);
    }

    70% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.hospital-content {
    min-height: 195px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}

.hospital-content a img {
    width: auto !important;
    display: inline-flex;
}

.hospital-box img {
    /* height: 194px;
    object-fit: cover;
    object-position: center; */
}

.owl-stage {
    display: flex;
}

.owl-item {
    display: flex;
}

.owl-item>div {
    flex: 1;
}

.owl-dots button {
    width: 10px;
    height: 10px;
    /* background-color: #154d92 !important; */
    border: 1px solid #01b48d !important;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    margin-right: 5px;
}


.owl-dots button.active {
    width: 10px;
    height: 10px;
    background-color: #01b48d !important;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    box-shadow: 0px 0px 5px 2px #01b48d !important;
}


#hospital-carousel .owl-dots {
    display: block !important;
    text-align: center;
    margin-top: 5px;
}

#testimonial-carousel .owl-dots {
    display: block !important;
    text-align: center;
    margin-top: 15px;
}

#treatment-carousel .owl-dots {
    display: block !important;
    text-align: center;
    margin-top: 15px;
}

#doctor-carousel .owl-dots {
    display: block !important;
    text-align: center;
    margin-top: 15px;
}

input.error,
select.error {
    border: 2px solid red;
}


.treatment-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}

.testimonial-box {
    position: relative;
}

.testimonial-box .testimonial-image {
    width: 100%;
    height: 315px;
    object-fit: cover;
    object-position: center center;
}

.testimonial-box .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px !important;
    height: 60px !important;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.sticky-button {
    position: fixed;
    right: 0;
    /* stick to right */
    top: 40%;
    /* vertically center */
    transform: rotate(-90deg) translateY(-50%);
    /* rotate text and center */
    transform-origin: right center;
    /* rotate around right edge */
    background-color: #d6efe9c4;
    z-index: 40;
    backdrop-filter: blur(16px);
    box-shadow: 1px 0rem 1rem 10px rgba(0, 0, 0, 0.175) !important;
    padding: 10px 20px;
    /* adjust for readability */
    font-weight: 600;
    color: #000;
    cursor: pointer;
    transition: transform 0.3s ease;
    /* smooth hover animation */
}

/* Optional hover effect */
.sticky-button:hover {
    background-color: #c0e8df;
}






@media (max-width: 1399.98px) {}

@media (max-width: 1199.98px) {}

@media (max-width: 991.98px) {}

@media (max-width: 768px) {}

@media (max-width: 575.98px) {

    html {
        font-size: 14px;
    }

    .topbar-links a {
        font-size: 11px;
    }

    .navbar {
        margin-top: 0px;
    }

    .btn {
        padding: 10px 30px;

    }


    .home-banner-form {
        position: static;
        transform: none;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        padding: 25px;
    }

    .home-banner-content {
        position: absolute;
        left: 0px;
        top: 50px;
        padding: 10px;
        background-color: #c3d8f200;
        backdrop-filter: blur(20px);
        text-align: center;
    }

    .home-banner-section {
        margin-top: 80px;
    }

    .home-banner-content h1 {
        font-size: 2rem;
        color: #ffffff !important;
        text-shadow: 5px 1px 5px #303030;
    }

    .home-banner-content p {
        color: white !important;
    }

    .why-box img {
        max-height: 70px;
    }

    .hospital-box img {
        /* height: 194px;
        object-fit: cover;
        object-position: center; */
    }

    .section {
        padding: 25px 0px;
    }

    .custom-accordion-item-header {
        font-size: 17px;
    }

    .home-banner-content-wrapper img {
        height: initial;
    }

    .home-banner-content {
        background-color: none;
        backdrop-filter: initial;
        top: 60%;
    }

    .testimonial-box .testimonial-image {
        height: 180px !important;
    }

    .testimonial-box .play-icon {
        height: 40px !important;
        width: 40px !important;
    }

    .doctor-image {
        background-color: #b7bdc6;
        height: 280px;
        margin: 0 auto;
        object-fit: contain;
        object-position: top center;
        border-radius: 10px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        -ms-border-radius: 10px;
        -o-border-radius: 10px;
    }

    .navbar-brand img {
        height: 35px;
    }

    .sticky-button {
        position: fixed;
        right: initial;
        top: initial;
        transform: none;
        transform-origin: none;
        background-color: #d6efe9c4;
        z-index: 40;
        backdrop-filter: blur(16px);
        box-shadow: 1px 0rem 1rem 10px rgba(0, 0, 0, 0.175) !important;
        padding: 10px 20px;
        font-weight: 600;
        color: #000;
        cursor: pointer;
        transition: transform 0.3s ease;
        bottom: 0px;
        left: 0;
        width: 100%;
    }

    /* Optional hover effect */
    .sticky-button:hover {
        background-color: #c0e8df;
    }

    /* Optional hover effect */
    .sticky-button:hover {
        background-color: #c0e8df;
    }

    .footer-bottom {
        margin-bottom: 50px;
    }

    .hospital-button {
        width: 100%;
    }


}