@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");

:root {
  color-scheme: light;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.hero-clean{
  height: 90vh;
}

.cta-btns .btn {
  min-width: 200px; /* ensures buttons don’t shrink too much */
}


.hero .container{
    position: relative;
    z-index: 1;
}

.city-name{
  transition: all 0.3s ease;
}

.overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.brand-carousel-wrapper {
    overflow: hidden;
  }

  .brand-carousel {
    display: flex;
    gap: 1.5rem;
    transform: translateX(0);
  }

  .carousel-logo {
    height: 50px;
    flex-shrink: 0;
    user-select: none;
  }

.cta-btns{
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.cta-btns a{
  padding: 10px 20px;

}

.txt-start{
    text-align: start;
}


#why-choose-us .card {
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#why-choose-us .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

#why-choose-us .card i {
  transition: transform 0.3s ease;
}

#why-choose-us .card:hover i {
  transform: scale(1.1);
}

#testimonials img {
  object-fit: cover;
  border: 3px solid #0d6efd; 
}

.carousel-item p {
  max-width: 500px;
  margin: 0 auto;
  font-style: italic;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-size: 50% 50%; 
}

.carousel-control-prev,
.carousel-control-next {
  width: auto;
  top: 50%;
  transform: translateY(-50%);
}

.carousel-control-prev span,
.carousel-control-next span {
  background-color: #198754;
  border-radius: 50%;
  padding: 15px;
  transition: all 0.3s ease;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.2);
}

.carousel-control-prev span:hover,
.carousel-control-next span:hover {
  background-color: #145c32; /* Darker green on hover */
  transform: scale(1.1);
}


footer a.footer-link:hover {
  color: #0d6efd;
  text-decoration: underline;
  transition: 0.3s;
}

footer .social-icon i {
  font-size: 1.3rem;
  transition: transform 0.3s, color 0.3s;
}

footer .social-icon:hover i {
  color: #0d6efd;
  transform: scale(1.2);
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  font-weight: bold;
  padding: 12px 18px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  z-index: 1000;
  transition: background 0.3s ease, transform 0.2s ease;
}
.whatsapp-float img {
  width: 24px;
  height: 24px;
}
.whatsapp-float:hover {
  background: #1ebe57;
  transform: scale(1.05);
}

.fade-in { opacity: 0; transform: translateY(20px); transition: 1s ease-out; }
.fade-in.appear { opacity: 1; transform: translateY(0); }


@media (max-width: 768px) {
  .cta-btns {
    flex-direction: column;
    align-items: center;
  }

  .cta-btns a {
    width: 100%;
    text-align: center;
  }

  .service-heading{
    margin-top: 20px;
  }

  .para-service{
    margin-bottom: 30px;
  }

  #para-service a{
    margin-top: 10px;
  }
}

.logo-sm{
  display: none;
}

.navbar-brand img {
  height: 50px;
  width: auto;
  transition: height 0.3s ease;
}

/* Base small button styling */
.btn-sm-sm-responsive {
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  padding: clamp(0.5rem, 1.5vw, 0.8rem) clamp(1.2rem, 3vw, 2.5rem);
}

/* Optional: slightly larger on medium screens */
@media (min-width: 576px) {
  .btn-sm-sm-responsive {
    font-size: 1rem;
    padding: 0.75rem 2.5rem;
  }
}


/* Small Devices < 400px */
@media (max-width: 400px) {
  .navbar-brand img {
    height: 30px;
  }
  .navbar-brand .logo {
    display: none;
  }

  .navbar-brand .logo-sm{
    display: inline;
    font-size: 18px;
  }
}
/* Small Devices < 356x */
@media (max-width: 356px) {
  .navbar-brand img {
    height: 25px;
  }
  .navbar-brand .logo {
    display: none;
  }

  .navbar-brand .logo-sm{
    display: inline;
    font-size: 14px;
  }
}

/* Small Devices < 315x */
@media (max-width: 315px) {
  .navbar-brand img {
    display: none;
  }
  .navbar-brand .logo {
    display: none;
  }

  .navbar-brand .logo-sm{
    display: inline;
    font-size: 15px;
  }
}


/* Areas as pill tags */
.areas-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.areas-tags span {
  display: inline-flex;
  align-items: center;
  background: #f1f1f1;
  color: #333;
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.areas-tags span:hover {
  background: #0d6efd; /* primary brand color */
  color: #fff;
}

.areas-tags i {
  font-size: 1.1rem;
}

/* Board wrapper */
.faq-board {
  border: 2px solid #ddd;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}

.faq {
  border-bottom: 1px solid #e6e6e6;
}
.faq:last-child {
  border-bottom: none;
}

.faq > summary {
  list-style: none;              
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 16px 20px;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  outline: none;
  transition: color .25s ease;
}

/* Remove default marker (Safari/WebKit) */
.faq > summary::-webkit-details-marker { display: none; }

/* Plus/Minus icon on the right */
.faq > summary::after {
  content: "+";
  margin-left: auto;
  font-weight: 800;
  transition: color .25s ease, transform .2s ease;
}


.faq[open] > summary { color: #dc3545; }                
.faq[open] > summary::after { content: "−"; color: #dc3545; }


.faq .answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;               
  line-height: 1.6;
  background: #fafafa;
  transition: max-height .35s ease, padding .25s ease;
  user-select: none;         
}

.faq[open] .answer {
  max-height: 1000px;
  padding: 12px 20px 16px;
  user-select: text;
}

.faq > summary:focus-visible {
  outline: 2px solid #0d6efd;
  outline-offset: 2px;
}

.fixed-img {
  aspect-ratio: 4 / 3;   /* keeps consistent 4:3 ratio */
  object-fit: contain;     /* crops if needed but avoids distortion */
}

.brand-logo {
  max-height: 40px;
  transition: all 0.3s ease;
}
.brand-logo:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}

