/* ===== TOP BAR ===== */
*{
  font-family: 'Montserrat', sans-serif;
  margin: 0;
    padding: 0;
    box-sizing: border-box;
/* ===== TOP BAR ===== */
}
.top-bar{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  padding:15px 0;
}

.logo img{
  max-width:206px;
  height: 81px;
}

/* RIGHT INFO */


/* ===== TOP RIGHT INFO ===== */
.vm-topinfo-wrap{
  display:flex;
  align-items:center;
  gap:25px;
      margin-left: 70px;
      margin-bottom: 33px;
}

/* INFO BOX */
.vm-info-item{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:16px;
  font-weight:500;
  color:#2f5672;
}

/* ICON CIRCLE */
.vm-icon-circle{
  width:40px;
  height:40px;
  border:2px solid #2f5672;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#2f5672;
  font-size:16px;
}

/* TEXT */
.vm-info-text{
  line-height:22px;
}

/* DIVIDER */
.vm-info-divider{
  width:1px;
  height:35px;
  background:#2f5672;
}

/* ===== RESPONSIVE ===== */


/* ===== NAVBAR WRAP ===== */
.nav-wrap{
  margin-top:-35px;
}

/* ===== CUSTOM NAVBAR ===== */
.custom-navbar{
      width: 1015px;
      height: 56px;
      margin-left: 210px;
  background:#2f5672;
  border-radius:40px;
  padding:12px 25px;
}

/* LINKS */
.custom-navbar .nav-link{
  color:#fff;
  font-size:16px;
  font-weight:500;
  padding:8px 18px !important;
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link.active{
  color:#ffffff;
}

/* DROPDOWN */
.service-dropdown{
  border-radius:12px;
  padding:10px 0;
}

.service-dropdown .dropdown-item{
  font-size:15px;
  padding:8px 18px;
}

/* ENQUIRY BUTTON */
.enquiry-btn{
  background:#ffffff;
  color:#2f5672;
  padding:10px 22px;
  border-radius:25px;
  font-weight:600;
  font-size:16px;
  text-decoration:none;
  margin-left:10px;
}

.enquiry-btn:hover{
  background:#f2f2f2;
  color:#2f5672;
}
@media (max-width: 992px){

  /* ===== TOP BAR ===== */
  .vm-topinfo-wrap{
   display: none;
  }

  .logo img{
    max-width:180px;
    height:auto;
    margin-left: 85px;
  }

  /* TOP INFO */
  .vm-topinfo-wrap{
    margin:15px 0 0;
    flex-direction:column;
    align-items:center;
    gap:10px;
  }

  .vm-info-item{
    justify-content:center;
    text-align:center;
    font-size:15px;
  }

  .vm-info-divider{
    display:none;
  }

  /* ===== NAVBAR ===== */
  .nav-wrap{
    margin-top:15px;   /* 🔥 remove negative margin */
    width:100%;
  }

  .custom-navbar{
    width:100%;        /* 🔥 MOST IMPORTANT */
    height:auto;
    margin:0 auto;     /* 🔥 center */
    border-radius:20px;
    padding:10px 15px;
  }

  .navbar-nav{
    text-align:center;
    padding-top:10px;
  }

  .custom-navbar .nav-link{
    padding:10px 0 !important;
    font-size:16px;
  }

  .enquiry-btn{
    display:inline-block;
    margin:15px auto 5px;
  }
}

/* Services dropdown hover open */
.navbar .dropdown:hover .dropdown-menu{
    display: block;
    margin-top: 0;
}

/* Smooth dropdown */
.dropdown-menu{
    display: none;
}

.dropdown:hover .dropdown-menu{
    display: block;
}
.dropdown-menu{
    display: none;
    transition: all 0.3s ease;
}

.navbar .dropdown:hover .dropdown-menu{
    display: block;
}
@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu{
        display: block;
    }
}