/* ==================================================
   01. RESET / GLOBAL CSS START
================================================== */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --custom-color: #0e71c4;
	--color: #02a099;
    --bg-light: #3bb9e38c;
    --hover: #aee1df;
}

body {
    margin: 0;
     font-family:'Manrope', sans-serif;
    padding: 0;
}

html{
    font-size: 62.2%;
}

img,
iframe,
video {
    max-width: 100%;
    vertical-align: middle;
}

a {
	outline: none;
	text-decoration: none;
	color: #555;
}

h4 {
    font-weight: 700;
    color: var(--custom-color);
}

a:hover, a:focus{
	outline: none;
	text-decoration: none;
}

.container{
  width:100%;
  max-width:1320px;
  margin:auto;
  padding:0 15px;
}

/* ==================================================
   01. RESET / GLOBAL CSS END
================================================== */



/* ==================================================
   02. TOPBAR / HEADER TOP CSS START
================================================== */
/* ==================================================
   TOP HEADER
================================================== */

.headertop{
  background:#263653;
  padding:7px 0;
}

.top-header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.top-left{
  display:flex;
  align-items:center;
  gap:28px;
  flex-wrap:wrap;
}

.top-left a,
.top-social a{
  color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    font-family: math;
}

.top-left a i,
.top-social a i{
  color:#f28b20;
  margin-right:7px;
}

.top-social{
  display:flex;
  align-items:center;
  gap:16px;
}


/* ==================================================
   MAIN NAVBAR
================================================== */

.main-navbar{
  background:#fff;
  box-shadow:0 8px 25px rgba(0,0,0,0.08);
  position:relative;
  z-index:99;
}

.nav-inner{
  min-height:88px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.navbar-brand{
  display:flex;
  align-items:center;
  text-decoration:none;
  flex-shrink:0;
}

.navbar-brand img{
  width:100%;
  max-width:230px;
}


/* ==================================================
   DESKTOP MENU
================================================== */

.desktop-menu{
  list-style:none;
  display:flex;
  align-items:center;
  justify-content:center;
  flex:1;
  gap:8px;
}

.desktop-menu li{
  position:relative;
}

.desktop-menu li a{
     display: flex;
    align-items: center;
    gap: 7px;
    padding: 32px 13px;
    color: #344054;
    text-decoration: none;
    font-size: 17.5px;
    font-weight: 500;
    transition: 0.3s;
    font-family: math;
}

.desktop-menu li a.active,
.desktop-menu li a:hover{
  color:#129fcb;
}

.menu-arrow{
  width:16px;
  height:16px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:11px;
  margin-top:2px;
  transition:0.3s;
}

.dropdown-menu-parent:hover .menu-arrow{
  transform:rotate(180deg);
}


/* ==================================================
   DROPDOWN MENU
================================================== */

.dropdown-list{
  position:absolute;
  top:100%;
  left:0;
  width:285px;
  background:#fff;
  padding:0;
  margin:0;
  list-style:none;
  box-shadow:0 15px 35px rgba(0,0,0,0.12);
  opacity:0;
  visibility:hidden;
  transform:translateY(15px);
  transition:0.3s;
  z-index:999;
}

.dropdown-menu-parent:hover .dropdown-list{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.dropdown-list li a {
    display: block;
    padding: 10px 18px;
    border-bottom: 1px solid #b1aaaab8;
    font-size: 15px;
    color: #344054;
}

.dropdown-list li a:hover{
  background:#129fcb;
  color:#fff;
}


/* ==================================================
   RIGHT SIDE BUTTONS
================================================== */

.nav-right{
  display:flex;
  align-items:center;
  gap:14px;
  flex-shrink:0;
}

.book a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 38px;
    background: #d12e37;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 800;
    border-radius: 2px;
    white-space: nowrap;
    transition: 0.3s;
}

.book a:hover{
  background:#b91f29;
}

.menu-toggle{
  width:48px;
  height:48px;
  border:none;
  background:#129fcb;
  color:#fff;
  font-size:22px;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:0.3s;
}

.menu-toggle:hover{
  background:#0d8fb8;
}


/* ==================================================
   DESKTOP RIGHT OFFCANVAS
================================================== */

.offcanvas-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.55);
  opacity:0;
  visibility:hidden;
  z-index:9998;
  transition:0.35s;
}

.offcanvas-overlay.active{
  opacity:1;
  visibility:visible;
}

.desktop-offcanvas{
  position:fixed;
  top:0;
  right:-420px;
  width:390px;
  max-width:92%;
  height:100vh;
  background:#fff;
  z-index:9999;
  padding:26px 28px 35px;
  transition:0.45s ease;
  box-shadow:-12px 0 35px rgba(0,0,0,0.18);
  overflow-y:auto;
}

.desktop-offcanvas.active{
  right:0;
}

.offcanvas-close{
  width:42px;
  height:42px;
  border:0;
  background:#d12e37;
  color:#fff;
  font-size:18px;
  cursor:pointer;
  float:right;
}

.offcanvas-info{
  clear:both;
  padding-top:22px;
}

.offcanvas-logo{
  max-width:240px;
  width:100%;
  margin-bottom:24px;
}

.offcanvas-info p {
    font-size: 17px;
    line-height: 28px;
    color: #344054;
    font-weight: 500;
    margin-bottom: 10px;
    font-family: math;
}

.offcanvas-box{
  margin-top:22px;
}

.offcanvas-info h4 {
    font-size: 22px;
    color: #263653;
    font-weight: 500;
    margin-bottom: 10px;
    font-family: "Cormorant Garamond", serif;
}

.offcanvas-info a {
    display: block;
    color: #344054;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 12px;
    font-family: math;
}

.offcanvas-info a i{
  color:#129fcb;
  margin-right:8px;
}


/* ==================================================
   MOBILE LEFT SIDEBAR MENU
================================================== */

.mobile-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.55);
  opacity:0;
  visibility:hidden;
  transition:0.35s;
  z-index:9998;
}

.mobile-overlay.active{
  opacity:1;
  visibility:visible;
}

.mobile-sidebar{
  position:fixed;
  top:0;
  left:-350px;
  width:320px;
  max-width:92%;
  height:100vh;
  background:#fff;
  z-index:9999;
  transition:0.45s ease;
  overflow-y:auto;
  box-shadow:10px 0 35px rgba(0,0,0,0.18);
}

.mobile-sidebar.active{
  left:0;
}

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

.sidebar-head img{
  max-width:175px;
}

.sidebar-head button{
  width:40px;
  height:40px;
  border:none;
  background:#d12e37;
  color:#fff;
  font-size:18px;
  cursor:pointer;
}

.mobile-menu{
  list-style:none;
  padding:12px 0;
  margin:0;
}

.mobile-menu li a,
.mobile-drop-btn{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 22px;
    background: #fff;
    border: none;
    border-bottom: 1px solid #eee;
    color: #344054;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    font-family: math;
}

.mobile-menu li a:hover,
.mobile-drop-btn:hover{
  color:#129fcb;
}

.mobile-drop-btn span{
  font-size:12px;
  transition:0.3s;
}

.mobile-dropdown.active .mobile-drop-btn span{
  transform:rotate(180deg);
}

.mobile-drop-list{
  display:none;
  list-style:none;
  padding:0;
  margin:0;
  background:#f7fbfd;
}

.mobile-dropdown.active .mobile-drop-list{
  display:block;
}

.mobile-drop-list li a{
  padding-left:42px;
  font-size:15px;
  font-weight:600;
}

.sidebar-btn{
  padding:20px 22px;
}

.sidebar-btn a{
      display: block;
    text-align: center;
    background: #d12e37;
    color: #fff;
    text-decoration: none;
    padding: 14px;
    border-radius: 2px;
    font-weight: 500;
    font-family: math;
    font-size: 17px;
}


/* ==================================================
   RESPONSIVE CSS
================================================== */

@media(max-width:1199px){
  .navbar-brand img{
    max-width:205px;
  }

  .desktop-menu li a{
    padding:32px 8px;
    font-size:15px;
  }

  .book a{
    padding:13px 22px;
    font-size:15px;
  }
}

@media(max-width:991px){
  .desktop-menu,
  .book{
    display:none;
  }

  .nav-inner{
    min-height:78px;
  }

  .navbar-brand img{
    max-width:190px;
  }

  .top-header-inner{
    justify-content:center;
  }

  .top-left{
    justify-content:center;
    gap:10px 20px;
  }

  .top-social{
    display:none;
  }
}

@media(max-width:575px){
  .headertop{
    display:none;
  }

  .container{
    padding:0 12px;
  }

  .nav-inner{
    min-height:72px;
  }

  .navbar-brand img{
    max-width:165px;
  }

  .menu-toggle{
    width:43px;
    height:43px;
    font-size:20px;
  }

  .desktop-offcanvas{
    width:330px;
    padding:22px;
  }

  .offcanvas-logo{
    max-width:210px;
  }
}


/* ==================================================
   04. HOME SLIDER / BANNER CSS START
================================================== */
/* =========================
   BANNER / OWL SLIDER
========================= */

/* =========================
   BANNER / OWL SLIDER
========================= */

.banner{
    width:100%;
    overflow:hidden;
}

.sliderowl,
.sliderowl .owl-stage-outer,
.sliderowl .owl-stage,
.sliderowl .owl-item,
.sliderowl .slider-item{
    width:100%;
}

.sliderowl .slider-item{
    height:580px;
    overflow:hidden;
    background:#76d8c4;
}

.sliderowl .slider-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center center;
    display:block;
}

/* NAV BUTTON */
.sliderowl .owl-nav{
    position:absolute;
    top:50%;
    left:0;
    transform:translateY(-50%);
    width:100%;
    display:flex;
    justify-content:space-between;
    padding:0 28px;
    pointer-events:none;
}

.sliderowl .owl-nav button{
    width:54px;
    height:54px;
    background:#0c4c7b !important;
    border-radius:50% !important;
    display:flex !important;
    align-items:center;
    justify-content:center;
    pointer-events:auto;
    transition:.3s;
}

.sliderowl .owl-nav button:hover{
    background:#d12e37 !important;
}

.sliderowl .owl-nav button span{
    color:#fff;
    font-size:42px;
    line-height:42px;
    display:block;
    margin-top:-5px;
}

/* DOTS */
.sliderowl .owl-dots{
    position:absolute;
    left:50%;
    bottom:18px;
    transform:translateX(-50%);
    display:flex;
    align-items:center;
    gap:8px;
}

.sliderowl .owl-dots .owl-dot span{
    width:10px;
    height:10px;
    margin:0 !important;
    background:#fff !important;
    opacity:.75;
}

.sliderowl .owl-dots .owl-dot.active span{
    width:28px;
    background:#129fcb !important;
    opacity:1;
}

/* TABLET */
@media(max-width:991px){
    .sliderowl .slider-item{
        height:430px;
        background:#76d8c4;
    }

    .sliderowl .slider-item img{
        object-fit:contain !important;
        object-position:center center !important;
        background:#76d8c4;
    }

    .sliderowl .owl-nav{
        padding:0 18px;
    }

    .sliderowl .owl-nav button{
        width:46px;
        height:46px;
    }

    .sliderowl .owl-nav button span{
        font-size:36px;
        line-height:36px;
    }
}

/* MOBILE */
@media(max-width:575px){
    .sliderowl .slider-item{
        height:260px;
        background:#76d8c4;
    }

    .sliderowl .slider-item img{
        width:100%;
        height:100%;
        object-fit:contain !important;
        object-position:center center !important;
        background:#76d8c4;
    }

    .sliderowl .owl-nav{
        padding:0 8px;
    }

    .sliderowl .owl-nav button{
        width:34px;
        height:34px;
    }

    .sliderowl .owl-nav button span{
        font-size:28px;
        line-height:28px;
        margin-top:-4px;
    }

    .sliderowl .owl-dots{
        bottom:8px;
    }

    .sliderowl .owl-dots .owl-dot span{
        width:8px;
        height:8px;
    }

    .sliderowl .owl-dots .owl-dot.active span{
        width:20px;
    }
}

/* EXTRA SMALL */
@media(max-width:380px){
    .sliderowl .slider-item{
        height:230px;
    }
}
/* ==================================================
   04. HOME SLIDER / BANNER CSS END
================================================== */



/* ==================================================
   05. HOME ABOUT SECTION CSS START
================================================== */
/*=========================================
ABOUT SECTION START
=========================================*/

.doctor-about-section{
    padding:90px 0;
    background:#ffffff;
    overflow:hidden;
    position:relative;
}

.doctor-about-wrap{
    display:grid;
    grid-template-columns:48% 8px 48%;
    align-items:center;
    justify-content:space-between;
    gap:35px;
}


/*=========================================
LEFT IMAGE
=========================================*/

.doctor-about-image{
    position:relative;
}

.doctor-image-frame{
    position:relative;
    background:#f5f9ff;
    border-radius:30px;
    padding:12px;
    border:1px solid #e8eef7;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.doctor-image-frame img {
    width: 100%;
    height: 690px;
    object-fit: cover;
    object-position: top center;
    border-radius: 22px;
    display: block;
}


/* Floating Shape */

.doctor-image-frame::before{
    content:"";
    position:absolute;
    width:180px;
    height:180px;
    background:#129fcb;
    border-radius:50%;
    top:-45px;
    left:-45px;
    opacity:.08;
}

.doctor-image-frame::after{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    border:2px dashed #129fcb;
    border-radius:50%;
    bottom:-70px;
    right:-70px;
    opacity:.15;
}


/*=========================================
CENTER BLUE LINE
=========================================*/

.doctor-about-line{
    width:8px;
    height:310px;
    background:#214fc4;
    border-radius:50px;
    margin:auto;
}


/*=========================================
RIGHT CONTENT
=========================================*/

.doctor-about-content{
    position:relative;
}

.doctor-about-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:#214fc4;
    font-size:14px;
    font-weight:800;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.doctor-about-tag i{
    width:8px;
    height:8px;
    background:#214fc4;
    border-radius:50%;
    display:block;
}

.doctor-about-content h2 {
    margin-bottom: 15px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 56px;
    line-height: 1.05;
    font-weight: 500;
    color: #1f2937;
}

.doctor-about-content h4 {
    margin-bottom: 22px;
    font-size: 21px;
    line-height: 1.6;
    font-weight: 500;
    color: #111827;
    font-family: math;
}

.doctor-about-content p {
    color: #606d7d;
    line-height: 31px;
    font-size: 19px;
    margin-bottom: 35px;
    font-family: math;
}


/*=========================================
ICON BOX
=========================================*/

.doctor-about-icons{
    display:flex;
    gap:45px;
    margin-bottom:35px;
}

.doctor-icon-box{
    display:flex;
    align-items:center;
    gap:16px;
}

.doctor-icon{
       width: 78px;
    height: 78px;
    background: #214fc4;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    border: 5px solid #eef4ff;
    box-shadow: 0 15px 35px rgba(33, 79, 196, .25);
    outline: 1px dashed #214fc4;
}

.doctor-icon-box h3{
   font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.15;
    color: #1f2937;
}


/*=========================================
LIST
=========================================*/

.doctor-about-list{
    list-style:none;
    padding:0;
    margin:0 0 35px;
}

.doctor-about-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #454b58;
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 1.5;
    font-family: math;
}

.doctor-about-list li i{
    color:#214fc4;
    margin-top:6px;
    font-size:18px;
}


/*=========================================
BUTTON
=========================================*/

.doctor-about-btn{
        display: inline-flex;
    align-items: center;
    gap: 14px;
    background: #214fc4;
    color: #fff;
    padding: 8px 8px 8px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    box-shadow: 0 12px 28px rgba(202, 9, 88, .24);
    transition: .3s ease;
    font-family: Georgia, 'Times New Roman', serif;
}

.doctor-about-btn:hover{
    color:#fff;
    transform:translateY(-3px);
}

.doctor-about-btn span{
       width: 42px;
    height: 42px;
    background: #fff;
    color: #214fc4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-35deg);
    transition: .3s ease;
}

.doctor-about-btn:hover span {
    transform: rotate(1deg);
}


/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:991px){

.doctor-about-wrap{
    grid-template-columns:1fr;
}

.doctor-about-line{
    display:none;
}

.doctor-about-image{
    order:1;
}

.doctor-about-content{
    order:2;
}

.doctor-image-frame img{
    height:500px;
}

.doctor-about-content h2{
    font-size:45px;
    line-height:55px;
}

.doctor-about-icons{
    flex-direction:column;
    gap:30px;
}

}

@media(max-width:576px){

.doctor-about-section{
    padding:60px 0;
}

.doctor-image-frame img{
    height:400px;
}

.doctor-about-content h2{
    font-size:35px;
    line-height:42px;
}

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

.doctor-about-content p{
    font-size:15px;
    line-height:28px;
}

.doctor-icon-box h3{
    font-size:24px;
    line-height:28px;
}

.doctor-about-btn{
    min-width:230px;
    height:60px;
    font-size:16px;
}

}
/* ==================================================
   05. HOME ABOUT SECTION CSS END
================================================== */



/* ==================================================
   06. HOME SERVICES SECTION CSS START
================================================== */
.services{
  background:#fff;
  padding:80px 35px;
  font-family:'Manrope', sans-serif;
}

.servicestitle{
  text-align:center;
  max-width:720px;
  margin:0 auto 45px;
}

.servicestitle span{
  display:inline-block;
  color:#129fcb;
  font-size:14px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:1.5px;
  margin-bottom:10px;
}

.servicestitle h2{
  color:#263653;
  font-size:42px;
  line-height:52px;
  font-weight:800;
  margin-bottom:12px;
}

.servicestitle p{
  color:#667085;
  font-size:16px;
  line-height:28px;
  margin:0;
}

.servicesbox{
  background:#fff;
  overflow:hidden;
  border:1px solid #e7eef5;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
  height:100%;
  transition:0.35s ease;
}

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

.servicesimg{
  position:relative;
  height:255px;
  overflow:hidden;
   border: 1px solid rgba(131, 129, 129, 0.432);
}

.servicesimg img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:0.5s ease;
}


.serviceicon{
  position:absolute;
  left:28px;
  bottom:-38px;
  width:76px;
  height:76px;
  background:#fff;
  color:#0d55c6;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:30px;
  z-index:2;
  box-shadow:0 10px 30px rgba(0,0,0,0.15);
  border:8px solid #eef5ff;
}

.servicetitle{
  padding:55px 28px 30px;
}

.servicetitle h4{
  font-size:30px;
  line-height:38px;
  color:#10243f;
  font-weight:800;
  margin-bottom:12px;
  font-family:Georgia, 'Times New Roman', serif;
}

.servicetitle h4::after{
  content:"";
  display:block;
  width:45px;
  height:3px;
  background:#0d55c6;
  margin-top:10px;
}

.servicetitle p{
  color:#566579;
  font-size:16px;
  line-height:29px;
  margin-bottom:25px;
}

.servicetitle a{
  display:inline-flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  min-width:178px;
  height:48px;
  padding:0 8px 0 20px;
  border:1px solid #0d55c6;
  border-radius:50px;
  color:#0d55c6;
  background:#fff;
  text-decoration:none;
  font-size:15px;
  font-weight:800;
  transition:0.35s;
}

.servicetitle a i{
  width:36px;
  height:36px;
  background:#eef5ff;
  color:#0d55c6;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:0.35s;
}

.servicesbox:hover .servicetitle a{
  background:#0d55c6;
  color:#fff;
}

.servicesbox:hover .servicetitle a i{
  background:#fff;
  color:#0d55c6;
  transform:translateX(3px);
}

/* Responsive */
@media(max-width:991px){
  .servicestitle h2{
    font-size:34px;
    line-height:42px;
  }

  .servicesimg{
    height:230px;
  }
}

@media(max-width:575px){
  .services{
    padding:60px 0;
  }

  .servicestitle{
    margin-bottom:35px;
  }

  .servicestitle h2{
    font-size:30px;
    line-height:38px;
  }

  .servicesimg{
    height:220px;
  }

  .servicetitle{
    padding:52px 22px 26px;
  }

  .servicetitle h4{
    font-size:26px;
    line-height:34px;
  }
}
/* ==================================================
   06. HOME SERVICES SECTION CSS END
================================================== */



/* ==================================================
   07. HOME GALLERY SECTION CSS START
================================================== */

.simple-gallery-section{
  padding:50px 0;
  background:#fff;
}

.simple-gallery{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:16px;
}

.simple-gallery img{
  width:100%;
  height:200px;
  object-fit:cover;
  display:block;
  cursor:pointer;
}

/* LIGHTBOX */
.simple-modal{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.88);
  justify-content:center;
  align-items:center;
  z-index:99999;
  padding:25px;
}

.simple-modal-img{
  width:auto;
  height:auto;
  max-width:92vw;
  max-height:88vh;
  object-fit:contain;
  display:block;
  background:#fff;
}

.simple-close{
  position:fixed;
  top:18px;
  right:30px;
  color:#fff;
  font-size:42px;
  line-height:1;
  cursor:pointer;
  z-index:100000;
}

/* RESPONSIVE */
@media(max-width:991px){
  .simple-gallery{
    grid-template-columns:repeat(2, 1fr);
  }

  .simple-gallery img{
    height:200px;
  }
}

@media(max-width:575px){
  .simple-gallery{
    grid-template-columns:1fr;
    gap:14px;
  }

  .simple-gallery img{
    height:220px;
  }
}
/* ==================================================
   07. HOME GALLERY SECTION CSS END
================================================== */



/* ==================================================
   08. TESTIMONIALS SECTION CSS START
================================================== */
section.testimonials {
    padding: 50px 0px;
}
.testtitle 
 h2 {
    font-size: 35px;
    padding-bottom: 20px;
}
.textitem p {
    font-size: 17px;
    line-height: 30px;
}
.textitem b {
    font-size: 17px;
}
section.testimonials .owl-nav {
    display: none;
}
/* ==================================================
   08. TESTIMONIALS SECTION CSS END
================================================== */



/* ==================================================
   09. FOOTER SECTION CSS START
================================================== */
footer.footer {
    background: #004b78;
    padding: 50px 0px;
}
.footertitle h3 {
    color: #fff;
    font-size: 30px;
    padding-bottom: 20px;
}
.footertitle p {
    color: #fff;
    line-height: 26px;
    font-size: 14px;
}
.footertitle ul li a {
    color: #fff;
    font-size: 16px;
    line-height: 26px;
}
.footertitle ul {
    list-style: none;
    padding: 0;
}
.footertitle a {
    display: block;
    color: #fff;
    font-size: 14px;
    line-height: 30px;
}
.footertitle b {
    color: #fff;
    font-size: 18px;
    padding-bottom: 10px;
    display: block;
}
.bootomfooter p {
    font-size: 16px;
}
section.bootomfooter {
    padding: 15px 0px;
}
/* ==================================================
   09. FOOTER SECTION CSS END
================================================== */



/* ==================================================
   10. INNER PAGE BANNER / BREADCRUMB CSS START
================================================== */
.aboutbg{
    background-image: url(../images/abbg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: center;
    background-position-y: center;
    position: relative;
    padding: 60px 0px
}
section.aboutbg:before {
    content: "";
    width: 100%;
    height: 100%;
    background: #00000069;
    position: absolute;
    top: 0;
}
.titlebg 
 h2 {
    color: #fff;
    font-size: 35px;
    font-weight: 700;
}
ul.bgmenu {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    margin-top: 25px;
}
section.aboutbg .titlebg.text-center {
    position: relative;
}
ul.bgmenu li {
    font-size: 19px;
    padding: 0px 7px;
    color: #fb9a43;
}
ul.bgmenu li a {
    color: #fff;
}
/* ==================================================
   10. INNER PAGE BANNER / BREADCRUMB CSS END
================================================== */



/* ==================================================
   11. CONTACT PAGE CSS START
================================================== */
section.contactinfo {
    padding: 60px 0px;
}
.contactinfos h3 {
    color: #000;
    font-size: 40px;
    padding-bottom: 15px;
}
.contactinfos b {
    font-size: 18px;
    color: #000;
    padding-bottom: 16px;
    display: block;
}
.contactinfos p {
    font-size: 17px;
}
.contactinfos a {
    display: block;
    line-height: 33px;
    font-size: 18px;
    color: #000;
}
.mapconact {
    border: solid #ddd 2px;
    padding: 15px;
}
/* ==================================================
   11. CONTACT PAGE CSS END
================================================== */



/* ==================================================
   12. SERVICE DETAIL PAGE CSS START
================================================== */
section.servicesdt {
    padding: 60px 0px;
}
.boximg img {
    width: 100%;
    border: solid #ddd 1px;
    padding: 15px;
}
.boxservices h2 {
    color: #000;
    font-size: 35px;
}
.boxservices p {
    font-size: 17px;
    line-height: 32px;
}
.boxservices b {
    font-size: 16px;
}
.boxservices ul li {
    font-size: 17px;
    line-height: 30px;
    padding-bottom: 10px;
}
/* ==================================================
   12. SERVICE DETAIL PAGE CSS END
================================================== */



/* ==================================================
   13. RESPONSIVE CSS START
================================================== */
@media only screen and (max-width: 767px) {

    /* Gallery Responsive CSS */
    .gallerybox img {
    height: 100%;
}

    /* Navbar Responsive CSS */
    a.navbar-brand img {
        width: 100%;
        max-width: 270px;
    }
    .navbar 
 button.navbar-toggler {
    background: #164b80;
}
.navbar button.navbar-toggler span.navbar-toggler-icon {
    color: #fff !important;
    font-size: 20px;
    border: solid #fff 2px;
    border-radius: 44px 0px;
}
.menusub li:hover ul {
    display: none !important;
}
.menusub li.nav-item.dropdown ul.dropdown-menu.show {
    display: block !important;
}

.book.ms-auto {
    padding-bottom: 20px;
}

    /* Topbar Responsive CSS */
.addcontact {
    text-align: center !important;
}
header.headertop {
    background: #d12e37;
    padding: 0px 0px;
}
.addcontact {
    padding: 3px 0px;
}

    /* Slider Responsive CSS */
.sliderowl .owl-nav button {
    width: 22px;
    line-height: 18px !important;
    height: 22px;
    font-size: 7px !important;
}
.sliderowl .owl-nav button span {
    margin-top: -5px;
    font-size: 22px;
}

    /* About Responsive CSS */
.abouttitle h2 {
    font-size: 30px;
    padding-bottom: 20px;
    text-align: center;
}
.aboutdoctro {
    padding: 15px 0px;
}
section.aboutus {
    padding: 30px 0px;
}
.aboutimg img {
    border: solid #d7d4d4 1px;
    border-radius: 120px 0px;
    padding: 10px 10px;
}

    /* Services Responsive CSS */
.servicesbox {
    margin-bottom: 15px;
}

    /* Gallery Responsive CSS */
.gallerybox {
    margin-bottom: 20px;
}

    /* Testimonials Responsive CSS */
section.testimonials {
    padding: 0px 0px 50px;
}

    /* Footer Responsive CSS */
section.bootomfooter {
    text-align: center;
}
a.id {
    text-align: center;
    display: block;
}
a.id img {
    width: 100%;
    max-width: 140px;
}


  }
/* ==================================================
   13. RESPONSIVE CSS END
================================================== */

/* ==================================================
   INDEX PAGE PREMIUM UPDATE CSS START
   Font-family math + remaining sections + clean cards
================================================== */
body{
    font-family: math !important;
    color:#1f2d44;
    background:#fff;
}

.main-navbar,
.headertop,
.doctor-about-section,
.services,
.simple-gallery-section,
.kb-why-section,
.kb-appointment-section,
.kb-faq-section,
.testimonials,
.footer,
.bootomfooter{
    font-family: math !important;
}

.container{
    max-width:1320px;
}

/* Banner improvements */
.banner .slider-item img,
.sliderowl .slider-item img{
    width:100%;
    height:580px;
    object-fit:cover;
    object-position:center;
}
.banner{
    overflow:hidden;
}
.owl-theme .owl-dots .owl-dot span{
    width:10px;
    height:10px;
    background:#cde8f2 !important;
}
.owl-theme .owl-dots .owl-dot.active span{
    background:#129fcb !important;
}

/* Common section title */
.kb-section-title,
.servicestitle,
.testtitle{
    text-align:center;
    max-width:780px;
    margin:0 auto 45px;
}
.kb-section-title span,
.servicestitle span{
    display:inline-block;
    color:#129fcb;
    font-size:15px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:8px;
}
.kb-section-title h2,
.servicestitle h2,
.testtitle h2{
    color:#233653;
    font-size:42px;
    line-height:1.25;
    font-weight:700;
    margin:0 0 12px;
    padding:0;
}
.kb-section-title p,
.servicestitle p{
    color:#5d6b82;
    font-size:17px;
    line-height:28px;
    margin:0;
}

/* About section refinement */
.doctor-about-section{
    padding:85px 0;
    background:#fff;
}
.doctor-about-wrap{
    gap:42px;
}
.doctor-image-frame{
    border-radius:18px;
    padding:12px;
    background:#f7fbfd;
    border:1px solid #e4edf3;
    box-shadow:none;
}
.doctor-image-frame img{
    height:560px;
    border-radius:12px;
}
.doctor-about-line{
    background:#129fcb;
    height:260px;
}
.doctor-about-tag{
    color:#129fcb;
    letter-spacing:2px;
}
.doctor-about-tag i{
    background:#129fcb;
}
.doctor-about-content h2{
    color:#233653;
}
.doctor-icon{
    background:#129fcb;
    box-shadow:none;
}
.doctor-about-list li i{
    color:#129fcb;
}
.doctor-about-btn{
    background:#d12e37;
    box-shadow:none;
}
.doctor-about-btn span{
    color:#d12e37;
}

/* Services simple premium card */
.services{
    background:#f3f8fb;
    padding:85px 0;
}
.services .row{
    --bs-gutter-x:2.4rem;
    --bs-gutter-y:2.4rem;
}
.servicesbox{
    background:#fff !important;
    border:1px solid #dfeaf1;
    border-radius:12px;
    overflow:hidden;
    padding:0 !important;
    height:100%;
    box-shadow:0 8px 24px rgba(12,76,123,.06);
    transition:none !important;
}
.servicesbox:hover{
    transform:none !important;
    box-shadow:0 8px 24px rgba(12,76,123,.06) !important;
}
.servicesimg{
    height:235px;
    position:relative;
    overflow:hidden;
}
.servicesimg img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:none !important;
    transform:none !important;
}
.serviceicon{
    position:absolute;
    left:26px;
    bottom:-32px;
    width:64px;
    height:64px;
    background:#fff;
    color:#0e71c4;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    z-index:2;
    border:7px solid #eef6fb;
    box-shadow:0 8px 18px rgba(0,0,0,.10);
}
.servicetitle{
    padding:48px 26px 28px;
}
.servicetitle h4{
    color:#20324d !important;
    font-size:27px;
    line-height:34px;
    font-weight:700;
    padding:0;
    margin:0 0 12px;
}
.servicetitle h4:after{
    content:"";
    display:block;
    width:42px;
    height:3px;
    background:#0e71c4;
    margin-top:10px;
}
.servicetitle p{
    color:#56657a !important;
    font-size:16px;
    line-height:28px;
    min-height:112px;
    margin:0 0 22px;
}
.servicetitle a{
    display:inline-flex !important;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    min-width:155px;
    width:auto !important;
    height:44px;
    padding:0 7px 0 18px !important;
    border:1px solid #0e71c4;
    border-radius:40px !important;
    background:#fff !important;
    color:#0e71c4 !important;
    font-size:15px;
    font-weight:700;
    margin:0 !important;
    text-align:left;
}
.servicetitle a i{
    width:32px;
    height:32px;
    border-radius:50%;
    background:#eef6fb;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#0e71c4;
}

/* Why choose section */
.kb-why-section{
    padding:80px 0;
    background:#fff;
}
.kb-why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}
.kb-why-card{
    background:#f7fbfd;
    border:1px solid #e1eef5;
    border-radius:14px;
    padding:30px 24px;
    text-align:center;
}
.kb-why-icon{
    width:68px;
    height:68px;
    border-radius:50%;
    background:#129fcb;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin:0 auto 18px;
}
.kb-why-card h3{
    color:#233653;
    font-size:22px;
    font-weight:700;
    margin-bottom:12px;
}
.kb-why-card p{
    color:#5d6b82;
    font-size:15px;
    line-height:26px;
    margin:0;
}

/* Simple gallery */
.simple-gallery-section{
    padding:80px 0;
    background:#f3f8fb;
}
.simple-gallery{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:16px;
}
.simple-gallery img{
    width:100%;
    height:200px;
    object-fit:cover;
    display:block;
    cursor:pointer;
    border-radius:0;
    border:none;
    transition:none;
}
.simple-gallery img:hover{
    transform:none;
}
.simple-modal{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.88);
    justify-content:center;
    align-items:center;
    z-index:99999;
    padding:25px;
}
.simple-modal-img{
    width:auto;
    height:auto;
    max-width:92vw;
    max-height:88vh;
    object-fit:contain;
    display:block;
    background:#fff;
}
.simple-close{
    position:fixed;
    top:18px;
    right:30px;
    color:#fff;
    font-size:42px;
    line-height:1;
    cursor:pointer;
    z-index:100000;
}

/* Appointment CTA */
.kb-appointment-section{
    padding:70px 0;
    background:#fff;
}
.kb-appointment-box{
    background:#0e4f7d;
    border-radius:18px;
    padding:42px 48px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
    color:#fff;
}
.kb-appointment-content span{
    color:#fb9a43;
    font-size:15px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}
.kb-appointment-content h2{
    font-size:38px;
    font-weight:700;
    margin:8px 0 10px;
}
.kb-appointment-content p{
    font-size:17px;
    line-height:28px;
    margin:0;
    color:#eaf6fb;
}
.kb-appointment-actions{
    display:flex;
    align-items:center;
    gap:14px;
    flex-wrap:wrap;
    justify-content:flex-end;
}
.kb-call-btn,
.kb-contact-btn{
    height:52px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    border-radius:40px;
    padding:0 24px;
    text-decoration:none;
    font-weight:700;
    font-size:16px;
}
.kb-call-btn{
    background:#fb9a43;
    color:#fff;
}
.kb-contact-btn{
    background:#fff;
    color:#0e4f7d;
}

/* FAQ */
.kb-faq-section{
    padding:80px 0;
    background:#f3f8fb;
}
.kb-faq-wrap{
    max-width:920px;
    margin:0 auto;
}
.kb-faq-item{
    background:#fff;
    border:1px solid #e1eef5;
    border-radius:12px;
    margin-bottom:14px;
    overflow:hidden;
}
.kb-faq-question{
    width:100%;
    border:0;
    background:#fff;
    color:#233653;
    padding:18px 22px;
    font-size:18px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:space-between;
    text-align:left;
}
.kb-faq-question i{
    color:#129fcb;
}
.kb-faq-answer{
    display:none;
    padding:0 22px 18px;
}
.kb-faq-answer p{
    color:#5d6b82;
    font-size:16px;
    line-height:28px;
    margin:0;
}
.kb-faq-item.active .kb-faq-answer{
    display:block;
}
.kb-faq-item.active .kb-faq-question i{
    transform:rotate(45deg);
}

/* Testimonials update */
.testimonials{
    padding:80px 0;
    background:#fff;
}
.textitem{
    background:#f7fbfd;
    border:1px solid #e1eef5;
    border-radius:14px;
    padding:34px 32px;
}
.textitem p{
    color:#5d6b82;
    font-size:17px;
    line-height:30px;
}
.textitem b{
    color:#0e4f7d;
    font-size:18px;
}
.map{
    background:#f3f8fb;
}
.map-title{
    margin-bottom:30px;
}

/* Footer refinement */
.footer{
    background:#203653;
    padding:65px 0 45px;
}
.footertitle h3{
    color:#fff;
    font-size:24px;
    font-weight:700;
    margin-bottom:20px;
}
.footertitle p,
.footertitle a,
.footertitle li a,
.footertitle b{
    color:#dbe7ef !important;
    font-size:16px;
    line-height:28px;
}
.footertitle span i{
    color:#fb9a43;
}
.bootomfooter{
    background:#182941;
    padding:16px 0;
}
.bootomfooter p{
    color:#fff;
    font-size:15px;
    margin:0;
}
.bootomfooter .id img{
    max-width:150px;
    filter:brightness(0) invert(1);
}

@media(max-width:1199px){
    .kb-why-grid{grid-template-columns:repeat(2,1fr);}
}
@media(max-width:991px){
    .banner .slider-item img,
    .sliderowl .slider-item img{height:430px;}
    .kb-section-title h2,
    .servicestitle h2,
    .testtitle h2{font-size:34px;}
    .simple-gallery{grid-template-columns:repeat(2,1fr);}
    .simple-gallery img{height:200px;}
    .kb-appointment-box{flex-direction:column;align-items:flex-start;padding:34px 28px;}
    .kb-appointment-actions{justify-content:flex-start;}
    .servicetitle p{min-height:auto;}
}
@media(max-width:575px){
    .banner .slider-item img,
    .sliderowl .slider-item img{height:300px;}
    .services,
    .kb-why-section,
    .simple-gallery-section,
    .kb-faq-section,
    .testimonials{padding:60px 0;}
    .kb-section-title h2,
    .servicestitle h2,
    .testtitle h2{font-size:28px;}
    .kb-why-grid,
    .simple-gallery{grid-template-columns:1fr;}
    .simple-gallery img{height:220px;}
    .kb-appointment-content h2{font-size:28px;}
    .kb-call-btn,
    .kb-contact-btn{width:100%;}
}
/* ==================================================
   INDEX PAGE PREMIUM UPDATE CSS END
================================================== */

/* ==================================================
   CLINIC LOCATION SECTION UPDATED
================================================== */
.clinic-location-section{
    padding:80px 0;
    background:#f3f8fb;
    font-family:math;
}
.clinic-location-section .map-title{
    margin-bottom:42px;
}
.clinic-location-wrapper{
    display:grid;
    grid-template-columns:0.9fr 1.1fr;
    gap:30px;
    align-items:stretch;
}
.clinic-location-info{
    background:#fff;
    padding:36px 34px;
    border-radius:22px;
    border:1px solid #e6eef5;
    box-shadow:0 16px 45px rgba(12,76,123,.08);
}
.clinic-small-title{
    display:inline-block;
    color:#009ed0;
    font-size:14px;
    font-weight:700;
    letter-spacing:1.5px;
    text-transform:uppercase;
    margin-bottom:12px;
}
.clinic-location-info h3{
    color:#213653;
    font-size:34px;
    line-height:43px;
    font-weight:700;
    margin-bottom:14px;
}
.clinic-location-text{
    color:#5d6b82;
    font-size:16px;
    line-height:28px;
    margin-bottom:26px;
}
.clinic-info-list{
    display:flex;
    flex-direction:column;
    gap:16px;
}
.clinic-info-item{
    display:flex;
    gap:14px;
    padding:15px;
    background:#f7fbfd;
    border:1px solid #edf3f8;
    border-radius:16px;
}
.clinic-info-icon{
    width:46px;
    height:46px;
    min-width:46px;
    border-radius:50%;
    background:#0e9fc9;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:17px;
}
.clinic-info-item h4{
    color:#213653;
    font-size:18px;
    font-weight:700;
    margin-bottom:5px;
}
.clinic-info-item p,
.clinic-info-item a{
    color:#5d6b82;
    font-size:15px;
    line-height:24px;
    margin:0;
    text-decoration:none;
}
.clinic-location-btns{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-top:28px;
}
.clinic-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:48px;
    padding:12px 24px;
    border-radius:50px;
    font-size:15px;
    font-weight:700;
    text-decoration:none;
    transition:.3s;
}
.clinic-btn.primary{
    background:#d12e37;
    color:#fff;
}
.clinic-btn.outline{
    background:#fff;
    color:#0c4c7b;
    border:1px solid #0c4c7b;
}
.clinic-btn:hover{
    transform:translateY(-2px);
}
.clinic-map-box{
    min-height:100%;
    border-radius:22px;
    overflow:hidden;
    border:10px solid #fff;
    box-shadow:0 16px 45px rgba(12,76,123,.10);
}
.clinic-map-box iframe{
    width:100%;
    height:100%;
    min-height:520px;
    border:0;
    display:block;
}
@media(max-width:991px){
    .clinic-location-wrapper{
        grid-template-columns:1fr;
    }
    .clinic-map-box iframe{
        min-height:420px;
    }
    .clinic-location-info h3{
        font-size:30px;
        line-height:38px;
    }
}
@media(max-width:575px){
    .clinic-location-section{
        padding:60px 0;
    }
    .clinic-location-info{
        padding:26px 20px;
        border-radius:18px;
    }
    .clinic-location-info h3{
        font-size:26px;
        line-height:34px;
    }
    .clinic-info-item{
        padding:13px;
    }
    .clinic-location-btns{
        flex-direction:column;
    }
    .clinic-btn{
        width:100%;
    }
    .clinic-map-box iframe{
        min-height:360px;
    }
}


/* ==================================================
   FINAL GLOBAL REFINEMENT
================================================== */
body{
  font-family: math !important;
}

/* Footer clean layout */
.footer{
  background:#0c4c7b !important;
  padding:56px 0 48px !important;
}
.footer .row{
  row-gap:28px;
}
.footertitle{
  height:100%;
}
.footertitle h3{
  color:#fff !important;
  font-size:24px !important;
  line-height:32px;
  font-weight:700 !important;
  margin-bottom:18px !important;
}
.footertitle p,
.footertitle a,
.footertitle li a,
.footertitle b{
  color:#eef7ff !important;
  font-size:15.5px !important;
  line-height:28px !important;
  font-weight:500 !important;
  text-decoration:none !important;
}
.footertitle b{
  display:block;
  margin-bottom:12px;
  color:#fff !important;
  letter-spacing:.3px;
}
.footertitle ul{
  padding:0 !important;
  margin:0 !important;
  list-style:none !important;
}
.footertitle ul li{
  margin-bottom:7px;
}
.footertitle span i{
  color:#fb9a43 !important;
  width:20px;
}
.footer-contact a{
  display:block;
  margin-bottom:8px;
}
.bootomfooter{
  background:#083a5f !important;
  padding:15px 0 !important;
}
.bootomfooter p{
  margin:0 !important;
  color:#fff !important;
  font-size:14.5px !important;
}
.bootomfooter .id img{
  max-width:145px !important;
  width:100%;
  height:auto;
}

/* About image full visible fix */
.doctor-image-frame{
  background:#f5f9ff !important;
}
.doctor-image-frame img{
  object-fit:contain !important;
  object-position:center center !important;
  background:#f5f9ff;
  height:560px !important;
}
.aboutimg img{
  width:100% !important;
  height:auto !important;
  object-fit:contain !important;
  border-radius:0 !important;
}

/* Gallery simple spacing */
.simple-gallery-section{
  padding:55px 0 !important;
  background:#fff !important;
}
.simple-gallery{
  grid-template-columns:repeat(4,1fr) !important;
  gap:16px !important;
  max-width:none !important;
}
.simple-gallery img{
  height:420px !important;
  object-fit:cover !important;
  border-radius:0 !important;
  border:none !important;
  transform:none !important;
  box-shadow:none !important;
}
.simple-gallery img:hover{
  transform:none !important;
  box-shadow:none !important;
}
.simple-modal-img{
  width:auto !important;
  height:auto !important;
  max-width:92vw !important;
  max-height:88vh !important;
  object-fit:contain !important;
  background:#fff;
}

@media(max-width:991px){
  .simple-gallery{grid-template-columns:repeat(2,1fr) !important;}
  .doctor-image-frame img{height:480px !important;}
}
@media(max-width:575px){
  .simple-gallery{grid-template-columns:1fr !important;}
  .simple-gallery img{height:520px !important;}
  .doctor-image-frame img{height:390px !important;}
  .footer{text-align:left;}
  .bootomfooter .text-md-end{text-align:left !important;}
}
