/* =========================
   STATIONERY PAGE CSS
========================= */

/* Hero Section */
.hero.stationery-hero {
  min-height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, #fefefe, #f0f8ff);
  position: relative;
  overflow: hidden;
  padding: 2rem 5%;
}

.hero.stationery-hero .hero-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero.stationery-hero .hero-bg-shapes span {
  position: absolute;
  border-radius: 50%;
  opacity: 0.3;
  animation: float 10s infinite linear;
}

.hero.stationery-hero .shape1 {
  width: 150px;
  height: 150px;
  background: linear-gradient(45deg, #00bfff, #1e90ff);
  top: 10%;
  left: 5%;
}

.hero.stationery-hero .shape2 {
  width: 120px;
  height: 120px;
  background: linear-gradient(45deg, #ff7f50, #ff6347);
  top: 30%;
  right: 10%;
}

.hero.stationery-hero .shape3 {
  width: 200px;
  height: 200px;
  background: linear-gradient(45deg, #32cd32, #7fff00);
  bottom: 10%;
  left: 40%;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
  }

  100% {
    transform: translateY(0) rotate(360deg);
  }
}

/* Hero Content */
.hero.stationery-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero.stationery-hero .hero-tagline {
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
  color: #0078d7;
  display: block;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.hero.stationery-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  color: #0078d7;
  margin-bottom: 0.8rem;
}

.hero.stationery-hero p {
  font-family: 'Roboto', sans-serif;
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 1.5rem;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 1;
}

.hero-btn {
  padding: 0.8rem 2rem;
  background: #0078d7;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero-btn.secondary {
  background: #f5f5f5;
  color: #0078d7;
  border: 1px solid #0078d7;
}

.hero-btn:hover {
  transform: scale(1.05);
}

.hero-btn.secondary:hover {
  background: #0078d7;
  color: #fff;
}

/* =========================
   SCROLL-DOWN INDICATOR
========================= */
.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.8rem;
  color: #0078d7;
  cursor: pointer;
  z-index: 10;
  animation: bounce 1.5s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(10px);
  }
}
.scroll-down .arrow {
  display: block;
  font-size: 1.5rem;
  animation: arrow-move 1.5s infinite;
}
/* Optional: multiple arrows for a better effect */
.scroll-down .arrow:nth-child(2) {
  animation-delay: 0.2s;
}

.scroll-down .arrow:nth-child(3) {
  animation-delay: 0.4s;
}

/* About Section */
.about {
  padding: 5rem 5%;
  text-align: center;
  background: #fdfdfd;
}

.about h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  color: #0078d7;
  margin-bottom: 1rem;
}

.about p {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Products Section */
.products,
.featured-products {
  padding: 5rem 5%;
  text-align: center;
  background: #f9fbff;
}

.products h2,
.featured-products h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  color: #0078d7;
  margin-bottom: 2rem;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.card {
  background: #ffffff;
  border-radius: 20px;
  padding: 1rem;
  width: 280px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.card img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 1rem;
}

.card h3 {
  font-family: 'Poppins', sans-serif;
  color: #0078d7;
  margin-bottom: 0.5rem;
}

.card p {
  font-family: 'Roboto', sans-serif;
  color: #555;
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* =========================
   TESTIMONIALS
========================= */
.testimonials {
  padding: 5rem 5%;
  background: #f9fbff;
  width: 100%;
}

.testimonials h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  color: #0078d7;
  text-align: center;
  margin-bottom: 3rem;
}

.testimonial-slider-wrapper {
  margin: auto;
  overflow-y: hidden;
  overflow-x: auto;
  position: relative;
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
}

.testimonial-slider-wrapper::-webkit-scrollbar {
  display: none;
  /* Hide scrollbar for Chrome, Safari and Opera */
}

.testimonial-cards {
  display: flex;
  gap: 2rem;
  flex-wrap: nowrap;
  position: relative;
}

.testimonial-card {
  background: #fff;
  border-radius: 15px;
  padding: 2rem 1.5rem;
  flex: 0 0 300px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid #0078d7;
}

.testimonial-card p {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  color: #555;
  margin-bottom: 1rem;
}

.testimonial-card h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: #0078d7;
  font-weight: 600;
  margin: 0;
}

/* Gradient edges */
.testimonial-cards::before,
.testimonial-cards::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.testimonial-cards::before {
  left: 0;
  background: linear-gradient(to right, #f9fbff, rgba(249, 251, 255, 0));
}

.testimonial-cards::after {
  right: 0;
  background: linear-gradient(to left, #f9fbff, rgba(249, 251, 255, 0));
}

/* Social Media Section */
/* .social-media {
  padding: 3rem 5%;
  text-align: center;
  background: #881515;
}

.social-media h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  color: #0078d7;
  margin-bottom: 1.5rem;
}

.social-icons a {
  font-size: 1.5rem;
  margin: 0 1rem;
  color: #0078d7;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  color: #005fa3;
  transform: scale(1.2);
}

/* Footer */
/* 
footer {
  padding: 2rem 5%;
  background: #f5f5f5;
  text-align: center;
  font-size: 0.95rem;
  color: #555;
}

footer p {
  margin: 0.3rem 0;
} */

/* =========================
   MOBILE VIEW
========================= */
@media (max-width: 768px) {
  .testimonial-cards {
    gap: 1rem;
  }

  .testimonial-card {
    flex: 0 0 250px;
    padding: 1.5rem 1rem;
  }

  .testimonial-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 0.5rem;
  }

  .hero.stationery-hero h1 {
    font-size: 2.2rem;
  }

  .hero.stationery-hero p {
    font-size: 1.1rem;
  }

  .cards {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 90%;
  }

  .hero-buttons {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero.stationery-hero .hero-tagline {
    font-size: 1rem;
  }

  .hero.stationery-hero h1 {
    font-size: 1.8rem;
  }

  .hero.stationery-hero p {
    font-size: 1rem;
  }

  .hero-btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }

  .testimonial-card {
    flex: 0 0 200px;
  }
}

.enquiry-form-section {
  padding: 4rem 2rem;
  background: #f9f9f9;
  text-align: center;
}

.enquiry-form-section h2 {
  font-size: 2rem;
  color: #0078d7;
  margin-bottom: 1rem;
}

.enquiry-form-section p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
}

.enquiry-form-section form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.enquiry-form-section .form-group {
  margin-bottom: 1.5rem;
}

.enquiry-form-section label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #333;
}

.enquiry-form-section input,
.enquiry-form-section textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 1rem;
}

.enquiry-form-section input:focus,
.enquiry-form-section textarea:focus {
  outline: none;
  border-color: #0078d7;
}

.enquiry-form-section .hero-btn {
  display: inline-block;
  background: #0078d7;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.enquiry-form-section .hero-btn:hover {
  background: #005ea3;
}