/* =========================
   TOP HEADER
========================= */
.top-header{
  background:#0b1c3d;
  color:#fff;
  font-size:14px;
  padding:8px 0;
}

.top-header .container{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.top-left{
  display:flex;
  align-items:center;
  gap:8px;
}

.top-right{
  display:flex;
  align-items:center;
  gap:20px;
}

.social i{
  margin-right:10px;
  cursor:pointer;
  transition:0.3s;
}

.social i:hover{
  color:#ff4d00;
}

/* BUTTON */
.btn{
  background:#ff4d00;
  color:white;
  padding:6px 14px;
  border-radius:4px;
  text-decoration:none;
  font-size:13px;
  transition:0.3s;
}

.btn:hover{
  background:#e84300;
}

/* =========================
   HEADER MAIN FIX
========================= */
.header-main {
  background: #fff;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.header-main .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.logo img {
  height: 100px;
}

/* CONTACT */
.contact-box {
  display: flex;
  gap: 30px;
}

.contact {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact i {
  font-size: 18px;
  color: #ff6600;
}

.contact b {
  font-size: 13px;
}

.contact p {
  font-size: 12px;
  color: #777;
}


/* =========================
   NAVBAR CLEAN PRO
========================= */

.menu-bar {
  background: #f8f9fb; /* soft clean bg */
  border-bottom: 1px solid #eee;
}

/* FLEX */
.menu-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 30px;
}


/* LEFT MENU */
.menu-left {
  font-size: 13px;
  font-weight: 600;
  color: #333;
  display: flex;
  align-items: center;
  gap: 6px;
}

.menu-left i {
  color: #ff6600;
}

/* CENTER MENU */
.menu-links {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0 auto; /* CENTER FIX */
}

/* LINKS */
.menu-links a {
  text-decoration: none;
  color: #333;
  font-size: 18px;
  font-weight: 500;
  transition: 0.3s;
  position: relative;
}

/* UNDERLINE */
.menu-links a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 3px;
  background: #ff6600;
  transition: 0.3s;
}

.menu-links a:hover::after {
  width: 100%;
}

.menu-links a:hover {
  color: #ff6600;
}


/* DROPDOWN FIX */
.dropdown {
  position: relative;
}

/* DROPDOWN MENU */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 320px;
  border-radius: 8px;
  padding: 10px 0;
  display: none;
  flex-direction: column;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  z-index: 999;
}

/* SHOW */
.dropdown:hover .dropdown-menu {
  display: block;
}

/* ITEMS */
.dropdown-menu li {
  display: block;
  width: 100%;
}

/* LINKS */
.dropdown-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 20px;
  color: #333;
  transition: 0.3s;
}

/* HOVER */
.dropdown-menu a:hover {
  background: #f5f5f5;
  color: #ff6600;
}
/* BUTTON RIGHT */
.btn-quote {
  background: linear-gradient(135deg, #ff6600, #ff3300);
  color: #fff;
  padding: 10px 22px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-quote:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255,102,0,0.3);
}

/* MOBILE */
@media(max-width:768px){

  .menu-flex {
    padding: 12px 20px;
  }

  .menu-links {
    background: #fff;
    border-top: 1px solid #eee;
  }

}

/* =========================
   STICKY MENU
========================= */
.menu-bar {
  transition: 0.3s;
}

.menu-bar.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* BODY FIX */
body.sticky-padding {
  padding-top: 80px;
}