* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

a,
a:hover,
a:focus,
a:visited,
a:active {
  text-decoration: none;
}

p,
ul,
li {
  padding: 0;
  margin: 0;
}

body {
   font-family: "Lato", sans-serif; 
   /*font-family: "times new roman", sans-serif;*/
}



/* header */
header {
  position: unset;
  left: 0;
  right: 0;
  top: 0;
  z-index: 99;
}

header .header-top {
  background-color: #005197;
  padding: 5px 0px;
}

.sticky .headermn {
  padding: 10px 0px;
}

header .header-top .top-info li,
header .header-top .top-info li a {
  color: #fff;
  font-size: 14px;
}

header .header-top .top-info li:last-child a {
  display: inline-block;
  height: 28px;
  width: 28px;
  border-radius: 50px;
  line-height: 28px;
  text-align: center;
  background-color: #fff;
  color: #005197;
  border: 1px solid #fff;
  transition: .5s;
}

header .headermn {
  background-color: #fff;
  padding: 10px 0;
}

header .headermn .navbar .navbar-brand {
  width: 8%;
}

header .nav-link {
  color: #000;
  font-size: 13px;
  font-weight: 500;
  transition: .5s;
  position: relative;
  padding: 0px 0px !important;
  text-transform: uppercase;
}

header .nav-link:hover,
header .nav-link:focus {
  color: #005197;
}

header .navbar-nav {
  gap: 20px;
}

header .navbar-toggler {
  border: none;
  color: #005197;
  font-size: 28px;
  border-radius: 0;
}

header .navbar-toggler:focus {
  box-shadow: none;
}

header .offcanvas-title img {
  width: 34%;
}

header .navbar-nav {
  position: relative;
  align-items: center;
}

.sticky {
  left: 0;
  right: 0;
  z-index: 999;
  position: fixed !important;
  top: 0px;
  animation: slideDown .5s ease-out;
  background-color: #fff;
  box-shadow: 0 0 10px #00000021;
}

.sticky .headermn .navbar .navbar-brand {
  width: 8%;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(10);
  }
}

header .navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  color: #005197;
}

header .dropdown-menu {
  border-radius: 0;
  border: 0;
  /*padding: 15px 0;*/
  box-shadow: 0 0 5px #0000002f;
}

header .dropdown-menu li .dropdown-item {
  padding: 6px 20px;
  font-size: 18px;
  font-weight: 500;
  font-family: initial;
}

header .dropdown-menu li .dropdown-item:hover {
  background-color: #005197;
  color: #fff;
}


header .navbar .whatsapp li a {
  display: inline-block;
  padding: 8px 20px;
  background-color: transparent;
  color: #005197;
  border-radius: 3px;
  transition: .5s;
  border: 1px solid #005197;
  position: relative;
  transition: .5s;
  z-index: 1;
}

header .navbar .whatsapp li a::before {
  position: absolute;
  content: '';
  top: 0px;
  left: 0px;
  width: 0px;
  height: 100%;
  transition: .5s;
  background-color: #005197;
  z-index: -1;
}

header .navbar .whatsapp li a:hover:before {
  width: 100%;
}

header .navbar .whatsapp li a:hover {
  color: #fff;
}

/* footer */

footer .footertop {
  background-color: #fff;
  padding: 72px 0 42px;
}

footer .row {
  row-gap: 25px;
}

footer .footertop h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #000;
}

footer .footertop .about img {
  width: 45%;
}

footer .footertop .about p {
  color: #000;
  font-size: 14px;
  width: 77%;
  margin-top: 20px;
}

footer .footertop ul {
  list-style: none;
}

footer .footertop ul li {
  color: #000;
  font-size: 14px;
  margin-top: 10px;
}

footer .footertop ul li a {
  color: #000;
  font-size: 14px;
  transition: .5s;
  display: inline-block;
  border-bottom: 1px solid transparent;
}

footer .footertop ul li a:hover {
  color: #005197;
}

footer .footertop .addres li {
  margin-bottom: 15px;
}

footer .footertop .addres li i {
  color: #005197;
  font-size: 22px;
}

footer .footerboo ul {
  display: flex;
  justify-content: space-between;
  margin: 0;
  border-top: 1px solid #005197;
  padding-top: 20px;
}

footer .footerboo {
  background-color: #fff;
  padding: 20px;
}

footer .footerboo .soical li:first-child {
  color: #005197;
  text-align: center;
}

footer .footerboo .soical li:first-child a {
  color: #fff;
  font-size: 16px;
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  background-color: #005197;
  border-radius: 50%;
  transition: .5s;
}

footer .footerboo ul li img {
  width: 195px;
  background-color: #005197;
  padding: 0px 10px 8px;
  border-radius: 100px;
}

/* quickcontact */

.quickcontact {
  width: 45px;
  position: fixed;
  top: 77%;
  right: 15px;
  z-index: 102;
}

/* modal */

.modal form.row {
  row-gap: 20px;
}

.modal .btn-theme {
  border-radius: 0px;
  background: #005197;
  color: #fff;
}

.modal .btn-theme:hover {
  background-color: #000;
  color: white;
}

.modal .form-control {
  border-radius: 0px;
  border: none;
  box-shadow: none;
  background-color: #f1f1f1;
}

.modal .form-control:focus {
  border-color: #000;
}

.modal .submit {
  background-color: #005197;
  color: #fff;
  font-weight: 500px;
  padding: 10px;
  border: 0;
  transition: .5s;
}

.modal .submit:hover {
  background-color: #000;
}





/* Overlay */
.overlay {
  position: relative;
  z-index: 2;
}

.overlay:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #005197;
  opacity: 0.8;
  z-index: -1;
}

/* Bread Crumbs */
.breadcrumbs {
  background-image: url("../images/breadcrumb.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 100px 0px;
}

.breadcrumbs .bread-inner {
  z-index: 22;
  text-align: center;
}

.breadcrumbs h2 {
  color: #fff;
  text-transform: capitalize;
  font-size: 38px;
  font-weight: 700;
  margin: 0;
  padding: 0;
}

.breadcrumbs .bread-list {
  display: inline-block;
  margin-top: 20px;
}

.breadcrumbs ul li {
  display: inline-block;
  position: relative;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  text-transform: capitalize;
}

.breadcrumbs ul li i {
  margin: 0px 10px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.breadcrumbs ul li a {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  text-transform: capitalize;
  margin: 0;
  padding: 0;
}

.breadcrumbs ul li a:hover {
  color: #f1b92b;
}

.breadcrumbs ul li.active a {
  color: #fff;
  display: inline-block;
}




/* slider */
#slider .owl-theme .owl-dots .owl-dot {
  display: none;
}

#slider button.owl-prev {
  position: absolute;
  text-align: center;
  padding: 0px;
  color: #005197;
  top: 50%;
  font-size: 25px;
  left: 15px;
  background-color: #ffffff7a;
  width: 35px;
  height: 35px;
  line-height: 35px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

#slider button.owl-next {
  position: absolute;
  text-align: center;
  padding: 0px;
  color: #005197;
  top: 50%;
  font-size: 25px;
  right: 15px;
  background-color: #ffffff7a;
  width: 35px;
  height: 35px;
  line-height: 35px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

#slider button.owl-prev span,
#slider button.owl-next span {
  bottom: 2px;
  position: relative;
}

#doctor-profiles-section {
  background: #ffffff;
  padding: 40px 0;
}


/* â”€â”€ HEADER LABEL â”€â”€ */
#doctor-profiles-section .service-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 12px;
}
#doctor-profiles-section .service-header .service-label-line {
  display: inline-block;
  width: 40px;
  height: 2px;
  background: #005197;
  border-radius: 2px;
}
#doctor-profiles-section .service-header .service-label-text {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #005197;
}

#doctor-profiles-section .doc-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  transition: .4s;
  height: 100%;
  border: 1px solid #e8edf4;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .05);
}

#doctor-profiles-section .doc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
}

#doctor-profiles-section .doc-image {
  height: 320px;
  overflow: hidden;
}

#doctor-profiles-section .doc-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s;
}

#doctor-profiles-section .doc-card:hover .doc-image img {
  transform: scale(1.08);
}

#doctor-profiles-section .doc-content {
  padding: 25px;
}

#doctor-profiles-section .speciality {
  display: inline-block;
  padding: 6px 14px;
  background: #e8f3ff;
  color: #005197;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 15px;
}

#doctor-profiles-section .speciality.pink {
 display: inline-block;
    padding: 6px 14px;
    background: #e8f3ff;
    color: #005197;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

#doctor-profiles-section .doc-content h3 {
  margin-bottom: 8px;
}

#doctor-profiles-section .doc-content h3 a {
  text-decoration: none;
  color: #111;
  font-size: 26px;
  font-weight: 700;
  transition: .3s;
}

#doctor-profiles-section .doc-content h3 a:hover {
  color: #005197;
}

#doctor-profiles-section .designation {
  color: #666;
  font-size: 15px;
  margin-bottom: 18px;
}

#doctor-profiles-section .qualifications {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

#doctor-profiles-section .qualifications span {
  background: #f1f5f9;
  padding: 7px 12px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
}

#doctor-profiles-section .doctor-desc {
  color: #555;
  line-height: 1.8;
  font-size: 14px;
  margin-bottom: 20px;
}

#doctor-profiles-section .hospital {
  font-size: 14px;
  color: #777;
  margin-bottom: 20px;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

#doctor-profiles-section .view-btn {
  display: inline-block;
  background: #005197;
  color: #fff;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  transition: .3s;
}

#doctor-profiles-section .view-btn:hover {
  background: #003d73;
  color: #fff;
}

#doctor-profiles-section .pink-btn {
  background: #005197;
}

#doctor-profiles-section .pink-btn:hover {
  background: #003d73;
}


#doctor-profiles-section .section-title {
  font-size: 32px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 24px;
  position: relative;
  color: #000;
  text-align: center;
}

#doctor-profiles-section .section-title span {
  color: #005197;
}




#speciality-care-section .care-box{
    height:100%;
    padding:50px 35px;
    text-align:center;
    transition:.4s;
    position:relative;
    overflow:hidden;
}

#speciality-care-section .care-box:hover{
    transform:translateY(-8px);
}

#speciality-care-section .urology-box{
    background:#005197;
    color:#fff;
}

#speciality-care-section .featured-box{
    background:#ffffff;
    color:#111;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    z-index:2;
    transform:scale(1.05);
}

#speciality-care-section .featured-box:hover{
    transform:scale(1.05) translateY(-8px);
}

#speciality-care-section .gynae-box{
    background:#005197;
    color:#fff;
}

#speciality-care-section .icon-wrap{
    width:100px;
    height:100px;
    margin:0 auto 30px;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    display:flex;
    align-items:center;
    justify-content:center;
}

#speciality-care-section .featured-box .icon-wrap{
    background:#eef5ff;
}

#speciality-care-section .icon-wrap i{
    font-size:48px;
}

#speciality-care-section .urology-box .icon-wrap i,
#speciality-care-section .gynae-box .icon-wrap i{
    color:#fff;
}

#speciality-care-section .featured-box .icon-wrap i{
    color:#005197;
}

#speciality-care-section h3{
    font-size:28px;
    font-weight:700;
    margin-bottom:20px;
    line-height:1.3;
}

#speciality-care-section .urology-box h3,
#speciality-care-section .gynae-box h3{
    color:#fff;
}

#speciality-care-section .featured-box h3{
    color:#111;
}

#speciality-care-section p{
    font-size:17px;
    line-height:1.9;
    margin-bottom:0;
}

#speciality-care-section .urology-box p,
#speciality-care-section .gynae-box p{
    color:rgba(255,255,255,.92);
}

#speciality-care-section .featured-box p{
    color:#555;
}

@media(max-width:991px){

    #speciality-care-section .featured-box{
        transform:none;
    }

    #speciality-care-section .featured-box:hover{
        transform:translateY(-8px);
    }

    #speciality-care-section .care-box{
        margin-bottom:20px;
    }
}






/* service */

#service {
  padding: 60px 0;
  background: #fff;
  overflow: hidden;
}

#service .service-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 12px;
}
#service .service-header .service-label-line {
  display: inline-block;
  width: 40px;
  height: 2px;
  background: #005197;
  border-radius: 2px;
}
#service .service-header .service-label-text {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #005197;
}

/* â”€â”€ HEADING â”€â”€ */
#service .service-heading {
  font-size: 32px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 24px;
    position: relative;
    color: #000;
    text-align: center;
}
#service .service-heading span {
  color: #005197;
}

/* â”€â”€ ROW GAP â”€â”€ */
#service .row {
  row-gap: 20px;
}

/* â”€â”€ CARD LINK â”€â”€ */
#service .service-card-link {
  text-decoration: none;
  display: block;
  height: 100%;
}

/* â”€â”€ CARD â”€â”€ */
#service .service-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  border: 1px solid rgba(208, 65, 14, 0.08);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}
#service .service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgb(0 81 151 / 29%);
}

/* â”€â”€ IMAGE WRAP â”€â”€ */
#service .service-card .service-card-img-wrap {
  position: relative;
  overflow: hidden;
  /* background:#f3dbd2; */
  border-bottom: 2px solid rgba(208, 65, 14, 0.1);
}
#service .service-card .service-card-img-wrap img {
      width: 100%;
    height: 220px;
    object-fit: cover;
  transition: transform 0.45s ease;
}
#service .service-card:hover .service-card-img-wrap img {
  transform: scale(1.06);
}

/* â”€â”€ OVERLAY â”€â”€ */
#service .service-card .service-card-img-wrap .service-card-overlay {
  position: absolute;
  inset: 0;
  background: rgb(0 81 178 / 58%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}
#service .service-card:hover .service-card-img-wrap .service-card-overlay {
  opacity: 1;
}
#service .service-card .service-card-img-wrap .service-card-overlay .service-view-btn {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.5px;
  border: 1px solid rgba(255,255,255,0.6);
  padding: 10px 24px;
  border-radius: 40px;
  text-transform: uppercase;
  font-size: 12px;
}

/* â”€â”€ CARD BODY â”€â”€ */
#service .service-card .service-card-body {
  padding: 20px 22px 22px;
  /* flex: 1; */
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#service .service-card .service-card-body h4 {
  font-size: 20px;
  font-weight: 600;
  color: #1a1210;
  margin: 0 0 12px;
  transition: color 0.3s ease;
}
#service .service-card:hover .service-card-body h4 {
  color: #005197;
}
#service .service-card .service-card-body .service-card-line {
  width: 36px;
  height: 2px;
  background: #005197;
  border-radius: 2px;
  transition: width 0.35s ease;
}
#service .service-card .service-card-body p{
    color: #333;
    margin-top: 10px;
}

#service .service-card:hover .service-card-body .service-card-line {
  width: 70px;
}


#urology-cta-section{
    background:url('../images/urology-cta-bg.jpg') center center/cover no-repeat;
    background-attachment: fixed;
    position:relative;
}

#urology-cta-section .urology-cta-overlay{
    background:rgb(0 81 151 / 75%);
    padding:20px 0px;
}

#urology-cta-section .urology-cta-content{
    max-width:850px;
    margin:auto;
    text-align:center;
    color:#fff;
}

#urology-cta-section .urology-cta-content h2{
    font-size:35px;
    font-weight:700;
    margin-bottom:20px;
    line-height:1.3;
}
/* 
#urology-cta-section .urology-subtitle{
    font-size:24px;
    font-weight:600;
    margin-bottom:15px;
} */

#urology-cta-section .urology-cta-content p{
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 5px;
}

#urology-cta-section .urology-cta-btn{
        display: inline-block;
    margin-top: 10px;
    background: #ffffff;
    color: #055499;
    padding: 10px 20px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: all .3s ease;
}

#urology-cta-section .urology-cta-btn:hover{
    background:#055499;
    color:#fff;
}

#gynecology-cta-section{
    background:url('../images/gynecology-cta-bg.jpg') center center/cover no-repeat;
    position:relative;
    background-attachment:fixed;
}

#gynecology-cta-section .gynecology-cta-overlay{
    background:rgb(0 81 151 / 75%);
    padding:20px 0px;
}

#gynecology-cta-section .gynecology-cta-content{
    max-width:850px;
    margin:auto;
    text-align:center;
    color:#fff;
}

#gynecology-cta-section .gynecology-cta-content h2{
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

/* #gynecology-cta-section .gynecology-subtitle{
    font-size:24px;
    font-weight:600;
    margin-bottom:15px;
} */

#gynecology-cta-section .gynecology-cta-content p{
  font-size: 17px;
    line-height: 1.8;
    margin-bottom: 5px;}

#gynecology-cta-section .gynecology-cta-btn{
  display: inline-block;
    margin-top: 10px;
    background: #ffffff;
    color: #055499;
    padding: 10px 20px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: all .3s ease;
}

#gynecology-cta-section .gynecology-cta-btn:hover{
    background:#055499;
    color:#fff;
}
/* gallery */

/* â”€â”€ GALLERY SECTION â”€â”€ */
#gallery {
  padding:60px 0;
  background: #ffffff;
  overflow: hidden;
}

#gallery .row {
  row-gap: 20px;
}

/* â”€â”€ HEADER LABEL â”€â”€ */
#gallery .gal-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 12px;
}
#gallery .gal-header .gal-label-line {
  display: inline-block;
  width: 40px;
  height: 2px;
  background: #055499;
  border-radius: 2px;
}
#gallery .gal-header .gal-label-text {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #055499;
}

/* â”€â”€ HEADING â”€â”€ */
#gallery .gal-heading {
     font-size: 32px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 24px;
    position: relative;
    color: #000;
    text-align: center;
}
#gallery .gal-heading span {
  color: #055499;
}

/* â”€â”€ OWL STAGE â”€â”€ */
#gallery .owl-stage {
  display: flex;
  align-items: stretch;
  padding: 10px 4px 20px;
}
#gallery .owl-item {
  padding: 0 10px;
}

/* â”€â”€ IMAGE WRAPPER â”€â”€ */
#gallery .gal-img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  border: 1px solid 0 4px 24px rgb(5 84 153 / 10%);
  box-shadow: 0 4px 24px 0 4px 24px rgb(5 84 153 / 10%);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
#gallery .gal-img-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px 0 4px 24px rgb(5 84 153 / 10%);
}
#gallery .gal-img-wrapper img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
#gallery .gal-img-wrapper:hover img {
  transform: scale(1.05);
}

/* â”€â”€ OVERLAY â”€â”€ */
#gallery .gal-img-wrapper .gal-overlay {
  position: absolute;
  inset: 0;
  background: rgb(5 84 153 / 44%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}
#gallery .gal-img-wrapper:hover .gal-overlay {
  opacity: 1;
}
#gallery .gal-img-wrapper .gal-overlay .gal-overlay-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
#gallery .gal-img-wrapper:hover .gal-overlay .gal-overlay-icon {
  transform: scale(1.1);
}
#gallery .gal-img-wrapper .gal-overlay .gal-overlay-icon i {
  color: #fff;
  font-size: 18px;
}

/* â”€â”€ OWL NAV â”€â”€ */
#gallery .owl-nav button {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  background: #fff !important;
  border-radius: 50% !important;
  box-shadow: 0 4px 16px rgba(208, 65, 14, 0.18) !important;
  border: 1.5px solid rgba(208, 65, 14, 0.2) !important;
  color: #055499 !important;
  font-size: 18px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, color 0.3s ease;
}
#gallery .owl-nav button:hover {
  background: #055499 !important;
  color: #fff !important;
}
#gallery .owl-nav .owl-prev { left: -20px; }
#gallery .owl-nav .owl-next { right: -20px; }

/* â”€â”€ OWL DOTS â”€â”€ */
#gallery .owl-dots {
  margin-top: 28px;
  text-align: center;
}
#gallery .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  background: rgba(208, 65, 14, 0.25) !important;
  border-radius: 50%;
  margin: 0 4px;
  transition: all 0.3s ease;
}
#gallery .owl-dots .owl-dot.active span {
  background: #055499 !important;
  width: 24px;
  border-radius: 4px;
}

/* â”€â”€ LIGHTBOX OVERLAY â”€â”€ */
#overlay {
  background: rgba(15, 10, 8, 0.92);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  user-select: none;
  backdrop-filter: blur(6px);
}

/* â”€â”€ OVERLAY IMAGE â”€â”€ */
#overlay img {
  max-width: 75vw;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: block;
  margin: auto;
      margin-top: 60px;
}

/* â”€â”€ PREV / NEXT BUTTONS â”€â”€ */
#prevButton,
#nextButton {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100000;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
#prevButton {
  left: 28px;
}
#nextButton {
  right: 28px;
}
#prevButton:hover,
#nextButton:hover {
  background: #055499;
  border-color: #055499;
  transform: translateY(-50%) scale(1.08);
}
#prevButton i,
#nextButton i {
  color: #fff;
  font-size: 16px;
}

/* â”€â”€ EXIT BUTTON â”€â”€ */
#exitButton {
  position: fixed;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100000;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
#exitButton:hover {
  background: #055499;
  border-color: #055499;
  transform: scale(1.08);
}
#exitButton i {
  color: #fff;
  font-size: 15px;
}

/* â”€â”€ RESPONSIVE â”€â”€ */
@media (max-width: 767px) {
  #overlay img {
    max-width: 92vw;
    max-height: 75vh;
    border-radius: 10px;
  }
  #prevButton { left: 10px; width: 40px; height: 40px; }
  #nextButton { right: 10px; width: 40px; height: 40px; }
  #exitButton { top: 12px; right: 12px; width: 38px; height: 38px; }
}







#general-surgery-cta-section{
    position:relative;
    background:url('../images/general-surgery-bg.jpg') center center/cover no-repeat;
    background-attachment:fixed;
}

#general-surgery-cta-section .general-surgery-cta-overlay{
    background:rgb(0 81 151 / 75%);
    padding:20px 0px;
}

#general-surgery-cta-section .general-surgery-cta-content{
    max-width:900px;
    margin:auto;
    text-align:center;
    color:#fff;
}

#general-surgery-cta-section .general-surgery-cta-content h2{
   font-size: 35px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

#general-surgery-cta-section .general-surgery-subtitle{
    font-size:24px;
    font-weight:600;
    margin-bottom:20px;
    color:#fff;
}

#general-surgery-cta-section .general-surgery-cta-content p{
        font-size: 17px;
    line-height: 1.8;
    margin-bottom: 5px;
}

#general-surgery-cta-section .general-surgery-cta-btn{
     display: inline-block;
    margin-top: 10px;
    background: #ffffff;
    color: #055499;
    padding: 10px 20px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: all .3s ease;
}

#general-surgery-cta-section .general-surgery-cta-btn:hover{
    background:#055499;
    color:#fff;
}




/* testimonial */
#testimonial{padding:40px 0;background-color:#f8fbff;overflow:hidden}

#testimonial .service-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 12px;
}
#testimonial .service-header .service-label-line {
  display: inline-block;
  width: 40px;
  height: 2px;
  background: #005197;
  border-radius: 2px;
}
#testimonial .service-header .service-label-text {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #005197;
}

/* â”€â”€ HEADING â”€â”€ */
#testimonial .service-heading {
  font-size: 32px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 24px;
    position: relative;
    color: #000;
    text-align: center;
}
#testimonial .service-heading span {
  color: #005197;
}

#testimonial .testi__subtext{font-size:15px;color:#888;max-width:440px;margin:0 auto;line-height:1.7}
#testimonial .testi__row{background-color:#fff;border-radius:16px;box-shadow:0 8px 40px rgba(8,125,144,.10);overflow:hidden}
#testimonial .iner.testi__left{background:linear-gradient(160deg,#055499 0%,#055499 100%);padding:40px 24px;text-align:center;height:100%;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:10px}
#testimonial .testi__google{width:100px;margin-bottom:6px;filter:brightness(0) invert(1)}
#testimonial .testi__stars-main{margin:0}
#testimonial .testi__stars-main li{font-size:20px;color:#f4c430}
#testimonial .testi__rating-num{font-size:42px;font-weight:800;color:#fff;line-height:1;margin:4px 0}
#testimonial .testi__excellent{font-size:13px;font-weight:700;letter-spacing:3px;color:rgba(255,255,255,.90);margin:0}
#testimonial .testi__based{font-size:13px;color:rgba(255,255,255,.60);margin:0}
#testimonial .testi__write-btn{display:inline-flex;align-items:center;margin-top:8px;padding:10px 20px;border-radius:50px;background-color:rgba(255,255,255,.12);border:1.5px solid rgba(255,255,255,.35);color:#fff;font-size:13px;font-weight:600;text-decoration:none;transition:all .3s ease}
#testimonial .testi__write-btn:hover{background-color:#fff;color:#055499}
#testimonial .testi__right{padding:30px 24px}
#testimonial .testi__card{background-color:#f8fbff;border:1px solid #e4eef5;border-radius:14px;padding:22px 20px 20px;height:290px;overflow-y:visible;display:flex;flex-direction:column;gap:10px;transition:box-shadow .3s ease,border-color .3s ease;position:relative}
#testimonial .testi__card:hover{border-color:#055499;box-shadow:0 6px 24px rgba(8,125,144,.12)}
#testimonial .testi__quote{position:absolute;top:14px;right:16px;font-size:22px;color:rgba(8,125,144,.12)}
#testimonial .testi__card-stars{margin:0}
#testimonial .testi__card-stars li{font-size:13px;color:#f4c430}
#testimonial p{font-size:13.5px;color:#555;line-height:1.75;margin:0;overflow-y:auto;scrollbar-width:thin;scrollbar-color:#055499 #e4eef5}
#testimonial .testi__card::-webkit-scrollbar { width: 3px; }
#testimonial .testi__card::-webkit-scrollbar-track { background: #e4eef5; }
#testimonial .testi__card::-webkit-scrollbar-thumb { background: #055499; border-radius: 4px; }
#testimonial .testi__profile.profile{display:flex;align-items:center;gap:12px;margin-top:auto;padding-top:12px;border-top:1px solid #e8f0f7}
#testimonial .testi__avatar{width:40px;height:40px;border-radius:50%;background:linear-gradient(135deg,#055499,#055499);color:#fff;font-size:16px;font-weight:700;display:flex;align-items:center;justify-content:center;flex-shrink:0}
#testimonial .testi__profile-info h5{font-size:14px;font-weight:700;color:#0a2a5e;margin:0 0 2px}
#testimonial .testi__verified{font-size:11px;color:#055499;font-weight:600}
#testimonial .owl-theme .owl-dots{margin-top:20px;text-align:left}
#testimonial .owl-theme .owl-dots .owl-dot span{background-color:#cde4e8;width:8px;height:8px;border-radius:50%;transition:all .3s ease}
#testimonial .owl-theme .owl-dots .owl-dot.active span,#testimonial .owl-theme .owl-dots .owl-dot:hover span{background-color:#055499;width:22px;border-radius:4px}
#testimonial .owl-carousel{display:block;}
#testimonial .owl-carousel .owl-nav button.owl-next,#testimonial .owl-carousel .owl-nav button.owl-prev,#testimonial .owl-carousel button.owl-dot{display:none}








#latest-blog {
    background: #fff;
    padding: 40px 0;
}

#latest-blog .service-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 12px;
}
#latest-blog .service-header .service-label-line {
  display: inline-block;
  width: 40px;
  height: 2px;
  background: #005197;
  border-radius: 2px;
}
#latest-blog .service-header .service-label-text {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #005197;
}

/* â”€â”€ HEADING â”€â”€ */
#latest-blog .service-heading {
  font-size: 32px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 24px;
    position: relative;
    color: #000;
    text-align: center;
}
#latest-blog .service-heading span {
  color: #005197;
}


#latest-blog .blog-card {
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    margin: 0 10px 4px;
}

#latest-blog .blog-card .blog-img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

#latest-blog .blog-card .blog-body {
    padding: 18px 20px 20px;
}

#latest-blog .blog-card .blog-body .title {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #005197;
    margin-bottom: 14px;
    line-height: 1.45;
}

#latest-blog .blog-card .blog-body .blog-btn {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
}

#latest-blog .blog-card .blog-body .blog-btn:hover {
    color: #005197
}

#latest-blog .blog-card .blog-body .title:hover {
    color: #000
}

#latest-blog .owl-dots {
    margin-top: 20px;
    text-align: center;
}

#latest-blog .owl-dot span {
    background: #ddd !important;
    width: 10px !important;
    height: 10px !important;
}

#latest-blog .owl-dot.active span {
    background: #005197 !important;
}

#latest-blog .owl-nav {
    display: none;
}


#multi-speciality-cta-section{
    position:relative;
    background:url('../images/cta-bg.jpg') center center/cover no-repeat;
    background-attachment:fixed
}

#multi-speciality-cta-section .multi-speciality-cta-overlay{
    background:rgb(0 81 151 / 75%);
    padding:20px 0px;
}

#multi-speciality-cta-section .multi-speciality-cta-content{
    max-width:900px;
    margin:auto;
    text-align:center;
    color:#fff;
}

#multi-speciality-cta-section .multi-speciality-tag{
    display:inline-block;
    padding:10px 20px;
    background:rgba(255,255,255,0.15);
    border:1px solid rgba(255,255,255,0.25);
    border-radius:50px;
    font-size:14px;
    letter-spacing:1px;
    margin-bottom:25px;
}

#multi-speciality-cta-section .multi-speciality-cta-content h2{
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

/* #multi-speciality-cta-section .multi-speciality-subtitle{
    font-size:24px;
    font-weight:600;
    margin-bottom:20px;
    color:#f4f4f4;
} */

#multi-speciality-cta-section .multi-speciality-cta-content p{
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 10px;
}

#multi-speciality-cta-section .multi-speciality-btns{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

#multi-speciality-cta-section .primary-btn{
    display: inline-block;
    background: #ffffff;
    color: #055499;
    padding: 10px 20px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: all .3s ease;
}

#multi-speciality-cta-section .primary-btn:hover{
    background:#0a2942;
    color:#fff;
}

#multi-speciality-cta-section .secondary-btn{
    display:inline-block;
    border:2px solid #fff;
    color:#fff;
    padding: 10px 20px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: all .3s ease;
}

#multi-speciality-cta-section .secondary-btn:hover{
    background:#fff;
    color:#0a2942;
}


#counter {
  padding: 40px 0;
  background: #f5f7f9;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

#counter .row {
  row-gap: 25px;
}

#counter .counter-box {
  background: #fff;
  padding: 40px 20px;
  border-radius: 10px;
  transition: 0.3s;
}

#counter .counter-box:hover {
  transform: translateY(-5px);
}

#counter .icon {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  background: #eaf6f7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* font-size: 18px; */
  padding: 10px;
}

#counter .icon:hover {
  background: #005197;
}

#counter h2 {
  font-size: 36px;
  font-weight: 700;
  margin: 10px 0;
}

#counter p {
  color: #005197;
  font-weight: 600;
  font-size: 18px;
}

/* Shapes */
#counter .shape {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

/* Left Shape */
#counter .shape-left {
  position: absolute;
  left: -260px;
  top: 0;
  z-index: -1;
  animation: FocuS 1s linear infinite;
}

/* Right Shape */
#counter .shape-right {
  position: absolute;
  right: -260px;
  bottom: 0;
  z-index: -1;
  animation: FocuS 1s linear infinite;
}

@keyframes FocuS {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }

  100% {
    opacity: 1;
  }
}





/* Section styling */
/* About Section */
#about {
    background: #ffffff;
    overflow: hidden;
    padding: 60px 0;
}

/* Section Label */
#about .about-content .service-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

#about .about-content .service-header .service-label-line {
    display: inline-block;
    width: 40px;
    height: 2px;
    background: #005197;
    border-radius: 2px;
}

#about .about-content .service-header .service-label-text {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: #005197;
}

/* Left Image Wrapper */
#about .about-img {
    position: relative;
    display: inline-block;
    background: #005197;
    padding-left: 20px;
    border-radius: 0 20px 20px 0;
}

/* Main Image */
#about .about-img img.main-img {
    border-radius: 10px;
    width: 100%;
    max-width: 470px;
    z-index: 2;
    position: relative;
    aspect-ratio: auto 570 / 604;
    height: 603px;
    object-fit: cover;
}

/* Right Content */
#about .about-content span {
    color: #005197;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#about .about-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    line-height: 1.3;
    margin: 10px 0 20px;
}

#about .about-content p {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* List Styling */
#about .about-content ul {
    padding-left: 0;
    margin: 0;
    list-style: none;
}

#about .about-content ul li {
    position: relative;
    width: 100%;
    padding-left: 45px;
    margin-bottom: 18px;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.6;
    color: #000;
}

/* Check Icon Using Before */
#about .about-content ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: #005197;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

/* Button */
#about .about-content .btn-info {
    display: inline-block;
    padding: 15px 30px;
    background: #005197;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.4s ease;
    border: none;
}

#about .about-content .btn-info:hover {
    background: #003f75;
    color: #ffffff;
}

/* Contact Info */
#about .doctor-contact-info {
    margin-top: 25px;
}

#about .doctor-contact-info p {
    margin-bottom: 0;
    font-size: 15px;
    color: #0d1b2a;
}

#about .doctor-contact-info a {
    color: #005197;
    text-decoration: none;
    font-weight: 600;
}

#about .doctor-contact-info a:hover {
    color: #003f75;
}

/* Responsive */
@media (max-width: 991px) {

    #about {
        padding: 50px 0;
    }

    #about .about-img {
        padding-left: 15px;
    }

    #about .about-img img.main-img {
        max-width: 100%;
        height: auto;
    }

    #about .about-content {
        margin-top: 30px;
    }

    #about .about-content h2 {
        font-size: 30px;
    }

    #about .about-img img.lines-shape {
        display: none;
    }
}

@media (max-width: 767px) {

    #about .about-content h2 {
        font-size: 26px;
    }

    #about .about-content p {
        font-size: 14px;
    }

    #about .about-content ul li {
        font-size: 13px;
        padding-left: 40px;
    }

    #about .about-content ul li::before {
        width: 26px;
        height: 26px;
        font-size: 12px;
    }

    #about .about-img img.circle-shape {
        width: 90px;
        top: -20px;
        right: -20px;
    }
}

/* =====================
   WHY CHOOSE SECTION
   ===================== */

#why-choose {
    padding: 60px 0;
    background-color: #fff;
}

#why-choose .service-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 12px;
}

#why-choose .service-header .service-label-line {
    display: inline-block;
    width: 40px;
    height: 2px;
    background: #005197;
    border-radius: 2px;
}

#why-choose .service-header .service-label-text {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: #005197;
}

#why-choose .service-heading {
    font-size: 32px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 8px;
    color: #000;
    text-align: center;
}

#why-choose .service-heading span {
    color: #005197;
}

#why-choose .section-desc {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    /* margin-bottom: 40px; */
    text-align: center;
}

#why-choose .why-card {
    background: #fff;
    border-radius: 10px;
    padding: 32px 26px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    border-bottom: 3px solid transparent;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

#why-choose .why-card:hover {
    transform: translateY(-5px);
    border-bottom-color: #005197;
    box-shadow: 0 10px 28px rgba(0, 81, 151, 0.10);
}

#why-choose .why-icon {
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, #005197, #1a7fd4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

#why-choose .why-icon i {
    font-size: 22px;
    color: #fff;
}

#why-choose .why-card h5 {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

#why-choose .why-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.75;
    margin: 0;
}


/*============================= CONTACT ============================  */
#contact-section{background:#fff;padding:70px 0 80px;overflow:hidden}
#contact-section .contact-main-title{font-size:50px;font-weight:700;color:#005197;line-height:1.25;margin-bottom:18px}
#contact-section .contact-subtitle{font-size:15px;color:#888;line-height:1.7;margin-bottom:32px;max-width:420px}
#contact-section .contact-info-list{list-style:none;padding:0;margin:0 0 40px}
#contact-section .contact-info-list li{display:flex;align-items:flex-start;gap:12px;margin-bottom:16px;font-size:15px;color:#444}
#contact-section .contact-info-list li .ci-icon{width:22px;height:22px;flex-shrink:0;margin-top:1px;color:#005197}
#contact-section .contact-info-list li a{color:#444;text-decoration:none;transition:color .2s}
#contact-section .contact-info-list li a:hover{color:#005197}
#contact-section .map-card{background:#fff;border:1px solid #e8eaee;border-radius:16px;padding:0;overflow:hidden;display:flex;gap:0}
#contact-section .map-thumb{width:100%;flex-shrink:0;position:relative;overflow:hidden;border-radius:12px 0 0 12px}
#contact-section .map-thumb iframe{width:100%;height:100%;border:none;display:block;min-height:190px}
#contact-section .map-open-btn{position:absolute;top:10px;left:10px;background:#fff;border:none;border-radius:6px;font-size:12px;color:#005197;font-weight:600;padding:5px 10px;display:flex;align-items:center;gap:4px;text-decoration:none;box-shadow:0 1px 4px rgba(0,0,0,.15)}
#contact-section .map-info{padding:20px 22px;flex:1}
#contact-section .map-info h5{font-size:17px;font-weight:700;color:#111;margin-bottom:10px}
#contact-section .map-info .mi-label{font-size:13px;font-weight:600;color:#333;margin-bottom:2px}
#contact-section .map-info .mi-val{font-size:13px;color:#666;margin-bottom:14px;line-height:1.5}
#contact-section .map-info .mi-divider{border:none;border-top:1px solid #eee;margin:12px 0}
#contact-section .map-info .get-dir{font-size:14px;font-weight:600;color:#005197;text-decoration:none;display:inline-flex;align-items:center;gap:5px}
#contact-section .map-info .get-dir:hover{text-decoration:underline}
#contact-section .form-card{background:#f0f2f8;border-radius:18px;padding:58px 50px 74px}
#contact-section .form-card .fc-title{font-size:35px;font-weight:800;color:#111;margin-bottom:10px}
#contact-section .form-card .fc-sub{font-size:20px;color:#888;margin-bottom:28px}
#contact-section .input-group-line{display:flex;align-items:center;gap:12px;border-bottom:1.5px solid #c8ccda;padding-bottom:10px;margin-bottom:26px}
#contact-section .input-group-line .igl-icon{width:22px;height:22px;color:#005197;flex-shrink:0}
#contact-section .input-group-line input{border:none;background:transparent;outline:none;font-size:15px;color:#444;width:100%}
#contact-section .input-group-line input::placeholder{color:#aaa}
#contact-section .textarea-wrap{margin-bottom:22px}
#contact-section .textarea-wrap label{font-size:14px;color:#aaa;display:block;margin-bottom:8px}
#contact-section .textarea-wrap textarea{width:100%;border:none;border-bottom:1.5px solid #c8ccda;background:transparent;outline:none;resize:none;font-size:15px;color:#444;min-height:100px;padding-bottom:8px}
#contact-section .textarea-wrap textarea::placeholder{color:#aaa}
#contact-section .recaptcha-box{border:1px solid #d0d3dc;border-radius:6px;background:#f9f9f9;padding:12px 16px;display:flex;align-items:center;justify-content:space-between;margin-bottom:22px}
#contact-section .recaptcha-box .rc-left{display:flex;align-items:center;gap:12px}
#contact-section .recaptcha-box .rc-checkbox{width:24px;height:24px;border:2px solid #bbb;border-radius:3px;flex-shrink:0}
#contact-section .recaptcha-box .rc-text{font-size:14px;color:#444}
#contact-section .recaptcha-box .rc-right{text-align:center}
#contact-section .recaptcha-box .rc-right img{width:36px;height:36px}
#contact-section .recaptcha-box .rc-right .rc-brand{font-size:10px;color:#aaa;display:block;margin-top:2px}
#contact-section .btn-send{width:100%;background:#005197;color:#fff;border:none;border-radius:10px;padding:16px;font-size:16px;font-weight:600;letter-spacing:.3px;cursor:pointer;transition:background .2s}
#contact-section .btn-send:hover{background:#fff;color:#005197;border:1.5px solid #005197}


#appointment-strip{
    background: #005197;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

#appointment-strip::before{
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
}

#appointment-strip::after{
    content: "";
    position: absolute;
    bottom: -120px;
    left: -120px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
}

#appointment-strip .container{
    position: relative;
    z-index: 2;
}

#appointment-strip h2{
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

#appointment-strip p{
    color: rgba(255,255,255,0.8);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 0;
    max-width: 650px;
}

#appointment-strip .cta-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background:  #fff;
    color:#005197 ;
    padding: 16px 35px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: all .3s ease;
}

#appointment-strip .cta-btn:hover{
    background: #ffffff;
    color: #0d1b2a;
}

@media(max-width:991px){

    #appointment-strip{
        text-align: center;
        padding: 60px 0;
    }

    #appointment-strip h2{
        font-size: 34px;
    }

    #appointment-strip p{
        margin: 0 auto 25px;
    }

    #appointment-strip .text-lg-end{
        text-align: center !important;
    }
}

@media(max-width:767px){

    #appointment-strip{
        padding: 50px 0;
    }

    #appointment-strip h2{
        font-size: 28px;
    }

    #appointment-strip p{
        font-size: 15px;
    }

    #appointment-strip .cta-btn{
        width: 100%;
        max-width: 280px;
    }
}

/* Blog Detail Section */
#blog-detail {
    background:#fff;
  padding:40px 0;
    color: #222;
  line-height: 1.6;
}

/* Blog Image */
#blog-detail img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Blog Heading */
#blog-detail h2 {
  font-weight: 700;
  font-size: 2rem;
  color: #000;
  margin-bottom: 0.75rem;
}

/* Post Meta (Author & Date) */
#blog-detail .post-meta {
  font-size: 0.9rem;
  color: #6c757d;
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

#blog-detail .post-meta i {
  margin-right: 0.35rem;
  color: #005197;
}

#blog-detail .post-meta .author,
#blog-detail .post-meta .date {
  display: flex;
  align-items: center;
}

/* Paragraphs */
#blog-detail article p {
  margin-bottom: 15px;
  font-size: 1rem;
  color: #666;
}

/* Sidebar Styling */
#blog-detail .sidebar {
  background-color: #f9f9f7;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  position: sticky;
  top:120px
}

/* Sidebar Heading */
#blog-detail .sidebar h4 {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid #005197;
  padding-left: 1rem;
  color: #1b2a49;
}

/* Recent Posts */
#blog-detail .recent-post {
  transition: background-color 0.3s ease;
  padding: 8px 6px;
  border-radius: 6px;
}

#blog-detail .recent-post:hover {
  background-color: #00519738;
}

/* Recent Post Images */
#blog-detail .recent-post img.post-thumb {
  border-radius: 6px;
  width: 60px;
  height: 60px;
  object-fit: cover;
}

/* Recent Post Links */
#blog-detail .recent-post a {
  color: #2c3e50;
  text-decoration: none;
  font-size: 1rem;
}

#blog-detail .recent-post a:hover {
  color: #005197;
  text-decoration: underline;
}

/* Date Text */
#blog-detail .recent-post small {
  font-size: 0.8rem;
  color: #999;
}

/* Responsive */
@media (max-width: 767.98px) {
  #blog-detail .sidebar {
    margin-top: 2rem;
  }
}


/*============================= SERVICE-PAGE============================  */
#service-page{padding:50px 0 70px;background-color:#fff;}
#service-page .sidebar{display:flex;flex-direction:column;gap:20px}
#service-page .services-card{background:#005197;border-radius:16px;padding:28px 22px 10px}
#service-page .sc-title{font-size:20px;font-weight:700;color:#fff;margin-bottom:20px}
#service-page .sc-list{list-style:none;padding:0;margin:0}
#service-page .sc-list li a.active{background:#fff;color:#005197;border-radius:10px;display:flex;align-items:center;justify-content:space-between;padding:13px 18px;font-size:15px;font-weight:600;text-decoration:none;margin-bottom:4px}
#service-page .sc-list li a.active .arrow{color:#005197}
#service-page .sc-list li a{display:flex;align-items:center;justify-content:space-between;color:rgba(255,255,255,.9);font-size:15px;font-weight:500;text-decoration:none;padding:13px 18px;border-bottom:1px solid rgba(255,255,255,.12);transition:.2s}
#service-page .sc-list li:last-child a{border-bottom:none}
#service-page .sc-list li a .arrow{font-size:16px;opacity:0;transition:.2s}
#service-page .sc-list li a:hover .arrow{opacity:1}
#service-page .sc-list li a.active .arrow{opacity:1}
#service-page .help-card{background:#005197;border-radius:16px;padding:30px 22px 28px;text-align:center;position:relative;overflow:hidden;margin-top:30px}
#service-page .side{position:sticky;top:120px}
#service-page .help-card::before{content:'';position:absolute;top:-40px;right:-40px;width:160px;height:160px;border-radius:50%;background:rgba(255,255,255,.07)}
#service-page .hc-icon{margin-bottom:16px}
#service-page .hc-icon img{width:120px}
#service-page .hc-title{font-size:17px;font-weight:600;color:#fff;margin-bottom:16px}
#service-page .hc-divider{border:none;border-top:1px solid rgba(255,255,255,.25);margin-bottom:14px}
#service-page .hc-phone{display:block;font-size:16px;font-weight:700;color:#fff;text-decoration:none;margin-bottom:6px}
#service-page .hc-email{display:block;font-size:14px;color:rgba(255,255,255,.85);text-decoration:none;margin-bottom:22px}
#service-page .hc-phone:hover,#service-page .hc-email:hover{text-decoration:underline}
#service-page .hc-btn{background:#fff;color:#005197;border:none;border-radius:50px;padding:13px 38px;font-size:15px;font-weight:600;display:inline-block;text-decoration:none}
#service-page .service-content{padding-left:50px}
#service-page .service-hero-img{width:100%;height:380px;object-fit:cover;border-radius:18px;display:block;margin-bottom:36px;background:#c8d8f0}
#service-page .svc-title{font-size:36px;font-weight:700;color:#005197;line-height:1.25;margin-bottom:18px}
#service-page .svc-para{font-size:15px;color:#666;line-height:1.85;margin-bottom:16px}
#service-page .steps-title{font-size:24px;font-weight:800;color:#005197;margin-top:32px;margin-bottom:20px}
#service-page .steps-checklist{display:grid;grid-template-columns:1fr 1fr;list-style:none;padding:0;margin:0}
#service-page .steps-checklist li{display:flex;align-items:center;gap:11px;padding:11px 0;font-size:15px;color:#444;border-bottom:1px solid #e2e6f0}
#service-page .steps-checklist li:nth-last-child(1),#service-page .steps-checklist li:nth-last-child(2){border-bottom:none}
#service-page .chk-icon{width:20px;height:20px;color:#005197}
#service-page .benefits-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-top:28px}
#service-page .benefit-item{background:#fff;border-radius:12px;padding:20px 18px;display:flex;align-items:flex-start;gap:12px}
#service-page .bi-icon{width:38px;height:38px;background:#eef1f8;border-radius:10px;display:flex;align-items:center;justify-content:center;color:#005197}
#service-page .bi-text h6{font-size:14px;font-weight:700;color:#111;margin-bottom:4px}
#service-page .bi-text p{font-size:13px;color:#666;margin:0;line-height:1.6}
#service-page .service-btn{background-color:#005197;color:#fff;border:none;border-radius:50px;padding:12px 36px;font-size:15px;font-weight:600;cursor:pointer;display:inline-block;margin-top:10px;transition:background .3s ease;margin-left:50px}
#service-page .service-btn a{color:#fff}
#service-page .service-btn:hover{background-color:#1a5fc4}
#service-page h3{color: #005197;font-size: 22px;font-weight: 700;margin-top: 30px;margin-bottom: 15px;}