body{
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa; /* Light background for better contrast */
}

.owl-carousel .item img {
  height: 400px;              /* Set your desired height */
  width: 100%;
  object-fit: cover;          /* Crop to fit */
  object-position: center;    /* Optional: center image */
}

h2 {
  font-weight: 700;
}

section {
  scroll-margin-top: 80px;
}

.bg-dark {
background-color: #439117 !important;
}


    .card-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    .card {
      background: white;
      border-radius: 10px;
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
      padding: 20px;
      width: 22rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .card img {
      width: 63%;
      height: auto;
      margin-bottom: 10px;
    }


    .title {
      font-size: 20px;
      font-weight: bold;
      margin: 10px 0 5px;
    }
.meta-info {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      color: #555;
      margin-bottom: 10px;
      flex-wrap: wrap;
    }

    .meta-item {
      padding: 0 8px;
      border-right: 1px solid #ccc;
    }

    .meta-item:last-child {
      border-right: none;
    }

    .desc {
      font-size: 14px;
      color: #777;
      margin-bottom: 10px;
    }

    .price {
      font-size: 18px;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .stars {
      color: orange;
      font-size: 18px;
      margin-bottom: 15px;
    }

    .btn {
      padding: 10px 20px;
      border: none;
      border-radius: 5px;
      color: white;
      font-weight: bold;
      cursor: pointer;
    }

    /* Mega menu dropdown */
  .nav-item.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu.mega-menu {
  width: 800px; /* wider space */
  left: 0;
  right: 0;
  margin-top: 0;
  border: none;
  border-radius: 0;
  background: #fff;
}

.dropdown-menu.mega-menu a {
  color: #000 !important;
  padding: .5rem 0;
  display: block;
}
.dropdown-menu.mega-menu a:hover {
  color: #007bff !important;
}

.animated-btn {
    background-color: #28a745; /* Green */
    color: #fff;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Hover Effect: Grow & Shadow */
.animated-btn:hover {
    background-color: #218838;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Animated Border Slide Effect */
.animated-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    transition: all 0.5s ease;
}

.animated-btn:hover::before {
    left: 0;
}

/* Optional: Smooth text shadow on hover */
.animated-btn:hover {
    text-shadow: 0 2px 5px rgba(0,0,0,0.2);
}


    .blue { background: #029be6; }
    .purple { background: #aeabc2; }
    .black { background: #c95a5a; }
    .orange { background: #f8a531; }

    /* Responsive */
    @media (max-width: 768px) {
      .card-container {
        flex-direction: column;
        align-items: center;
      }
    }

/* Hide desktop nav on small screens */
@media (max-width: 767.98px) {
  .home-nav {
    display: none;
  }
}

/* Show navbar toggler on small screens */
@media (max-width: 767.98px) {
  .navbar-toggler {
    display: block;
  }
}

.testimonial-carousel .item {
  transition: transform 0.3s;
}

.testimonial-carousel .item:hover {
  transform: translateY(-5px);
}

.testimonial-img {
  width: 90px !important;     /* smaller width */
  height: 90px !important;      /* smaller height */
  object-fit: cover !important;  /* ensure image covers the area */
  object-position: center !important; /* center the image */
  border-radius: 50%  !important; /* circular image */
  margin: 0 auto 10px auto !important; /* auto horizontal center + bottom margin */
}

.rating span {
  font-size: 1rem;
}


/* Custom scrollbar for testimonial carousel */
.variant-card:hover {
    border: 2px solid #0d6efd;
    cursor: pointer;
    transition: 0.3s;
}

.color-circle {
    border: 1px solid #ccc;
}

@media (max-width: 768px) {
    .variant-card {
        width: 60px !important;  /* smaller width for mobile */
        padding: 0.25rem !important;
    }
    .color-circle {
        width: 30px !important;
        height: 30px !important;
    }
}

.desktop-video { display: block; }
.mobile-animation { display: none; }

@media (max-width: 768px) {
  .desktop-video { display: none; }
  .mobile-animation { display: block; }
}
