/* Top Bar */
/* .top-bar {
    background:rgb(0 1 252) ;
    padding: 15px 0;
    font-size: 14px;
}
.top-bar p{
    color: #fff;
    font-weight: 600
} */
/* ⭐ Wrapper for topbar + navbar */
.header-wrapper{
  position: fixed;
  top:0;
  width:100%;
  z-index:999;
  transition: transform .35s ease;
}

/* hide both */
.header-hide{
  transform: translateY(-100%);
}
.hero-section{
  margin-top:140px; /* topbar + navbar height approx */
}
/* wrapper */

/* ========== */

.logo-img {
    height: 90px;   /* Mee requirement batti change cheyyi */
    width: auto;
}
.top-bar {
  background: #03086d;
  padding: 8px 2;
  color: #fff;
  font-size: 14px;
  
  
  

}

.topbar-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


/* LEFT CONTACT */
.contact-info span {
  margin-right: 15px;
  margin-top:-25px;
}

.contact-info i {
  margin-right: 5px;
  padding: 8px 2;
}

/* RIGHT SECTION */
.right-section {
  display: flex;
  align-items: center;
  margin-top: -5px;
}

/* SOCIAL ICONS */
.social-icons a {
  width: 28px;
  height: 28px;
  /* background: #fff; */
  color: #03086d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  margin-right: 6px;
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 20px;
}

/* BUTTONS */
.top-btn {
  background: #fff;
  color: #03086d;
  padding: 5px 14px;
  border-radius: 5px;
  margin-left: 10px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
}
.request-call {
    color: #f4a000;
    font-weight: 600;
}
p{
    font-size: 17px;
}



/* Navbar */
.custom-navbar {
    /* background: transparent;
    padding: 12px 0; */
     position: fixed;
    /* top: 0; */
    /* margin-top: 50px; */
    z-index: 999;
    background: #fff;
     width: 100%;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
}

.logo-orange {
    color: #f4a000;
}

.nav-link {
    font-size: 16px;
    font-weight: 700;
    margin-left: 18px;
    color: rgb(7, 7, 7) !important;
}

.nav-link.active,
.nav-link:hover {
    color:rgb(0 1 252) !important;
}
.dropdown-menu{
  border-radius:10px;
  border:none;
  box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

.dropdown-item:hover{
  /* background:rgb(42,144,172); */
  color:#fff;
}
.dropdown-menu a{
    padding: 10px;
    
}

/* hidden line */

a {
  position: relative;
  text-decoration: none;
}

/* hidden line */
.nav-item a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 0%;
  height: 2px;
  background: #292d78;   /* theme color */
  transition: 0.3s ease;
   height: 2px;
}

/* hover */
a:hover::after {
  width: 90%;
}


  

@media(max-width:768px){

  .top-bar{
    /* text-align:center;
    padding:10px 0; */
     display:none;
  }

  .topbar-flex{
    flex-direction:column;
    gap:8px;
  }

  /* contact */
  .contact-info{
    font-size:13px;
  }

  /* right section */
  .right-section{
    flex-wrap:wrap;
    justify-content:center;
  }

  /* icons */
  .social-icons{
    margin-bottom:5px;
  }

  /* buttons */
  .top-btn{
    font-size:12px;
    padding:4px 10px;
    margin:4px;
  }

}


