:root {
    --primary: #013473;
    --secondary: #a5d51d;
    --text-light: #cfd9e6;
    --text-liight: white;
    --curve-bg: #d9e5f8;
    --dept-bg: #d9e5f8;
    --dept-text: #a5d51d;
    --text-color: #333;
    --bg-gradient: linear-gradient(135deg, #a5d51d, #58c8ff);
    --card-bg: #ffffff;
    --card-hover-bg: #f0f8ff;
    --icon-color: #a5d51d;
    --btm-hover-colour: #a5d51d;
    --btn-bg-1: linear-gradient(90deg, #013473, #a5d51d);
    --btn-bg-2: linear-gradient(90deg, #013473, #a5d51d);
    --btn-bg-3: linear-gradient(90deg, #013473, #a5d51d);
    --btn-bg-4: linear-gradient(90deg, #013473, #a5d51d);
    --btn-text: #fff;
    --btn-radius: 6px;
    --text-color: #000;
    --header-bg: #fff;
    --sticky-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --intro-text: #013473;
    --from-input: #a4d51da7;
}
a{
    text-decoration: none !important;
}
/*Loader*/
  .preloader-wrapper{    
    position: fixed;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
  }
  .preloader .ldr_prt{
    height: 100vh;
    width: 100vw;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    transition: 1.2s ease-in-out;
  }
  .preloader .cntr{
    z-index: 2;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100vh);
    max-width: 500px;
    width: 90%;
    transition: 1s;
    z-index: 1;
    text-align: center;
  }
  .preloader .cntr:after{
    content: "";
    width: 100%;
    left: 0;
    height: 100%;
    background: #fff;
    position: absolute;
    opacity: 1;
    animation: show 4s infinite;
    z-index: 1;
  }  
  .preloader .cntr p{
    color: #737373;
    margin-top: 25px;
    font-size: 20px;
    line-height: 1.4;
  }
  .preloader .ldr{
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
  }
  .preloader .ldr .fa{
    color: var(--secondary-color);
  }
  .preloader .ldr .ldrtxt{
    font-size: 16px;
    font-weight: 500;
    padding-left: 12px;
    margin: 10px auto;
    color: #bfbfbf;
  }
  @keyframes show {
    0% {
      opacity: .7;
      /*backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);*/
      transform: translateX(0%);
    } 
    100% {
      opacity: .4;
      /*backdrop-filter: blur(0px);
      -webkit-backdrop-filter: blur(0px);*/
      transform: translateX(110%);
    }
  }
  @-webkit-keyframes show {
    0% {
      opacity: .7;
      /*backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);*/
      transform: translateX(0%);
    } 
    100% {
      opacity: .4;
      /*backdrop-filter: blur(0px);
      -webkit-backdrop-filter: blur(0px);*/
      transform: translateX(110%);
    }
  }
  .preloader-wrapper.active{
    opacity: 1;
    visibility: visible;
    z-index: 999999;
  }
  .preloader-wrapper.active .preloader .cntr{
    transform: translate(-50%, -50%);
  }
  .preloader .lft{
    transform: translateX(-220%);
  }
  .preloader .rgt{
    transform: translateX(220%);
  }
  .preloader-wrapper.active .preloader .lft{
    transform: translateX(0);
  }
  .preloader-wrapper.active .preloader .rgt{
    transform: translateX(0);
  }
/*end*/
.popup{
    max-height: 70vh;
    max-width: 500px;
    margin: 0 auto;
    border: 5px solid #194880;
    border-radius: 12px;
}
.header-top {
    background-color: var(--header-bg);
    padding: 0px 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}
.header-top::after, .header-top::before{
    content: '';
    top: 0;
    height: 100%;
    width: 12%;
    position: absolute;
    z-index: -1;
}
.header-top::before{
    left: 0;
    background: linear-gradient(90deg, var(--primary), #ffffff);
}
.header-top::after{
    right: 0;
    background: linear-gradient(-90deg, var(--secondary), #ffffff);
}
.header-top img {
    max-height: 90px;
   max-width: 200px;
   object-fit: contain;
   object-position: left;
}
.header-middle {
    border-top: 2px solid var(--secondary);
    padding: 10px 0;
    background-color: var(--header-bg);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: var(--sticky-shadow);
    overflow: hidden;
    
}
.navbar {
        margin: -6px;
}
.bg-primar{
    background-color: var(--primary);
}
.nav-link {
    color: var(--primary) !important;
    font-weight: 500;
}
.navbar-nav .dropdown-menu {
    position: static;
    background-color: #a5d51d;
    color: #012c7b;
    
}
.nav-link:hover {
    color: var(--secondary) !important;
}

.btn-contact {
    background-color: var(--primary);
    color: #fff;
    border-radius: 6px;
    font-size: 14px;
    padding: 6px 15px;
    margin-left: 10px;
    text-decoration: none;
}

.btn-contact:hover {
    background-color: var(--secondary);
}

.header-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: stretch;
    flex-wrap: nowrap;
}


.header-up-btn {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: flex-end;
}

/* banner */
.hero-slider {
    position: relative;
}

.sswiper {
    width: 100%;
    /*height: 100vh;*/
    aspect-ratio: 1920 / 639;
}
.swiper-slide,
.swiper-slide-next,
.swiper-slide-prev {
  background-size: cover !important;
  background-position: center !important;
  flex-shrink: 0 !important;
  height: 100% !important;
  display: block !important;
  transition-property: transform !important;
}


.slider-overlay {
    position: absolute;
    top: 0;
    right: 5%;
    height: 100%;
    width: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    z-index: 5;
}

.slider-buttons {
    display: flex;
    flex-direction: column;
    gap: 3px;
    width: 100%;
}

.slider-button {
    color: var(--btn-text);
    padding: 18px 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border-radius: var(--btn-radius);
    transition: 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.slider-button i {
    font-size: 24px;
    margin-top: 2px;
}

.slider-button h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.slider-button p {
    margin: 4px 0 0;
    font-size: 13px;
    line-height: 1.4;
    min-height: 36px;
}

.slider-buttons > a:nth-child(odd) .book {
    background: var(--secondary);
    color: var(--primary);


}
.slider-button.book svg{
    color: #fff;
}
.slider-buttons > a:nth-child(even) .book {
    background: var(--primary);
    color:  var(--secondary);
}



.slider-button:hover {
    opacity: 0.92;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 991px) {
    .slider-overlay {
        position: relative;
        width: 100%;
        background: #ffffffee;
        backdrop-filter: none;
        padding: 30px 20px;
    }

    .swiper-slide {
        height: 500px;
    }

    .slider-button {
        padding: 16px;
    }
}

/* end */
/* doctor section */
.hero-heading {
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-liight);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.learn {
    background-color: var(--secondary);
    color: var(--primary);
    border-radius: 21px 21px 21px 20px;
    height: 43px;
    width: 137px;
    font-size: 14px;
    align-content: center;
}

.call {
    border-radius: 21px 21px 21px 20px;
    height: 43px;
    width: 156px;
    font-size: 14px;
    align-content: center;
}

.learn:hover {
    background-color: var(--dept-bg);
    color: var(--primary);
}

.service {
    display: flex;
    flex-direction: column;
}

.hero-section {
    background-color: var(--primary);
    color: var(--text-light);
    position: relative;
    padding: 80px 0 120px;
}

.hero-section .text-gradient {
    background: linear-gradient(to right, #2596ff, #2ca5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.doctor-image-wrap {
    position: relative;
    z-index: 1;
    display: inline-block;
}

.circle-bg {
position: absolute;
    top: -236px;
    left: 226px;
    width: 348px;
    height: 319px;
    border-radius: 50%;
    background: #ffffff0d;
    transform: translate(-50%, -50%);
    z-index: 0;
    box-shadow: 0 0 0 30px #ffffff24, 0 0 0 70px #ffffff24, 0 0 0 110px #ffffff24;
}

.box-text {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
}

.doctor-img {
    position: absolute;
    z-index: 1;
    height: 830px;
    max-width: unset;
    aspect-ratio: 3 / 5;
    left: -26px;
    bottom: -112px;
}

.info-card {
    background-color: #7c8add96;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.bottom-curve svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
}

.text {
    color: #b3b3b3;
}

/* end */
/* department section */
.department-section {
    padding: 60px 0;
    background: var(--dept-bg);
}
.dept-btn{
    background-color: var(--secondary);
}
.dept-name{
    max-width: calc(100% - 60px);
}
.dept-btn:hover{
    background-color: var(--primary-color);
    color: var(--text-liight);
}
.section-header .icon svg {
    width: 30px;
    height: 30px;
    color: var(--dept-text);
}

.section-header h6 {
    color: var(--dept-text);
    font-weight: 600;
    margin-top: 10px;
}

.section-header .title {
    font-size: 44px;
    font-weight: bold;
    margin: 10px 0;
    color: var(--primary);
    text-align: start;
}

.section-header .title span {
    color: var(--dept-text);
}

.section-header .description {
    color: var(--text-color);
    margin-bottom: 20px;
    text-align: start;
    color: #065794;
}

.department-section .btn-link{
    font-size: 13px;
}
.department-card {
    background: linear-gradient(to bottom, #ffffff, #d9e5f8);
    border-radius: 24px;
    padding: 30px 25px;
    width: 100%;
    max-width: 320px;
    box-shadow: 0 0 0 rgb(217 229 248);
    /* text-align: center; */
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: 0.4s;
}

.department-card:hover {
    transform: translateY(-10px);
    background: linear-gradient(to bottom, #ffffff, #d9e5f8);
    box-shadow: 0px 30px 70px 0px rgba(166.22673913043477, 198.06515217391302, 239.7, 0.57);
}

.card-top {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    margin-bottom: 20px;
}

.department-section .number-circle {
    background: var(--icon-color);
    color: white;
    font-weight: 700;
    font-size: 14px;
    border-radius: 50%;
    padding-left: 2px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.card-title {
    font-size: 18px;
    font-weight: 700;
    color: #002057;
    margin: 0;
    line-height: 1.4;
    text-align: left;
}

.icon-wrapper {
    position: relative;
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
}

.icon-bg {
    background-color: #d9ecfd;
    border-radius: 50%;
    width: 64px;
    height: 64px;
    opacity: 0.3;
    position: absolute;
    top: 0;
    left: 0;
}

.icon-img {
    position: relative;
    z-index: 2;
    width: 36px;
    height: 36px;
    margin-top: 14px;
}

.card-text {
    color: #4d6c87;
    font-size: 14px;
    margin-bottom: 20px;
}

.card-link {
    color: #007bff;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}


.btn-link:hover {
    text-decoration: underline;
}

.department-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: var(--secondary);
    color: var(--primary);
    /* Bootstrap Primary Blue */
    font-weight: 600;
    font-size: 14px;
    border-radius: 999px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.department-label .icon-svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.dept-heading {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    /* align-content: flex-start; */
    align-items: flex-start;
    align-items: flex-end;
    padding-left: 65px;
}

.dept-logo {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    /* align-content: flex-start; */
    justify-content: flex-start;
    align-items: flex-start;

}
.department-section .icon {
    position: relative;
    z-index: 1;
    margin: 30px 0 50px 0;
}
.department-section .icon::after {
    content: '';
    position: absolute;
    z-index: -1;
    width: 125px;
    aspect-ratio: 0.94 / 1;
    top: 10px;
    left: 20px;
    background-color: #e2eefe;
    border-radius: 50%;
    opacity: 0.5;
    transform: rotate(36deg);
}
.health-logo {
    height: 80px;
}

.health-desc {
    text-align: left;
}

.health-count {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* end */

/*  Medical Introduction Section */
.medical-intro-section {
    background-color: var(--dept-bg);
    /*padding: 60px 20px;*/
}

.medi-intro {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
}

.intro-badge {
    display: inline-block;
    background: #eaf4ff;
    color: var(--secondary);
    padding: 6px 16px;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 14px;
}

.intro-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 40px;
    text-align: center;
}

.intro-title .highlight {
    color: var(--secondary);
}

.intro-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    align-items: flex-start;
}

.intro-left,
.intro-right {
    flex: 1;
    /* min-width: 300px; */
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-start;
}

.video-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.intro-img {
    width: 100%;
    display: block;
    border-radius: 20px;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
}

.intro-text {
    font-size: 16px;
    color: var(--intro-text);
    margin-bottom: 20px;
}

.intro-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    font-weight: 580;
}

.intro-list li {
    font-size: 15px;
    color: var(--primary);
}

.intro-list li i {
    color: var(--secondary);
    margin-right: 10px;
}

.opening-hours {
    background: var(--icon-color);
    color: var(--primary);
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    height: 327px;
    width: 308px;
    z-index: 1;
    padding-top: 36px;
}

.opening-hours h4 {
    background: #fff;
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 20px;
    display: inline-block;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    height: 41px;
    width: 212px;
}

.opening-hours .time-row {
    font-size: 14px;
    margin: 5px 0;
}

.opening-hours .highlight {
    font-weight: 500;
    font-size: 14px;
    margin-top: 10px;
}

.intro-bottom-image {

    text-align: center;
}

.intro-bottom-image img {
    width: 100%;
    max-width: 782px;
    border-radius: 20px;
    /* display: inline-block; */
    position: relative;
    left: 239px;
    bottom: 190px;
}

@media (max-width: 768px) {
    .intro-title {
        font-size: 28px;
    }

    .intro-content {
        flex-direction: column;
        align-items: center;
    }
}

/* end */
:root {
    --primary-color: #007bff;
    --bg-gradient: linear-gradient(to right, #003973, #e5e5be);
    --box-bg: rgba(0, 49, 102, 0.95);
    --text-light: #ffffff;
}

.stats-section {
    /*background: url('img/bg-counter.jpg') center center/cover no-repeat;*/
    position: relative;
    z-index: 1;
    background-color: var(--dept-bg);

}

/* .stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--box-bg);
  z-index: -1;
  border-radius: 40px;
} */
.vertical-divider {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background-color: rgba(255, 255, 255, 0.2);
}

.stats-box {
    position: relative;
    background-color: var(--primary);
    background-blend-mode: overlay;
    background-size: cover;
    border-radius: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    padding: 70px;
    z-index: 1;
    overflow: hidden;
}

.stats-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary);
    opacity: 0.85;
    border-radius: 40px;
    z-index: -1;
}

.static-num {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    color: var(--card-bg);
    align-items: center;
}

.avatar {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--text-light);
    margin-left: -10px;
}

.avatar:first-child {
    margin-left: 0;
}

.counter {
    font-weight: 700;
    font-size: 64px;
    color: var(--secondary);
}

.stats-box h6,
.stats-box h5 {
    color: var(--text-light);
}

@media (max-width: 768px) {
    .avatar {
        width: 40px;
        height: 40px;
    }

    .counter {
        font-size: 2rem;
    }

    .stats-section::before {
        border-radius: 20px;
    }

    .stats-box {
        border-radius: 20px;
    }
}

.logo-slide {
    height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    /* Makes logos white if needed */
    padding: 0 10px;
}

/* end */
/* OUR PROFESSIONALS */
.OUR-PROFESSIONALS {
    background-color: var(--dept-bg);
}


.doctor-card {
    background: linear-gradient(to bottom, #ffffff, #d9e5f8);
    border-radius: 24px;
    padding: 30px 20px;
    height: 492px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.doctor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 30px rgba(0, 56, 255, 0.07);
}

.top-info {
    margin-bottom: 20px;
    text-align: start;
}

.doctor-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}

.doctor-title {
    font-size: 13px;
    font-weight: 500;
    color: var(--secondary);
    text-transform: uppercase;
    margin: 5px 0 0;
}

.specialty-icon {
    width: 36px;
    height: 36px;
    color: var(--secondary);
}

.image-box {
    margin: 20px auto;
    width: 258px;
    height: 270px;
    border-radius: 50%;
    border: 6px solid #ffffff;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.1);

}

.doctor-image {

    height: 261px;
    object-fit: cover;
}

.action-box {
    margin-top: 20px;
}

.btn-appointment {
    background: var(--secondary);
    color: var(--primary);
    padding: 9px 23px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    border: none;
    transition: background 0.3s;
    width: 146px;
    height: 36px;
}

.btn-appointment:hover {
    background: var(--primary);
    color: var(--btn-text);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(0, 98, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--secondary);
    color: var(--primary);
    border-color: rgba(0, 98, 255, 0.3);
}

.social-icons img {
    width: 18px;
    height: 18px;
}

.action-box {
    padding-top: 14px;
    align-items: flex-end;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

/* end */

/* consultation section */
.consultation-section {
    background-color: var(--dept-bg);
    padding: 40px 0;
}

/* Main consultation bar */
.consultation-bar {
    background-color: var(--primary);
    border-radius: 60px;
    padding: 8px 26px;
    width: 100%;
    color: var(--white);
    font-weight: 600;
    font-size: 18px;
    /* gap: 17px; */
    width: 579px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

/* Left text */
.consultation-text {
    color: var(--text-liight);
    font-size: 18px;
    font-weight: 600;
    white-space: nowrap;
}

/* CTA Button */
.consultation-btn {
    padding: 11px 18px;
    border: 1px solid var(--card-bg);
    border-radius: 50px;
    color: var(--text-liight);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    padding-left: 10px;
    padding-right: 10px;
}

.consultation-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.consultation-btn:hover {
    background-color: var(--secondary);
    color: var(--text-liight);
}

@media (max-width: 576px) {
    .consultation-bar {
        flex-direction: column;
        text-align: center;
    }

    .consultation-text {
        margin-bottom: 12px;
    }
}

/* end */
/* step-follow */
.step-follow {
    background-color: var(--dept-bg);
}

.step-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 40px;
    text-align: center;
}

.step-title .highlight {
    color: var(--secondary);
}

.step-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 13px;
    background-color: var(--secondary);
    color: var(--primary);
    /* Bootstrap Primary Blue */
    font-weight: 400;
    font-size: 14px;
    border-radius: 999px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.step-label .icon-svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.dept-heading {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    /* align-content: flex-start; */
    align-items: flex-start;
    align-items: flex-end;
    padding-left: 65px;
}
/* Hexagon container */
.hexagon {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto;
  clip-path: polygon(
    50% 0%,
    93% 25%,
    93% 75%,
    50% 100%,
    7% 75%,
    7% 25%
    
  );
  
  margin-top: 25px;

  border: 2px dashed #c0cfe6;
  overflow: hidden;
  background: #ffffff;
  transition: transform 0.3s ease;
}

.hex-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hexagon:hover .hex-image {
  transform: scale(0.95); /* Zoom-out effect */
}

/* Step badge */
.step-badge {
position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--secondary);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 10px;
    border-radius: 50%;
    z-index: 1;
    /* /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
}

/* Titles & text */
.stepp-title {
  font-weight: 700;
  font-size: 16px;
  color: #0e2258;
  margin-top: 16px;
}

.stepp-desc {
  font-size: 14px;
  color: #5f6e89;
}

/* Arrows */
.arrow-img {
  position: absolute;
  top: 50%;
  right: -50px;
  transform: translateY(-50%);
  width: 119px;
}

@media (max-width: 991.98px) {
  .arrow-img {
    display: none !important;
  }
}
/* end */
/* care-health */
.care-health{
    background-color: var(--primary);
}
.care{
    max-width: 1140px;
    margin: 0 auto;
}
.care-img {
    position: absolute;
    z-index: 1;
    height: 503px;
    max-width: unset;
    /* aspect-ratio: 3 / 5; */
    left: -51px;
    bottom: -204px;

}
.her-heading {
    font-size: 47px;
    font-weight: 700;
    color: var(--text-liight);
    line-height: 1.2;
    margin-bottom: 1rem;
}
.circl-bg {
    position: absolute;
 top: 63px;
    left: 269px;
    width: 332px;
    height: 322px;
    border-radius: 50%;
    background: #ffffff0d;
    transform: translate(-50%, -50%);
    z-index: 0;
    box-shadow: 0 0 0 30px #ffffff24, 0 0 0 70px #ffffff24, 0 0 0 110px #ffffff24;
}
.free {
    background-color: var(--secondary);
    color: var(--primary);
    border-radius: 21px 21px 21px 20px;
    height: 43px;
    width: 166px;;
    font-size: 14px;
    align-content: center;
}
.free:hover {
    background-color: var(--dept-bg);
    color: var(--primary);
}
.text-gradien{
    color: var(--secondary);
}
/* end */
/* overlay */
.appointment-overlay-section {
  background: var(--dept-bg);
  padding: 100px 0 60px;
  position: relative;
}

/* White floating box */
.appointment-box {
  background: linear-gradient(to bottom, #ffffff, #d9e5f8);;
  border-radius: 80px 80px 80px 80px;
  padding: 40px 50px;
  position: relative;
  z-index: 2;
  bottom: 131px;
  border: 10px solid #d9e5f8;
  
}

/* Heading styles */
.appointment-title {
  font-weight: 700;
  font-size: 28px;
  color: var(--primary);
  line-height: 1.4;
}

.appointment-title span {
  color: var(--secondary);
}

.appointment-subtitle {
  color: #5f6e89;
  font-size: 15px;
  margin-top: 12px;
}

/* Form controls */
.form-control-input {
  background: var(--from-input);
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 14px;
  flex: 1 1 calc(30% - 10px);
  min-width: 150px;
  transition: 0.3s;
  color: #7d8368;
}

.form-control-input:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.2);
}

/* Button */
.appointment-btn {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 999px;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.3s;
}

.appointment-btn:hover {
  background: var(--secondary);
}
@media (max-width: 768px) {
  .appointment-box {
    border-radius: 40px;
    padding: 30px 20px;
  }

  .form-control-input {
    flex: 1 1 100%;
  }

  .appointment-form {
    justify-content: center;
  }

  .appointment-btn {
    width: 100%;
    text-align: center;
  }
}

/* end */
/* patients-reviews */
.patients-reviews{
    background-color: var(--dept-bg);
}

.testimonial-section {
  background: var(--bg-light);
}

.testimonial-card {
    position: relative;
    background: linear-gradient(to bottom, #b9daff 10%, #ffffff 90%);
    border-radius: 60px;
    padding: 30px;
    padding-top: 50px;
    text-align: left;
    min-height: 320px;
}
.testimonial-card::after{
    position: relative;
    z-index: 1;
    border: 10px 10px 10px 10px;
    color: red;
}
.testimonial-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
  position: absolute;
  top: -30px;
  left: 30px;
  border: 5px solid #d9e5f8;

}

.testimonial-text {
  font-size: 15px;
  color: var(--primary);
  margin-bottom: 20px;
  padding-left: 24px;
}

.testimonial-footer h5 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
}

.testimonial-role {
  font-size: 13px;
  color: var(--secondary);
  text-transform: uppercase;
}

.testimonial-stars {
  font-size: 18px;
  color: var(--secondary);
}

.btn-view-all {
  background: var(--secondary);
  color: var(--primary);
  padding: 12px 30px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s;
}

.btn-view-all:hover {
  background: var(--primary);
  color: var(--text-liight);
}
.testimonial-footer{
    
    display: flex;
    flex-direction: row;
    /* align-content: center; */
    align-items: center;
    justify-content: space-between;
    padding: 24px;
}
/* end */
/* blog */
.blog{
    background-color: var(--dept-bg);
}
.blog-label {
    display: inline-flex
;
    align-items: center;
    gap: 8px;
    padding: 4px 13px;
    background-color: var(--secondary);
    color: var(--primary);
    font-weight: 400;
    font-size: 12px;
    border-radius: 999px;
    box-shadow: 0 1px 3px rgba(0, 0, 0,);
}

.blog-label .icon-svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}
:root {
  --primary: #012c7b;
  --blue: #007bff;
  --bg-light: #eaf2ff;
}

.blog-section {
  background: var(--bg-light);
}

.blog-card {
  background: linear-gradient(to bottom, #ffffff, #d9e5f8);
  border-radius: 25px;
  overflow: hidden;
}


.blog-img {
  position: relative;
  overflow: hidden;
}

.blog-img img {
      width: 100%;
    height: auto;
    border-radius: 29px 29px 0 0;
    object-fit: cover;
    border: 10px solid white;
}

.blog-category {
  position: absolute;
    bottom: 6px;
    left: 6px;
    background: var(--secondary);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 5px;
    border: 3px solid white;
}

.blog-content {
  padding: 28px;
}

.blog-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}
.blog-title:hover {
  font-size: 18px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 10px;
}

.blog-meta {
  font-size: 14px;
  color: var(--primary);
}

.blog-meta i {
  color: var(--secondary);
  margin-right: 5px;
}

.blog-meta span {
  margin-right: 15px;
}

.blog-meta a {
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
}
/* end */
/* subscribe */
.subscribe {
    background-color: var(--secondary); /* Typically blue from your image */
    color: var(--primary); /* Usually white or light text */
}

.subscribe-icon svg {
    color: var(--primary);
}

.subscribe-bar h4,
.subscribe-bar p {
    margin: 0;
    color: var(--primary);
}

.subscribe-btn {
    padding: 11px 30px;
    border: 1px solid var(--card-bg);
    border-radius: 50px;
    color: var(--text-liight);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    background-color: transparent;
    transition: all 0.3s ease;
}

.subscribe-btn:hover {
    background-color: var(--primary);
    color: var(--text-liight);
}

/* footer */
.custom-footer {
  position: relative;
  background-color: var(--primary);
  overflow: hidden;
  color: var(--text-liight);
}

.custom-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--primary);
  opacity: 0.85;
  z-index: 0;
}

.footer-overlay {
  position: relative;
  z-index: 1;
}


.footer-bottom {
  background-color: var(--primary);
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-opening-hours {
        background: var(--dept-bg);
    color: var(--primary);
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    height: 393px;
    width: 308px;
    z-index: 1;
    padding-top: 36px;
}
.footer-opening-hours h4 {
    background: #fff;
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 20px;
    display: inline-block;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    height: 41px;
    width: 212px;
}

.footer-opening-hours .time-row {
    font-size: 14px;
    margin: 5px 0;
}

.footer-opening-hours .highlight {
    font-weight: 500;
    font-size: 14px;
    margin-top: 10px;
}
.footer-social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(0, 98, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social-icons a:hover {
    background-color: var(--secondary);
    color: var(--primary);
    border-color: rgba(0, 98, 255, 0.3);
}
.footer-social-icons{

    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}


/*aboutus page*/
/*text*/
.ab-text{
        padding-left: 20px;
        padding-right: 20px;
        text-align: left;
        
}
.aboutus  {
    background-color: var(--dept-bg);
}
/*end*/
/*map*/
.global-presence-section {
  background: var(--secondary);
  color: var(--primary);
  position: relative;
}
.display-4{
    color: var(--primary);
    font-size: 75px;
    font-weight: 700;
}
.name{
color: var(--primary);
}    
.num{
    color: var(--primary);
}
.fet{
    color: white;
}
.bg-map-box {
  background-image: url('img/map.png'); /* Replace with your map bg image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  backdrop-filter: brightness(0.9);
}
.our-fet{
    display: flex;
    flex-direction: row;
    align-items: center;
}
/*end*/
.brand-slider {
  background: var(--dept-bg);
}
.brand-slider img {
  max-height: 60px;
  margin: 0 auto;
}
.brand-slider .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.brand-button-prev,
.brand-button-next {
  color: #333;
}
.text-secondar{
     color: var(--primary);
}
/*contact us page*/
.conl{
    color: var(--primary);
}
 .contact-section {
    background-color: var(--dept-bg);
    padding: 60px 0;
    position: relative;
  }
/* department section */
.cont-section {
    padding: 60px 0;
    background: var(--dept-bg);
}
.cont-btn{
    background-color: var(--secondary);
}
.cont-name{
    max-width: calc(100% - 60px);
}
.cont-btn:hover{
    background-color: var(--primary-color);
    color: var(--text-liight);
}
.section-header .icon svg {
    width: 30px;
    height: 30px;
    color: var(--dept-text);
}

.section-header h6 {
    color: var(--dept-text);
    font-weight: 600;
    margin-top: 10px;
}

.section-header .title {
    font-size: 44px;
    font-weight: bold;
    margin: 10px 0;
    color: var(--primary);
    text-align: start;
}

.section-header .title span {
    color: var(--dept-text);
}

.section-header .description {
    color: var(--text-color);
    margin-bottom: 20px;
    text-align: start;
    color: #065794;
}

.cont-section .btn-link{
    font-size: 13px;
}
.cont-card {
    background: linear-gradient(to bottom, #ffffff, #d9e5f8);
    border-radius: 24px;
    padding: 30px 25px;
    width: 100%;
    max-width: 320px;
    box-shadow: 0 0 0 rgb(217 229 248);
    /* text-align: center; */
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: 0.4s;
}

.cont-card:hover {
    transform: translateY(-10px);
    background: linear-gradient(to bottom, #ffffff, #d9e5f8);
    box-shadow: 0px 30px 70px 0px rgba(166.22673913043477, 198.06515217391302, 239.7, 0.57);
}

.card-top {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    margin-bottom: 20px;
}

.cont-section .number-circle {
    background: var(--icon-color);
    color: white;
    font-weight: 700;
    font-size: 14px;
    border-radius: 50%;
    padding-left: 2px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.card-title {
    font-size: 18px;
    font-weight: 700;
    color: #002057;
    margin: 0;
    line-height: 1.4;
    text-align: left;
}

.icon-wrapper {
    position: relative;
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
}

.icon-bg {
    background-color: #d9ecfd;
    border-radius: 50%;
    width: 64px;
    height: 64px;
    opacity: 0.3;
    position: absolute;
    top: 0;
    left: 0;
}

.icon-img {
    position: relative;
    z-index: 2;
    width: 36px;
    height: 36px;
    margin-top: 14px;
}

.card-text {
    color: #4d6c87;
    font-size: 14px;
    margin-bottom: 20px;
}

.card-link {
    color: #007bff;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}


.btn-link:hover {
    text-decoration: underline;
}

.cont-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: var(--secondary);
    color: var(--primary);
    /* Bootstrap Primary Blue */
    font-weight: 600;
    font-size: 14px;
    border-radius: 999px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.cont-label .icon-svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.cont-heading {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    /* align-content: flex-start; */
    align-items: flex-start;
    align-items: flex-end;
    padding-left: 65px;
}

.cont-logo {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    /* align-content: flex-start; */
    justify-content: flex-start;
    align-items: flex-start;

}
.cont-section .icon {
    position: relative;
    z-index: 1;
    margin: 30px 0 50px 0;
}
.cont-section .icon::after {
    content: '';
    position: absolute;
    z-index: -1;
    width: 125px;
    aspect-ratio: 0.94 / 1;
    top: 10px;
    left: 20px;
    background-color: #e2eefe;
    border-radius: 50%;
    opacity: 0.5;
    transform: rotate(36deg);
}
.ccont-logo {
    height: 80px;
}

.ccont-desc {
    text-align: left;
}
.follow{
    color: var(--primary);
}
.ccont-count {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* end */





  .form-box {
    background: #fff;
    padding: 30px;
    border-radius: 25px;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
  }

  .form-control {
    border-radius: 20px;
    border: none;
    background-color: #a5d51d85;
    padding: 12px 20px;
  }

  .form-control:focus {
    box-shadow: none;
    border: 1px solid #ccc;
  }

  .send-btn {
    background-color: var(--secondary);
    border-radius: 25px;
    padding: 10px 30px;
    color: white;
    border: none;
    transition: 0.3s ease-in-out;
  }

  .send-btn:hover {
    background-color: #0056b3;
  }

  .doctor-imgg {
    max-width: 100%;
    position: absolute;
    z-index: 1;
    height: 722px;
    max-width: unset;
    aspect-ratio: 3 / 5;
    left: 70%;
    bottom: 0px;
    transform: translateX(-50%);
  }

.map-container{
    background-color: var(--dept-bg);
        border: 4px solid #a5d51d;
}
  .map-responsive iframe {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border: none;
  }
  @media (max-width: 768px) {
    .contact-section {
      padding: 30px 0;
    }
  }
.connect-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 2px solid #b5dc2e;
    border-radius: 50%;
    font-size: 18px;
    transition: 0.3s ease;
    background-color: transparent;
    text-decoration: none;
    position: relative;
    left: 101px;
    bottom: 22px;
    margin-top: 24px;
}

.connect-icon:hover {
  background-color: #b5dc2e;
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.connect-social-icons .icon {
    position: relative;
    z-index: 1;
    margin: 51px 0 50px 0;
}
.contact-header-section {
  /*background-image: url('../img/1500 x 800.png') center center / cover no-repeat;*/
  padding: 200px 0;
  position: relative;
  color: #fff;
  overflow: hidden;
}

.contact-header-section h1 {
  font-size: 3rem;
  z-index: 2;
  position: relative;
}

/* Optional: Add an overlay for better text contrast */
.contact-header-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #012c7be0; /* Blue overlay */
  z-index: 1;
}
/*health packages*/
.health-checkup-section {
  background-color: var(--dept-bg);
}

.health-checkup-section .card-header {
  font-size: 1rem;
  font-weight: bold;
  padding: 0.75rem 1rem;
}
.healthtext{
    color: var(--primary);
}
.custom-health-card {
      background: linear-gradient(to bottom, #ffffff, #d9e5f8);
    border-radius: 20px;
    padding: 30px 20px;
    /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); */
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
}
.health-up{
     background-color: var(--primary);
    border-radius: 21px 21px 0 0;
    display: flex;
    flex-direction: row;
    /* align-content: center; */
    flex-wrap: nowrap;
    justify-content: flex-start;
    margin-top: -30px;
    margin-bottom: 17px;
    margin-left: -19px;
    margin-right: -19px;
    gap: 15px;
    padding: 0 20px;
}
.card-number-circle {
  width: 40px;
  height: 40px;
  background-color: #a6dc2b;
  color: white;
  font-weight: bold;
  font-size: 14px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}

.card-title {
        font-size: 1.2rem;
    font-weight: 600;
    margin-top: 17px;
    color: #ffffff;
}
.card-icon{
    margin-top: 10px;
}
.card-icon i {
  font-size: 40px;
    color: #ffffff;
    margin-bottom: 15px;
}

.check-list {
  list-style: none;
  padding: 10px;
  margin-bottom: 20px;
  text-align: left;
}

.check-list li {
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 8px;
}

.check-list i {
  color: var(--primary);
  margin-right: 8px;
}
.book-btn {
      padding: 7px 110px;
    background-color: #a6dc2b;
    color: #012c7b;
    border: 2px solid #a6dc2b;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

.book-btn:hover {
  background-color: #8fc421;
  color: #fff;
}
/*end*/
/*from*/
.form{
    background: var(--dept-bg);
}
.booking-form {
 max-width: 522px;
    margin: 35px auto;
    padding: 26px;
    background: #a5d51d66;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);



}
.book-now-btn {
      padding: 7px 193px;
    background-color: #a6dc2b;
    color: #012c7b;
    border: 2px solid #a6dc2b;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

.book-now-btn:hover {
  background-color: #8fc421;
  color: #fff;
}
.form-group {
  margin-bottom: 15px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s ease;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: #8ecf21;
}

.subscribe-btn {
  background-color: #8ecf21;
  color: white;
  font-weight: bold;
  padding: 12px 30px;
  border: 2px solid white;
  border-radius: 40px;
  cursor: pointer;
  transition: background 0.3s ease;
  display: inline-block;
}

.subscribe-btn:hover {
  background-color: #76b716;
}
/*admission page*/
.inpatient-guide {
      /* max-width: 900px; */
    /* margin: 0px 206px; */
    padding: 37px 178px;
    color: var(--primary);
    background-color: var(--dept-bg);
}

.inpatient-guide h2 {
  color: var(--primary);
  

}

.inpatient-guide h3 {
  font-size: 20px;
  margin-top: 40px;
  color: var(--primary);
}

.custom-list {
  list-style: none;
  margin-top: 15px;
}

.custom-list li {
  position: relative;
  padding-left: 65px;
  margin-bottom: 15px;
  line-height: 1.6;
}

.custom-list li::before {
  content: '';
  background-image: url('../img/hospitallogo.png'); /* Replace with your logo path */
  background-size: contain;
  background-repeat: no-repeat;
    width: 60px;
    height: 25px;
    background-position: left;

  position: absolute;
  left: 0;
  top: 2px;
}




























