*{
margin:0px;
padding:0px;
box-sizing: border-box;
font-family: gilroy;
}
html,
body {
height: 100%;
width: 100%;
}

/* ========================= NAVBAR ================================= */
.navbar {
  width: 100%;
  background: #0f1f44;
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo a {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
}

.logo span {
  color: #e0a730;
}

/* Nav Links */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-links li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 20px;
  padding: 6px 0;
  position: relative;
  transition: 0.3s;
}

/* Hover */
.nav-links li a:hover {
  color: #e0a730;
}

/* ACTIVE LINK */
.nav-links li a.active {
  color: #e0a730;
}

.nav-links li a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: #e0a730;
}

/* CTA BUTTON */
.btn-quote {
  padding: 8px 18px;
  background: #e0a730;
  color: #0f1f44 !important;
  border-radius: 4px;
  font-size: 19px;
  font-weight: 600;
}

.btn-quote:hover{
    cursor: pointer;
}



/* =================================== footer ============================ */
/* ===== FOOTER ===== */
.footer {
  background: #0f1f44;
  color: #ffffff;
  margin-top: 60px;
}

.footer-container {
  /* max-width: 1200px; */
  margin: auto;
  padding: 50px;;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;   
}
/* Footer Boxes */
.footer-box h4 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #e0a730;
}

.footer-box p {
  font-size: 16px;
  line-height: 1.7;
  color: #dddddd;
}

/* Lists */
.footer-box ul {
  list-style: none;
}

.footer-box ul li {
  margin-bottom: 10px;
  font-size: 16px;
}

.footer-box ul li a {
  text-decoration: none;
  color: #dddddd;
  transition: 0.3s;
}

.footer-box ul li a:hover {
  color: #e0a730;
}

/* WhatsApp Button */
.whatsapp-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 16px;
  background: #25d366;
  color: #ffffff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
}

/* ===== FLOATING BUTTONS ===== */
.floating-buttons {
  position: fixed;
  bottom: 25px;
  right: 20px;
  display: flex;
  flex-direction: column;
  z-index: 999;
}

.float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: 0.3s;
}

/* Call */
.call-btn {
  background: #1f3c88;
  
}

/* WhatsApp */
.whatsapp-btn {
  background: #25d366;
}

/* Hover Effect */
.float-btn:hover {
  transform: scale(1.1);
}

/* ===== FOOTER ACTIVE LINK ===== */
.footer-links a.active{
  color: #e0a730;
  font-weight: 600;
  position: relative;
}

.footer-links a.active::before {
  content: " ";
  color: #e0a730;
}
