/*============================
  1. BASE & RESET
=============================*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  scroll-behavior: smooth;
  color: #333;
  overflow-x: hidden;
}

/*============================
  2. TYPOGRAPHY
=============================*/
h1, h2, h3 {
  font-weight: 700;
  color: #111;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

p {
  font-size: 1.05rem;
  color: #555;
}

/*============================
  3. GENERAL LAYOUT
=============================*/
section {
  padding: 80px 0;
}

#about, #services, #gallery, #testimonials, #quote, #contact {
  scroll-margin-top: 80px;
}

/*============================
  4. NAVIGATION
=============================*/
/* You can add custom navbar styles here if needed */

/*============================
  5. HERO SECTION
=============================*/
.hero-section {
  min-height: 100vh;
  position: relative;
  color: white;
  overflow: hidden;
}

.hero-section video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

/*============================
  6. PRODUCT CARDS
=============================*/
.card {
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
}

.product-img {
  height: 240px;
  object-fit: cover;
  width: 100%;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

/*============================
  7. GALLERY
=============================*/
.gallery-multi-img {
  height: 240px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.gallery-multi-img:hover {
  transform: scale(1.03);
}

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

/*============================
  8. TESTIMONIALS
=============================*/
#testimonialCarousel .carousel-inner {
  min-height: 240px;
}

.testimonial-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  max-width: 700px;
  margin: auto;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-text {
  font-style: italic;
  font-size: 1.1rem;
  position: relative;
  color: #444;
  line-height: 1.6;
  padding-left: 20px;
}

.testimonial-text::before {
  content: "“";
  font-size: 2rem;
  color: #0d6efd;
  position: absolute;
  left: 0;
  top: -10px;
}

/*============================
  9. WHATSAPP FLOATING BUTTON
=============================*/
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: transform 0.3s ease, background-color 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: #1ebd5b;
  transform: scale(1.1);
}

/*============================
  10. FOOTER
=============================*/
footer {
  background-color: #212529;
  color: #ccc;
  padding: 20px 0;
}

/*============================
  11. MEDIA QUERIES
=============================*/
@media (max-width: 576px) {
  .logo-img {
    max-width: 100px;
  }
}
