:root {
    --primary-color: #29487D;
    --secondary-color: #0dcaf0;
    --third-color: #9CB2CE;
    --fourth-color: #FEFEFE;
    --fifth-color: #D4D8E8;
    --bg-color: #ffe6e6;
    --text-color: #d66d75;
    --switch-bg: #ffccbc;
    --handle-bg: #fff;
    --primary-font-family: "Poppins", sans-serif;
}

/* GLOBAL CSS */

main {
    overflow: hidden;
}

body {
    font-family: var(--primary-font-family);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--primary-font-family);
}

p,
span,
button,
select {
    font-family: var(--primary-font-family);
}

a {
    font-family: var(--primary-font-family);
    text-decoration: none !important;
    color: #161616;
}

ul {
    margin: 0;
    padding: 0;
}

ul li {
    padding: 0;
    margin: 0;
}

section {
    padding: 50px 0;
}


.heading-text span {
    font-size: 17px;
    font-weight: 600;
    color: #3377CA;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 10px !important;
    font-family: var(--secondary-font-family);
}

.heading-text h2 {
    font-size: 24px;
    color: #323232;
    font-weight: 600;
}

/* HOVER CSS  */
.button__circle:hover svg.button__icon {
    transform: rotate(45deg);
}

.button__circle svg.button__icon {
    transition: 0.5s ease;
}

/* OWL-BITTON CSS  */
.owl-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translate(-50%, -50%);
}

.owl-dot span {
    display: block;
    margin-right: 5px;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.6);
}

.owl-dot.active span {
    background: #00457a;
}


/* Breadcrumb-css  */
.bread-crumb {
    background: url(../images/bread-crumb.webp) no-repeat center;
    background-size: cover !important;
}

.breadcrumb-list h1 {
    font-weight: 600;
    color: var(--heading-color);
}

.breadcrumb-list ul {
    display: flex;
    justify-content: center;
}

.breadcrumb-list ul li {
    list-style: none;
    padding-left: 10px;
}

.breadcrumb-list i {
    padding-left: 5px;
}

.home-logos,
.facilities {
    background: #F9F9F9;
}

.btn-primary {
    color: #fff !important;
    border-radius: 50px;
    padding: 14px 30px !important;
    border-color: #3a3382;
    background-color: #3a3382;
}

.btn-secondary {
    padding: 14px 30px !important;
    border-radius: 0;
    color: var(--primary-color);
    background: transparent;
    display: inline-block;
    border-radius: 50px;
}

.btn-without-bg {
    color: #3a3382 !important;
    font-size: 16px;
    border-bottom: 1px solid #3a3382;
    padding-bottom: 2px;
    border-width: thin;
}

.btn-without-bg i {
    transform: rotate(320deg)
}

/*Universal Heading css  */
.heading-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.heading-main-span span {
    text-transform: uppercase;
    letter-spacing: 8px;
    color: var(--subheading-colork);
    margin: 0 0 10px;
    font-family: var(--third-font-family);
}

.main-heading h2 {
    font-weight: 600 !important;
    font-size: 30px;
    color: var(--heading-color);
    line-height: 40px;
}

.main-heading span {
    font-family: var(--primary-font-family);
    color: var(--secondary-color);
}

.heading-text p {
    color: #00000070;
    font-weight: 400;
    text-align: center;
}

/* Navigation css START  */
.dropdown-item.active,
.dropdown-item:active {
    background-color: var(--primary-color) !important;
}

.navbar-toggler:focus {
    box-shadow: unset !important;
}

.navbar-brand img {
    width: 350px;
}

.navbar .navbar-collapse {
    position: absolute;
    border-radius: 0px;
    top: 56px;
    left: 0px;
    right: 0px;
    z-index: 3;
    padding: 20px 0px 0 0;
    background: var(--fourth-color);
}

.nav-link {
    line-height: 20px;
    text-align: left;
    color: var(--bs-black) !important;
    font-weight: 400;
    padding: 10px 15px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show,
.navbar-nav .nav-link:hover {
    color: #000 !important;
}

.dropdown-menu h3 {
    font-family: var(--primary-font-family);
    font-size: 18px;
    color: #000;
    margin-top: 0px;
    font-weight: 400;
    background: #EBF2FF;
    display: inline-block;
    padding: 12px 29px 12px 11px;
    width: 80%;
}

ul.dropdown-menu.show {
    border: none;
    padding: 0 20px 12px;
    margin-top: 0;

}

.dropdown-item:focus,
.dropdown-item:hover {
    color: #001c5c !important;
    background: transparent !important;
}

a.dropdown-item {
    border-bottom: 1px solid#ddd;
    font-size: 15px;
    transition: 0.3s ease-in-out;
}

.dropdown-toggle::after {
    font-family: 'Font Awesome 6 Free';
    content: "\f107" !important;
    position: absolute;
    right: 12px;
    border: none !important;
    font-size: 14px;
    transform: translateY(-50%) rotate(0deg);
    transition: transform 0.3s ease;
}

.dropdown-toggle.active::after {
    transform: translateY(-50%) rotate(180deg);
}

.dropdown-menu {
    display: block;
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s ease;
    visibility: hidden;
    height: 0;
    padding: 0;
    margin: 0;
    box-shadow: none !important;
    /* box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1); */
    background: transparent;
    padding: 0 !important;
}

.dropdown-bg {
    padding: 30px 30px 0 30px !important;
    background: #fff;
    border-radius: 0 0 20px 20px;
    box-shadow: -1px 5px #9f9f9f;
}

.dropdown-menu.show {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
    height: 100%;
}

.menu-img img {
    background: #c2c9f1;
    padding: 5px;
    border-radius: 8px;
}

.border-right {
    border-right: 1px solid#ddd;
}

/* Position the second-level dropdown */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin: 0;
}

.navbar {
    background: #fff;
    width: 100%;
    padding: 10px 0;
}

.sticky-header {
    position: fixed;
    top: 0px;
    z-index: 2;
    background: var(--bs-white);
}

.bookappointment-btn {
    margin: 0 10px 20px;
}

.bottom-navigation {
    padding: 20px 0;
    background: linear-gradient(45deg, #002d88, #2459ae);
}

.bottom-bar ul {
    display: flex;
    overflow-x: auto;
    padding: 0;
    gap: 20px;
    white-space: nowrap;
}

.bottom-bar ul li {
    list-style: none !important;
}

.bottom-bar a {
    font-size: 14px;
    color: #fff;
    white-space: nowrap;
}

.primary-btn-icon {
    background: #3a3382;
    padding: 10px 18px;
    border-radius: 50px;
    color: #fff;
}

.primary-btn-icon i {
    padding-right: 5px;
}

/* MEGA-MENU CSS START  */
.menu_box {
    padding: 0;
}

.menu-img {
    width: 20%;
}

.menu-img img {
    width: 52px;
}

.menu-text {
    width: 80%;
}

.menu-text h3 {
    color: #606060;
    font-family: var(--primary-font-family);
    font-weight: 400;
    margin: 0;
    font-size: 16px;
    background: transparent;
    padding: 10px;
    transition: 0.3s ease-in-out;
}

.menu-text h3:hover {
    color: #001c5c !important;
}

a.dropdown-item {
    transition: 0.3s ease-in-out;
}

a.dropdown-item:hover {
    color: var(--primary-color);
}

.menu-btn-box {
    margin: 20px;
    background: #EFEFEF;
    border-radius: 12px;
}

.menu-btn-box p {
    color: #0000004D;
}

.menu-btn-box i {
    transform: rotate(225deg);
}

.menu-cta {
    background: url(../images/navigation/menu-vector.svg) no-repeat center;
    background-size: contain;
    height: 100%;
    background-position: top;
    position: relative;
}

.menu-cta-btn {
    position: absolute;
    top: 56%;
    right: 5px;
}

.menu-cta-btn a {
    font-size: 15px;
    background: #4266A8;
    padding: 10px 12px;
    border-radius: 8px;
    color: #fff;
}

.menu-cta-text {
    padding: 40px;
}

.menu-cta-text h4 {
    font-size: 40px;
    font-weight: 300;
    margin-bottom: 10px;
    color: #1a2b4c;
}

.menu-cta-text p {
    font-size: 17px;
    line-height: 30px;
    color: #4a5a78;
    margin-bottom: 18px;
}

/* MEGA-MENU CSS END  */
.header-form {
    padding: 0 20px 0px 20px;
    position: relative;
}

.header-form input::placeholder {
    font-size: 14px;
}

.header-form input {
    position: relative;
    border-radius: 12px;
}

.header-form form {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.header-form button {
    position: absolute;
    width: 20%;
    right: 23px;
    height: 40px;
    top: 2px;
    border-radius: 12px !important;
    /* border-radius: 50%; */
}

.header-form i {
    font-size: 14px;
}

/* NAVIGATION CSS END  */

.vision-about-us {
    background: #F1F6FE;
}

.vision_box {
    background: #fff;
    padding: 25px;
    border: 1px solid #004DB242;
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    height: 100%;
    margin-bottom: 20px;
}

.vision_headingwithicon {
    display: flex;
    align-items: center;
    gap: 10px;
}

.vision_headingwithicon h3 {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 25px;
}

.vision-text p {
    color: #000000c9;
    margin-bottom: 0;
    font-weight: 400;
    line-height: 25px;
}

.vision-text ul li {
    list-style: none;
    position: relative;
    padding-left: 30px;
    padding-bottom: 15px;
}

.vision-text i {
    position: absolute;
    left: 0;
    top: 8px;
    font-size: 6px;
}


/* FOOTER CSS STARTS  */
footer {
    background: #3a3382;
    padding: 0px 0 40px 0;
}

.copy-text img {
    width: 43px;
    filter: brightness(50.5);
}

.footer-text h2 {
    font-size: 50px;
    font-weight: 700;
    background: linear-gradient(90.22deg, #FFFFFF 1.23%, #999999 100%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.footer-text p {
    background: linear-gradient(90.22deg, #FFFFFF 1.23%, #999999 100%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.footer-text .btn-primary {
    border-radius: 0;
}

.footer-text .btn-primary i {
    padding-right: 10px;
}

.footer-social-icon ul {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

.footer-social-icon ul li {
    list-style: none;
    width: 40px;
    height: 40px;
    background: transparent;
    margin-right: 20px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
}

.footer-social-icon ul li a {
    color: var(--third-color) !important;
}

.footer-links h2 {
    color: var(--bs-white) !important;
    font-size: 20px;
    position: relative;
}

.footer-links h2::before {
    position: absolute;
    content: '';
    width: 20%;
    height: 4px;
    bottom: -15px;
    left: 0;
    background: var(--fifth-color);
}

.footer-links ul {
    margin: 0;
    padding: 0;
    margin-top: 10px;
}

.footer-links ul li {
    list-style: none;
    padding: 13px 0 0 0;
}

.footer-links ul li a {
    color: #ffffffcc !important;
    font-size: 14px;
    transition: 0.3s ease-in-out;
}

.footer-links ul li a:hover {
    color: #eba946 !important;
    padding-left: 5px !important;
}

.footer-logo p {
    color: #FFFFFFAB;
}

.get-in-touch li {
    position: relative;
    padding-left: 30px !important;
}

.get-in-touch i {
    position: absolute;
    left: 0;
    top: 20px;
    color: #ffffffab;
}

.footer-logo img {
    filter: brightness(0) invert(1);
}

.footer-padding {
    padding-top: 30px;
}

.footer-contact-list ul {
    padding: 0;
    margin: 0;
    position: relative;
}

.footer-contact-list ul li {
    line-height: 20px;
    list-style: none;
    padding-bottom: 25px;
    padding-left: 60px;
    position: relative;
}

.footer-contact-list i {
    position: absolute;
    left: 0;
    top: 0;
    color: #fff;
    background: var(--secondary-color);
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
}

.footer-contact-list ul li a {
    color: #3C3C3C;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
}

hr {
    color: #efefef;
}

.copyright-text ul {
    padding: 0;
}

.copyright-text ul li {
    list-style: none;
}

.form_wrapp {
    background: #fff;
    padding: 30px;
}

.form-control {
    background: #EBF2FF;
    border: 1px solid #EBF2FF;
    height: 45px;
    color: #6d758f;
    width: 100%;
    border-radius: 6px;
    padding-left: 10px;
    padding-right: 20px;
    box-shadow: 0 0 3px 0 rgba(25, 33, 61, .0784313725);
}

.form-control input::placeholder {
    font-size: 14px !important;
}

.form-select {
    background-color: #EBF2FF;
    border: 1px solid #f1f3f7;
    height: 45px;
    color: #6d758f;
}

.form-select:focus {
    box-shadow: none !important;
    border-color: #cbcbcb !important;
}

.form-control:focus {
    box-shadow: none !important;
    border-color: #cbcbcb !important;
}

textarea.form-control {
    height: 120px;
}

.form_wrapp .btn-primary {
    width: 100%;
    border-radius: 0;
}


/* Banner-css  */

.banner-swiper {
    width: 100%;
    margin: 0 auto;
}

.banner-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.banner-image {
    width: 100%;
    height: clamp(200px, 40vh, 520px);
    display: block;
    object-fit: cover;
}

.banner-carousel .item {
    position: relative;
}

.banner-img {
    width: 100%;
    object-fit: cover;
}

.slide-caption {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    color: #fff;

}

.banner-icons {
    display: flex;
    gap: 40px;
    margin: 25px 0;
    align-items: center;
}

.icon-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Circle Icon */
.icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Icon Sizes */
.icon i {
    width: 22px;
    height: 22px;
}

/* Individual Colors */
.icon.neonatal {
    background: #F3F0FF;
    color: #6C4AB6;
}

.icon.pediatric {
    background: #FFF4E6;
    color: #F28C38;
}

.icon.emergency {
    background: #E8FFF3;
    color: #28A745;
}

/* Text */
.icon-item p {
    font-size: 16px !important;
    color: #2D2D2D;
    line-height: 1.3;
    margin: 0;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-caption h1 {
    font-size: 30px;
    animation: fadeUp 1s ease forwards;
}

.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
}

.owl-nav i {
    color: #fff;
}

.owl-prev {
    left: 20px;
}

.owl-next {
    right: 20px;
}

.slide-caption {
    position: absolute;
    bottom: 2rem;
    color: var(--bs-white);
    top: 0;
    z-index: 5;
    font-family: sans-serif;
}

.slide-caption a {
    color: #fff;

}


.swiper-button-next,
.swiper-button-prev {
    color: #fff;
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.8);
}

.banner-main,
.banner-swiper,
.banner-main .swiper,
.banner-main .swiper-wrapper,
.banner-main .swiper-slide,
.banner-main picture,
.banner-main img {
    width: 100% !important;
}

.banner-main {
    padding: 0;
    margin: 0;
}

.banner-main .item {
    position: relative;
    z-index: 5;
}

.banner-main picture,
.banner-main img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.banner-swiper .item {
    position: relative;
    z-index: 1;
}


.banner-swiper .item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(358deg, rgba(0, 0, 0, 0) 15.58%, rgba(0, 0, 0, 0.4235) 40.93%, rgb(0 0 0 / 35%) 68.07%, rgb(0 0 0 / 73%) 100%);
    z-index: 1;
}



/* Caption above overlay */
.banner-swiper .slide-caption {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    color: #fff;
    text-align: center;
    width: 100%;
    padding: 0;
}

.swiper-button-next:after,
.owl-prev:after {
    font-size: 14px !important;
    color: #fff !important;
}

.swiper-pagination-bullet-active {
    background: var(--bs-white) !important;
}

.banner-swiper .owl-prev {
    bottom: 0 !important;
    top: unset;
    left: 20%;
}

.banner-swiper .owl-next {
    bottom: 0 !important;
    top: unset;
    right: 20%
}

.banner-swiper .slide-caption h1 {
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
}

.banner-swiper .slide-caption p {
    font-size: 14px;
    margin: 0;
    color: #ffffffda;
}

.banner-swiper .slide-caption a {
    color: #fff !important;
    font-size: 14px;
    padding-bottom: 3px;
    text-decoration: underline !important;
    transition: 0.5s ease-in-out;
}

.banner-swiper .slide-caption a:HOVER {
    color: var(--secondary-color) !important;
}



/* About Us home  */
.about-us {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    z-index: 1;

}

/* Background Image */
.about-us::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/about-bg-img-01.png') no-repeat top right;
    background-size: contain;
    opacity: 0.12;
    z-index: -2;
}

/* Extra Baby Elements Background */
.about-us::after {
    content: '';
    position: absolute;
    inset: 0;

    background-image:
        url('../images/baby-sleep.svg'),
        url('../images/teddy-icon.png'),
        url('../images/star-shape.png'),
        url('../images/heart-shape.png');

    background-repeat:
        no-repeat,
        no-repeat,
        no-repeat,
        no-repeat;

    background-position:
        right bottom,
        left bottom,
        left 80px,
        right 120px;

    background-size:
        260px,
        180px,
        160px,
        200px;

    opacity: 0.4;
    z-index: -1;
    pointer-events: none;
}
/* ABOUT IMAGE */
.about-us-img img {
    position: relative;
    z-index: 2;
    border-radius: 24px;
    width: 100%;
    object-fit: cover;
    box-shadow: 0 15px 40px rgba(58, 51, 130, 0.08);
}

.about-us-img {
    width: 100%;
    border-radius: 24px;
    position: relative;
}

.about-us-img:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #3a3382;
    left: -25px;
    top: -25px;
    border-radius: 24px;
    z-index: 1;
}

/* TEXT AREA */
.about-us-text h2 {
    font-size: 55px;
    line-height: 65px;
    color: #3a3382;
    font-weight: 700;
    margin-bottom: 10px;
}

.about-us-text span {
    font-size: 14px;
    font-weight: 600;
    color: #F28C38;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 10px;
}

.about-us-text h3 {
    font-size: 30px;
    line-height: 44px;
    font-weight: 500;
    color: #F28C38;
    border-bottom: 2px solid #e7e7e7;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.about-us-text p {
    font-weight: 400;
    color: #6d6d6d;
    line-height: 32px;
    font-size: 17px;
    margin-bottom: 0px;
}

.about-us-text h4 {
    font-size: 22px;
    color: #444;
    font-style: italic;
    line-height: 34px;
    font-weight: 600;
    margin-top: 25px;
}

/* RESPONSIVE */
@media(max-width:991px) {

    .about-us {
        padding: 70px 0;
    }

    .about-us-text {
        margin-top: 50px;
    }

    .about-us-text h2 {
        font-size: 42px;
        line-height: 52px;
    }

    .about-us-text h3 {
        font-size: 24px;
        line-height: 36px;
    }

    .about-us::after {
        background-size:
            180px,
            120px,
            30px,
            25px;
    }
}

@media(max-width:767px) {

    .about-us {
        padding: 60px 0;
    }

    .about-us-text h2 {
        font-size: 34px;
        line-height: 44px;
    }

    .about-us-text h3 {
        font-size: 16px;
        line-height: 24px;
    }

    .about-us-text p {
        font-size: 16px;
        line-height: 28px;
    }

    .about-us-img:before {
        left: -15px;
        top: -15px;
    }

    .about-us::after {
        opacity: 0.05;
    }
}

/* SERVICE-HOME-CSS  */
.services-section {
    background: #f7f7fb;
}

/* Section Heading */
.tag {
    color: #6C4AB6;
    font-size: 12px;
    letter-spacing: 1px;
}


/* Card */
.service-card {
    background: #fff;
    padding: 20px 15px;
    border-radius: 16px;
    text-align: center;
    height: 100%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

/* Icons */
.icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 26px;
}

/* Icon Colors */
.purple {
    background: #F3F0FF;
    color: #6C4AB6;
}

.orange {
    background: #FFF4E6;
    color: #F28C38;
}

.pink {
    background: #FFEAF0;
    color: #E85D75;
}

.yellow {
    background: #FFF8E1;
    color: #F4B400;
}

.green {
    background: #E8FFF3;
    color: #28A745;
}

.blue {
    background: #EAF3FF;
    color: #2F80ED;
}

/* Text */
.service-card h6 {
    color: #3a3382;
    font-size: 25px;
    line-height: 30px;
    font-weight: 600;
    margin-bottom: 8px;
}

.service-card p {
    font-size: 16px;
    color: #777;
    line-height: 1.5;
}

/* WHY-CHOOSE US HOME  */


/* Heading */
.title {
    font-weight: 600;
    font-size: 45px;
    color: #3a3382;
}

.tag {
    font-size: 14px;
    font-weight: 600;
    color: #F28C38;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.desc {
    font-size: 14px;
    color: #5F6C7B;
}

.why-section {
    position: relative;
    overflow: hidden;
}

.why-img {
    position: relative;
    bottom: -60px;
    /* small push down */
}

/* .why-img{
    display: flex;
  justify-content: flex-end;
  align-items: flex-end;
} */
/* Image */
.why-img img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Cards (MATCH YOUR SERVICE STYLE) */
.why-img ul {
    margin-left: 20px;
}

.why-img h4 {
    font-size: 20px;
    color: #444;
    font-style: italic;
    line-height: 30px;
    margin-top: 20px;
}

.why-img ul li {
    font-size: 16px;
    color: #777;
    margin-bottom: 20px;

}

.why-card {
    background: #fff;
    padding: 16px;
    border-radius: 16px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.04);
    height: 100%;
    transition: 0.3s ease;
}

.why-card:hover {
    transform: translateY(-6px);
}




/* Icons */
.icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-size: 18px;
}

/* Colors (same as your site) */
.purple {
    background: #F3F0FF;
    color: #6C4AB6;
}

.green {
    background: #E8FFF3;
    color: #28A745;
}

.orange {
    background: #FFF4E6;
    color: #F28C38;
}

.blue {
    background: #EAF3FF;
    color: #2F80ED;
}

/* Text */
.why-card h6 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 4px;
}

.why-card p {
    font-size: 16px;
    color: #777;
}

/* SECTION */
.hospital-section {
    background: #f7f7fb;
}

/* HEADINGS */
.tag {
    color: #F28C38;
    font-size: 12px;
    letter-spacing: 1px;
}


.sub-text {
    font-size: 14px;
    color: #777;
    max-width: 600px;
    margin: 10px auto;
}

/* CARD */
.hospital-card {
    background: #fff;
    padding: 20px;
    border-radius: 18px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    height: 100%;
}

.hospital-card:hover {
    transform: translateY(-8px);
}

/* TOP ICON */
.top-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.purple {
    background: #F3F0FF;
    color: #6C4AB6;
}

.pink {
    background: #FFEAF0;
    color: #E85D75;
}

.orange {
    background: #FFF4E6;
    color: #F28C38;
}

/* IMAGE */
.hospital-img {
    width: 100%;
    border-radius: 12px;
    margin-top: 40px;
    margin-bottom: 15px;
}

/* TITLE */
.hospital-card h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* INFO BOX */
.info {
    font-size: 13px;
    padding: 8px;
    border-radius: 10px;
    margin-bottom: 8px;
}

.purple-bg {
    background: #F3F0FF;
}

.pink-bg {
    background: #FFEAF0;
}

.orange-bg {
    background: #FFF4E6;
}

.orange-light-bg {
    background: #FFF7ED;
}

/* SMALL TEXT */
.small {
    font-size: 12px;
    color: #999;
}

/* BUTTON */
.call-btn {
    margin-top: 10px;
    border-radius: 25px;
    font-size: 13px;
    padding: 8px 16px;
}

/* BUTTON COLORS */
.purple-btn {
    border: 1px solid #6C4AB6;
    color: #6C4AB6;
}

.pink-btn {
    border: 1px solid #E85D75;
    color: #E85D75;
}

.orange-btn {
    border: 1px solid #F28C38;
    color: #F28C38;
}

.call-btn:hover {
    background: #6C4AB6;
    color: #fff;
}

/* CTA SECTION */
.cta-section {
    margin: 60px 0;
}

/* CTA BOX */
.cta-box {
    background: linear-gradient(90deg, #6C4AB6, #F28C38);
    padding: 25px 30px 0px 0;
    border-radius: 20px;
    color: #fff;
    position: relative;
    overflow: visible;
    /* allow teddy overflow */
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* LEFT SIDE */
.cta-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* TEDDY IMAGE */
.cta-img {
    width: 200px;
    /* perfect size */
    position: relative;
    top: -10px;
    /* lift slightly */
    animation: float 3s ease-in-out infinite;
}

.mt-top-m,
.cta-right {
    margin-top: -25px;
}

/* FLOAT ANIMATION */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* TEXT */
.cta-left h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.cta-left p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

/* BUTTON */
.cta-btn {
    background: #4A2C8A;
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
}

/* BUTTON HOVER */
.cta-btn:hover {
    background: #3b2270;
    transform: translateY(-2px);
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .cta-box {
        text-align: center;
        gap: 20px;
        padding: 25px 20px;
    }

    .cta-left {
        flex-direction: column;
    }

    .cta-img {
        width: 80px;
        top: 0;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
    }
}

/* PRODUCTCSS  */
.our-products {
    background-color: #e3f4f8;
    background-image: url(../images/about-bg-img-01.png);
    background-position: top right;
    background-repeat: no-repeat;
}

.product-box {
    background: #ffffff;
    border: 1px solid #ffffff;
    position: relative;
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 40px;
    height: 250px;
    overflow: hidden;
    /* important */
    cursor: pointer;
}

.product-img3 {
    position: absolute;
    right: 0;
    bottom: 0;
}

.product-img3 img {
    width: 100px;
    margin-right: 20px;
    transition: transform 0.4s ease;
}

.product-text i {
    font-size: 20px;
    color: var(--primary-color);
    transform: rotate(320deg);
}

.product-text p {
    width: 63%;
    color: #8392A7;
}

/* scale image on hover */
.product-box:hover .product-img3 img {
    transform: scale(1.15);

}

.our-services {
    background: #f2f6ff;
}

.service-box {
    border-radius: 8px;
    background: #fff;
    padding: 20px;
    border: 1px solid #d4d4d4;
    height: 100%;
    box-shadow: 0px 1px 5px #d6d6d645;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: space-around;
    justify-content: flex-start;
    gap: 19px;
    align-items: flex-start;
}

.service-box h3 {
    font-size: 26px;
    margin: 0;
    font-weight: 600;
    color: #4266a8;
}

.service-box p {
    margin: 0;
    font-size: 16px;
    line-height: 28px;
    color: #8392A7;
}

.service-box a {
    color: #001c5c;
    font-size: 15px;
    position: absolute;
    right: 30px;
    bottom: 15px;
}

.service-box i {
    padding-left: 8px;
    transform: rotate(320deg);
}


.main-container {
    text-align: center;
    margin: 0 0 23px 0;
}

#theme-toggle {
    display: none;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 80px;
    height: 40px;
    background-color: #002d6e;
    border: 1px solid#fff;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.4s;
}

.switch-handle {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 32px;
    height: 32px;
    background-color: var(--handle-bg);
    border-radius: 50%;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.main-container h2 {
    color: #fff;
}

.icon-sell {
    display: none;
}

#theme-toggle:checked+.toggle-switch .switch-handle {
    transform: translateX(40px);
}

#theme-toggle:checked+.toggle-switch .icon-buy {
    display: none;
}

#theme-toggle:checked+.toggle-switch .icon-sell {
    display: block;
}

.form-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.btn-success {
    color: #fff !important;
    border-radius: 50px;
    padding: 14px 30px !important;
    border-radius: 50px;
}

.hidden {
    display: none;
}

.buy-form {
    border-radius: 12px;
}

.home-form-bg {
    padding: 40px 20px;
    background: linear-gradient(180deg, #0a57b5 10%, #001d60 78%);
    align-items: center;
    border-radius: 0px;
}

.form-img img {
    border-radius: 12px;
}

.home-form {
    padding: 0;
}


.client-carousel {
    background: #ffffff;
}

.client-img {
    padding: 25px
}

.smooth-scroll-container {
    overflow: hidden;
    position: relative;
    width: 100%
}

.smooth-scroll .item img {
    max-width: 100%;
    height: auto;
    display: block;
    border: 1px solid#4444443b;
}

.smooth-scroll .item {
    flex-shrink: 0;
    width: 200px;
    margin: 0 10px;
    text-align: center
}

.smooth-scroll {
    display: flex;
    animation: 15s linear infinite scroll
}

@keyframes scroll {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-100%)
    }
}

/* About Us css  */
.breadcrumb-bg {
    background: url(../images/home-page/breadcrumb-banner.webp) no-repeat center;
    background-size: cover !important;
    background-color: #3C5898 !important;
    padding: 80px;
}

.breadcrumb-main {
    text-align: center;
}

.breadcrumb-main h1 {
    font-size: 25px;
    color: #3a3382;

}

.breadcrumb-main ul {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.breadcrumb-main ul li {
    color: #3a3382;
    list-style: none;
}

.breadcrumb-main a {
    color: #3a3382 !important;
}

.about-us-text a {
    margin-top: 20px !important;
    display: inline-block;
    font-size: 15px;
    background: #0dcaf0;
    border: 1px solid#0dcaf0;
    padding: 10px 12px;
    border-radius: 8px;
    color: #fff;
    transition: 0.3s ease-in-out;
}

.about-us-text a:hover {
    color: #0dcaf0;
    background: transparent;
    border: 1px solid#0dcaf0;
    ;
}

.about-us-text a:hover i {
    color: #00163c;
    transform: rotate(270deg);
}

.about-us-text i {
    transition: 0.3s ease-in-out;
    transform: rotate(230deg);
}

.row.ceo-bg {
    background: #1c4da04d;
    padding: 20px 10px;
}

.ceo-bg h2 {
    font-size: 30px;
    color: var(--primary-color);
    font-weight: 600;
    padding-bottom: 5px;
}

.ceo-bg p {
    color: #2E2E2E;
    font-weight: 300;
    line-height: 26px;
    font-size: 16px;
    font-style: italic;
}

.ceo-img img {
    background: #ffffff24;
    border-radius: 12px;
    border: 2px solid #44444445;
    padding-top: 20px;
}

.contact-us-main {
    padding: 50px 0;
}

.contact-head-text {
    background: #3a3382;
    padding: 10px;
}

.contact-box {
    background: #F4F6FF;
    padding: 15px;
    text-align: center;
    border-radius: 8px;
    height: 100%;
}

.contactmargin {
    margin: 0 0 15px 0;
}

.contact-box i {
    font-size: 40px;
    color: #002d6e;
    margin: 10px 0;
}

.contact-box h4 {
    font-size: 20px;
    color: #002d6e;
    margin: 0 0 10px 0;
}

.contact-box a,
.contact-box p {
    font-size: 14px;
    color: #3B425E;
    margin: 0 0 5px 0;
}

/* Product-category-page  */
.product-details-below {
    background: #f2f2f2;
}

section.product-details {
    display: none;
}

.manufacturing-text h3 {
    font-size: 42px;
    font-weight: 700;
    color: var(--secondary-color);
}

.manufacturing-text p {
    color: #6B6B6BC9;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 20px;
    text-align: left;
}

.product-sub-main,
.product-sub-main-text {
    background: #f2f2f2;
}

.product-sub-img img {
    border-radius: 25px 25px 0 0;
}


.product-details-in {
    padding: 20px;
    background: #eaeaea;
    border-radius: 0 0 30px 30px;
}

.product-sub-link a {
    font-size: 25px;
    color: #023f88;
    font-weight: 700;
    margin-bottom: 10px;
}

.productcolors h4 {
    color: #17171799;
    font-size: 16px;
    margin-bottom: 0px;
}

.productcolors a {
    font-size: 16px;
    font-weight: 400;
    color: #17171799;
}

.productcolors ul li {
    list-style: none;
}

.product-category-box {
    border: 2px solid #ffffff;
    color: #fff;
    border-radius: 30px;
    background: linear-gradient(180deg, #023f883b 0%, #023f880d 100%);
}

.product-tag span {
    color: var(--bs-blue);
}

.product-link-icon a {
    font-size: 16px;
    color: #023f88;
    font-weight: 400;
}

.product-link-icon i {
    padding-left: 5px;
    color: var(--primary-color);
    font-size: 14px;
    transform: rotate(320deg);
}

.product-sub-link {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 10px;
}

.product-details-in h2 {
    margin: 0;
}


/* PRODUCT-SINGLE PAGE DESIGN  */

.product-main-page {
    background: #f2f2f2;
}

#sync1 .item {
    border: 3px solid var(--bs-white);
    padding: 80px;
    margin: 5px;
    color: #FFF;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 0;
    text-align: center;
}

#sync2 .item {
    background: #C9C9C9;
    padding: 10px;
    margin: 5px;
    color: #FFF;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 0px;
    text-align: center;
    cursor: pointer;
}

#sync2 .item h1 {
    font-size: 18px;
}

#sync2 .current .item {
    background: #b1bac2;
}



.product-gallery .owl-theme .owl-nav [class*='owl-'] {
    transition: all .3s ease;
}

.product-gallery .owl-theme .owl-nav [class*='owl-'].disabled:hover {
    background-color: #D6D6D6;
}

#sync1.owl-theme {
    position: relative;
}

#sync1.owl-theme .owl-next,
#sync1.owl-theme .owl-prev {
    width: 22px;
    height: 40px;
    margin-top: -20px;
    position: absolute;
    top: 50%;
}

#sync1.owl-theme .owl-prev {
    left: 10px;
}

#sync1.owl-theme .owl-next {
    right: 10px;
}

.product-gallery .owl-nav i {
    color: var(--primary-color) !important;
}

.product-breadcrumb {
    border-bottom: 1px solid #00000036;
    padding: 0 0 10px 0;
    margin: 0 0 10px 0;
}

.product-breadcrumb ul {
    margin: 0;
    padding: 0;
    display: flex;
}

.product-breadcrumb a {
    text-decoration: none;
    font-size: 14px;
    color: #252525;
}

.product-breadcrumb i {
    font-size: 12px;
    padding-left: 3px;
}

.product-breadcrumb ul li {
    list-style: none;
    padding: 0 5px;
}

.product-breadcrumb ul li:first-child {
    padding-left: 0;
}

.producttitle h1 {
    font-size: 25px;
    color: #023f88;
    font-weight: 700;
    margin-bottom: 10px;
}

.specification-product {
    background: #fff;
    padding: 18px;
    border-radius: 8px;
    border: 2px solid #eaeaea;
}

.specification-product ul {
    margin: 0;
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 13px;
    align-content: center;
}

.specification-product ul li {
    list-style: none;
    border-right: 1px solid #eaeaea;
    position: relative;
}

.specification-product h3 {
    color: var(--primary-color);
    font-size: 17px;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 10px;
    font-weight: 600;
}

.specification-product i {
    position: absolute;
    left: 0;
    top: 5px;
    font-size: 20px;
    color: #023f88;
}

.product-specificfication {
    background: #fff;
    padding: 18px;
    border-radius: 8px;
    border: 2px solid #eaeaea;
    height: 100%;
}

.product-specificfication h2 {
    color: var(--primary-color);
    font-size: 17px;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 10px;
    font-weight: 600;
}

.product-specificfication ul {
    padding-left: 25px;
}

.product-description p {
    margin-top: 0px;
    font-size: 17px;
    padding-left: 10px;
    color: #101010cf;
}



/* DASHBOARD CSS START  */

/* LOGIN PANNEL  */
.admin-login {
    background: #f3f3f3;
    height: 100vh;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.admin-login-form {
    background: #ddd;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.admin-login-form h1 {
    position: relative;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
}

.admin-login-form h1:before,
.admin-login-form h1:after {
    content: "";
    height: 1px;
    position: absolute;
    top: 10px;
    width: 20%;
}

.admin-login-form h1:after {
    background: rgb(126, 126, 126);
    right: 0;
}

.admin-login-form h1:before {
    background: rgb(126, 126, 126);
    left: 0;
}

.logo-img {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.logo-img img {
    padding: 20px;
    background: #fff;
    width: 70%;
}

@media (max-width: 991px) {
    .navbar .navbar-menu-wrapper {
        width: unset !important;
    }

    .navbar .navbar-brand-wrapper {
        width: 122px !important;
    }

    .navbar .navbar-brand-wrapper .navbar-brand-inner-wrapper .navbar-brand img {
        width: unset !important;
        max-width: unset !important;
        height: 71px !important;
    }

}

.cta-product {
    background: url(../images/products/cta-call-bg.webp) no-repeat center;
    background-size: cover;
    padding: 100px 0;
}

.footer-middle-part h3 {
    font-size: 40px;
    color: #fff;
}

.footer-middle-part p {
    font-size: 20px;
    color: #fff;

}


.top-sticky-marquee {
    padding: 10px 0;
    background: #3a3382;
}

.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    background: #3a3382;
    color: #fff;
    padding: 0px 0;
}

.marquee-track {
    display: inline-block;
    white-space: nowrap;
    animation: scroll-left 20s linear infinite;
}

.marquee-item {
    display: inline-block;
    margin-right: 30px;
    /* space between repeats */
    font-size: 16px;
}

.marquee-item img {
    vertical-align: middle;
    margin-right: 30px;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


/************************************/
/***    14. Book Appoinment css   ***/
/************************************/

.our-appointment {
    position: relative;
    background-image: url('../images/appointment-bg-image.jpg');
    padding: 100px 0;
    overflow: hidden;
    margin: 21px;
    background-attachment: fixed;
}

.our-appointment::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #013A59;
    opacity: 80%;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.our-appointment .container {
    position: relative;
    z-index: 2;
}

.our-appointment-content {
    height: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.our-appointment-content .section-footer-text {
    justify-content: start;
    border-top: 1px solid #FFFFFF1A;
    padding-top: 40px;
    margin-top: 0;
}

.appointment-form {
    background-color: #FFFFFF1A;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    padding: 50px;
    border-radius: 10px;
}

.appointment-form .form-control {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
    color: #fff;
    background-color: #FFFFFF1A;
    border-radius: 10px;
    padding: 18px 20px;
    outline: none;
    border: none;
    box-shadow: none;
}

.appointment-form .form-control::placeholder {
    color: #fff;
}

.appointment-form select option {
    color: var(--primary-color);
}

.appointment-form .form-control.form-select {
    padding: 18px 35px 18px 20px;
}

.appointment-form-btn {
    margin-top: 15px;
}

.appointment-form-btn .btn-default {
    width: 100%;
    padding: 18px 24px;
}

.appointment-form-btn .btn-default::before {
    display: none;
}

.floating_btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

@keyframes pulsing {
    to {
        box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
    }
}

.contact_icon {
    background-color: #42db87;
    color: #fff;
    width: 60px;
    height: 60px;
    font-size: 30px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translatey(0px);
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 0 0 #42db87;
    -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    font-weight: normal;
    font-family: sans-serif;
    text-decoration: none !important;
    transition: all 300ms ease-in-out;
}


.text_icon {
    margin-top: 8px;
    color: #707070;
    font-size: 13px;
}

.breadcrumb-meta {
    background: url(../images/breadcrumb-meta.webp) no-repeat center;
    background-size: cover !important;
}

.breadcrumb-title {
    text-align: center;
}

.breadcrumb-title h1 {
    font-size: 30px;
    color: #fff;
    font-weight: 600;
}

.breadcrumb-title ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.breadcrumb-title ul li {
    list-style: none !important;
    padding-right: 10px;
    color: #fff;
}

.breadcrumb-title a {
    padding-right: 10px;
}

.breadcrumb-title i {
    padding-right: 10px;
}

/*Contact_us-main_start*/
.contact-us-main {
    padding: 50px 0;
}

.contact-head-text {
    background: #3a3382;
    padding: 10px;
}

.contact-box {
    background: #F4F6FF;
    padding: 15px;
    text-align: center;
    border-radius: 8px;
    height: 100%;
}

.contactmargin {
    margin: 0 0 15px 0;
}

.contact-box i {
    font-size: 40px;
    color: #3a3382;
    margin: 10px 0;
}

.contact-box h4 {
    font-size: 20px;
    color: #3a3382;
    margin: 0 0 10px 0;
}

.contact-box a,
.contact-box p {
    font-size: 14px;
    color: #3B425E;
    margin: 0 0 5px 0;
}

/* From Uiverse.io by AbanoubMagdy1 */
.conform-in {
    border-radius: 8px;
    padding: 50px 40px;
    background: #f3f6ff;
}

.conform-in h3 {
    font-size: 25px;
    color: #3a3382;
}

.conform-in p {
    font-size: 15px;
    color: #3B425E;
    margin: 0 0 10px 0;
}

.wave-group {
    position: relative;
    width: 100%;
    margin-bottom: 15px;
}

.wave-group .input {
    font-size: 13px;
    padding: 10px 10px 10px 13px;
    display: block;
    width: 100%;
    border: 1px solid #f3f6ff;
    background: #fff;
    line-height: 20px;
    color: #333333;
}


.wave-group .input:focus {
    outline: none;
}

.wave-group .label {
    color: #8f96b3;
    font-size: 15px;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 14px;
    top: 12px;
    display: flex;
    font-family: 'Roboto Slab';
}

.wave-group .label-char {
    transition: 0.2s ease all;
    transition-delay: calc(var(--index) * .05s);
    background-color: #ffffff;
}

.wave-group .input:focus~label .label-char,
.wave-group .input:valid~label .label-char {
    transform: translateY(-24px);
    font-size: 14px;
    color: #5264AE;
}

.wave-group .bar {
    position: relative;
    display: block;
    width: 100%;
}

.wave-group .bar:before,
.wave-group .bar:after {
    content: '';
    height: 2px;
    width: 0;
    bottom: 1px;
    position: absolute;
    background: #5264AE;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.wave-group .bar:before {
    left: 50%;
}

.wave-group .bar:after {
    right: 50%;
}

.wave-group .input:focus~.bar:before,
.wave-group .input:focus~.bar:after {
    width: 50%;
}


.wave-group .textareac {
    font-size: 16px;
    padding: 10px 10px 10px 5px;
    display: block;
    width: 100%;
    border: 1px solid #f3f6ff;
    background: #fff;
    height: 120px;
}

.wave-group .textareac:focus {
    outline: none;
}

.wave-group .label-char-textarea {
    transition: 0.2s ease all;
    transition-delay: calc(var(--index) * .05s);
    /* corrected here */
}

.wave-group .textareac:focus~label .label-char-textarea,
.wave-group .textareac:valid~label .label-char-textarea {
    transform: translateY(-24px);
    font-size: 14px;
    color: #5264AE;
}

.wave-group .textareac:focus~.bar:before,
.wave-group .textareac:focus~.bar:after {
    width: 50%;
}

.wave-group .textareac:focus~.bar:before,
.wave-group .textareac:focus~.bar:after {
    width: 50%;
}

.contactin-btn {
    color: #fff;
    background: #3a3382;
    outline: none;
    padding: 8px 16px;
    border: 1px solid#ddd;
    font-size: 15px;
    border-radius: 4px;
    display: block;
}

.contactin-btn:hover {
    border: 1px solid#3a3382;
    background: transparent;
    color: #3a3382;
    transition: 0.3s;

}

/*Contact_us-main_end*/

.product-description h2 {
    font-size: 30px;
    font-weight: 600;
    color: #0f7ea3;
}

.product-description ul li {
    list-style: none !important;
    padding-bottom: 10px;
    font-size: 17px;
    position: relative;
    padding-left: 28px;
}

.product-description i {
    padding-right: 10px;
    position: absolute;
    left: 0;
    top: 4px;
    color: #0f7ea3;
}

.gallery-img {
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-img:hover {
    transform: scale(1.03);
}

.modal-content {
    background: transparent;
    border: none;
}

.modal-body {
    padding: 0;
    text-align: center;
}

.modal-body img {
    width: 100%;
    border-radius: 10px;
}

.btn-close {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #fff;
    border-radius: 50%;
    opacity: 1;
    z-index: 99;
}


/*=====================================
 EXPERIENCE & CERTIFICATIONS
======================================*/

.experience-certifications {
    background: #f8f7fc;
    position: relative;
    overflow: hidden;
}

.section-title span {
    color: #f68b2c;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 54px;
    font-weight: 700;
    color: #3f3591;
    margin-bottom: 15px;
}

.section-title p {
    max-width: 650px;
    margin: auto;
    color: #666;
    font-size: 18px;
    line-height: 1.8;
}

.experience-box,
.certificate-box {
    background: #fff;
    border-radius: 28px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    height: 100%;
}

.box-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.box-title i {
    width: 55px;
    height: 55px;
    background: #f1ebff;
    color: #6a4bc3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.box-title h3 {
    font-size: 38px;
    color: #3f3591;
    font-weight: 700;
    margin: 0;
}

/* TIMELINE */

.timeline {
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    width: 2px;
    height: 100%;
    background: #d9cef8;
}

.timeline-item {
    display: flex;
    gap: 10px;
    position: relative;
    margin-bottom: 45px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 64px;
    top: 10px;
    width: 14px;
    height: 14px;
    background: #6a4bc3;
    border: 4px solid #fff;
    border-radius: 50%;
    z-index: -1;
}

.timeline-year {
    min-width: 105px;
    background: #f1ebff;
    color: #6a4bc3;
    font-weight: 700;
    border-radius: 12px;
    padding: 10px;
    text-align: center;
    font-size: 14px;
    height: fit-content;
}

.timeline-content {
    padding-left: 25px;
}

.timeline-content h4 {
    font-size: 22px;
    color: #3f3591;
    font-weight: 700;
    margin-bottom: 8px;
}

.timeline-content h5 {
    font-size: 18px;
    color: #666;
    margin-bottom: 10px;
}

.timeline-content p,
.timeline-content li {
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

.timeline-content ul {
    padding-left: 20px;
}

/* CERTIFICATIONS */

.certificate-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 22px;
    padding: 35px 25px;
    text-align: center;
    height: 100%;
    transition: 0.4s;
}

.certificate-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.cert-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: auto auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
}

.cert-icon.purple {
    background: #f1ebff;
    color: #7b4dff;
}

.cert-icon.orange {
    background: #fff1e5;
    color: #f68b2c;
}

.cert-icon.pink {
    background: #ffe8f0;
    color: #ff4f87;
}

.cert-icon.green {
    background: #e9fff0;
    color: #25b85b;
}

.cert-icon.blue {
    background: #eaf4ff;
    color: #2c8fff;
}

.cert-icon.yellow {
    background: #fff8df;
    color: #e8b400;
}

.certificate-card h4 {
    font-size: 18px;
    color: #3f3591;
    font-weight: 700;
    line-height: 25px;
    margin-bottom: 10px;
}

.certificate-card p {
    color: #777;
    margin: 0;
}

/* MOBILE */

@media(max-width:991px){

    .section-title h2 {
        font-size: 40px;
    }

    .box-title h3 {
        font-size: 30px;
    }

    .timeline::before {
        left: 55px;
    }

    .timeline-item::before {
        left: 49px;
    }

}

@media(max-width:767px){

    .section-title h2 {
        font-size: 32px;
    }

    .timeline-item {
        flex-direction: column;
    }

    .timeline-content {
        padding-left: 0;
    }

    .timeline::before,
    .timeline-item::before {
        display: none;
    }

    .experience-box,
    .certificate-box {
        padding: 25px;
    }

}


/*===================================
 NICU SERVICE PAGE
====================================*/

.nicu-service-hero {
    background: #f8f7fc;
    overflow: hidden;
    padding: 0 !important;
}

.nicu-content {
    padding: 80px;
}

.service-tag {
    color: #f68b2c;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.nicu-content h1 {
    font-size: 72px;
    line-height: 1.1;
    font-weight: 700;
    color: #3f3591;
    margin-bottom: 25px;
}

.nicu-content h1 span {
    color: #f68b2c;
}

.nicu-content p {
    color: #666;
    font-size: 22px;
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 700px;
}

.nicu-features {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 25px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 22px;
}

.feature-icon.purple {
    background: #f1ebff;
    color: #7b4dff;
}

.feature-icon.orange {
    background: #fff1e5;
    color: #f68b2c;
}

.feature-icon.green {
    background: #e9fff0;
    color: #25b85b;
}

.feature-item span {
    font-size: 18px;
    color: #555;
    font-weight: 500;
}

.nicu-btn {
    background: #4b3fa7;
    color: #fff;
    padding: 18px 35px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.4s;
}

.nicu-btn:hover {
    background: #f68b2c;
    color: #fff;
}

.nicu-hero-img img {
    width: 100%;
    height: 850px;
    object-fit: cover;
}

/* ABOUT NICU */

.about-nicu {
    background: #fff;
}

.about-nicu-img img {
    border-radius: 28px;
}

.about-nicu-content span {
    color: #f68b2c;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 700;
}

.about-nicu-content h2 {
    font-size: 58px;
    color: #3f3591;
    font-weight: 700;
    line-height: 1.2;
    margin: 18px 0 25px;
}

.about-nicu-content p {
    font-size: 18px;
    line-height: 1.9;
    color: #666;
}

.nicu-list {
    margin-top: 30px;
    padding: 0;
    list-style: none;
}

.nicu-list li {
    margin-bottom: 18px;
    padding-left: 35px;
    position: relative;
    color: #555;
    font-size: 17px;
}

.nicu-list li::before {
    content: '\f058';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #7b4dff;
}

.nicu-stats {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.stat-box {
    background: #f8f7fc;
    padding: 25px;
    border-radius: 20px;
    flex: 1;
    text-align: center;
}

.stat-box h4 {
    color: #4b3fa7;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-box p {
    margin: 0;
    font-size: 15px;
}

/* SERVICES */

.nicu-services {
    background: #f8f7fc;
}

.section-title span {
    color: #f68b2c;
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 700;
}

.section-title h2 {
    font-size: 56px;
    color: #3f3591;
    font-weight: 700;
    margin-top: 15px;
}

.nicu-service-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px 30px;
    height: 100%;
    transition: 0.4s;
}

.nicu-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.service-icon {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 34px;
}

.service-icon.purple {
    background: #f1ebff;
    color: #7b4dff;
}

.service-icon.orange {
    background: #fff1e5;
    color: #f68b2c;
}

.service-icon.green {
    background: #e9fff0;
    color: #25b85b;
}

.service-icon.pink {
    background: #ffe8f0;
    color: #ff4f87;
}

.nicu-service-card h3 {
    font-size: 28px;
    color: #3f3591;
    font-weight: 700;
    margin-bottom: 18px;
}

.nicu-service-card p {
    color: #666;
    line-height: 1.8;
}

/* CTA */

.nicu-cta-box {
    background: linear-gradient(90deg,#7b4dff,#f68b2c);
    border-radius: 32px;
    overflow: hidden;
    padding: 60px;
}

.nicu-cta-content h2 {
    color: #fff;
    font-size: 56px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
}

.nicu-cta-content p {
    color: #fff;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 35px;
}

.cta-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn-fill,
.cta-btn-outline {
    padding: 16px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
}

.cta-btn-fill {
    background: #fff;
    color: #4b3fa7;
}

.cta-btn-outline {
    border: 2px solid rgba(255,255,255,0.5);
    color: #fff;
}

.nicu-cta-img img {
    max-height: 400px;
}

/* MOBILE */

@media(max-width:991px){

    .nicu-content {
        padding: 50px 25px;
    }

    .nicu-content h1 {
        font-size: 48px;
    }

    .about-nicu-content h2,
    .section-title h2,
    .nicu-cta-content h2 {
        font-size: 38px;
    }

    .nicu-hero-img img {
        height: auto;
    }

    .nicu-stats {
        flex-direction: column;
    }

}

@media(max-width:767px){

    .nicu-content h1 {
        font-size: 40px;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .nicu-cta-box {
        padding: 35px 25px;
    }

    .nicu-cta-content h2 {
        font-size: 32px;
    }

}


.testimonial-main {
  padding: 80px 0;
}

.testimonials-head {
  background: #6c4ab6;
  padding: 30px;
  margin: 20px auto;
  border-radius: 15px;
}

.testimonials-head p {
  font-size: 18px;
  color: #ffffff;
  font-style: italic;
  line-height: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid#ffffff2b;
}

.testimonials-head h3 {
  font-size: 30px;
  color: #fff;
  margin-top: 20px;

}
