@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body{
    overflow-x: hidden;
}
:root{
    --primary-font: "Poppins", sans-serif;
    --secondary-font: "Open Sans", sans-serif;
    --primary-color: #2b2d42;
    --primary-color: #0b5ed7;
    --secondary-color: #000;
    --blue:#0b5ed7;
    --pink:#e83e8c;
    --bg:#f6f9ff;
    --text:#1f2937;
    --muted:#6b7280;
    --card:#ffffff;
    --line:#e6ebf2;
    --radius:14px;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--primary-font);
}
a{
    text-decoration: none!important;
    color: #000;
    display: block;
    outline: none!important;
}
ul{
    padding: 0;
    margin: 0;
    list-style-type: none;
}
h1,h2,h3,h4,h5,h6{
    font-family: var(--primary-font);
    margin: 0;
}

p{
    font-family: var(--secondary-font);
    margin: 0;
}

.p-0 {
    padding: 0;
}

.d-flex {
    display: flex;
}

.justify-content-end {
    justify-content: end;
}

body {
    overflow-x: hidden;
}

body::-webkit-scrollbar {
    width: 5px;
    background: #eee;
}

body::-webkit-scrollbar-thumb {
    background: var(--primary-color);
}

/* ===== HEADER ===== */
.site-header{
    background:#fff;
    position: sticky;
    width:100%;
    top: 40px;
    z-index:1000;
    box-shadow: 0px 2px 1px 0 rgb(0 0 0 / 9%);
}

.header-wrap{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo{
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:700;
    color:#1f6fd5;
    width: 20%;
}

.logo img{width: 100%;}

.main-nav ul{
    display:flex;
    list-style:none;
    gap: 35px;
    align-items:center;
}

.main-nav a{
    text-decoration:none;
    color: #000;
    font-weight: 500;
    padding: 25px 0;
    font-family: var(--secondary-font);
    font-size: 16px;
}

.main-nav a.whatsapp-btn{
    color: green;
    border-radius: 6px;
    font-weight: 600;
    padding: 0;
    font-size: 38px;
}

.main-nav ul li.megamenu-holder {
    position: relative;
}

.main-nav ul li.megamenu-holder ul.drop-menu {
    position: absolute;
    top: 100%;
    left: 0;
    border-top: 2px solid var(--primary-color);
    background-color: #ffffff;
    color: black;
    border-radius: 0px;
    min-width: 500px;
    text-align: left;
    list-style: none;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
    z-index: 2;
    font-size: 16px;
    font-weight: 400;
    font-family: "roboto", sans-serif;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
    justify-content: unset;
}
.main-nav ul li:hover ul.drop-menu {
    opacity: 1;
    visibility: visible;
}
.main-nav ul li.megamenu-holder ul.drop-menu li {
    display: block;
    width: 48%;
}

.main-nav ul li.megamenu-holder ul.drop-menu li a {
    padding: 5px;
    transition: all .3s ease;
    color: #000;
    font-size: 14px;
    font-weight: 400;
    font-family: var(--primary-font);
}

.main-nav ul li.megamenu-holder ul.drop-menu li a:hover {
    color: var(--primary-color);
}

/* ===== HERO ===== */

.hero{
    position:relative;
    background:linear-gradient(180deg,#eef6ff 0%, #ffffff 70%);
    padding: 30px 0 60px;
    overflow:hidden;
}

/* left soft wave */
.hero::before{
    content:'';
    position:absolute;
    left:-120px;
    top:40px;
    width:420px;
    height:420px;
    background:#e3f0ff;
    filter:blur(30px);
    opacity:.8;
}

/* right wave */
.hero::after{
    content:'';
    position:absolute;
    right:-140px;
    top:-60px;
    width:500px;
    height:500px;
    background:#d9ebff;
    filter:blur(35px);
    opacity:.9;
}

/* inner flowing curve */
.hero-bg-shape{
    position:absolute;
    bottom: 0px;
    left:0;
    width:100%;
    height: 300px;
    background:url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 320' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23eaf4ff' d='M0,192L80,176C160,160,320,128,480,122.7C640,117,800,139,960,149.3C1120,160,1280,160,1360,160L1440,160L1440,320L1360,320C1280,320,1120,320,960,320C800,320,640,320,480,320C320,320,160,320,80,320L0,320Z'/%3E%3C/svg%3E");
    background-size:cover;
    z-index:1;
}
.hero.servicepage {
    padding: 10px 0 20px;
}
/* content above background */
.hero .container{
    position:relative;
    z-index:2;
}

.titlebox {
    width: 100%;
    margin: 0 auto;
}
.titlebox h1{font-family: var(--secondary-font);font-size: 32px;color: #0f172a;margin-bottom: 12px;font-weight: 600;text-align: center;}
.titlebox p {
    text-align: center;
    font-size: 16px;
    margin: 10px auto 0;
    padding: 15px 0 0;
    border-top: 1px solid #e4e4e4;
    width: 100%;
}

.hero-tags{
    margin: 18px auto 0px;
    color: #4f7edb;
    font-weight:600;
    text-align: center;
    width: max-content;
    border-top: 1px solid #e4e4e4;
    padding: 20px 0 0;
    font-size: 18px;
    font-family: var(--secondary-font);
}
.hero-tags ul {
    display: flex;
    gap: 25px;
    list-style: disc;
}

.hero-tags ul li {
    padding: 0 10px 0 0px;
}

.hero-tags ul li a {
    color: var(--primary-color);
    font-family: var(--secondary-font);
}

.hero-tags ul li:first-child {
    list-style: none;
}
.hero .hero-buttons {
    display: none;
}
.hero-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
    margin: 30px 0 0;
}

.hero-btn{
    padding:12px 28px;
    border-radius:6px;
    text-decoration:none;
    font-weight:600;
}

.hero-section {
  background: linear-gradient(135deg, #0b5ed7 ,#e83e8c);
  padding: 10px 0 20px;
  position: relative;
}

.hero-content {
  position: relative;
}

.hero-content h1 {
  margin-bottom: 5px;
  text-transform: capitalize;
  font-size: 32px;
  font-weight: 700;
  font-family: var(--secondary-font);
  color: #fff;
  display: none;
}
.hero-content h3 {
  margin-bottom: 10px;
  text-transform: capitalize;
  font-size: 28px;
  font-weight: 700;
  font-family: var(--secondary-font);
  color: #fff;
  margin: 0 0 10px;
}
.hero-content p {
  color: #fff;
  max-width: 100%;
  font-size: 16px;
  font-family: var(--primary-font);
  font-weight: 400;
  margin: 0 0 10px;
  letter-spacing: .5px;
}
.hero-btns {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0 0;
}

.hero-btns a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .6);
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    white-space: nowrap;
}

.hero-btns a.book-btn.bookappointment {
    color: var(--primary-color);
    background: #fff;
}
.herosectionbox {
    position: relative;
}
.topheader {
    background: linear-gradient(135deg, #0b5ed7 ,#e83e8c);
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 9999;
}
.countersectionbox {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 20px;
    padding: 10px 30px;
    position: relative;
}

.countersectionbox .counterbox {
    padding: 0px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.countersectionbox .counterbox .icon {
    padding: 0;
    margin: 0;
    line-height: 0;
}

.countersectionbox .counterbox .icon svg {
    width: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.countersectionbox .counterbox h3 {
    color: #fff;
    font-size: 14px;
    margin: 0;
    font-weight: 500;
}
.badge-circle {
  position: absolute;
  top: -80px;
  right: 20%;
  background: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  font-family: var(--secondary-font);
}

.hero-images {
  position: relative;
}

.image-card {
  position: relative;
}

.image-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}
.imgbox {
    padding: 10px;
}
.bannerimgbox {
    width: 100%;
    height: 100%;
    position: relative;
}

.bannerimgbox:before {
    content: "";
    background: #1974c41c;
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 120px 120px 0 0;
    z-index: -1;
    top: -5%;
    right: -5%;
}
.image-card.big img {
  max-width: 300px;
}

.image-card h5 {
  text-align: center;
  margin-top: 15px;
  font-weight: 400;
  color: #fff;
  font-size: 18px;
  font-family: var(--secondary-font);
}

.trusted-box {
  margin-top: 15px;
  background: #fff;
  padding: 5px 10px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  font-size: 22px;
  font-weight: 700;
  font-family: var(--secondary-font);
  position: absolute;
  top: 105%;
  right: 0;
  width: 45%;
  text-align: center;
}

.trusted-box strong {
  color: var(--secondary-color);
  font-size: 22px;
  font-weight: unset;
}

.review-btn {
  margin-top: 10px;
  background: var(--primary-color);
  color: #fff;
  font-size: 14px;
  display: inline-block;
  padding: 8px 15px;
  border-radius: 5px;
  font-family: var(--secondary-font);
  letter-spacing: 0.5px;
}

.bannerslider .slick-slide.slick-current.slick-active {
    transform: scale(1);
    transition: .3s linear;
    transition-delay: -1s;
}

.bannerslider .slick-slide.slick-active {
    /* transform: scale(0.8) translateY(-10%); */
}
.blog-right .blog-item-text a.readmorebtn {
    position: absolute;
    top: 80%;
    right: 20px;
}

.btn-blue{ background:#1f6fd5; color:#fff;}
.btn-green{ background:#41a84c; color:#fff;}

/* ===== SERVICES ===== */
.services{
    margin: 0px 0;
}

.service-card{
    overflow:hidden;
    transition:.3s;
    background: #ffffff;
    border: 1px solid #e6ebf2;
    padding: 10px 10px 10px;
    box-shadow: 7px 8px 12px rgb(0 0 0 / 11%);
    margin: 0 10px 20px;
}

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

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

.service-body{
    text-align: center;
}

.service-body h5{
    font-size: 16px;
    padding: 10px 0;
    color: var(--primary-color);
    font-weight: 700;
    font-family: var(--secondary-font);
    border-bottom: 1px solid #dee1e6;
    margin: 0;
}

.service-body p {
    color: #6b7280;
    margin: 0 0 15px;
    font-size: 16px;
    font-family: var(--primary-font);
    font-weight: 400;
}

.service-body a{
    font-weight: 600;
    color: #262626;
    font-size: 16px;
    font-family: var(--secondary-font);
    padding: 10px;
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){
    .main-nav ul{
        gap:16px;
    }

    .hero h1{
        font-size:28px;
    }
}

/* ===== SERVICES SECTION ===== */
.services-section{
    background:linear-gradient(180deg,#ffffff 0%, #f4faff 100%);
    padding:90px 0 70px;
    position:relative;
    overflow:hidden;
}

.services-title{
    text-align:center;
    margin-bottom:50px;
}

.services-title h2{
    font-size:32px;
    font-weight:700;
    color:#1d2b4f;
}

.services-title p{
    color:#4f7edb;
    margin-top:6px;
    font-weight:500;
}

/* cards */
.service-box{
    background:#fff;
    border-radius:14px;
    padding:26px 22px;
    text-align:center;
    box-shadow:0 10px 28px rgba(0,0,0,.06);
    transition:.3s ease;
    height:100%;
}

.service-box:hover{
    transform:translateY(-6px);
}

.service-box h5{
    font-size:17px;
    font-weight:600;
    margin-bottom:10px;
}

.service-box p{
    font-size:14px;
    color:#6c7a96;
    line-height:1.6;
    min-height:48px;
}

.service-btn{
    margin-top:14px;
    display:inline-block;
    background:#1f6fd5;
    color:#fff;
    padding:9px 18px;
    border-radius:6px;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
}

/* referral text */
.referral-text{
    text-align:center;
    margin:50px auto 18px;
    max-width:700px;
    color:#6c7a96;
}

/* referral button */
.referral-btn-wrap{
    text-align:center;
}

.referral-btn{
    display:inline-block;
    background:#1f6fd5;
    color:#fff;
    padding:12px 28px;
    border-radius:6px;
    font-weight:600;
    text-decoration:none;
}

/* background wave */
.services-wave{
    position:absolute;
    bottom:-80px;
    left:0;
    width:100%;
    height:240px;
    background:url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 320' xmlns='http://www.w3.org2000/svg'%3E%3Cpath fill='%23e9f4ff' d='M0,224L120,213.3C240,203,480,181,720,170.7C960,160,1200,160,1320,160L1440,160L1440,320L1320,320C1200,320,960,320,720,320C480,320,240,320,120,320L0,320Z'/%3E%3C/svg%3E");
    background-size:cover;
    z-index:0;
}

.services-section .container{
    position:relative;
    z-index:1;
}

/* ===== FOOTER ===== */
.footer{
  background:#0f172a;
  padding: 50px 0 0;
}
.footerlogobox a{
  color:#cbd5f5;
}

.footerlogobox {}

.footerlogobox a {}

.footerlogobox a img {
    width: 60%;
}

.footerlogobox p {
    font-size: 15px;
    margin: 10px 0;
    color: #eee;
    font-weight: 400;
}
.footerbox {}


.footerbox h6 {
    font-size: 18px;
    font-family: var(--secondary-font);
    color: #fff;
    font-weight: 600;
    margin: 0 0 20px;
}


.footerbox ul {
    margin: 0;
}


.footerbox ul li {}


.footerbox ul li a {
    font-size: 15px;
    color: #eee;
    font-weight: 400;
    font-family: var(--secondary-font);
    padding: 0 0 10px;
    transition: all .3s ease;
    word-break: break-all;
    display: inline-block;
}


.footerbox p {
    font-size: 16px;
    font-family: var(--secondary-font);
}
.footerbox ul li a:hover{
  color:#60a5fa;
}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.1);
  padding: 15px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 25px;
}
.footer-bottom .footerleft {}
.footer-bottom .footerleft p {
    color: #eee;
    font-size: 15px;
}
.footer-bottom .footerleft p a {
    display: inline-flex;
    color: #fff;
}
.cta-strip{background:var(--primary-color);color:#fff;background: linear-gradient(135deg, #0b5ed7 ,#e83e8c);text-align:center;padding: 40px 15px;}
.cta-strip h3{font-size:34px;margin-bottom:10px;}
.cta-strip a{display:inline-block;margin-top:15px;background:#fff;color:var(--primary-color);padding:14px 26px;border-radius: 6px;font-weight:bold;}



.fancy-accordion-section {
  padding: 50px 0;
  background: linear-gradient(180deg,#f6faff,#ffffff);
}
.fancy-accordion-section .titlebox p {width: unset;}
.mini-tag {
  background: #eaf2ff;
  color: #0d6efd;
  padding: 6px 18px;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 14px;
  display: inline-block;
}

/* accordion container */

.fancy-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.fa-item {
  background: #f2f8ff;
  border-radius: 10px;
  box-shadow: 0px 20px 40px rgba(0, 0, 0, .06);
  border-left: 1px solid #e6ebf2;
  transition: .35s;
}

.fa-item.active {
  box-shadow: 3px 3px 40px rgb(0 0 0 / 8%);
}

.fa-header {
  padding: 10px 0px 5px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fa-header h5 {
  margin: 0;
  cursor: pointer;
  list-style: none;
  padding: 12px 18px;
  font-weight: 600;
  position: relative;
  font-family: var(--secondary-font);
  font-size: 17px;
}
.fa-header .icon {
    background: #eef4ff;
}
.icon {
  border-radius: 50%;
  background: #eef4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: .3s;
  min-width: 32px;
  height: 32px;
}

.fa-item.active .icon {
  transform: rotate(45deg);
  background: var(--primary-color);
  color: white;
}

/* body */

.fa-body {
  max-height: 0;
  overflow: hidden;
  padding: 0 26px;
  transition: max-height .45s ease, padding .35s ease;
}

.fa-item.active .fa-body {
  max-height: 300px;
  padding-bottom: 22px;
}

.fa-body ul {
  padding-left: 20px;
  list-style: disc;
  margin: 0 0 20px;
}

.fa-body li {
  margin-bottom: 8px;
  color: #6b7280;
  font-size: 14px;
  font-family: var(--primary-font);
}
.fa-body .fa-body-links {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0 0;
}
.fa-body .fa-body-links a {
    font-weight: 600;
    text-decoration: none;
    color: var(--primary-color);
}
/* right panel */

.diagnostic-panel {
  background: #ecf5ff;
  border-radius: 28px;
  padding: 20px 40px;
  height: 100%;
  box-shadow: 10px 4px 55px rgba(0, 0, 0, .08);
  border: 2px solid #eef3ff;
}

.diagnostic-panel h3 {
  font-weight: 600;
  margin-bottom: 12px;
  font-family: var(--secondary-font);
  font-size: 20px;
}

.pill-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0;
  padding: 10px;
}

.pill-wrap span {
  font-weight: 600;
  font-size: 13px;
  border: 1px solid #e6ebf2;
  border-radius: 999px;
  padding: 8px 12px;
  background: #fff;
  color: #374151;
  white-space: nowrap;
}

.cta-panel {
  margin-top: 30px;
  background: linear-gradient(135deg, #0b5ed7 ,#e83e8c);
  padding: 20px 28px;
  border-radius: 10px;
  color: white;
}
.cta-panel h5 {
    font-size: 22px;
    font-family: var(--secondary-font);
    font-weight: 500;
    margin: 0 0 10px;
}
.cta-panel p {
    margin: 0 0 5px;
    font-size: 16px;
    font-family: var(--primary-font);
}
.cta-panel a {
  display: inline-block;
  margin-top: 12px;
  background: white;
  color: #0d6efd;
  padding: 12px 26px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
}

@media(max-width:768px){
  .diagnostic-panel {
    padding: 8px;
  }
}

/* social list style start */
.social-list {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: row;
}

.social-list li {}

.social-list li a {
    background: #fff;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all .3s ease;
    color: #fff;
}
.social-list li a.facebook {
    background: #0866ff;
}
.social-list li a.instagram {
    background: #fe0b84;
}
.social-list li a.twitter {
    background: #000000;
}
.social-list li a.linkedin {
    background: #0077b5;
}
.social-list li a.youtube {
    background: #ff0000;
}

.social-list li a i {
    margin: 0;
}

.social-list li a:hover {
    transform: translateY(-5px);
}
/* social list style end */

/* popup style start */

/* Overlay */
    .popup-overlay {
      position: fixed;
      inset: 0;
      background: rgb(0 0 0 / 76%);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      backdrop-filter: blur(6px);
    }

    /* Popup Box */
    .popup-box {
      background: #000;
      padding: 50px 36px;
      width: 50%;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);
      animation: popIn 0.4s cubic-bezier(.4,0,.2,1);
    }

    @keyframes popIn {
      from {
        transform: scale(0.9) translateY(10px);
        opacity: 0;
      }
      to {
        transform: scale(1) translateY(0);
        opacity: 1;
      }
    }

    .popup-buttons {
      display: flex;
      gap: 20px;
      align-items: center;
      justify-content: space-between;
    }

    .popup-buttons a {
      text-decoration: none;
      padding: 22px 26px;
      border-radius: 5px;
      font-size: 18px;
      font-weight: 700;
      letter-spacing: 0.2px;
      transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
      width: 50%;
    }

    .popup-buttons a:hover {
      transform: translateY(-2px) scale(1.01);
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
      opacity: 0.95;
    }

    .btn-site {
      background: #ffffff2b;
      color: white;
    }
    .btn-ref {
      background: linear-gradient(135deg, #0b5ed7 ,#e83e8c);
      color: white;
    }

/* popup style end */

.servicedetailspage {
    padding: 110px 0 50px;
}

.hero .titlebox {
    display: none;
}

.servicedetailspage .servicepagedetails {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
    gap: 20px;
    flex-wrap: wrap;
}

.servicedetailspage .servicepagedetails .servicedetailsbox {
    width: 40%;
    padding: 10px;
    border: 1px solid #d9ecff;
    border: 1px solid #dbeaff;
    box-shadow: 4px 4px 5px 0 #0084f62e;
    border-radius: 10px;
}

.servicedetailspage .servicepagedetails .servicedetailsbox.width-82 {
    width: 82%;
}

.servicedetailspage .servicepagedetails .servicedetailsbox .serviceinfobox::-webkit-scrollbar {
    width: 5px;
    background: #eee;
}

.servicedetailspage .servicepagedetails .servicedetailsbox .serviceinfobox::-webkit-scrollbar-thumb {
    background: var(--primary-color);
}

.servicedetailspage .servicepagedetails .servicedetailsbox .img {}

.servicedetailspage .servicepagedetails .servicedetailsbox .img img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.servicedetailspage .servicepagedetails .servicedetailsbox .serviceinfobox {
    padding: 10px;
    height: 300px;
    overflow: hidden;
    overflow-y: scroll;
}

.servicedetailspage .servicepagedetails .servicedetailsbox .serviceinfobox h3 {
    font-size: 22px;
    font-family: var(--secondary-font);
    font-weight: 600;
    border-bottom: 1px solid #d7dfec;
    padding: 0 0 10px;
    color: #00418d;
}

.servicedetailspage .servicepagedetails .servicedetailsbox .serviceinfobox ul {
}

.servicedetailspage .servicepagedetails .servicedetailsbox .serviceinfobox ul li {
    font-size: 15px;
    padding: 10px 0 10px 5px;
    border-bottom: 1px solid #d7dfec;
    font-family: var(--secondary-font);
    font-weight: 500;
}
.servicedetailspage .servicepagedetails .servicedetailsbox .serviceinfobox ul li:before {
    content: 'âœ”';
    padding: 0 5px 0 0;
    color: var(--primary-color);
}
.servicedetailspage .servicepagedetails .servicedetailsbox .serviceinfobox p {
    font-size: 15px;
    padding: 10px 0 10px 5px;
    border-bottom: 1px solid #d7dfec;
    font-family: var(--secondary-font);
    font-weight: 500;
}
.servicedetailspage .whatsappbtn {display: flex;justify-content: center;}

.servicedetailspage .whatsappbtn a {
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    background: #1f6fd5;
    color: #fff;
    width: max-content;
}

.servicedetailspage .whatsappbtn a i {}

.disclaimer {
  background: #fff4f4;
  padding: 30px 20px;
  border-radius: 10px;
  font-size: 14px;
  width: 81.5%;
  margin: 10px auto 30px;
  box-shadow: 4px 4px 5px 0 #0084f62e;
}

.about-us-page {
    padding: 40px 0 40px;
    position: relative;
}

.about-us-page .b {}

.about-us-page .b img {
    width: 100%;
    border-radius: 10px;
    height: 100%;
    object-fit: cover;
}

.about-us-page .t {}

.about-us-page .t h2 {
    font-weight: 600;
    font-family: var(--secondary-font);
    letter-spacing: 0.5px;
    font-size: 32px;
}
.about-us-page .t h2 strong {
    color: var(--primary-color);
    font-family: var(--secondary-font);
    font-weight: 600;
    letter-spacing: .5px;
}
.about-us-page .t p {
    text-align: justify;
    font-size: 16px;
    font-family: var(--secondary-font);
    font-weight: 400;
    margin: 0 0 10px;
    letter-spacing: .5px;
    margin: 10px 0;
}


/* Contact Us page style start */

.emergency-box {padding: 30px 0px;margin: 10px 0 0!important;overflow: hidden;}
.emergency-box .inner-box-grid {
    padding: 60px;
    border-radius: 15px;
    background: linear-gradient(135deg, #0b5ed7 ,#e83e8c);
    min-height: 95px;
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
}
.emergency-box .inner-box-grid .grid-box .icon-box {
    position: absolute;
    top: 5px;
}
.emergency-box .inner-box-grid .grid-box .icon-box i {
    font-size: 28px;
    color: #fff;
}
.emergency-box .inner-box-grid .grid-box .details-box {
    display: block;
    padding-left: 50px;
}
.emergency-box .inner-box-grid .grid-box .details-box .head-details {
    color: #fff;
    display: block;
    font-weight: bold;
    font-size: 22px;
    letter-spacing: 1px;
    line-height: 35px;
    text-transform: uppercase;
}
.emergency-box .inner-box-grid .grid-box .details-box .text-details {
    display: block;
    color: #fff;
    font-size: 16px;
    padding-top: 10px;
    word-break: break-all;
}
.emergency-box .grid-box .details-box .text-details ul li.timing {
    margin-left: -20px;
}

.emergency-box .inner-box-grid .grid-box .details-box .text-details ul {
    padding-left: 20px;
}

.form-control:focus {
    border-color: var(--primary-color);
}
.contact-box {
    margin-bottom: 20px;
}
.grid-box {
    position: relative;
}
.open-day {
    display: inline-block;
    font-weight: 700;
    margin-bottom: 10px;
    width: 40px;
    color: #fff;
}

.close-day {
    color: #ffffff;
    font-weight: 700;
    font-size: 22px;
}
.open-time {
    padding-left: 5px;
}
.map-box {
    padding: 0px;
    margin-top: 30px;
    margin-bottom: 30px;
}
.map-box iframe {
    width: 100%;
    height: 500px;
    border: none;
    /* border-radius: 20px; */
}
.contact-box {
    padding: 0;
}
.contact-box 
    {
    /* -webkit-box-shadow: 0 0px 20px 0 rgba(0, 0, 0, 0.2); */
    /* box-shadow: 0 0px 20px 0 rgba(0, 0, 0, 0.2); */
    margin-top: 30px;
    margin-bottom: 30px;
}
.h-100 {
    height: 100%;
}
.contact-box .form, .contact-box .contact-info {
    padding: 20px 40px;
}
.contact-box .form {
    background: #fff;
}
.contact-box .form h3 {
    letter-spacing: 0.5px;
    color: var(--secondary-color);
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 600;
}
.margin-bottom-25 {
    margin-bottom: 25px;
}
.contact-box .col-form-label {
    font-size: 14px;
    color: var(--primary-color);
    margin: 0 0 10px 0;
    display: inline-block;
    padding: 0;
}
.btn, .form-control, .custom-select {
}
.form-group .btn {
    padding: 12px 28px!important;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    background: linear-gradient(135deg, #0b5ed7 ,#e83e8c);
    color: #fff;
}
.white-text {
    color: #ffffff;
}
.form-control {
    border: none;
    border-bottom: 1px solid #ccc;
    padding-left: 0;
    padding-right: 0;
    border-radius: 0;
    background: none;
    box-shadow: none!important;
    outline: none;
}
.contact-box .contact-info {
    background: #74a39a;
}
.contact-box .contact-info h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 30px;
}
.list-unstyled {
    padding-left: 0;
    list-style: none;
}
.contact-box .contact-info ul li {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.5);
}

/* Contact Us page style end */

/* Hero */
    .hero{padding: 30px 0 26px;}
    .hero-grid{
      display:grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap:28px;
      align-items:center;
    }
    h1{font-size:46px;line-height:1.1;margin:0 0 12px}
    .sub{font-size:18px;color:var(--muted);margin:0 0 18px;max-width:70ch}
    .cta-row{display:flex;gap:10px;flex-wrap:wrap;padding: 20px 0;}
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding:12px 16px;
      border-radius:999px;
      border:1px solid var(--line);
      font-weight: 600;
      min-width:150px;
      font-family: var(--secondary-font);
    }
    .btn.primary{background:var(--blue);color:#fff;border-color:var(--blue)}
    .btn.secondary{background:#fff;color:var(--text)}
    .hero-card{
      background:rgba(255,255,255,.85);
      border:1px solid var(--line);
      border-radius:var(--radius);
      padding:18px;
      box-shadow:0 10px 30px rgba(15,23,42,.06);
    }
    .hero-card .kicker{
      font-size:12px;letter-spacing:.08em;text-transform:uppercase;color:var(--muted);
      margin-bottom:10px
    }
    .hero-card ul{margin:0;padding-left:18px;color:var(--muted);list-style: disc;}
    .hero-card li{margin:6px 0}

    /* Trust badges */
    .trust-badges{
      padding:14px 0 8px;
      border-top:1px solid var(--line);
      border-bottom:1px solid var(--line);
      background:rgba(255,255,255,.7);
      backdrop-filter: blur(6px);
    }
    .badge-strip{
    width: 100%;
    display: flex;
    gap: 0px;
    align-items: center;
    flex-wrap: wrap;
}
    .badge{
      font-size: 14px;
      padding: 15px 20px;
      border-radius:999px;
      background:var(--card);
      border:1px solid var(--line);
      font-weight: 600;
      color:#374151;
      /* white-space:nowrap; */
      width: max-content;
      margin: 0 0 10px;
      /* width: 49%; */
    }

    /* Sections */
    .section{padding:34px 0}
    h2{font-size:28px;margin:0 0 14px}
    h3{font-size:18px;margin:0 0 8px}
    .grid-2{display:flex;flex-wrap: wrap;gap:16px}
    .grid-3 .card {
        width: 32%;
    }
    .card{
      background:var(--card);
      border:1px solid var(--line);
      border-radius:var(--radius);
      padding:18px;
      box-shadow:0 10px 30px rgba(15,23,42,.06);
    }
.steps{
      display: flex;
      flex-wrap: wrap;
      gap:12px;
    }
    .step{
      border:1px dashed rgba(11,94,215,.35);
      border-radius:var(--radius);
      padding:14px;
      background:rgba(11,94,215,.03);
      width: 30%;
    }
    .step b{display:block;margin-bottom:4px}
    .card ul {list-style: disc;}
    .muted{color:var(--muted);}
    .link-cards{display: flex;gap:12px;flex-wrap: wrap;}
    .card.link{display:block;}

    /* Accordion */
    .accordion details{
      background:var(--card);
      border:1px solid var(--line);
      border-radius:var(--radius);
      margin:10px 0;
      box-shadow:0 10px 30px rgba(15,23,42,.05);
      overflow:hidden;
    }
    .accordion summary{
      cursor:pointer;
      padding:16px 18px;
      list-style:none;
      position:relative;
      font-size: 18px;
      font-family: var(--primary-font);
      font-weight: 500;
    }
    .accordion summary::-webkit-details-marker{display:none}
    .accordion summary::after{
      content:"+";
      position:absolute;right:18px;top:14px;
      font-size:22px;color:var(--muted);
    }
    .accordion details[open] summary::after{content: "-";}
    .panel{padding:0 18px 16px 18px;color:#374151}
    .panel ul{margin:10px 0 0;padding-left:18px;list-style: decimal;}
    .panel li{margin:6px 0}
    .panel p{margin:10px 0 0}
    .panel p a {display: inline-block;color: var(--primary-color);font-weight: 500;}

    /* Referral */
    .referral-block{background:linear-gradient(180deg, rgba(11,94,215,.06), rgba(232,62,140,.04))}
    .referral-block .card{border-color:rgba(11,94,215,.18)}

    /* Sticky CTA mobile */
    .sticky-cta{
      position:fixed;
      left:0;
      right:0;
      bottom:0;
      background: #1daa61;
      color:#fff;
      padding:12px 16px;
      text-align:center;
      font-weight:900;
      z-index:9999;
      display:none;
    }
    .sticky-cta a{color:#fff;text-decoration:none;font-family: var(--secondary-font);font-weight: 600;}

    @media(max-width:980px){
      .hero-grid{grid-template-columns:1fr}
      h1{font-size:38px}
      .link-cards{grid-template-columns:1fr 1fr}
    }
    @media(max-width:768px){
      .btn{
    min-width: unset;
    font-size: 14px;
    padding: 8px 15px;
}
      .grid-2{grid-template-columns:1fr}
      .badge-strip{flex-wrap:nowrap;overflow:auto;padding-bottom:6px}
      .sticky-cta{display:block}
    }
    h2{font-size:28px;margin:0 0 14px}
    h3{font-size:18px;margin:0 0 8px}
    .grid-2{display: flex;gap: 15px;flex-wrap: wrap;}
    .grid-3{display: flex;flex-wrap: wrap;gap:16px}
.card p {
    padding: 0 0 10px;
    font-size: 16px;
    color: #6b7280;
    font-weight: 500;
}

.card p a b {
    font-weight: 500!important;
}

.card p a {
    color: var(--primary-color);
    display: inline-block;
}

.servicebanner {
}

.servicebanner .servicebannerimg {}

.servicebanner .servicebannerimg img {
    width: 100%;
}
.langopt{text-align: right;position: absolute;right: -10px;}
.langopt .goog-te-gadget{font-size:0;}
.langopt span a{display:none;}
.langopt select{padding: 5px 10px;
    border-radius: 2px;
    border: none;
    outline: none;
    margin: 0 !important;
    display: inline-block; width:100%;
}
.gallery-item:hover .gallery-link {
    margin-top: 0;
    opacity: 1;
}

section.gallery {
    padding: 30px 0px;
}

.gallery-item:hover .gallery-img::before {
    opacity: 1;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}
.gallery-img::before {
    content: '';
    position: absolute;
    top: 10px;
    bottom: 10px;
    right: 10px;
    left: 10px;
    opacity: 0;
    border-radius: 10px;
    background: #375875b0;
    transform: scaleY(0);
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.gallery-heading h1 {
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    color: #000000;
}

.gallery-img-box {padding: 10px;}

.gallery-item {
    margin-bottom: 25px;
    position: relative;
}

.gallery-img {
    position: relative;
}

.gallery-img img {
    border-radius: 10px;
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
}

.gallery-link {
    position: absolute;
    width: 50px;
    height: 50px;
    line-height: 50px;
    color: var(--primary-color)!important;
    background: #fff;
    text-align: center;
    border-radius: 50px;
    left: 50%;
    top: 50%;
    font-size: 22px;
    margin-top: 50px;
    opacity: 0;
    box-shadow: 0 3px 24px rgb(0 0 0/10%);
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    -webkit-transition-delay: .3s;
    transition-delay: .3s;
}

.footerbox ul.list-unstyled.footerboxlist {
    display: flex;
    flex-wrap: wrap;
}

.footerbox ul.list-unstyled.footerboxlist li {
    width: 50%;
}

.doctorprofile {
    padding: 50px 0;
}

.doctorprofile .doctorprofilebox {
    display: flex;
    gap: 30px;
}

.doctorprofile .doctorprofilebox .doctorimage {
    padding: 10px 0;
    margin: 0px 0;
    padding: 3px;
    text-align: center;
    border-radius: 15px;
    -webkit-box-shadow: inset 0 0 0 3px #eff3f6;
    box-shadow: inset 0 0 0 3px #eff3f6;
    transition: all .3s ease;
    width: 40%;
    border-radius: 5px;
    padding: 20px 20px;
}

.doctorprofile .doctorprofilebox .doctorimage img {
    width: 100%;
    margin: 0 0 10px;
    height: 100%;
    object-fit: cover;
}
.doctorprofile.aboutpage .doctorprofilebox .doctorimage img {
    height: 60%;
}
.doctorprofile .doctorprofilebox .doctorimage h4 {
    font-size: 22px;
    font-weight: 600;
    color: #000;
    margin: 5px 0 0;
    font-family: var(--secondary-font);
}

.doctorprofile .doctorprofilebox .doctorimage p {
    font-size: 16px;
    font-weight: 500;
    color: #423a3a;
    font-family: var(--secondary-font);
}

.doctorprofile .doctorprofilebox .doctorinfobox {
    width: 60%;
}

.doctorprofile .doctorprofilebox .doctorinfobox h5 {
    font-weight: 600;
    font-family: var(--secondary-font);
    font-size: 18px;
    margin: 0 0 10px;
    color: var(--primary-color);
}

.doctorprofile .doctorprofilebox .doctorinfobox h2 {
    font-family: var(--secondary-font);
    font-size: 42px;
    color: #0f172a;
    margin-bottom: 12px;
    font-weight: 800;
}

.doctorprofile .doctorprofilebox .doctorinfobox h3 {
    font-size: 18px;
    line-height: 1.5;
    color: #334155;
    margin-bottom: 10px;
    font-weight: 600;
}
.doctorprofile .doctorprofilebox .doctorinfobox .badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 10px;
}
.doctorprofile .doctorprofilebox .doctorinfobox .badges span {
    font-weight: 600;
    font-size: 13px;
    border: 1px solid #e6ebf2;
    border-radius: 20px;
    padding: 5px 8px;
    background: #fff;
    color: #374151;
    white-space: nowrap;
}
.doctorprofile .doctorprofilebox .doctorinfobox h4 {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    font-family: var(--primary-font);
}

.doctorprofile .doctorprofilebox .doctorinfobox p {
    font-family: var(--primary-font);
    padding: 0 0 10px;
    text-align: justify;
    font-size: 16px;
    color: #475569;
    color: #6b7280;
}
.doctorprofile .doctorprofilebox .doctorinfobox ul {
    list-style: disc;
    margin: 0 0 0 30px;
}

.doctorprofile .doctorprofilebox .doctorinfobox ul li {
    font-family: var(--secondary-font);
    padding: 0 0 10px;
    text-align: justify;
    font-size: 16px;
    color: #475569;
}
.doctorinfobox .hero-btns a.book-btn.bookappointment {
    background: linear-gradient(135deg, #0b5ed7 ,#e83e8c);
    color: #fff;
    border: 1px solid #fff;
    transition: all .3s ease;
}
.doctorinfobox .hero-btns a.book-btn.bookappointment:hover {
    background: #fff;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}
.doctorinfobox .hero-btns a {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}
.trust-badgesbox {
    display: flex;
    justify-content: space-around;
}

.trust-badgesbox .videosection {
    width: 30%;
}

.trust-badgesbox .videosection iframe {
    width: 100%;
    height: 300px;
}

 .testimonials-section {padding: 50px 0;background: #ffffff;overflow: hidden;}
    .testimonials-grid {display: flex;gap: 20px;margin: 40px 0 0;flex-wrap: wrap;}
    .testimonial-card {
    padding: 20px;
}
    .testimonial-card .testimonialcardbox {background: #eaf2ff;border-radius: 10px;padding: 20px 20px;box-shadow: 0 12px 30px rgb(15 23 42 / 11%);}
    .testimonial-stars {font-size: 22px;letter-spacing: 2px;color: var(--primary-color);}
    .testimonial-text {font-size: 16px;color: #475569;margin-bottom: 18px;text-align: justify;}
    .testimonial-card h4 {font-size: 18px;color: #0f172a;font-weight: 600;}
    .testimonial-card span { font-size: 14px; color: #64748b; }
    .faq-section {padding: 50px 0;background: linear-gradient(180deg,#f6faff,#ffffff);}
    .faq-grid {display: flex;gap: 10px;align-items: start;flex-wrap: wrap;}
    .faq-left h2 { font-size: 40px; line-height: 1.2; color: #0f172a; margin-bottom: 16px; font-weight: 800; }
    .faq-intro { font-size: 16px; line-height: 1.8; color: #64748b; }
    .faq-grid .faq-left {
        width: 40%;
    }
    
    .faq-grid .faq-left .titlebox h5 {text-align: left;}
    
    .faq-grid .faq-left .titlebox h1 {
        text-align: left;
        font-weight: 700;
    }
    
    .faq-grid .faq-left .titlebox p {
        text-align: left;
    }
    .faq-right {display: flex;flex-direction: column;gap: 16px;width: 56%;}
    .faq-item {}
    .faq-question {
    margin: 0;
    cursor: pointer;
    list-style: none;
    padding: 12px 18px;
    font-weight: 600;
    position: relative;
    font-family: var(--secondary-font);
    font-size: 17px;
    border: unset;
    text-align: left;
    background: unset;
    width: 100%;
}
.faq-question span {
    font-family: var(--secondary-font);
    color: #212529;
}
    .faq-icon {min-width: 32px;height: 32px;border-radius: 50%;background: #eaf2ff;color: #000;display: inline-flex;align-items: center;justify-content: center;font-size: 20px;font-weight: 600;}
    .fa-item.active .faq-icon {
        transform: rotate(45deg);
        background: var(--primary-color);
        color: white;
    }
    .faq-answer {display: none;padding: 0px 24px 22px 24px;transition: all .3s ease;}
    .faq-answer p { font-size: 15px; line-height: 1.8; color: #64748b; }
    .faq-item.active .faq-answer {display: block;}
    .final-cta-section {padding: 50px 0;background: #ffffff;}
    .final-cta-box {background: linear-gradient(135deg, #0b5ed7 ,#e83e8c);border-radius: 32px;padding: 60px 50px;text-align: center;box-shadow: 0 22px 50px rgba(15, 23, 42, 0.22);}
    .final-cta-box .titlebox h5 {
        color: #fff;
    }
    
    .final-cta-box .titlebox h1 {
        color: #fff;
        font-size: 42px;
    }
    .final-cta-box h2 { font-size: 42px; line-height: 1.2; color: #ffffff; margin-bottom: 18px; font-weight: 800; }
    .final-cta-box p { max-width: 820px; margin: 0 auto 28px; font-size: 16px; line-height: 1.8; color: rgba(255, 255, 255, 0.86); }
    .final-cta-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
    .footer-cta-strip { padding: 28px 20px; background: #0d6efd; }
    .footer-cta-flex { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
    .footer-cta-text h3 { margin-bottom: 6px; font-size: 24px; color: #ffffff; font-weight: 800; }
    .footer-cta-text p { font-size: 15px; color: rgba(255, 255, 255, 0.9); }
    .footer-cta-links { display: flex; flex-wrap: wrap; gap: 18px; }
    .footer-cta-links a { color: #ffffff; font-weight: 600; font-size: 15px; }
    .footer-cta-links a:hover { text-decoration: underline; }
    .titlebox h5 {
        font-weight: 600;
        font-family: var(--secondary-font);
        font-size: 18px;
        margin: 0 0 10px;
        color: var(--primary-color);
        text-align: center;
    }
    
    .final-cta-buttons a {
        background: var(--primary-color);
        border: 1px solid var(--primary-color);
        color: #fff;
        display: flex;
        gap: 5px;
        transition: all .3s ease;
    }
    
    .final-cta-buttons a:nth-child(2) {
        background: #fff;
        color: var(--primary-color);
    }
    
    .final-cta-buttons a:hover {
        background: #fff;
    }
    
    .final-cta-buttons a:nth-child(2):hover {
        background: var(--pink);
        color: #fff;
    }
    
     .compare-table{
      width:100%;
      border-collapse:collapse;
      background:var(--card);
      border:1px solid var(--line);
      border-radius:var(--radius);
      overflow:hidden;
      box-shadow:0 10px 30px rgba(15,23,42,.05);
    }
    .compare-table th,.compare-table td{
      border-bottom:1px solid var(--line);
      padding:12px 12px;
      text-align:left;
      vertical-align:top;
    }
    .compare-table th{background:rgba(11,94,215,.06);font-weight:950}
    .compare-table tr:last-child td{border-bottom:none}
    .mobile-sidenav {display: none;}
    .mobile-sidenav .mob-menu-open.toggle-menu {
        position: relative;
        z-index: 999999;
        right: 20%;
        top: 0;
        padding: 6px 5px 4px;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }
    
    .mobile-sidenav .mob-menu-open.toggle-menu span.bar {
        background: #000000;
        height: 3px;
        width: 35px;
        display: block;
        margin-bottom: 8px;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }
    .mobile-sidenav .mob-menu-open.toggle-menu span.bar:last-child {
        margin: 0;
    }
    
    .mobile-menu {
        position: fixed;
        right: 0;
        top: 0;
        width: 60%;
        padding-right: 30px;
        max-width: 100%;
        height: 100%;
        opacity: 0;
        visibility: hidden;
        z-index: 999999;
    }
    .mobile-menu .nav-logo a img {
        width: 80%;
    }
    
    .mobile-menu.active {
        opacity: 1;
        visibility: visible;
    }
    
    .menu-backdrop {
        position: fixed;
        right: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: #061a3a;
        z-index: 1;
        -webkit-transform: translateX(101%);
        -ms-transform: translateX(101%);
        transform: translateX(101%);
        transition: all 900ms ease;
        -moz-transition: all 900ms ease;
        -webkit-transition: all 900ms ease;
        -ms-transition: all 900ms ease;
        -o-transition: all 900ms ease;
    }
    
    .mobile-menu.active .menu-backdrop {
        opacity: 0.70;
        visibility: visible;
        -webkit-transition: all 0.7s ease;
        -moz-transition: all 0.7s ease;
        -ms-transition: all 0.7s ease;
        -o-transition: all 0.7s ease;
        transition: all 0.7s ease;
        -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
        transform: translateX(0%);
    }
    
    .mobile-menu .close-btn {
        position: absolute;
        right: 15px;
        top: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 30px;
        width: 25px;
        height: 25px;
        text-align: center;
        font-size: 16px;
        color: #ffffff;
        cursor: pointer;
        z-index: 10;
        -webkit-transition: all 0.9s ease;
        -moz-transition: all 0.9s ease;
        -ms-transition: all 0.9s ease;
        -o-transition: all 0.9s ease;
        transition: all 0.9s ease;
        background: var(--secondary-color);
    }
    
    .mobile-menu.active .close-btn {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
    
    .mobile-menu .menu-box {
        position: absolute;
        left: 0px;
        top: 0px;
        width: 100%;
        height: 100%;
        max-height: 100%;
        overflow-y: auto;
        background: var(--primary-color);
        background: linear-gradient(135deg, #0b5ed7 ,#e83e8c);
        padding: 0px 0px;
        z-index: 5;
        opacity: 0;
        visibility: hidden;
        border-radius: 0px;
        -webkit-transform: translateX(101%);
        -ms-transform: translateX(101%);
        transform: translateX(101%);
    }
    
    .mobile-menu.active .menu-box {
        opacity: 1;
        visibility: visible;
        -webkit-transition: all 0.7s ease;
        -moz-transition: all 0.7s ease;
        -ms-transition: all 0.7s ease;
        -o-transition: all 0.7s ease;
        transition: all 0.7s ease;
        -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
        transform: translateX(0%);
    }
    
    
    .mobile-menu .nav-logo {
        position: relative;
        text-align: left;
        padding: 5px;
        background: #fff;
    }
    .mobile-menu .nav-logo a {
    text-transform: uppercase;
    font-family: var(--primary-font);
    font-family: var(--secondary-font);
    font-weight: 600;
    color: var(--primary-color);
    padding: 3px 0;
    font-size: 18px;
}
    .mobile-menu .megamenu-item {
        margin: 0px 0px;
    }
    
    .mobile-menu .megamenu-item ul {
        border-bottom: 1px solid rgb(255 255 255 / 31%);
    }
    
    .mobile-menu .megamenu-item ul li {
        position: relative;
        display: block;
        border-top: 1px solid rgb(255 255 255 / 36%);
    }
    
    .mobile-menu .megamenu-item ul li a {
        position: relative;
        display: flex;
        justify-content: space-between;
        line-height: 24px;
        padding: 10px 15px;
        font-size: 16px;
        font-weight: 500;
        color: #ffffff;
        text-transform: capitalize;
        transition: all 500ms ease;
        font-family: var(--primary-font);
        align-items: center;
    }
    .mobile-menu .megamenu-item ul li a .translate {}

        
    .mobile-menu .megamenu-item ul li a .translate .goog-te-gadget{
        font-size: 0;
        white-space: unset;
        line-height: 0;
    }
    .mobile-menu .megamenu-item ul li a .translate span {
        display: none;
    }
    .mobile-menu .megamenu-item ul li.drop-item .dropdown-btn {
        position: absolute;
        right: 12px;
        top: 6px;
        width: 22px;
        height: 22px;
        text-align: center;
        font-size: 16px;
        line-height: 32px;
        color: #ffffff;
        background: rgba(255, 255, 255, 0.10);
        cursor: pointer;
        border-radius: 2px;
        transition: all 500ms ease;
        z-index: 5;
        align-items: center;
        display: flex;
        justify-content: center;
    }
    
    .megamenu-item ul li.drop-item .megadropmenu {
    }
    
    .megamenu-item ul li.drop-item .megadropmenu ul {
        background: var(--primary-color);
    }
    
    .megamenu-item ul li.drop-item .megadropmenu ul li {
        border: none!important;
    }
    
    .megamenu-item ul li.drop-item .megadropmenu ul li a {
    font-size: 14px;
    padding: 5px 16px;
}
    a.whatsapp {
        background: #1daa61!important;
        border: 1px solid #1daa61!important;
        color: #fff!important;
    }
    .faq-left .titlebox h5, .faq-left .titlebox p, .faq-left .titlebox h1 {
        text-align: left;
    }
    
    .fa-body p {
        margin-bottom: 8px;
        color: #6b7280;
        font-size: 14px;
        font-family: var(--primary-font);
    }
    
    .gallerycategory h2 {
        background: linear-gradient(135deg, #0b5ed7 ,#e83e8c);
        width: max-content;
        padding: 5px 20px;
        color: #fff;
        font-size: 22px;
        font-family: var(--secondary-font);
        width: unset;
        display: inline-block;
    }
    
    .slick-prev {
        left: 5px;
        z-index: 2;
    }
    
    .slick-next {
        right: 5px;
    }
    
    .slick-prev:before, .slick-next:before {
        font-family: 'FontAwesome';
        background: #000;
        border-radius: 50%;
        padding: 5px;
        font-size: 12px;
    }
    .whatsappicon{
        width: 50px;
        height: 50px;
        display: inline-block;
        position: fixed;
        bottom: 10%;
        right: 20px;
        z-index: 9;
    }
    .whatsappicon img{
        width: 100%;
    }

    .next-slide-btn,
    .prev-slide-btn{
        position: absolute;
        bottom: 3%;
        right: 0;
        text-align:center;
        z-index: 2;
        display: flex;
        z-index: 999;
        width: 100%;
    }
    
    .next-slide-btn button{
        background:#000;
        color:#fff;
        border:none;
        padding: 5px 15px;
        border-radius: 0px;
        font-size:16px;
        display: none;
    }
    .next-slide-btn #prevBtn {
        left: 0;
        position: absolute;
        bottom: 3%;
    }
    
    .next-slide-btn #nextBtn {
        right: 0;
        bottom: 3%;
        position: absolute;
    }
