/* nav bar */
.navbar-brand {
  width: 120px !important ; /* reduce width */
  height: auto !important ;
}
.main-header {
  /* background: linear-gradient(to right, #ff7e29, #e7d700); */
  background-color: #fff;
}
.navbar-nav.mr-auto a {
  color: #ff7e29; /* static (normal) color */
  transition: color 0.3s ease;
  text-decoration: none; /* optional - removes underline */
}
.navbar-nav.mr-auto a:hover {
  color: #000000; /* hover color */
}

/* logo */
.relative-cls {
  position: relative;
}
.abs-cls {
  position: absolute;
  top: -40%;
  height: 130px;
  width: 130px;
}
@media screen and (max-width: 760px) {
  .abs-cls {
    top: -95%;
    height: 110px;
  }
}

/* header section */
.about-header{
    padding-top: 160px !important;
    padding-bottom: 50px !important;
    background-color: #ffffff !important;
}

.header-sticky-2 {
    position: relative;
    top: 20;
    left: 0;
    width: 100%;
    z-index: 999;
}

.header-sticky-2.is-sticky {
    position: fixed;
    top: 0;
    /* box-shadow: 0 4px 12px rgba(0,0,0,0.1); */
    /* animation: slideDown 0.9s ease; */
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}


/* about */

.about-us {
  padding: 0px 0 !important;
}

.about-image-box img {
  max-width: 100%;
  border-radius: 15px;
  transition: transform 0.6s ease;
}

.about-image-box img:hover {
  transform: scale(1.05);
}

.section-title h2 {
  margin-bottom: 20px;
  line-height: 1.3;
}


/* our highlight */
.we-offer .offer-item-content h3 {
  color: #ffffff !important;
}
.offer-item-content{
    color: rgb(255, 255, 255) !important;
}

/* ============================= */
/* FOOTER TOP CUSTOM SECTION */
/* ============================= */

.footer-top {
  text-align: center;
  margin-bottom: 25px;
}

.footer-top img {
  max-width: 160px;
  margin-bottom: 40px;
}

/* Quick Links */
.footer-quick-links {
  margin: 30px 0;
}

.footer-quick-links h3 {
  /* font-size: 18px; */
  /* font-weight: 600; */
  margin-bottom: 15px;
  text-transform: capitalize;
}

.footer-quick-links ul {
  font-weight: 500;
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.footer-quick-links ul li a {
  color: #000000;
  /* text-decoration: none; */
  /* font-size: 15px; */
  transition: 0.3s;
}

.footer-quick-links ul li a:hover {
  color: #ff7e27;
}

/* Reach Us + Contact Us Section */
.footer-info-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 40px;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-info-row h3 {
  /* font-size: 18px; */
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: capitalize;
  margin-left: -25px;
}

.footer-contact-content a:hover {
  color: #ff7e27;
}
.footer-copyright {
  background-color: #f77f00 !important; /* adjust if needed */
  padding: 20px 0 !important;
  text-align: center !important;
  margin-bottom: -5% !important;
}

.footer-copyright-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer-copyright-text p {
  color: #fff;
  font-size: 15px;
  margin: 0;
}

.footer-privacy-policy ul {
  list-style: none;
  margin: 8px 0 0 0;
  padding: 0;
}

.footer-privacy-policy ul li {
  display: inline-block;
}

.footer-privacy-policy ul li a {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-privacy-policy ul li a:hover {
  color: #000;
}
.footer-continer {
  position: fixed;
  top: -20px;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 1s ease;
  align-content: center;
}

/* @media (min-width: 1200px) {
    .main-footer .h2, .main-footer h2 {
        font-size: 1.7rem !important;
        margin-bottom: 10px;
    }
} */
/* Responsive Layout */
@media (max-width: 768px) {
  .footer-info-row {
    flex-direction: column;
    text-align: center;
  }
  .footer-contact-item {
    justify-content: center;
  }
}
.margin {
  margin-left: 55px !important;
}

/* heading height */
.why-choose{
  margin-top: -20px;
}


/* flooting icons */
/* LEFT SIDE WHATSAPP */
.whatsapp-container {
  position: fixed;
  bottom: 100px;
  left: 50px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  z-index: 9999;
}

/* WhatsApp Button */
.whatsapp-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  border: none;
  cursor: pointer;
  position: relative;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

/* GPS Pulse Effect */
.whatsapp-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.35);
  z-index: -1;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  70% {
    transform: scale(1.8);
    opacity: 0;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

/* Chat Popup */
.chat-popup {
  position: absolute;
  bottom: 100px;
  left: 0;
  width: 270px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transform: translateX(-20px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

/* Popup Visible */
.chat-popup.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.chat-header {
  background: #075e54;
  color: #fff;
  padding: 10px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.chat-body {
  padding: 12px;
  font-size: 14px;
  color: #222;
}

.chat-body p {
  margin: 0 0 10px 0;
}

.chat-row {
  display: flex;
  gap: 6px;
  align-items: center;
}

.chat-row input {
  flex: 1;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
}

.chat-row button {
  background: #25d366;
  border: none;
  color: white;
  padding: 8px 10px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}

.chat-close {
  cursor: pointer;
  font-size: 18px;
}

/* RIGHT SIDE SOCIAL ICONS */
.socials {
  position: fixed;
  bottom: 100px;
  right: 50px;
  display: flex;
  gap: 10px;
  z-index: 9999;
}

.socials a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  color: #ff7e29;
  border: 2px solid #ff7e29;
  text-decoration: none;
  transition: 0.2s;
}

.socials a:hover {
  transform: translateY(-4px);
}

.socials a.facebook:hover {
  background: #ff7e29;
  color: white;
  border-color: transparent;
}
.socials a.instagram:hover {
  background: #ff7e29;
  color: white;
  border-color: transparent;
}
.socials a.linkedin:hover {
  background: #ff7e29;
  color: white;
  border-color: transparent;
}
