/* ================================
   Review Form - Black & Yellow Theme
================================ */
.sdlsheet-form-card {
  background: #121212; /* deep black */
  color: #f1f1f1;
  padding: 2rem;
  border: 1px solid #2a2a2a;
  box-shadow: 0 8px 24px rgba(0,0,0,0.65);
  max-width: 520px;
  margin: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.sdlsheet-form-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.8);
}
/* ===========================
   Form Title & Labels
=========================== */
.sdlsheet-form-card p {
  font-size: 28px;
  font-weight: 700;
  color: #fbbf24 !important;   /* yellow highlight */
  margin-bottom: 1rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sdlsheet-form-card label {
  font-size: 15px;
  font-weight: 600;
  color: #f1f1f1;  /* light white */
  margin-bottom: 6px;
  display: block;
  letter-spacing: 0.5px;
}

/* Small description under heading */
.sdlsheet-form-card .form-subtitle {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 1.5rem;
  text-align: center;
  font-style: italic;
}

/* Input & Textarea */
#sdlsheet-reviewForm .form-control {
  border-radius: 12px;
  padding: 12px 15px;
  font-size: 15px;
  border: 1px solid #444;
  background: #1f1f1f;
  color: #eee;
  transition: all 0.3s ease;
}
#sdlsheet-reviewForm .form-control:focus {
  border-color: #fbbf24;
  box-shadow: 0 0 0 3px rgba(251,191,36,0.35);
  background: #252525;
  color: #fff;
}

/* Rating Stars */
.sdlsheet-stars {
  display: flex;
  gap: 5px;
}
.sdlsheet-star {
  font-size: 28px;
  color: #444;
  cursor: pointer;
  transition: color 0.25s ease;
}
input[type="radio"]:checked ~ label.sdlsheet-star,
.sdlsheet-star:hover,
.sdlsheet-star:hover ~ .sdlsheet-star {
  color: #fbbf24;
}

/* Submit Button */
#sdlsheet-submitBtn {
  border-radius: 12px;
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
  background: #fbbf24;
  color: #111;
  border: none;
  transition: all 0.3s ease;
}
#sdlsheet-submitBtn:hover {
  transform: translateY(-3px);
  background: #ffd84d;
  box-shadow: 0 8px 18px rgba(251,191,36,0.55);
}

/* ================================
   Testimonials Section
================================ */
.sdlsheet-testimonial-wrapper {
  background: #0e0e0e;
  color: #f1f1f1;
  padding: 3rem 0;
}

.sdlsheet-testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.6rem;
}

/* Testimonial Card */
.sdlsheet-testimonial-card {
  background: #1a1a1a;
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid #2d2d2d;
  box-shadow: 0 6px 18px rgba(0,0,0,0.55);
  transition: all 0.3s ease;
}
.sdlsheet-testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.75);
}
.sdlsheet-testimonial-card h5 {
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #fff;
}
.sdlsheet-testimonial-card p {
  font-size: 14px;
  color: #bbb;
  font-style: italic;
}
.sdlsheet-testimonial-card .review-stars {
  color: #fbbf24;
  margin-top: 6px;
}

/* ================================
   Pagination Buttons
================================ */
.sdlsheet-pagination {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 2rem;
}

.sdlsheet-pagination button {
  background: #1a1a1a;
  color: #f1f1f1;
  border: 1px solid #333;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.sdlsheet-pagination button:hover {
  background: #fbbf24;
  color: #111;
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(251,191,36,0.55);
}

.sdlsheet-pagination button.active {
  background: #fbbf24;
  color: #111;
  border-color: #fbbf24;
  box-shadow: 0 8px 20px rgba(251,191,36,0.6);
}

/* ===========================
   Placeholder Styling
=========================== */
#sdlsheet-reviewForm .form-control::placeholder {
  color: #888;               /* soft gray */
  font-style: italic;
  opacity: 1;                /* ensure consistent across browsers */
  transition: color 0.3s ease;
}

#sdlsheet-reviewForm .form-control:focus::placeholder {
  color: #fbbf24;            /* yellow when focused */
}

/* ================================
   Testimonial Card - Black with Yellow Border
================================ */
.sdlsheet-testimonial-card {
  background-color: #1a1a1a;       /* dark background */
  border: 2px solid #fbbf24;       /* yellow border */
  border-radius: 0;                 /* remove rounding */
  padding: 1.5rem;
  margin: 10px;
  box-shadow: 0 12px 24px rgba(251, 191, 36, 0.5); /* stronger yellowish shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effect */
.sdlsheet-testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(251, 191, 36, 0.7); /* stronger on hover */
}

/* Name Style */
.sdlsheet-testimonial-card h5 {
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #fff;
}

/* Star Rating Style */
.sdlsheet-testimonial-card .review-stars {
  color: #fbbf24; /* golden stars */
  margin-top: 6px;
}

/* Message Style */
.sdlsheet-testimonial-card p {
  font-size: 14px;
  color: #bbb;
  font-style: italic;
}

/* Date Style */
.sdlsheet-testimonial-card small {
  display: block;
  color: #888;
  font-size: 0.85rem;
}
/* Carousel Wrapper */
.sdltech-carousel-wrapper {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

/* Title & Subtitle */
.sdltech-carousel-title {
  font-size: 1.5rem;
}
.sdltech-carousel-subtitle {
  font-size: 1rem;
}

/* Carousel Caption */
.sdltech-carousel-caption {
  background: rgba(0, 0, 0, 0.5);
  padding: 15px;
  border-radius: 10px;
}
.sdltech-carousel-caption h5 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffc107;
}
.sdltech-carousel-caption p {
  font-size: 0.95rem;
  color: #fff;
}

/* Images */
.sdltech-carousel-img {
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
}

/* Responsive */
@media (max-width: 992px) {
  .sdltech-carousel-img { max-height: 300px; }
}
@media (max-width: 576px) {
  .sdltech-carousel-img { max-height: 250px; }
  .sdltech-carousel-caption { font-size: 0.85rem; padding: 10px; }
}
/* Marquee Container */
.sdltech-marquee {
  background-color: #000; /* Black background */
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  padding: 8px 0;
  box-sizing: border-box;
}

/* Scrolling Content */
.sdltech-marquee-content {
  display: inline-block;
  color: #FFD700; /* Yellow text */
  font-weight: bold;
  font-size: 1rem;
  padding-left: 100%; /* Start off-screen right */
  animation: sdltech-scroll 15s linear infinite;
}

/* Animation Keyframes */
@keyframes sdltech-scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
