h1,h2,h3,h4,h5,h6{
  font-family:'Rajdhani' !important;
}
::selection {
    color: #fff;
    background: #F17F21;
}
@media (min-width: 992px) {
  ::-webkit-scrollbar {
    width: 6px !important;
  }

  ::-webkit-scrollbar-thumb {
    background: #234DA0;
  }
}
:root{
  --primary : #F17F21;
}
/* navbar css start */
body.menu-open {
  overflow: hidden;
  height: 100vh;
}
body{
  padding-top: 120px !important;
}

  a{
  text-decoration: none;
}
.topbar{
  background: #234DA0;
  color:#fff;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:8px 0%;
  padding-right: 1%;
  font-size:14px;
  font-weight: 600;
  flex-wrap:wrap;

  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.topbar-left{
  width:76%;
  overflow:hidden;
}

.marquee{
  white-space:nowrap;
  overflow:hidden;
}
.marquee-content{
  display:inline-block;
  padding-left:100%;
  animation:marquee 15s linear infinite;
}

@keyframes marquee{
  0%{ transform:translateX(0); }
  100%{ transform:translateX(-100%); }
}

.topbar-right span{
  margin-left:20px;
}

.nav-badges{
  display:flex;
}
.badge{
  padding:8px 11px;
  border-radius:30px;
  text-decoration:none;
  color:#fff;
  font-size:14px;
  gap:6px;
  transition:.3s;
  font-weight: 500;
}

.badge i{
  font-size:14px;
}

.badge:hover{
  transform:translateY(-2px);
  box-shadow:0 6px 20px rgba(0,0,0,.2);
}

.pink{
 border: 2px solid #fff;
}


/* navbar */
.navbar{
  background:#F17F21;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding: 4px 5%;
  position: fixed;
 
  left: 0;
  width:100%;
  z-index:9998;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.topbar{
  position: relative;
  z-index: 2;
}

.navbar{
  position: relative;  
  top: 0;
  z-index: 1;
}

.navbar.sticky-active{
  position: fixed !important;
  top:0;
  left:0;
  width:100%;
  z-index:99999;
  background:#F17F21;
  box-shadow:0 8px 20px rgba(0,0,0,0.15);
}

.logo{
  padding-right:20px;
}

.logo img{
  height:65px;
}
.nav-links{
  display:flex;
  list-style:none;
  gap:25px;
margin-bottom: 0px !important;
}

.nav-links a{
  text-decoration:none;
  color: #fff;
  font-weight:500;
  padding:8px 14px;
  transition:.3s ease;
}
.nav-links a:hover{
  border-left: 1px solid #F17F21;
  border-right: 1px solid #F17F21;
  color: #234DA0; 
}

.register-btn{
  padding:10px 22px;
  color: #234DA0;
  background : #fff;
  border-left: 1px solid #234DA0;
  border-right: 1px solid #234DA0;
  text-decoration:none;
  border-radius:30px;
  font-weight:600;
  transition:.3s;
    transform:translateY(-3px);
  box-shadow:0 10px 25px rgba(0,0,0,.2);
}

.register-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 25px rgba(0,0,0,.2);
  background : #F17F21;
  color : #fff;
  
}

/* mobile menu */
.mobile-menu{
  position:fixed;
  top:0;
  left:-100%;
  width:100%;
  height:100vh;
  background:#fff;
  transition:0.4s ease;
  padding:20px;
  z-index:999999;
}

.mobile-menu.active{
  left:0;
}

.mobile-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:30px;
}

.mobile-menu ul{
  list-style:none;
   padding-left: 0px !important;
}

.mobile-menu ul li{
  margin:20px 0;
}

.mobile-menu ul li a{
  text-decoration:none;
  color:#333;
  font-size:20px;
  font-weight:500;
  
}

.close-btn{
  font-size:26px;
  cursor:pointer;
}

.menu-toggle{
  display:none;
  font-size:28px;
  cursor:pointer;
  color : #fff !important;
}

@media(max-width:992px){
  .nav-links,
  .register-btn{
    display:none;
  }

}
@media(max-width:992px){
  .nav-links,
  .nav-badges{
    display:none;
  }

  .menu-toggle{
    display:block;
  }

  .topbar{
    flex-direction:column;
    text-align:center;
    padding-right: 0% !important;
  }

  .topbar-left{
    width:100%;
    margin-bottom:8px;
  }

  .topbar-right{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    width:100%;
    flex-wrap:nowrap;   
  }

  .topbar-right span{
    margin-left:0;
  }

}

.nav-links li {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 220px;
  padding: 10px 0;
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  display: none;
  z-index: 9999;
}

@media (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    display: block;
  }
}

/* dropdown links */
.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: #333;
  text-decoration: none;
}

.dropdown-menu li a:hover {
  background: #f5f5f5;
}

.arrow {
  font-size: 12px;
  margin-left: 6px;
}

.navbar {
  overflow: visible !important;
}

.mobile-appointment{
padding:15px 20px;
}

.mobile-app-btn{
width:100%;
background:var(--primary);
color: var(--white);
border:none;
padding:12px;
border-radius:30px;
font-weight:600;
display:flex;
align-items:center;
justify-content:center;
gap:8px;
transition:.3s;
}

.mobile-app-btn:hover{
transform:translateY(-2px);
box-shadow:0 8px 18px rgba(0,0,0,0.15);
}


/* footer css start */

.custom-footer{
  color: #fff;
}
.footer-top{
  position:relative;
  height:320px;
  background:url('../images/footer-image.jpg') center/cover no-repeat;
}

.footer-top::before{
  content:'';
  position:absolute;
  inset:0;
  background:rgba(0,86,153,.85);
}

.footer-overlay{
  position:relative;
  z-index:2;
  text-align:center;
  padding-top:110px;
}
.visit-btn{
  display:inline-block;
  margin-top:10px;
  background: #F17F21;
  color:#fff;
  padding:14px 35px;
  text-decoration:none;
  font-weight:700;
  font-size:14px;
  letter-spacing:1px;
  border-radius:50px;
  transition:.3s;
}

.visit-btn:hover{
  transform:translateY(-4px);
  box-shadow:0 10px 25px rgba(0,0,0,0.35);
}

.footer-wave{
  position:absolute;
  bottom:-1px;
  left:0;
  width:100%;
  height:160px;
}

.footer-wave svg{
  width:100%;
  height:100%;
  display:block;
}

.footer-wave path{
  fill: #1c2430;
}/* MAIN FOOTER */
.footer-main{
  background: #1c2430;
  padding:10px 20px 50px;
}

.footer-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:40px;
}

.footer-col h4{
  margin-bottom:20px;
  font-size:16px;
  letter-spacing:1px;
  
}

.footer-col ul{
  list-style:none;
  padding:0;
}

.footer-col ul li{
  margin-bottom:10px;
}

.footer-col ul li a{
  color:#ccc;
  text-decoration:none;
  font-size:14px;
}

.footer-col ul li a:hover{
  color:#fff;
}

.footer-col p{
  font-size:14px;
  color:#ccc;
  line-height:1.6;
  margin-bottom:8px;
}

/* FORM */
.footer-form input{
  width:100%;
  margin-bottom:10px;
  padding:8px;
  background:transparent;
  border:1px solid #444;
  color:#fff;
}

.footer-form button{
  background: #F17F21;
  border:none;
  padding:8px 20px;
  color:#fff;
  cursor:pointer;
  transition:.3s;
}

.footer-form button:hover{
  background:#ff8800;
}

/* BOTTOM */
.footer-bottom{
  background:#151b24;
  text-align:center;
  padding:18px;
  font-size:13px;
  color:#aaa;
}
@media(max-width:600px){

  .footer-container{
    grid-template-columns:1fr;
    text-align:left;   
  }

  .footer-col{
    text-align:left;
  }

  .footer-col h4{
    border:none;
    padding:0;
  }

  .social-links{
    padding:0;
  }

  .social-links li{
    display:block;  
  }

  .social-links a{
    display:flex;
    justify-content:flex-start;
    text-align:left;
  }

}
.footer-col i{
  margin-right:8px;
  color: #fff;
}

.footer-col a{
  color:#ccc;
  text-decoration:none;
}

.footer-col a:hover{
  color:#fff;
}

.social-links li{
  margin-bottom:12px;
}

.social-links a{
  display:flex;
  align-items:center;
  gap:10px;
  transition:.3s;
}

.social-links a:hover{
  padding-left:8px;
}

/* Hover Colors */
.social-links a:hover .fa-facebook-f{color: #1877f2;}
.social-links a:hover .fa-instagram{color:#e1306c;}
.social-links a:hover .fa-youtube{color:#ff0000;}
.social-links a:hover .fa-x-twitter{color:#1da1f2;}



/* bradcrump */


.modern-breadcrumb {
  padding: 5px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.breadcrumb-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.breadcrumb-content {
  max-width: 500px;
}

.small-tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(241,127,33,0.1);
  color: #F17F21;
  font-size: 13px;
  border-radius: 20px;
  margin-bottom: 15px;
  font-weight: 600;
}

.breadcrumb-content h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
}

.breadcrumb-path {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}

.breadcrumb-path a {
  color: #F17F21;
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb-path .dot {
  width: 6px;
  height: 6px;
  background: #F17F21;
  border-radius: 50%;
}

.breadcrumb-path .active {
  color: #555;
}
.breadcrumb-design {
  position: relative;
  width: 350px;
  height: 220px;
}
.dot-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient( #F17F21 1px, transparent 1px) !important;
  background-size: 15px 15px;
  opacity: 0.9;
}
@media(max-width: 768px){

  .breadcrumb-flex {
    flex-direction: row;    
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }

  .breadcrumb-content {
    max-width: 65%;
  }

  .breadcrumb-content h1 {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }

  .breadcrumb-design {
    width: 90px;      
    height: 90px;
    margin-top: 0;
  }

  .dot-pattern {
    background-size: 10px 10px;  
  }

}