@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
body {
    font-family: "Inter", sans-serif;
    /* padding: 0 30px; */
}
 
a {
    text-decoration: none;
}

 

header{
    padding: 10px 0;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 11;
    box-shadow: 0px 11px 60px rgb(227 227 227 / 20%);
}
header .logobox{
    width: 14%;
}
header .logobox a{}
header .logobox a img{
    width: 120px;
}
header .menubox{
    width: 70%;
}
header .menubox > ul{
    padding: 0;
    list-style: none;
    margin: 0;
    display: flex;
    gap: 13px;
}
header .menubox > ul > li{
    position: relative;
    display: flex;
    align-items: center;
}
header .menubox > ul > li > a{
    display: block;
    padding: 33px 5px;
    color: #000;
}

header .menubox > ul > li > ul{
    border: none;
    top: 100%;
    left: 0;
    z-index: -1;
    opacity: 0;
    width: 220px;
    display: block;
    border-radius: 0;
    padding: 10px 10px;
    position: absolute;
    visibility: hidden;
    opacity: 0;
    margin-top: 10px;
    list-style: none;
    background: #ffffff;
    -webkit-transition: .6s;
    transition: .6s;
    box-shadow: 1px 5px 15px 0 rgb(0 0 0 / 10%);
    text-align: left;
    padding: 15px 0;
    }
header .menubox > ul > li:hover > ul {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
    z-index: 99;
}
header .menubox > ul > li > ul > li{}
header .menubox > ul > li > ul > li > a{
    display: block;
    padding: 10px 15px;
    color: #000;
    font-weight: 300;
    font-size: 15px;
}
header .menubox > ul > li > ul > li > a:hover{
    background: #eee;
}
header .bookbox{
    padding-top: 22px;
}
header .bookbox a{
    background: #5e5eee;
    display: inline-block;
    border-radius: 50px;
    color: #fff;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding: 12px 20px;
    width: max-content;
}

header .nabhlogo{
    text-align: RIGHT;
    width: 16%;
}
header .nabhlogo img{width: 80px;}
.widget-slide{background: #0B0B38;padding: 6% 0;padding-bottom: 10%;}

/* KEY FRAMES */

@keyframes movedelement {
  0% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }

  25% {
    -webkit-transform: translate(10px, 10px);
    transform: translate(10px, 10px);
  }

  50% {
    -webkit-transform: translate(5px, 5px);
    transform: translate(5px, 5px);
  }

  75% {
    -webkit-transform: translate(10px, -5px);
    transform: translate(10px, -5px);
  }

  to {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}

@keyframes movedelement3 {
  0% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }

  25% {
    -webkit-transform: translate(-8px, -8px);
    transform: translate(-8px, -8px);
  }

  50% {
    -webkit-transform: translate(-15px, -15px);
    transform: translate(-15px, -15px);
  }

  75% {
    -webkit-transform: translate(-8px, 8px);
    transform: translate(-8px, 8px);
  }

  to {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}

.widget-slide .leftbox{
    position: relative;
}
.widget-slide .leftbox .medi-anim_one {
  animation: movedelement 5s linear infinite;
  position: absolute;
  LEFT: 0;
  top: -45px;
} 
.widget-slide .leftbox  .medi-anim_three {
  animation: movedelement3 5s linear infinite;
   position: absolute;
  right: 0;
  top: -45px;
}
.widget-slide .leftbox .innerbox{}
.widget-slide .leftbox .innerbox span.taghead{
    color: #fff;
    padding-left: 18px;
    border-left: 3px solid #5e5eee;
}
.widget-slide .leftbox .innerbox h3{
    margin-top: 24px;
    font-size: 56px;
    color: #fff;
}
.widget-slide .leftbox .innerbox p{
    font-size: 15px;
    color: #9497dc;
    margin-bottom: 24px;
}
.widget-slide .leftbox .innerbox a.bookbtn{
    display: inline-block;
    background: #5e5eee;
    display: inline-block;
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding: 12px 20px;
    width: max-content;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 7px;
}
.widget-slide .leftbox .innerbox a.callbtn{
    background: #ffffff;
    display: inline-block;
    border-radius: 50px;
    color: #000000;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding: 12px 20px;
    /* width: max-content; */
    text-transform: uppercase;
    letter-spacing: 1px;
}
.widget-slide .leftbox .innerbox a.callbtn svg{
    width: 18px;
}
.widget-slide .leftbox .innerbox a.callbtn svg path{}
.widget-slide .leftbox .innerbox ul{
    padding: 0;
    list-style: none;
    display: flex;
    gap: 15px;
    margin-top: 30px;
}
.widget-slide .leftbox .innerbox ul li{
    border-left: 1px solid #9497dc40;
    padding-left: 20px;
}
.widget-slide .leftbox .innerbox ul li span.head{
    font-size: 60px;
    display: block;
    font-weight: 700;
    line-height: normal;
    color: #fff;
}
.widget-slide .leftbox .innerbox ul li span.subhead{
    color: #9497dc;
}
.slidebox {
    position: relative;
    width: 100%;
    overflow: hidden;
     
}

.slidebox ul {
    display: flex;
    padding: 0;
    margin: 0;
    transition: transform 0.6s ease-in-out;
}

.slidebox li {
    list-style: none;
    min-width: 100%;
    position: relative;
}

.slidebox img {
    width: 100%;
    
}

/* buttons */
.slidebox button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 10;
}

.slidebox button:first-of-type {
    left: 10px;
}

.slidebox button:last-of-type {
    right: 10px;
}

.widget-book-contact{
    position: relative;
}
.widget-book-contact .innerbox{
    padding: 4%;
    background: #fff;
    margin-top: -23px;
    border-radius: 20px;
    box-shadow: 0px 4px 40px -10px rgba(0, 1.9999999999999982, 3, 0.1);
}
.widget-book-contact .innerbox h3{
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 20px;
}
.widget-book-contact .innerbox ul{
    padding: 0;
    list-style: none;
    display: flex;
    gap: 25px;
}
.widget-book-contact .innerbox ul li{
    display: flex;
    gap: 10px;
    padding: 12px;
    border: 1px solid #eee;
    width: 33.33%;
    border-radius: 6px;
    justify-content: space-between;
    align-items: center;
}
.widget-book-contact .innerbox ul li .contentbox{
    display: block;
}
.widget-book-contact .innerbox ul li .contentbox .texthead{
    display: block;
    font-size: 15px;
    color: #7f7f7f;
}
.widget-book-contact .innerbox ul li .contentbox .infohead{
    display: block;
    font-weight: 700;
}
.widget-book-contact .innerbox ul li .iconbox{}
.widget-book-contact .innerbox ul li .iconbox span{
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #E5E5F0;
    border-radius: 21px;
    padding: 7px 8px;
    text-align: CENTER;
}
.widget-book-contact .innerbox ul li .iconbox span svg{
    width: 19px;
}

.widget-book-contact .innerbox ul li .iconbox span svg path{}
.widget-book-contact .innerbox ul li:last-child{border: none; padding: 0;}
.widget-book-contact .innerbox ul li a{
    background-color: #2AC28E;
    font-family: "Inter", Sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 20px;
    fill: #FFFFFF;
    color: #FFFFFF;
    border-radius: 10px 10px 10px 10px;
    padding: 30px 65px 30px 65px;
    width: 100%;
    text-align: CENTER;
    }


.widget-about{
    padding-top: 5%;
    padding-bottom: 5%;
}
.widget-about .leftbox{
    padding-top: 5%;
}
.widget-about .leftbox .headtag{
    display: block;
    position: relative;
    padding-left: 18px;
    margin-bottom: 25px;
}
.widget-about .leftbox .headtag:before{content: "";position: absolute;width: 10px;height: 10px;background: #5e5eee;left: 0;top: 8px;border-radius: 10px;}
.widget-about .leftbox h3{
    font-size: 35px;
    font-weight: 600;
}
.widget-about .leftbox p{
    font-size: 15px;
    color: #828282;
    margin-bottom: 24px;
}
.widget-about .leftbox ul{
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    list-style: disc;
    padding-left: 15px;
    }
.widget-about .leftbox ul li{
    width: 50%; /* 2 items per row */
    /* list-style: none; */
    font-weight: 700;
    padding: 3px 0;
    }
.widget-about .leftbox a{
    display: inline-block;
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding: 20px 25px;
    width: max-content;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 7px;
    background: #5e5eee;
}

.widget-about .rightbox{
    position: relative;
}
.widget-about .rightbox img{
    width: 100%;
}

.waves-play-button {
  position: absolute;
  z-index: 10;
  bottom: 49px;
  left: 100px;
}
.waves-play-button span {
  position: relative;
  z-index: 3;
  font-size: 32px;
  color: #5e5eee;
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.waves-play-button::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 70px;
  height: 70px;
  background: #ffffff;
  border-radius: 50%;
  -webkit-animation: pulse-border 1500ms ease-out infinite;
  animation: pulse-border 1500ms ease-out infinite;
}
.waves-play-button::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 70px;
  height: 70px;
  background: #ffffff;
  border-radius: 50%;
  transition: all 200ms;
}
@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}


.widget-services{
    padding-bottom: 5%;
}
.widget-services .head{
    padding-bottom: 21px;
}
.widget-services .head .headtag{}
.widget-services .head .headtag{
    display: block;
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;
    }
.widget-services .head .headtag::before{content: "";position: absolute;width: 10px;height: 10px;background: #5e5eee;left: 0;top: 8px;border-radius: 10px;}
.widget-services .head  h3{    font-size: 35px;
    font-weight: 600;}

.widget-services .servicelist{
    padding-bottom: 20px;
}
.widget-services .servicelist ul{
    display: flex;
    padding: 0;
    list-style: none;
    gap: 25px;
}
.widget-services .servicelist ul li{
    width: 25%;
}
.widget-services .servicelist ul li a{
    display: block;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0px 4px 40px -10px rgba(0, 2, 3, 0.1);
    padding: 20px;
}
.widget-services .servicelist ul li a .iconbox{
    display: flex;
    gap: 10px;
    align-items: center;
}
.widget-services .servicelist ul li a .iconbox span.innericon{
    background: #000;
    width: 50px;
    height: 50px;
    border-radius: 30px;
    background: #0d6efd;
    box-shadow: 0px 4px 40px -10px #0d6efd;
    text-align: CENTER;
    padding-top: 10px;
}
.widget-services .servicelist ul li a .iconbox span.innericon svg{
}
.widget-services .servicelist ul li a .iconbox span.head{
    display: block;
    font-size: 18px;
    color: #000;
    font-weight: 600;
    padding: 0;
}
.widget-services .servicelist ul li a .contentbox{
    margin-top: 15px;
}
.widget-services .servicelist ul li a .contentbox p{
    color: #656378;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 160.023%;
    margin-bottom: 8px;
}
.widget-services .servicelist ul li a .contentbox span{
    font-size: 14px;
    font-weight: 500;
    color: #000;
}

.widget-services .viewall{text-align: center;}
.widget-services .viewall a{display: inline-block;
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding: 20px 25px;
    width: max-content;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 7px;
    background: #5e5eee;}


    .widget-annoucement{
    padding-bottom: 30px;
    padding-top: 5%;
}
    .widget-annoucement .head{}
    .widget-annoucement .head h3{
    position: relative;
    padding-left: 20px;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 25px;
}
    .widget-annoucement .head h3::before{content: "";position: absolute;content: "";position: absolute;width: 10px;height: 10px;background: #5e5eee;left: 0;top: 8px;border-radius: 10px;}
    .widget-annoucement .tablist{}
    .widget-annoucement .tablist ul{
    padding: 0;
    list-style: none;
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}
    .widget-annoucement .tablist ul li{}
  .widget-annoucement .tablist ul li a{
    display: block;
    padding: 8px 15px;
    background: #f8f8f8;
    border-radius: 4px;
    font-size: 14px;
    color: #000;
    border: 1px solid #eee;
}
    .widget-annoucement .tablist ul li a.active{
    background: #5d5deb;
    color: #fff;
    background: #5E5EEE;
    box-shadow: 0px 4px 40px -10px #5E5EEE;
    border: 1px solid #5E5EEE;
}


   .widget-annoucement .tabcontent{}
   .widget-annoucement .tabcontent ul{
    padding: 0;
    list-style: none;
}
   .widget-annoucement .tabcontent ul li{
    display: block;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0px 4px 40px -10px rgba(0, 2, 3, 0.1);
    padding: 25px;
    margin-bottom: 15px;
}
   .widget-annoucement .tabcontent ul li a{
    display: flex;
    gap: 15px;
}
   .widget-annoucement .tabcontent ul li a .datebox{
    padding-right: 15px;
    border-right: 1px solid  #eee;
}
   .widget-annoucement .tabcontent ul li a .datebox .dttag{
    display: block;
    font-size: 36px;
    text-align: CENTER;
    font-weight: 600;
    line-height: normal;
    color: #c8c8c8;
}
   .widget-annoucement .tabcontent ul li a .datebox .monthtag{
    line-height: normal;
    display: block;
    color: #9b9b9b;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
}
   .widget-annoucement .tabcontent ul li a .contentbox{}
   .widget-annoucement .tabcontent ul li a .contentbox .newstag{
    display: inline-block;
    font-size: 14px;
    background: #f5f5f5;
    padding: 5px 10px;
    border-radius: 4px;
    color: #3b3b3b;
    font-weight: 600;
    margin-bottom: 3px;
}
   .widget-annoucement .tabcontent ul li a .contentbox .newstag.successtag{
    background: #4caf5029;
    color: #4CAF50;
}
   .widget-annoucement .tabcontent ul li a .contentbox .newstag.pendingtag{
    background: #ffc10726;
    color: #ca9801;
}
   .widget-annoucement .tabcontent ul li a .contentbox .newstag.warningtag{
    background: #f4433626;
    color: #F44336;
}
   .widget-annoucement .tabcontent ul li a .contentbox h3{
    font-size: 16px;
    color: #000;
    margin-top: 4px;
    margin-bottom: 3px;
}
   .widget-annoucement .tabcontent ul li a .contentbox .lastupdate{
    display: inline-block;
    font-size: 14px;
    font-style: italic;
    color: #a1a1a1;
}


.widget-testimonial .testimonial-wrapper{
    overflow:hidden;
    width:100%;
    margin-top: 20px;
}

.widget-testimonial  .testimonialslide{
    display:flex;
    padding:0;
    margin:0;
    transition:transform 0.6s ease-in-out;
}

.widget-testimonial  .testimonialslide li{
    min-width:100%;
    list-style:none;
    box-sizing:border-box;
    padding:30px;
    background: #faf8f8;
    box-shadow: 0px 4px 40px -10px rgba(0, 2, 3, 0.1);
    border-radius: 15px;
}
.widget-testimonial  .testimonialslide li p{
    color: #656378;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 160.023%;
    margin-bottom: 8px;
}
.widget-testimonial  .userbox{
    display:flex;
    align-items:center;
    gap:15px;
}

.widget-testimonial  .icon img{
    width:60px;
    height:60px;
    border-radius:50%;
}

.widget-testimonial  .buttonbox{
    margin-top:20px;
    display:flex;
    gap:10px;
    position: relative;
}

.widget-testimonial  .buttonbox button{
    cursor:pointer;
    padding:10px 15px;
}
.widget-testimonial  .testimonialslide li .ratebox{
    margin-bottom: 10px;
}
.widget-testimonial  .testimonialslide li .ratebox i{
    color: #FFC107;
}
.widget-testimonial  .userbox .icon{}
.widget-testimonial  .userbox .icon img{}
.widget-testimonial  .userbox .textbox .namehead{
    display: block;
    font-weight: 700;
}
.widget-testimonial  .userbox .textbox .namesubhead{}
.widget-testimonial {
    padding-bottom: 5%;
}
.widget-testimonial .head{
    position: relative;
    padding-bottom: 30px;
}
.widget-testimonial .head .headtag{
    display: block;
    position: relative;
    padding-left: 18px;
    margin-bottom: 5px;
}
.widget-testimonial .head .headtag::before{content:"";position:relative;content: "";position: absolute;width: 10px;height: 10px;background: #5e5eee;left: 0;top: 8px;border-radius: 10px;}
.widget-testimonial .head h3{}
.widget-testimonial .head .iconbox{
    position: absolute;
    right: 10px;
    top: 0px;
}
.widget-testimonial .head .iconbox img{}
.widget-testimonial .leftbox{}
.widget-testimonial .leftbox img{width: 82%;}
.widget-testimonial .buttonbox button{
    border: none;
    border-radius: 5px;
    background: #5e5eee1c;
    color: #5e5eee;
    font-weight: 900;
}

.widget-blogs{
    padding-bottom: 4%;
}
.widget-blogs .head{
    margin-bottom: 25px;
}
.widget-blogs .head .headtag{
    display: block;
    position: relative;
    padding-left: 18px;
    margin-bottom: 5px;
}
.widget-blogs .head .headtag:before{content: "";position: absolute;width: 10px;height: 10px;background: #5e5eee;left: 0;top: 8px;border-radius: 10px;}
.widget-blogs .head h3{}
.widget-blogs .bloggrid{}
.widget-blogs .bloggrid ul{
    padding: 0;
    list-style: none;
    gap: 20px;
    display: flex;
}
.widget-blogs .bloggrid ul li{
    width: 33.33%;
}
.widget-blogs .bloggrid ul li a{}
.widget-blogs .bloggrid ul li a .innerbox{
    padding: 20px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0px 4px 40px -10px rgba(0, 2, 3, 0.1);
    padding: 25px;
}
.widget-blogs .bloggrid ul li a .innerbox figure{}
.widget-blogs .bloggrid ul li a .innerbox figure img{
    width: 100%;
}
.widget-blogs .bloggrid ul li a .innerbox .lastupdate{
    display: block;
    padding: 4px 0;
    color: #9e9e9e;
}
.widget-blogs .bloggrid ul li a .innerbox h3{
    display: block;
    font-size: 18px;
    color: #000;
    font-weight: 600;
    padding: 0;
}
.widget-blogs .bloggrid ul li a .innerbox p{
    color: #656378;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 160.023%;
    margin-bottom: 8px;
}
.widget-blogs .bloggrid ul li a .innerbox span{
    font-weight: 500;
    color: #000;
}


footer{
    background-image: url('../image/footerbg.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 5% 0;
    padding-bottom: 15px;
    }

footer .footgrid{}    
footer .footgrid img{width: 150px;margin-bottom: 15px;}    
footer .footgrid p{
    color: #9a98ab;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 160.023%;
    margin-bottom: 8px;
}

footer .footgrid h3{
    font-size: 18px;
    color: #fff;
    margin-bottom: 20px;
}
footer .footgrid ul{
    padding: 0;
    list-style: none;
}
footer .footgrid ul li{}
footer .footgrid ul li a{
    display: block;
    padding: 5px 0;
    font-weight: 300;
    color: #a9a9a9;
}
footer .footgrid span.footlbl{
    display: block;
    padding: 3px 0;
    color: #a9a9a9;
}
footer .footgrid > a{
    display: inline-block;
    margin-right: 4px;
    padding: 10px;
    background: #243554;
    border-radius: 30px;
    width: 45px;
    height: 45px;
    text-align: CENTER;
    margin-top: 10px;
}
footer .footgrid > a > svg{
    width: 15px;
    height: 15px;
    fill: #fff;
}

footer .copyright{
    border-top: 1px solid #eeeeee14;
    padding-top: 15px;
    text-align: CENTER;
}
footer .copyright p{
    color: #9a98ab;
    margin: 0;
    font-size: 15px;
}
footer .copyright p a{
    font-weight: 500;
    color: #fff;
}

.widget-breadcrumb{
    background: #ecf1f8;
    padding: 3% 0;
}
.widget-breadcrumb h3{
    font-size: 3em;
    font-weight: 700;
}
.widget-breadcrumb ul{
    padding: 0;
    list-style: none;
    display: flex;
    gap: 15px;
}
.widget-breadcrumb ul li{}
.widget-breadcrumb ul li a{position: relative;color: #000;}
.widget-breadcrumb ul li a:before{content:"/";position: absolute;right: -10px;}

.widget-service{padding: 50px 0;}



.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    z-index: 999;
    text-decoration: none;
}

.whatsapp-float img {
    width: 28px;
}

/* Tooltip */
.whatsapp-float .tooltip {
    position: absolute;
    right: 65px;
    background: #333;
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 1;
    visibility: visible;
    transition: 0.3s ease;
}

/* Tooltip arrow */
.whatsapp-float .tooltip::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent #333;
}

/* Hover effect */
.whatsapp-float:hover .tooltip {
    opacity: 0;
    visibility: hidden;
}

.widget-service{}
.widget-service .figurebox{margin-bottom: 15px;}
.widget-service .figurebox figure{width: 100%;
    height: 300px; 
    overflow: hidden;
    margin: 0; margin-bottom: 15px;}
.widget-service .figurebox figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
    }
.widget-service .contentbox{}
.widget-service .contentbox h3{
    font-size: 18px;
    font-weight: 700;
}
.widget-service .contentbox p{}
.widget-service h3{
   
}


.widget-service .otherservices{}
.widget-service .otherservices .innerbox{
    background: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
}
.widget-service .otherservices .innerbox > h3{
    font-size: 20px;
    text-transform: uppercase;
    padding-left: 15px;
    border-left: 4px solid #5e5eee;
    font-size: 18px;
    color: #212529;
    font-weight: 700;
    margin-bottom: 30px;
}
.widget-service .otherservices .innerbox ul{
    padding: 0;
    list-style: none;
    margin: 0;
}
.widget-service .otherservices .innerbox ul li{}
.widget-service .otherservices .innerbox ul li a{
    display: flex;
    gap: 10px;
}
.widget-service .otherservices .innerbox ul li a figure{
    width: 25%;
}
.widget-service .otherservices .innerbox ul li a figure img{
    width: 100%;
    border-radius: 4px;
}
.widget-service .otherservices .innerbox ul li a .con-box{
    width: 70%;
}
.widget-service .otherservices .innerbox ul li a .con-box h3{
    font-size: 20px;
    color: #000;
    margin: 0;
}
.widget-service .otherservices .innerbox ul li a .con-box p{
    color: #656378;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 160.023%;
    margin-bottom: 8px;
}



.widget-department{
    padding: 5% 0;
}
.widget-department h3{
    text-align: CENTER;
    font-weight: 700;
    font-size: 40px;
    color: #0B0B38;
}
.widget-department p{
    text-align: CENTER;
    padding: 0 25%;
    font-size: 15px;
    color: #828282;
}
.widget-department ul{
    padding: 0;
    list-style: none;
    display: flex;
    gap: 20px;
}
.widget-department ul li{
    width: 25%;
}
.widget-department ul li a{
    background: #fff;
    box-shadow: 0px 4px 40px -10px rgba(0, 2, 3, 0.1);
    display: inline-block;
    border: 1px solid #eee;
    border-radius: 20px;
}
.widget-department ul li a figure{
    margin: 0;
    text-align: center;
}
.widget-department ul li a figure img{
    width: 100%;
}
.widget-department ul li a span{
    display: block;
    text-align: CENTER;
    /* padding-bottom: 15px; */
    font-size: 18px;
    display: block;
    margin-bottom: 15px;
    color: #141f35;
    font-weight: 600;
}


.widget-gallery-grid{padding: 30px 0;}

.gallery-category{
display:block;
text-decoration:none;
color:#000;
border:1px solid #eee;
padding:10px;
}

.gallery-category img{
width:100%;
height:250px;
object-fit:cover;
}

.gallery-category h3{
text-align:center;
margin-top:10px;
font-size:22px;
}


.gallery-box img{
width:100%;
height:250px;
object-fit:cover;
cursor:pointer;
} 

.gallery-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    text-align: center;
}

.gallery-modal img {
    max-width: 80%;
    max-height: 80vh;
    margin-top: 40px;
    border-radius: 10px;
}

.gallery-modal .close {
    position: absolute;
    top: 20px;
    right: 35px;
    font-size: 35px;
    color: #fff;
    cursor: pointer;
}

.gallery-modal .prev, .gallery-modal .next {
    position: absolute;
    top: 50%;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    padding: 10px;
    user-select: none;
}

.gallery-modal .prev { left: 20px; }
.gallery-modal .next { right: 20px; }

.gallery-modal .prev:hover, .gallery-modal .next:hover, .gallery-modal .close:hover {
    color: #ccc;
}




.widget-contact{
    padding: 5% 0;
}
.widget-contact .leftbox{}
.widget-contact .leftbox span{
    text-transform: uppercase;
    color: #666666;
    font-weight: 500;
    display: block;
}
.widget-contact .leftbox h3{
    /* font-family: "Marcellus", serif; */
    text-align: left;
    font-size: 32px;
}
.widget-contact .leftbox p{
    font-size: 18px;
    color: #333632;
}

.widget-contact .leftbox span b{}
.widget-contact .leftbox iframe {
    width: 100%;
    margin-top: 15px;
    height: 300px;
}
.widget-contact .rightbox{
    padding: 0 6%;
}
.widget-contact .rightbox .innerbox{
    padding: 8%;
    border: 1px solid #000;
}
.widget-contact .rightbox span{
    display: block;
    text-align: CENTER;
    font-weight: 400;
    font-size: 16px;
    color: #7c7c7c;
}
.widget-contact .rightbox h3{
    /* font-family: "Marcellus", serif; */
    text-align: center;
    font-size: 30px;
    margin-top: 20px;
    margin-bottom: 25px;
}
.widget-contact .rightbox form{}
.widget-contact .rightbox form label{
    display: block;
    width: 100%;
}
.widget-contact .rightbox form input{
    width: 100%;
    padding: 10px;
    border: 1px solid #000;
    margin-bottom: 10px;
}
.widget-contact .rightbox form textarea{
    width: 100%;
    padding: 10px;
    border: 1px solid #000;
}
.widget-contact .rightbox form button{
    display: block;
    padding: 10px 20px;
    border: 1px solid #060606;
    color: #000000;
    /* font-family: "Marcellus", serif; */
    background: none;
    width: 100%;
    margin-top: 7px;
}

.widget-blog-view{
    padding: 3% 0;
}
.widget-blog-view .leftbox{}
.widget-blog-view .leftbox .head{
    padding-bottom: 20px;
}
.widget-blog-view .leftbox .head a{
    display: inline-block;
    font-weight: 700;
    margin-bottom: 7px;
}
.widget-blog-view .leftbox .head h3{}
.widget-blog-view .leftbox .head .datebox{
    font-size: 14px;
    color: #848484;
}
.widget-blog-view .leftbox .head .datebox i{}
.widget-blog-view .leftbox figure{
    width: 100%;
    /* height: 340px; */
    /* overflow: hidden; */
    margin: 0;
    margin-bottom: 15px;
    border-radius: 21px;
}
.widget-blog-view .leftbox figure img{width: 100%;width: 100%;object-fit: fill;display: block;}
.widget-blog-view .leftbox .blogcontent{}
.widget-blog-view .leftbox .blogcontent blockquote{
    border-left: 5px solid #5e5eee;
    padding: 40px;
    border-radius: 16px;
    background: #f4f4ff;
}
.widget-blog-view .leftbox .blogcontent p{}






.widget-blog-view .otherblogs{}
.widget-blog-view .otherblogs .innerbox{
    background: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
}
.widget-blog-view .otherblogs .innerbox > h3{
    font-size: 20px;
    text-transform: uppercase;
    padding-left: 15px;
    border-left: 4px solid #5e5eee;
    font-size: 18px;
    color: #212529;
    font-weight: 700;
    margin-bottom: 30px;
}
.widget-blog-view .otherblogs .innerbox ul{
    padding: 0;
    list-style: none;
    margin: 0;
}
.widget-blog-view .otherblogs .innerbox ul li{}
.widget-blog-view .otherblogs .innerbox ul li a{
    display: flex;
    gap: 10px;
}
.widget-blog-view .otherblogs .innerbox ul li a figure{
    width: 25%;
}
.widget-blog-view .otherblogs .innerbox ul li a figure img{
    width: 100%;
    border-radius: 4px;
}
.widget-blog-view .otherblogs .innerbox ul li a .con-box{
    width: 70%;
}
.widget-blog-view .otherblogs .innerbox ul li a .con-box h3{
    font-size: 18px;
    color: #000;
    margin: 0;
}
.widget-blog-view .otherblogs .innerbox ul li a .con-box p{
    color: #656378;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 160.023%;
    margin-bottom: 8px;
}

.widget-academics{padding: 5% 0;}

.tpalist{}
.tpalist ul{}
.tpalist ul li{}
.tpalist ul li img{
    max-width:100%;
    border-radius: 50%;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #dfdfdf;
    box-shadow: #ececec 3px 3px 3px 0;
}


.about-section{
    background: #ffffff;
}

.section-tag{
    display:inline-block;
    padding:8px 18px;
    background:#eaf4ff;
    color:#0d6efd;
    border-radius:50px;
    font-weight:600;
    font-size:14px;
}

.about-image{
    overflow:hidden;
    border-radius:25px;
}

.about-image img{
    transition:.5s;
}

.about-image:hover img{
    transform:scale(1.05);
}

.counter-box{
    background:#fff;
    border-radius:15px;
    padding:22px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
    height:100%;
}

.counter-box:hover{
    transform:translateY(-8px);
}

.counter-box h3{
    color:#0d6efd;
    font-size:30px;
}

.counter-box p{
    margin:0;
    color:#666;
    font-weight:500;
}

.service-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
}

.service-card:hover{
    transform:translateY(-10px);
}

.service-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.service-card h5{
    font-weight:700;
    margin-top:20px;
}

.service-card p{
    color:#666;
    padding:0 20px 25px;
}

.about-section .btn{
    padding:12px 35px;
}

@media(max-width:991px){

.about-section h2{
    font-size:2rem;
}

.service-card img{
    height:200px;
}

}

.vm-card{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.35s;
    border-top:5px solid #0d6efd;
}

.vm-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(13,110,253,.15);
}

.vm-card:last-child{
    border-top-color:#198754;
}

.vm-icon{
    width:70px;
    height:70px;
    background:#0d6efd;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin-bottom:25px;
}

.vm-icon.bg-success{
    background:#198754 !important;
}

@media(max-width:768px){
    .vm-card{
        padding:30px;
    }
}

.feature-item{
    background:#fff;
    padding:14px 18px;
    border-radius:12px;
    box-shadow:0 8px 20px rgba(0,0,0,.06);
    font-weight:600;
    transition:.3s;
}

.feature-item:hover{
    transform:translateX(8px);
    box-shadow:0 12px 25px rgba(13,110,253,.15);
}

.feature-item i{
    color:#0d6efd;
    margin-right:10px;
}

.mini-card{
    background:#ffffff;
    padding:25px;
    text-align:center;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.mini-card:hover{
    transform:translateY(-6px);
}

.mini-card h4{
    color:#0d6efd;
    font-weight:700;
    margin-bottom:5px;
}

.mini-card p{
    margin:0;
    color:#666;
}


.opd-services{
    background:linear-gradient(180deg,#f8fbff,#ffffff);
}

.opd-card{
    background:#fff;
    border-radius:20px;
    padding:35px 25px;
    text-align:center;
    height:100%;
    position:relative;
    overflow:hidden;
    transition:.35s;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.opd-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:#0d6efd;
    transform:scaleX(0);
    transition:.35s;
}

.opd-card:hover::before{
    transform:scaleX(1);
}

.opd-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 45px rgba(13,110,253,.15);
}

.icon-box{
    width:85px;
    height:85px;
    margin:auto;
    margin-bottom:25px;
    border-radius:50%;
    background:linear-gradient(135deg,#0d6efd,#4aa3ff);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:34px;
    transition:.4s;
}

.opd-card:hover .icon-box{
    transform:rotateY(180deg);
}

.opd-card h5{
    font-weight:700;
    margin-bottom:15px;
}

.opd-card p{
    color:#6c757d;
    margin-bottom:0;
    line-height:1.7;
}

.section-tag{
    display:inline-block;
    padding:8px 18px;
    border-radius:50px;
    background:#eaf3ff;
    color:#0d6efd;
    font-weight:600;
    letter-spacing:.5px;
}


.radiology-section{
    background:#f8fbff;
}

.radiology-card{
    background:#fff;
    padding:35px 25px;
    border-radius:20px;
    text-align:center;
    height:100%;
    transition:.35s;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    position:relative;
    overflow:hidden;
}

.radiology-card::before{
    content:'';
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:5px;
    background:#0d6efd;
    transform:scaleX(0);
    transition:.35s;
}

.radiology-card:hover::before{
    transform:scaleX(1);
}

.radiology-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(13,110,253,.15);
}

.radiology-card .icon-box{
    width:85px;
    height:85px;
    margin:0 auto 25px;
    border-radius:50%;
    background:linear-gradient(135deg,#0d6efd,#59b2ff);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:34px;
    transition:.4s;
}

.radiology-card:hover .icon-box{
    transform:rotate(360deg) scale(1.08);
}

.radiology-card h5{
    font-weight:700;
    margin-bottom:15px;
}

.radiology-card p{
    color:#6c757d;
    line-height:1.7;
    margin-bottom:0;
}

.neuro-diagnostic{
    background:#fff;
}

.diagnostic-card{
    background:#fff;
    border-radius:20px;
    padding:40px 30px;
    text-align:center;
    height:100%;
    transition:.35s;
    position:relative;
    overflow:hidden;
    border:1px solid #eef2f7;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
}

.diagnostic-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:5px;
    background:#0d6efd;
    transform:scaleX(0);
    transition:.35s;
}

.diagnostic-card:hover::before{
    transform:scaleX(1);
}

.diagnostic-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(13,110,253,.15);
}

.diagnostic-card .icon-box{
    width:90px;
    height:90px;
    margin:0 auto 25px;
    border-radius:50%;
    background:linear-gradient(135deg,#0d6efd,#5ab3ff);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:36px;
    transition:.4s;
}

.diagnostic-card:hover .icon-box{
    transform:rotateY(180deg);
}

.diagnostic-card h5{
    font-weight:700;
    margin-bottom:15px;
}

.diagnostic-card p{
    color:#6c757d;
    line-height:1.8;
    margin-bottom:0;
}


.laboratory-section{
    background:linear-gradient(180deg,#f8fbff,#ffffff);
}

.lab-card{
    background:#fff;
    border-radius:20px;
    padding:35px 25px;
    text-align:center;
    height:100%;
    border:1px solid #edf2f7;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.35s;
    position:relative;
    overflow:hidden;
}

.lab-card::after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:4px;
    background:#0d6efd;
    transform:scaleX(0);
    transition:.35s;
}

.lab-card:hover::after{
    transform:scaleX(1);
}

.lab-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(13,110,253,.15);
}

.lab-icon{
    width:90px;
    height:90px;
    margin:0 auto 25px;
    border-radius:50%;
    background:linear-gradient(135deg,#0d6efd,#5ab3ff);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:36px;
    transition:.4s;
}

.lab-card:hover .lab-icon{
    transform:scale(1.1) rotate(12deg);
}

.lab-card h5{
    font-weight:700;
    margin-bottom:15px;
}

.lab-card p{
    color:#6c757d;
    line-height:1.7;
    margin-bottom:0;
}

.hospital-facilities{
    background:#f8fbff;
}

.facility-card{
    background:#fff;
    border-radius:20px;
    padding:40px 25px;
    text-align:center;
    height:100%;
    transition:.35s;
    position:relative;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
}

.facility-card::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(135deg,#0d6efd,#39b8ff);
    opacity:0;
    transition:.35s;
    z-index:0;
}

.facility-card:hover::before{
    opacity:1;
}

.facility-card>*{
    position:relative;
    z-index:2;
}

.facility-icon{
    width:90px;
    height:90px;
    margin:0 auto 25px;
    border-radius:50%;
    background:#eef5ff;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#0d6efd;
    font-size:38px;
    transition:.35s;
}

.facility-card:hover .facility-icon{
    background:#fff;
    color:#0d6efd;
    transform:rotateY(180deg);
}

.facility-card h5{
    font-weight:700;
    margin-bottom:15px;
    transition:.35s;
}

.facility-card p{
    color:#6c757d;
    line-height:1.8;
    margin-bottom:0;
    transition:.35s;
}

.facility-card:hover h5,
.facility-card:hover p{
    color:#fff;
}

@media(max-width:768px){

.facility-card{
    padding:35px 20px;
}

.facility-icon{
    width:80px;
    height:80px;
    font-size:32px;
}

}


.drnb-hero{
    background:linear-gradient(135deg,#edf6ff,#ffffff);
}

.hero-img{
    animation:float 5s ease-in-out infinite;
}

@keyframes float{

0%{transform:translateY(0);}

50%{transform:translateY(-15px);}

100%{transform:translateY(0);}

}

.info-card{

background:#fff;

padding:40px;

text-align:center;

border-radius:20px;

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

transition:.4s;

}

.info-card:hover{

transform:translateY(-10px);

}

.info-card i{

font-size:50px;

color:#0d6efd;

margin-bottom:20px;

}

.info-card h3{
    font-size: 15px;
}
.info-card h5{
    font-size: 16px;
    font-weight: 800;
}


.training-section{
    background:#f8fbff;
}

.training-card{
    background:#fff;
    border-radius:18px;
    padding:35px 25px;
    text-align:center;
    height:100%;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.35s;
}

.training-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(13,110,253,.15);
}

.training-icon{
    width:85px;
    height:85px;
    margin:auto;
    margin-bottom:25px;
    border-radius:50%;
    background:linear-gradient(135deg,#0d6efd,#56b4ff);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    transition:.4s;
}

.training-card:hover .training-icon{
    transform:rotateY(180deg);
}

.list-card{
    background:#fff;
    border-left:5px solid #0d6efd;
    padding:18px 22px;
    border-radius:12px;
    font-weight:600;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
    transition:.3s;
}

.list-card:hover{
    transform:translateX(8px);
    background:#0d6efd;
    color:#fff;
}

.list-card i{
    color:#0d6efd;
    margin-right:12px;
    font-size:20px;
}

.list-card:hover i{
    color:#fff;
}

.section-tag{
    display:inline-block;
    padding:8px 18px;
    background:#eaf4ff;
    color:#0d6efd;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    letter-spacing:.5px;
}

.faculty-section{
    background:#f8fbff;
}

.faculty-card{
    background:#fff;
    border-radius:20px;
    padding:30px;
    display:flex;
    gap:25px;
    align-items:flex-start;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.35s;
    height:100%;
}

.faculty-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(13,110,253,.15);
}

.faculty-photo{
    width:100px;
    height:100px;
    min-width:100px;
    border-radius:50%;
    background:linear-gradient(135deg,#0d6efd,#58b5ff);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:60px;
}

.faculty-badge{
    display:inline-block;
    background:#eaf4ff;
    color:#0d6efd;
    padding:6px 14px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    margin-bottom:15px;
}

.qualification-list{
    list-style:none;
    padding:0;
    margin:0;
}

.qualification-list li{
    margin-bottom:12px;
    color:#555;
}

.qualification-list i{
    color:#0d6efd;
    margin-right:8px;
}

.commitment-section{
    background:#0d6efd;
}

.commitment-box{
    background:linear-gradient(135deg,#0d6efd,#0a58ca);
    padding:60px;
    border-radius:25px;
    overflow:hidden;
    position:relative;
}

.commitment-box::before{
    content:'';
    position:absolute;
    width:300px;
    height:300px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    top:-120px;
    right:-120px;
}

.commitment-icon{
    width:120px;
    height:120px;
    border-radius:50%;
    background:#fff;
    color:#0d6efd;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:55px;
    margin:auto;
    animation:floatIcon 3s infinite ease-in-out;
}

@keyframes floatIcon{

0%{
transform:translateY(0);
}

50%{
transform:translateY(-10px);
}

100%{
transform:translateY(0);
}

}

@media(max-width:768px){

.faculty-card{
    flex-direction:column;
    text-align:center;
}

.faculty-photo{
    margin:auto;
}

.commitment-box{
    padding:35px;
    text-align:center;
}

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

}


.fnb-hero{
    background:linear-gradient(135deg,#edf6ff,#ffffff);
}

.hero-image{
    animation:floatImage 5s ease-in-out infinite;
}

@keyframes floatImage{

0%{
transform:translateY(0);
}

50%{
transform:translateY(-15px);
}

100%{
transform:translateY(0);
}

}

.eligibility-card{

background:#fff;

padding:40px;

border-radius:20px;

text-align:center;

height:100%;

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

transition:.35s;

}

.eligibility-card:hover{

transform:translateY(-8px);

box-shadow:0 20px 45px rgba(13,110,253,.15);

}

.eligibility-icon{

width:90px;

height:90px;

margin:auto;

margin-bottom:25px;

border-radius:50%;

background:linear-gradient(135deg,#0d6efd,#55b5ff);

display:flex;

align-items:center;

justify-content:center;

color:#fff;

font-size:38px;

}

.eligibility-card ul{

list-style:none;

padding:0;

margin-top:20px;

}

.eligibility-card li{

padding:10px 0;

font-size:17px;

}

.seat-card{

background:linear-gradient(135deg,#0d6efd,#0b5ed7);

padding:50px;

border-radius:25px;

text-align:center;

color:#fff;

box-shadow:0 20px 40px rgba(13,110,253,.25);

}

.seat-number{

width:120px;

height:120px;

margin:auto;

margin-bottom:25px;

border-radius:50%;

background:#fff;

display:flex;

align-items:center;

justify-content:center;

font-size:50px;

font-weight:bold;

color:#0d6efd;

animation:pulseSeat 2s infinite;

}

@keyframes pulseSeat{

0%{
transform:scale(1);
}

50%{
transform:scale(1.08);
}

100%{
transform:scale(1);
}

}


.highlight-card{
    background:#fff;
    border-radius:18px;
    padding:35px;
    text-align:center;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.35s;
    height:100%;
}

.highlight-card:hover{
    transform:translateY(-8px);
}

.highlight-card i{
    font-size:42px;
    color:#0d6efd;
    margin-bottom:20px;
}

.curriculum-card{
    background:#fff;
    border-radius:20px;
    padding:40px;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    height:100%;
}

.curriculum-card h3{
    margin-bottom:25px;
    color:#0d6efd;
}

.curriculum-card ul{
    list-style:none;
    padding:0;
}

.curriculum-card li{
    padding:12px 0;
    border-bottom:1px solid #eee;
    position:relative;
    padding-left:30px;
}

.curriculum-card li:before{
    content:"✓";
    color:#0d6efd;
    position:absolute;
    left:0;
    font-weight:bold;
}
 

.stroke-content{
    max-width:900px;
    margin:60px auto;
    padding:0 20px;
    font-family:Arial, Helvetica, sans-serif;
    color:#444;
    line-height:1.9;
}

.content-block{
    margin-bottom:60px;
}

.content-block h2{
    font-size: 23px;
    color:#0b4d8a;
    margin-bottom: 12px;
    position:relative;
    padding-bottom:12px;
}

.content-block h2:after{
    content:"";
    width:70px;
    height:4px;
    background:#0d6efd;
    position:absolute;
    left:0;
    bottom:0;
    border-radius:5px;
}

.content-block h4{
    margin-top: 20px;
    margin-bottom:15px;
    font-size:22px;
    color:#222;
}

.content-block p{
    font-size:17px;
    margin-bottom: 0;
    text-align:justify;
}

.content-block ul{
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.content-block ul li{
    margin-bottom: 7px;
    font-size:17px;
}

.befast-list{
    list-style:none;
    padding:0;
}

.befast-list li{
    background:#f5f9ff;
    border-left:5px solid #0d6efd;
    padding:14px 18px;
    margin-bottom:15px;
    border-radius:8px;
}

.stroke-alert{
    margin-top:35px;
    background:#fff5f5;
    border-left:5px solid #dc3545;
    padding:20px;
    border-radius:8px;
    color:#444;
    font-size:17px;
}


.journey-section{
    background:#fff;
}

.title-line{
    width:130px;
    height:3px;
    background:#d6d6d6;
    position:relative;
}

.title-line:after{
    content:"";
    width:10px;
    height:10px;
    background:#577dbd;
    border-radius:50%;
    position:absolute;
    left:50%;
    top:-3px;
    transform:translateX(-50%);
}

.timeline{
    position:relative;
    padding-top:70px;
}

.timeline-line{
    position:absolute;
    left:0;
    right:0;
    top:80px;
    height:6px;
    border-radius:30px;
    background:linear-gradient(90deg,#0d6efd 0%,#ff6a00 35%,#ffc107 68%,#3ca23c 100%);
}

.timeline-item{
    position:relative;
    z-index:2;
}

.icon-circle{
    width:120px;
    height:120px;
    border-radius:50%;
    margin:auto;
    display:flex;
    justify-content:center;
    align-items:center;
    border:8px solid #fff;
    box-shadow:0 5px 20px rgba(0,0,0,.15);
    position:relative;
}

.icon-circle:after{
    content:"";
    position:absolute;
    bottom:-43px;
    left:50%;
    transform:translateX(-50%);
    width:4px;
    height:43px;
    background:inherit;
}

.year-box{
    margin:58px auto 20px;
    color:#fff;
    width:150px;
    font-size:34px;
    font-weight:700;
    border-radius:10px;
    padding:6px;
    box-shadow:0 8px 18px rgba(0,0,0,.15);
}

.timeline-item h3{
    font-size:32px;
    line-height:1.2;
}

.timeline-item p{
    font-size:18px;
    line-height:1.8;
    color:#333;
}

.mini-line{
    width:60px;
    height:3px;
    margin:20px auto;
}

.bg-warning-orange{
    background:#f26600;
}

.text-warning-orange{
    color:#f26600;
}

/* Responsive */

@media(max-width:991px){

    .timeline-line{
        display:none;
    }

    .icon-circle:after{
        display:none;
    }

    .year-box{
        margin-top:25px;
    }

    .timeline-item{
        padding:25px;
        border:1px solid #ececec;
        border-radius:15px;
        box-shadow:0 10px 25px rgba(0,0,0,.05);
        background:#fff;
    }

}

@media(max-width:768px){

    .display-3{
        font-size:2.4rem;
    }

    .timeline-item h3{
        font-size:24px;
    }

    .timeline-item p{
        font-size:16px;
    }

    .icon-circle{
        width:90px;
        height:90px;
    }

    .year-box{
        width:120px;
        font-size:26px;
    }

}


.journey-section{
    background:#fff;
}

.title-line{
    width:130px;
    height:3px;
    background:#d6d6d6;
    position:relative;
}

.title-line:after{
    content:"";
    width:10px;
    height:10px;
    background:#577dbd;
    border-radius:50%;
    position:absolute;
    left:50%;
    top:-3px;
    transform:translateX(-50%);
}

.timeline{
    position:relative;
    padding-top: 0px;
}

.timeline-line{
    position:absolute;
    left:0;
    right:0;
    top: 110px;
    height:6px;
    border-radius:30px;
    background:linear-gradient(90deg,#0d6efd 0%,#ff6a00 35%,#ffc107 68%,#3ca23c 100%);
}

.timeline-item{
    position:relative;
    z-index:2;
}

.icon-circle{
    width:120px;
    height:120px;
    border-radius:50%;
    margin:auto;
    display:flex;
    justify-content:center;
    align-items:center;
    border:8px solid #fff;
    box-shadow:0 5px 20px rgba(0,0,0,.15);
    position:relative;
}

.icon-circle:after{
    content:"";
    position:absolute;
    bottom:-43px;
    left:50%;
    transform:translateX(-50%);
    width:4px;
    height:43px;
    background:inherit;
}

.year-box{
    margin: 30px auto 20px;
    color:#fff;
    width: 132px;
    font-size: 24px;
    font-weight:700;
    border-radius:10px;
    padding:6px;
    box-shadow:0 8px 18px rgba(0,0,0,.15);
}

.timeline-item h3{
    font-size: 18px;
    line-height:1.2;
}

.timeline-item p{
    font-size: 16px;
    color:#333;
}

.mini-line{
    width:60px;
    height:3px;
    margin:20px auto;
}

.bg-warning-orange{
    background:#f26600;
}

.text-warning-orange{
    color:#f26600;
}

/* Responsive */

@media(max-width:991px){

    .timeline-line{
        display:none;
    }

    .icon-circle:after{
        display:none;
    }

    .year-box{
        margin-top:25px;
    }

    .timeline-item{
        padding:25px;
        border:1px solid #ececec;
        border-radius:15px;
        box-shadow:0 10px 25px rgba(0,0,0,.05);
        background:#fff;
    }

}

@media(max-width:768px){

    .display-3{
        font-size:2.4rem;
    }

    .timeline-item h3{
        font-size:24px;
    }

    .timeline-item p{
        font-size:16px;
    }

    .icon-circle{
        width:90px;
        height:90px;
    }

    .year-box{
        width:120px;
        font-size:26px;
    }

}


.doctor-profile-section{
    background:#f8fbff;
}

.doctor-image-box{
    position:relative;
    text-align:center;
}

.doctor-image{
    width:100%;
    border-radius:25px;
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.experience-badge{
    position:absolute;
    bottom:20px;
    right:-20px;
    background:#0d6efd;
    color:#fff;
    padding:20px;
    border-radius:18px;
    min-width:130px;
    text-align:center;
    box-shadow:0 15px 30px rgba(13,110,253,.35);
}

.experience-badge h3{
    margin:0;
    font-size:34px;
    font-weight:700;
}

.experience-badge span{
    font-size:14px;
}

.department-tag{
    display:inline-block;
    background:#e9f3ff;
    color:#0d6efd;
    padding:8px 18px;
    border-radius:30px;
    font-weight:600;
    font-size:14px;
}

.doctor-name{
    font-size: 24px;
    font-weight:700;
    color:#222;
}

.doctor-designation{
    color:#0d6efd;
    margin-bottom:35px;
    font-weight:600;
    font-size: 16px;
}

.qualification-box{
    display:flex;
    gap:25px;
    flex-wrap:wrap;
    margin-bottom:35px;
}

.qualification-item{
    flex:1;
    min-width:250px;
    display:flex;
    align-items:center;
    gap:18px;
    background:#fff;
    padding:22px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.qualification-item:hover{
    transform:translateY(-5px);
}

.qualification-item i{
    font-size:34px;
    color:#0d6efd;
}

.qualification-item strong{
    display:block;
    margin-bottom:6px;
    color:#222;
}

.qualification-item span{
    color:#666;
}

.about-box{
    background:#fff;
    padding:35px;
    border-radius:18px;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.about-box h4{
    margin-bottom:20px;
    color:#0d6efd;
    font-weight:700;
}

.about-box p{
    color:#555;
    line-height:1.9;
    margin-bottom:18px;
}

@media(max-width:991px){

.doctor-name{
    font-size:34px;
}

.experience-badge{
    right:10px;
}

}

@media(max-width:767px){

.qualification-box{
    flex-direction:column;
}

.experience-badge{
    position:relative;
    right:auto;
    bottom:auto;
    margin:20px auto 0;
}

.doctor-name{
    font-size:30px;
}

.about-box{
    padding:25px;
}

}


neurology-services{
    background:#f8fbff;
}

.department-tag{
    display:inline-block;
    background:#e9f2ff;
    color:#0d6efd;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    letter-spacing:.5px;
}

.section-title{
    font-size:40px;
    font-weight:700;
    color:#222;
}

.section-description{
    max-width:700px;
    margin:auto;
    color:#666;
    font-size:17px;
}

.service-card{background:#fff;border-radius:20px;padding:35px;height:100%;box-shadow:0 15px 35px rgba(0,0,0,.08);transition:.35s;border-top:4px solid transparent;text-align: left;}

.service-card:hover{

    transform:translateY(-8px);

    border-color:#0d6efd;

    box-shadow:0 20px 45px rgba(13,110,253,.18);

}

.service-icon{

    width:70px;

    height:70px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:28px;

    margin-bottom:25px;

}

.service-card h3{

    font-size:24px;

    font-weight:700;

    margin-bottom:20px;

    color:#222;

}

.service-card ul{

    list-style:none;

    padding:0;

    margin:0;

}

.service-card ul li{

    position:relative;

    padding-left:28px;

    margin-bottom:14px;

    color:#555;

    line-height:1.7;

}

.service-card ul li:before{

    content:"✔";

    position:absolute;

    left:0;

    color:#0d6efd;

    font-weight:bold;

}


.diagnostic-section{
    background:#fff;
}

.main-title{
    font-size: 24px;
    font-weight:800;
    text-transform:uppercase;
    color: #1d76fa;
    letter-spacing:2px;
    line-height:1.1;
}

.procedure-card{background: #f3f8ff;padding: 35px;border-radius:12px;border-left: 8px solid #2178fa;box-shadow:0 12px 30px rgba(0,0,0,.08);}

.procedure-title{color: #2178fa;font-size: 22px;font-weight:800;text-transform:uppercase;margin-bottom:30px;}

.procedure-list{

    list-style:none;

    padding:0;

    margin:0;

}

.procedure-list li{position:relative;padding-left:35px;margin-bottom: 12px;font-size: 18px;color:#555;line-height: normal;}

.procedure-list li:before{content:"•";position:absolute;left:10px;color: #2178fa;font-size:34px;line-height:20px;}

@media(max-width:991px){

.main-title{

font-size:42px;

}

.procedure-title{

font-size:32px;

}

.procedure-list li{

font-size:20px;

}

}

@media(max-width:576px){

.main-title{

font-size:32px;

}

.procedure-card{

padding:25px;

}

.procedure-title{

font-size:28px;

}

.procedure-list li{

font-size:18px;

padding-left:28px;

}

}


.career-section{
    background:#f6f9fc;
}

.career-badge{
    display:inline-block;
    background:#0d6efd;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-weight:600;
}

.career-card{
    background:#fff;
    border-radius:15px;
    padding:30px;
    text-align:center;
    transition:.35s;
    border:1px solid #eee;
}

.career-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.icon-box{
    width:75px;
    height:75px;
    background:#0d6efd;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin:auto;
    margin-bottom:20px;
}

.opening-box{
    background:#fff;
    padding:35px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.job-item{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
    border-bottom:1px solid #eee;
}

.job-item:last-child{
    border-bottom:none;
}

.job-item h5{
    margin-bottom:5px;
}

.job-item small{
    color:#777;
}

.career-contact{
    background:linear-gradient(135deg,#0d6efd,#0099ff);
    color:#fff;
    padding:35px;
    border-radius:15px;
    height:100%;
}

.career-contact ul li{
    margin-bottom:15px;
    font-size:16px;
}

.career-contact i{
    width:30px;
}

.career-contact .btn{
    border-radius:50px;
    padding:12px;
    font-weight:600;
}

.job-item .btn{
    border-radius:30px;
    padding:10px 22px;
}

@media(max-width:768px){

.job-item{
    flex-direction:column;
    align-items:flex-start;
}

.job-item .btn{
    margin-top:15px;
}

}