@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


*{
      font-family: "Poppins", sans-serif;
}


/* Navbar Styling */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Logo + Brand Name */
.navbar-brand span {
  color: #0b4b8a; /* Primary color */
  font-weight: 700;
  letter-spacing: 1px;
}

/* Navbar Links Base Style */
.navbar-nav .nav-link {
  color: #0b4b8a;
  margin: 0 12px;
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease;
}

/* Hover + Active Animation (Underline Slide-In) */
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 3px;
  background-color: #ee2c33; /* Accent color */
  transition: width 0.3s ease-in-out;
  border-radius: 3px;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

.navbar-nav .nav-link:hover {
  color: #ee2c33;
  transform: translateY(-2px);
}

/* Navbar Shadow Effect on Scroll */
.scrolled {
  background-color: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Mobile Menu Button */
.navbar-toggler {
  border: none;
}
.navbar-toggler:focus {
  box-shadow: none;
}

/* MAIN HERO CAROUSEL STYLING */
#hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-img {
  height: 100vh;
  object-fit: cover;
  filter: brightness(70%);
}

.carousel-caption {
  top: 50%;
  transform: translateY(-50%);
  left: 10%;
  right: auto;
  bottom: auto;
  text-align: left;
}

.carousel-caption h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.6);
}

.carousel-caption p {
  font-size: 1.3rem;
  color: #ddd;
  margin-bottom: 20px;
}

.highlight-text {
  color: #ee2c33;
}

.hero-btn {
  background-color: #0b4b8a;
  color: white;
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: bold;
  border: none;
  transition: all 0.3s ease-in-out;
}

.hero-btn:hover {
  background-color: #ee2c33;
  transform: scale(1.05);
}

  #why-choose-us .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
  }

   .brand-slider {
    overflow: hidden;
    position: relative;
  }
  .brand-track {
    display: flex;
    width: calc(200px * 10); /* Adjust if adding/removing brands */
    animation: scroll 25s linear infinite;
  }
  .brand-item {
    flex: 0 0 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
  }
  .brand-item img {
    max-width: 140px;
    max-height: 70px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
  }
  .brand-item img:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
  }
  @keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  


.hover-zoom {
  transition: transform 0.4s ease;
}
.hover-zoom:hover {
  transform: scale(1.05);
}

.testimonial-bubble {
  background: #fff;
  border-radius: 20px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-bubble:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}
.testimonial-bubble::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 30px;
  width: 30px;
  height: 30px;
  background: #fff;
  transform: rotate(45deg);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
/* Footer Links Hover Effect */
.footer-link {
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-link:hover {
  color: #ff4d52 !important; /* Change color on hover */
  transform: scale(1.05); /* Slight zoom */
  text-decoration: none; /* Removes underline */
}

/* Social Media Icons Hover */
.social-icon,
.footer .bi-facebook,
.footer .bi-instagram,
.footer .bi-whatsapp {
  transition: all 0.3s ease;
  display: inline-block;
}

.social-icon:hover,
.footer .bi-facebook:hover,
.footer .bi-instagram:hover,
.footer .bi-whatsapp:hover {
  color: #ff4d52; /* Change color */
  transform: scale(1.2); /* Bigger zoom for social icons */
}


/* Floating Contact Buttons */
.floating-contact {
  position: fixed;
  bottom: 20px;
  right: 20px; /* change to left: 20px; if you want on left */
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.float-btn {
  width: 50px;
  height: 50px;
  background: #0b4b8a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 22px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  animation: float 2.5s ease-in-out infinite;
}

.float-btn:hover {
  transform: scale(1.15);
}

/* WhatsApp Specific Style */
.float-btn.whatsapp {
  background: #25D366;
  animation-delay: 0s; /* Starts immediately */
}

/* Call Button Specific Style */
.float-btn.call {
  background: #ee2c33;
  animation-delay: 1.2s; /* Slight delay so they don't bounce together */
}

/* Floating Animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}


/* Breadcrumb Link Styling */
.breadcrumb-link {
  text-decoration: none;
  transition: all 0.3s ease;
}

.breadcrumb-link:hover {
  color: #ee2c33; /* Theme Red */
  text-decoration: underline;
}

/* Section Height & Responsiveness */
.page-header-section {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-attachment: fixed; /* Makes background fixed */
}

.page-header-section h1 {
  font-size: 3rem;
  letter-spacing: 1px;
}


.brands-carousel {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 1rem;
}

.brands-carousel::-webkit-scrollbar {
  display: none; /* hide scrollbar */
}

.brand-item img {
  max-height: 80px;
  transition: transform 0.3s;
}

.brand-item img:hover {
  transform: scale(1.2);
}


.brand-float {
  max-height: 70px;
  transition: transform 0.5s, box-shadow 0.4s;
}

.brand-float:hover {
  transform: translateY(-10px) scale(1.1);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.gallery-item {
  cursor: pointer;
  transition: transform 0.4s;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 75, 138, 0.6);
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.map-responsive {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
}

.map-responsive iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  border: 0;
}

  .logo-img {
    max-height: 90px; /* Desktop */
  }

  @media (max-width: 992px) { /* Tablet */
    .logo-img {
      max-height: 70px;
    }
  }

  @media (max-width: 576px) { /* Mobile */
    .logo-img {
      max-height: 60px;
    }
  }

    .gallery-img {
    width: 100%;
    height: 250px; /* Adjust height for perfect grid */
    object-fit: cover; /* Crops image while keeping aspect ratio */
  }

  @media (max-width: 576px) {
    .gallery-img {
      height: 180px; /* Smaller height for mobile */
    }
  }