
.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-img {
  height: 90vh;
  object-fit: cover;
  filter: brightness(70%);
}

.carousel-caption {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(3px);
}

.carousel-caption h1 {
  font-size: 3rem;
  font-weight: 700;
}

.carousel-caption p {
  font-size: 1.2rem;
  margin-top: 10px;
}

.carousel-caption .btn {
  border-radius: 30px;
  padding: 10px 25px;
  transition: all 0.3s ease;
}

.carousel-caption .btn:hover {
  background-color: #1b998c;
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 4px 10px #1b998c;
}


.about-vector {
  background: #f8f9fa;
  overflow: hidden;
}

.vector-img {
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.vector-img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.text-gradient {
  background: linear-gradient(90deg, #1b998c, #117167);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.vector-features li {
  font-size: 1.05rem;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.vector-features li:hover {
  transform: translateX(5px);
}

.vector-services {
  background: linear-gradient(180deg, #ffffff, #f3f6ff);
}

.service-box {
  background: #fff;
  transition: all 0.4s ease;
  border: 1px solid #e5e9ff;
}

.service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  border-color: #1b998c;
}

.service-box .icon i {
  transition: transform 0.4s ease;
}

.service-box:hover .icon i {
  transform: scale(1.2);
}

.vector-gallery {
  background: #f9fbff;
}

.gallery-box {
  height: 205px; 
  position: relative;
  cursor: pointer;
  transition: transform 0.4s ease;
  justify-content: center;
  align-items: center;    
  background: #fff;   
}

.gallery-img {
  max-width: 100%;         
  max-height: 100%;          
  object-fit: contain;
  transition: transform 0.6s ease;
}

.gallery-box:hover .gallery-img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-box:hover .overlay {
  opacity: 1;
}

.text-gradient {
  background: linear-gradient(90deg, #1b998c, #17b5a6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* Request Quote Section Styling */
.request-quote {
  position: relative;
  background: linear-gradient(
      rgba(27, 153, 140, 0.85),
      rgba(27, 153, 140, 0.85)
    ),
    url("../images/bg-img.jpg") center/cover no-repeat;
  background-attachment: fixed;
  color: #fff;
  overflow: hidden;
}

.request-quote .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 0;
}

.request-quote .container {
  position: relative;
  z-index: 1;
}

.quote-box {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: all 0.3s ease;
}

.quote-box:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
}
