:root{
  --bg:#000;
  --border:#1f1f1f;
  --text:#fff;
  --muted:#9ca3af;
  --accent:#f97316;
}

  body{
    background:var(--bg);
    color:var(--text);
    font-family:'Roboto', sans-serif;
  }

  h1,h2,h3,h4,h5,h6{
    font-family:'Lato', sans-serif;
  }

/* FULL NAVBAR HEIGHT FIX */
.navbar{
  --bs-navbar-padding-y: 0;
  padding-top:6px !important;
  padding-bottom:6px !important;
  min-height:auto;
}

.navbar > .container{
  padding-top:10px;
  padding-bottom:10px;
}

.navbar-brand{
  font-size:18px;
  line-height:1;
  padding:6px 0;
}

.navbar-toggler{
  padding:4px 6px;
  font-size:16px;
}

.navbar-nav .nav-link{
  padding:6px 0;
  font-size:14px;
  position:relative;
}

/* underline effect */
.navbar-nav .nav-link::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:2px;
  background:var(--accent);
  transition:.3s;
}

.navbar-nav .nav-link:hover::after{
  width:100%;
}

.custom-footer {
  background: #000;
  color: #fff;
}

/* LEFT SIDE */
.footer-left {
  display: flex;
  align-items: center;      /* vertical center */
  justify-content: center;  /* horizontal center */
  padding: 60px 0;
}

.footer-links-wrapper {
  width: max-content; /* keeps block centered naturally */
}

.footer-columns {
  display: flex;
  gap: 60px;
}

.footer-col h6 {
  font-size: 13px;
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  font-size: 13px;
  color: #bdbdbd;
  margin-bottom: 8px;
}

/* RIGHT SIDE */
.footer-right {
  display: flex;
}

.footer-images {
  display: flex;
  width: 80%;
}

.footer-images img {
  width: 33.333%;
  /* height: 100%; */
  object-fit: cover;
}

/* COPYRIGHT */
.footer-copy {
  font-size: 12px;
  color: #aaa;
  text-align: left;
  padding: 20px 50px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .footer-columns {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-images {
    height: auto;
    align-items: center;
  }

  .footer-copy {
    text-align: center;
  }
}


a{
  color:inherit;
  text-decoration:none;
  font-family:inherit;
}

.footer-columns a{
  color:#bdbdbd;
  font-size:13px;
  transition:.3s;
}

.footer-columns a:hover{
  color:#fff;
}

.footer-col a:hover {
  color: #f97316;
}

.navbar-nav .nav-link {
  color: #fff;
  transition: 0.3s;
}

.navbar-nav .nav-link:hover {
  color: #f97316;
}

/* ACTIVE LINK COLOR */
.navbar-nav .nav-link.active {
  color: #f97316 !important;
}


/* ===== WhatsApp Floating Button ===== */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
  z-index: 9999;
}

.whatsapp-float img {
  width: 30px;
  height: 30px;
  filter: invert(1);
}

/* ===== Blinking Border Ring ===== */
.whatsapp-float::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid #25D366;
  animation: borderBlink 1.5s infinite;
}

/* border blink animation */
@keyframes borderBlink {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  70% {
    transform: scale(1.4);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* Hover effect */
.whatsapp-float:hover {
  transform: scale(1.1);
}

/* ===== Mobile ===== */
@media (max-width: 576px) {
  .whatsapp-float {
    width: 55px;
    height: 55px;
    right: 15px;
    bottom: 15px;
  }

  .whatsapp-float img {
    width: 26px;
  }
}


.navbar-logo{
  height:82px;
  width:auto;
}

@media (max-width:768px){
  .navbar-logo{
    height:52px;
  }
}
