/* Navbar before scroll */
.navbar-scroll .nav-link,
.navbar-scroll .navbar-toggler-icon,
.navbar-scroll .navbar-brand {
  color: #262626;
}
.navbar-scroll {
  background-color: #FFC017;
  transition: background-color 0.3s, padding 0.3s;
}

/* Navbar after scroll */
.navbar-scroll.navbar-scrolled .nav-link,
.navbar-scroll.navbar-scrolled .navbar-toggler-icon,
.navbar-scroll.navbar-scrolled .navbar-brand {
  color: #262626;
}
.navbar-scroll.navbar-scrolled {
  background-color: #fff;
}

/* Hero Section Images */
.uniform-img {
  height: 250px;
  object-fit: cover;
  width: 100%;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

 @media (max-width: 768px) {
    .btn {
        margin-bottom: 50px; /* More space for mobile */
    }
}


/* Card hover effect */
.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.1);
}

/* Card images */
.card-img-top {
  height: 250px;
  object-fit: cover;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

 /* Make all gallery thumbnails the same size */
  .gallery-img {
    width: 100%;
    height: 200px; /* Fixed height for all images */
    object-fit: cover; /* Ensures image fills the box without distortion */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effect */
  }

  /* Zoom effect on hover */
  .gallery-img:hover {
    transform: scale(1.05); /* Slight zoom */
    box-shadow: 0 8px 20px rgba(0,0,0,0.3); /* Optional shadow for depth */
  }

  /* Optional: round corners of thumbnails */
  .img-thumbnail {
    border-radius: 8px;
  }
  
  .contact-sec {
    position: relative;
    align-content: center;
}

.contact-form .form-control {
    border-radius: 12px;
    padding: 12px 16px;
}

.heading {
    font-weight: 600;
}

.contact-details ul li {
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.contact-background {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 75%;
    opacity: 0.15;
    pointer-events: none;
}

.btn-warning {
    background-color: #ffca2c;
    border: none;
    padding: 12px;
    font-weight: 600;
    position: relative;
}

.btn-warning:active,
.btn-warning:hover {
    background-color: #ffb800;
}

/* Fade Animations */
.contact-form, .contact-details {
    animation: fadeIn 0.7s ease forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
