
/* HEADER BASE */
.main-header {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 999;
  border-bottom: 1px solid #eee;
}

.header-inner {
  max-width: 100%;
  margin: auto;
  padding: 0px 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo img {
  height: 42px;
}

/* NAV */
.main-nav {
  display: flex;
  gap: 34px;
}

.main-nav a {
  text-decoration: none;
  color: #2b2b2b;
  font-size: 15px;
  font-weight: 500;
}

.main-nav a.active {
  color: #ff8b00;
}

/* PHONE */
.header-left a {
  text-decoration: none;
  color: #1f5fbf;
  font-weight: 600;
  font-size: 14px;
}

/* HAMBURGER */
.menu-toggle {
  display: none;
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
}

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: start;
    gap: 20px;
    padding: 20px 10px;
    display: none;
    border-top: 1px solid #eee;
  }

  .main-nav.show {
    display: flex;
  }

  .header-left {
    display: none;
  }
}


/* footer */

/* FOOTER */
.main-footer {
  background: #031d42;
  color: #ccc;
  padding: 60px 20px 0;
}

.footer-inner {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1fr;
  gap: 40px;
}

/* BRAND */
.footer-col.brand img {
  height: 42px;
  margin-bottom: 16px;
}

.footer-col.brand p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 18px;
}

.footer-btn {
  display: inline-block;
  padding: 10px 18px;
  border: 1px solid #ff8b00;
  color: #ff8b00;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
  background:  #1f5fbf;
}

.footer-btn:hover {
  background: #ff8b00;
  color: #000;
}

/* HEADINGS */
.footer-col h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 16px;
}

/* LINKS */
.footer-col ul {
  list-style: disc;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #ccc;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #ff8b00;
}

/* CONTACT */
.footer-col p {
  font-size: 14px;
  margin-bottom: 8px;
}

/* SOCIAL */
.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.social-icons a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #1f5fbf;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-decoration: none;
}

/* QR */
.footer-col.qr {
  text-align: center;
}

.footer-col.qr img {
  width: 120px;
  border-radius: 6px;
  margin-bottom: 6px;
}

.footer-col.qr span {
  font-size: 13px;
  color: #ff8b00;
}

/* BOTTOM BAR */
.footer-bottom {
  margin-top: 50px;
  padding: 16px 20px;
  border-top: 1px solid #222;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.footer-links a {
  color: #ccc;
  margin-left: 20px;
  text-decoration: none;
}

.footer-links a:hover {
  color: #ff8b00;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}
@media (max-width:768px) {
  .header-inner{
    padding: 14px 15px;
    /* justify-content: left; */
  }
}


