body {
    font-family: 'Segoe UI', sans-serif;
    scroll-behavior: smooth;
}

.hero {
  background: url('/assets/img/c3.jpg'loading="lazy" ) center center/cover no-repeat;
  position: relative;
  height: 100vh; /* full screen height */
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5); /* adjust opacity here */
}

/* Navbar background */
.navbar {
  background-color: #fff !important;
  min-height: 90px;
}

/* Navbar links black by default */
.navbar-light .navbar-nav .nav-link {
  color: #000 !important;
  font-weight: 500;
}

/* Hover effect */
.navbar-light .navbar-nav .nav-link:hover {
  color: #0d6efd !important;
}

/* Active link underline */
.navbar-light .navbar-nav .nav-link.active {
  border-bottom: 3px solid #0d6efd;
}

/* Navbar icons black by default */
.navbar-light .navbar-nav .nav-link i {
  color: #000 !important;
}

/* Icons hover blue */
.navbar-light .navbar-nav .nav-link:hover i {
  color: #0d6efd !important;
}

i.fas,
i.fab {
    color: #000 !important;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

.whatsapp-float i {
    margin-top: 16px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}

@media (max-width: 768px) {

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

#clients img:not(.gallery-big)  {
    max-height: 80px;
    object-fit: contain;
}

section {
    padding-top: 60px;
    padding-bottom: 60px;
}
/* Override footer icons to be white */
footer i.fab {
    color: #fff !important;
}
/* Remove link underline/blue color from footer social icons */
footer a {
  text-decoration: none !important;
  color: inherit !important;
}

footer a:hover {
  color: #0d6efd !important; /* Optional: Bootstrap blue on hover */
}

/* style.css */
.gallery-img {
  width: 100%;          /* Fill the column width */
  height: 250px;        /* Fixed height for uniformity */
  object-fit: cover;    /* Crop to fit without stretching */
  cursor: pointer;      /* Show pointer on hover */
  transition: transform 0.2s ease-in-out;
}

.gallery-img:hover {
  transform: scale(1.05); /* Slight zoom effect on hover */
}
html {
      scroll-behavior: smooth;
}

section {
    padding-top: 60px;
    padding-bottom: 60px;
    scroll-margin-top: 260px;
}
/* Make one gallery image bigger */
.gallery-big {
    height: 350px;
    
}
/* Make one specific client logo bigger */
#clients img.gallery-big {
    max-height: 80px;
    width: auto;
}