body {
  scroll-behavior: smooth;
}

.hero {
  background: linear-gradient(to right, #0d6efd, #6610f2);
  transition: all 0.3s ease-in-out;
  padding:30px 0px 30px 0px;
}

.card:hover {
  transform: translateY(-5px);
  background-color: #f8f9fa;
}

.transition {
  transition: all 0.3s ease;
}

img.transition:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-warning {
  transition: background 0.3s ease;
}

.btn-warning:hover {
  background-color: #ffc107;
}

.btn-primary {
  background-color: #0d6efd;
  border: none;
}
.social-icons a img {
  transition: transform 0.2s ease;
}

.social-icons a img:hover {
  transform: scale(1.1);
}
.hero-slide {
  height: 85vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.hero-slide .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-slide .content {
  z-index: 2;
  padding: 0 1rem;
}

.hero-slide h1,
.hero-slide p {
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
}
#about-strip ul {
  list-style-type: disc;
  padding-left: 1.2rem;
  margin-top: 1rem;
}

#about-strip ul li {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  color: #333;
}

#about-strip h2 {
  font-weight: 700;
  margin-bottom: 1rem;
  color: #0d6efd; /* Bootstrap primary color */
}

#services {
  background-color: #d32f2f; /* deep red */
  color: white;
}

.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  border-radius: 15px;
  padding: 1.5rem;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  background-color: #b71c1c !important; /* darker red on hover */
}

#services h2 {
  color: white;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
}
#gallery img {
  width: 100%;         /* Full width of column */
  height: 250px;       /* Fixed height, you can adjust */
  object-fit: cover;   /* Crop and scale nicely */
  border-radius: 0.5rem; /* To keep your rounded corners */
  transition: transform 0.3s ease;
}

#gallery img:hover {
  transform: scale(1.05);
}
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: var(--bs-navbar-nav-link-padding-x);
        padding-left: var(--bs-navbar-nav-link-padding-x);
        color: #fff;
    }
.top-header{ background-color:rgb(178 85 35) !important;
padding:20px;
color:#fff;

}