body { font-family: 'Segoe UI', sans-serif; scroll-behavior: smooth; }
.hero { height: 90vh; position: relative; background: #000; color: #fff; }
.hero img { width: 100%; height: 100%; object-fit: cover; opacity: 0.4; }
.hero-text { position: absolute; top: 40%; left: 10%; z-index: 10; }
.section-title { font-weight: bold; font-size: 2rem; }
.product-card img { height: 200px; object-fit: cover; }
.carousel-item img {
  height: 90vh;
  object-fit: cover;
  filter: brightness(0.5);
}

.carousel-caption {
  bottom: 30%;
  left: 5%;
  text-align: left;
}

.carousel-caption h1 {
  font-size: 3rem;
  font-weight: bold;
}

.carousel-caption p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.animated-logo {
  animation: slidein 3s infinite alternate;
}

@keyframes slidein {
  0%   { transform: translateX(0); opacity: 0.7; }
  100% { transform: translateX(10px); opacity: 1; }
}
.rotate-slow {
  animation: rotate360 10s linear infinite;
  transition: transform 0.5s ease-in-out;
}

@keyframes rotate360 {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* 🔸 Hover पर: रोटेशन बंद + Zoom */
.rotate-slow:hover {
  animation-play-state: paused;
  transform: scale(1.1); /* Zoom in slightly */
}

/* Animated Gradient Button */
.btn-animated {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(45deg, #007bff, #6610f2);
  color: #fff;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-animated:hover {
  background: linear-gradient(45deg, #6610f2, #007bff);
  transform: scale(1.05);
  color: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
.product-card img {
  width: 100%;
  height: 320px; /* Adjust height as needed */
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.product-card:hover img {
  transform: scale(1.1);
}
.product-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.product-card .card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#testimonials .carousel-item {
  min-height: 250px;
  padding: 30px;
}

.card {
  border-radius: 12px;
  transition: all 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 10px rgba(0,0,0,0.15);
}
.text-warning {
  color: #ffc107;
}
 #testimonials {
  padding-bottom: 0.5rem !important;
}
#testimonials .card {
  margin-bottom: 0.5rem;
}
/* Back to Top Button Styling */
/* New Stylish Back to Top Button */
#backToTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background-color: #000;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  display: none;
  z-index: 999;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease-in-out;
}

#backToTopBtn:hover {
  background-color: #007700;
  transform: scale(1.2);
}

  .team-section {
    background-color: #f8f9fa;
    padding: 60px 0;
  }

  .team-title {
    text-align: center;
    color: #0d6efd;
    margin-bottom: 40px;
    font-weight: 600;
    font-size: 2rem;
  }

  .team-card {
    background-color: white;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border: 1px solid #dee2e6;
  }

  .team-card:hover {
    transform: translateY(-5px);
  }

  .image-frame {
    width: 100px;
    height: 120px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #0d6efd;
  }

  .image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .team-card h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #212529;
  }

  .team-card p {
    color: #6c757d;
    font-size: 0.9rem;
  }
/* css/style.css */
body {
  background-color: #f5f8fa;
  font-family: 'Segoe UI', sans-serif;
}
form label {
  font-weight: 600;
  color: #2b2f3a;
}
button.btn-primary {
  background-color: #0066cc;
  border: none;
}
