/* ------------------ Hero Section Base ------------------ */
.hero-slider {
  width: 100%;
  height: 100vh;
  /* full height desktop */
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin: 0;
  /* remove extra margin */
  padding: 0;
  /* remove extra padding */
}

/* Swiper Container */
.swiper {
  width: 100%;
  height: 100%;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

/* Swiper Slide */
.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Images */
.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 25px;
}

/* ------------------ Captions ------------------ */
.top-caption {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: white;
  font-size: 2rem;
  text-align: center;
  max-width: 80%;
  line-height: 1.4;
  background: rgba(0, 0, 0, 0.3);
  padding: 5px 10px;
  border-radius: 5px;
}

.bottom-caption {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: white;
  font-size: 1.5rem;
  text-align: center;
  max-width: 80%;
  line-height: 1.4;
  background: rgba(0, 0, 0, 0.3);
  padding: 5px 10px;
  border-radius: 5px;
}

/* Gradient title/subtitle */
.caption-title {
  font-size: 4rem;
  font-weight: 800;
  color: transparent;
  background: linear-gradient(90deg, #e9e9ea, #b4e9f6);
  -webkit-background-clip: text;
  background-clip: text;
  text-align: center;
  width: 90%;
  margin: 0 auto;
  line-height: 1.2;
  word-wrap: break-word;
}

.caption-subtitle {
  font-size: 1.8rem;
  color: #fff8cc;
  text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.5);
  text-align: center;
  width: 90%;
  margin: 0 auto;
}

/* ------------------ Swiper Navigation & Pagination ------------------ */
.swiper-pagination-bullet {
  background-color: #6d76dc;
  width: 16px;
  height: 16px;
  margin: 0 8px;
  transition: background-color 0.4s, transform 0.4s;
}

.swiper-pagination-bullet-active {
  background-color: #00aaff;
  transform: scale(1.3);
}

.swiper-button-next,
.swiper-button-prev {
  color: white;
  background: #2a96f8;
  width: 45px;
  height: 90px;
  border-radius: 12px;
  transition: all 0.4s ease;
  opacity: 0.7;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: #2a96f8;
  transform: scale(1.2);
}

/* ------------------ Responsive Design ------------------ */

/* Medium screens / tablets */
@media (max-width: 1024px) {
  .hero-slider {
    height: 80vh;
  }

  .swiper-slide img {
    height: 80vh;
  }

  .top-caption {
    font-size: 1.8rem;
    max-width: 85%;
  }

  .bottom-caption {
    font-size: 1.3rem;
    max-width: 85%;
  }

  .caption-title {
    font-size: 3rem;
  }

  .caption-subtitle {
    font-size: 1.5rem;
  }
}

/* Small screens / mobiles */
@media (max-width: 768px) {
  .hero-slider {
    height: auto;
    min-height: 65vh;
    /* make it taller for full hero */
    padding: 0;
  }

  .swiper-slide img {
    width: 100%;
    height: 100%;
    /* cover entire slide */
    object-fit: cover;
    object-position: center center;
    /* cover container without leaving gaps */
    border-radius: 0;
  }

  .top-caption {
    font-size: 1.3rem;
    /* readable on mobile */
    max-width: 90%;
    top: 6%;
    /* closer to top */
  }

  .bottom-caption {
    font-size: 1.1rem;
    /* readable */
    max-width: 90%;
    bottom: 6%;
    /* closer to bottom */
  }

  .caption-title {
    font-size: 2.5rem;
  }

  .caption-subtitle {
    font-size: 1.2rem;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 35px;
    height: 70px;
  }
}


/* Extra small / phones */
@media (max-width: 480px) {
  .hero-slider {
    height: auto;
    min-height: 50vh;
  }

  .swiper-slide img {
    height: auto;
    object-fit: cover;
    border-radius: 0;
  }

  .top-caption,
  .bottom-caption {
    font-size: 1.2rem;
    max-width: 95%;
    padding: 3px 6px;
  }

  .caption-title {
    font-size: 2rem;
  }

  .caption-subtitle {
    font-size: 1rem;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 30px;
    height: 60px;
  }
}




/* WhatsApp button initially hidden */
:root {
  --wa-size: clamp(52px, 6vw, 64px);
  --wa-color: #25D366;
  --wa-hover: #128C7E;
  --wa-font: clamp(24px, 3vw, 32px);
  --wa-offset: 20px;
  --wa-tooltip-font: clamp(12px, 1.5vw, 14px);
}

/* WhatsApp Button */
.wa-float {
  position: fixed;
  top: 50%;
  right: var(--wa-offset);
  transform: translateY(-50%);
  width: var(--wa-size);
  height: var(--wa-size);
  background: var(--wa-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--wa-font);
  text-decoration: none;
  z-index: 9999;

  opacity: 0;
  pointer-events: none;
  transition: all 0.35s ease;
}

/* Show on scroll */
.wa-float.show {
  opacity: 1;
  pointer-events: auto;
}

/* Hover / focus */
.wa-float:hover,
.wa-float:focus {
  background: var(--wa-hover);
  transform: translateY(-50%) scale(1.15);
}

/* Tooltip */
.wa-tooltip {
  position: absolute;
  right: calc(var(--wa-size) + 12px);
  background: var(--wa-color);
  color: #fff;
  padding: 0.6em 0.9em;
  border-radius: 6px;
  font-size: var(--wa-tooltip-font);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(-50%) scale(0.95);
  transition: all 0.3s ease;
  pointer-events: none;
}

/* Tooltip visible */
.wa-float:hover .wa-tooltip,
.wa-float:focus .wa-tooltip {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .wa-float {
    bottom: 20px;
    top: auto;
    right: 16px;
    transform: none;
  }

  .wa-float:hover {
    transform: scale(1.1);
  }

  .wa-tooltip {
    display: none; /* Hide tooltip on mobile */
  }
}


/* Animation for sliding in from the left */
@keyframes slideIn {
  0% {
    left: -80px;
    /* Start off-screen */
    opacity: 0;
  }

  100% {
    left: 20px;
    /* Final position */
    opacity: 1;
  }
}

/* Animation for sliding out when hiding */
@keyframes slideOut {
  0% {
    left: 20px;
    opacity: 1;
  }

  100% {
    left: -80px;
    /* Slide off-screen */
    opacity: 0;
  }
}

.hero-slider .swiper-slide {
  position: relative;
}

/* Pop-In Animation */
@keyframes fadeInUp {
  0% {
    transform: translate(-50%, 50%) scale(0);
    opacity: 0;
  }

  60% {
    transform: translate(-50%, 30%) scale(1.05);
    opacity: 0.8;
  }

  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

.swiper-caption {
  position: absolute;
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #db1515;
  font-family: 'Arial', sans-serif;
  z-index: 1000;
  opacity: 1;
}

/* The class to trigger animation */
.swiper-caption.animate {
  animation: fadeInUp 2s ease-out forwards;
}

.swiper-caption h1 {
  font-size: 3rem;
  font-weight: bold;
  animation: fadeInUp 1.5s ease-out forwards;
}

.swiper-caption p {
  font-size: 1.5rem;
  animation: fadeInUp 2s ease-out forwards;
  animation-delay: 0.5s;
}

/* Mobile & Tablet Screens */
@media (max-width: 768px) {
  .swiper-caption h1 {
    font-size: 2rem;
    animation: fadeInUp 1.5s ease-out forwards;
  }

  .swiper-caption p {
    font-size: 1.2rem;
    animation: fadeInUp 2s ease-out forwards;
    animation-delay: 0.5s;
  }

  .swiper-caption {
    top: 65%;
    animation: fadeInUp 2s ease-out forwards;
  }
}

/* Smaller mobile screens */
@media (max-width: 480px) {
  .swiper-caption h1 {
    font-size: 1.5rem;
    animation: fadeInUp 1.5s ease-out forwards;
  }

  .swiper-caption p {
    font-size: 1rem;
    animation: fadeInUp 2s ease-out forwards;
    animation-delay: 0.5s;
  }

  .swiper-caption {
    top: 70%;
    animation: fadeInUp 2s ease-out forwards;
  }
}


/* Products Section */
/* Container & Section */
#products-container {
  padding: 80px 20px;
  background-color: #e0f7ff;
  /* light pastel blue background */
}

#products-container h1 {
  font-size: 3rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 50px;
  color: #0077b6;
  /* baby blue / darker blue */
  font-family: 'Comic Neue', 'Poppins', sans-serif;
  letter-spacing: 2px;
  text-shadow: 1px 1px 2px #b3e0ff;
}

/* Dropdown Filter */
.section-filter {
  text-align: center;
  margin-bottom: 50px;
}

.section-filter select {
  padding: 12px 20px;
  font-size: 1.1rem;
  border-radius: 25px;
  border: 2px solid #90e0ef;
  background-color: #caf0f8;
  /* soft blue */
  color: #0077b6;
  font-weight: 600;
  transition: all 0.4s ease;
  min-width: 250px;
}

.section-filter select:hover,
.section-filter select:focus {
  outline: none;
  border-color: #0077b6;
  box-shadow: 0 0 15px rgba(0, 119, 182, 0.3);
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 30px;
  padding: 0 50px;
}

@media (max-width: 1024px) {
  .products-grid {
    padding: 0 30px;
  }
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 20px;
    padding: 0 15px;
  }
}

/* Product Card */
.product-card {
  background: linear-gradient(145deg, #d0f0ff, #caf0f8);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 119, 182, 0.15);
  transition: all 0.5s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 25px 25px 0 0;
  transition: transform 0.5s ease;
}

.product-card h2 {
  font-size: 1.2rem;
  margin: 15px 10px;
  text-align: center;
  font-weight: 700;
  font-family: 'Comic Neue', sans-serif;
  color: #0077b6;
  transition: color 0.3s ease;
}

/* Buttons */
.product-card a {
  margin: 5px 10px 10px 10px;
  text-align: center;
  padding: 10px 0;
  border-radius: 20px;
  display: block;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #00b4d8, #0077b6);
  transition: all 0.4s ease;
  box-shadow: 0 6px 15px rgba(0, 119, 182, 0.2);
}

.product-card a:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 25px rgba(0, 119, 182, 0.3);
}

/* Hover Card Effect */
.product-card:hover {
  transform: translateY(-10px) scale(1.05) rotate(-1deg);
  box-shadow: 0 15px 40px rgba(0, 119, 182, 0.25);
}

.product-card:hover img {
  transform: scale(1.12) rotate(1deg);
}

/* Responsive adjustments */
@media (max-width: 480px) {
  #products-container h1 {
    font-size: 2.2rem;
  }

  .product-card img {
    height: 150px;
  }

  .product-card h2 {
    font-size: 1rem;
  }
}
/* Our */
/* ===== Container ===== */
.container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}

/* ===== Section Box ===== */
.section-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1200px;
  min-height: 500px;
  margin: 120px auto; /* added extra margin for navbar offset */
  background: #0443b4;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  padding: 20px;
  color: #fff;
  text-align: center;
  overflow: hidden;
  position: relative;

  /* NEW Animation */
  animation: popFadeUp 0.8s ease-out;
  visibility: visible;

  /* Scroll offset fix for anchor links */
  scroll-margin-top: 200px; /* adjust to navbar height */
}

/* ===== Pop + Fade + Up Animation ===== */
@keyframes popFadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  60% {
    opacity: 0.8;
    transform: translateY(-10px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ===== Content Container ===== */
.content-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  gap: 20px;

  animation: fadeSlide 1s ease-out;
}

/* Slight fade + slide animation */
@keyframes fadeSlide {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ===== Text Content ===== */
.text-content {
  flex: 1;
  text-align: left;
  color: #fff;
  margin-bottom: 20px;
  line-height: 2;
}

.text-content h1,
.text-content h2 {
  color: wheat;
  text-transform: uppercase;
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.text-content p,
.extra-content p {
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 15px;
  font-weight: 400;
}

/* ===== Extra Content (Read More) ===== */
.extra-content {
  display: none;
  overflow: hidden;
  opacity: 0;
  max-height: 0;
  transition: max-height 0.5s ease, opacity 0.5s ease;
}

.extra-content.show {
  display: block;
  max-height: 800px; /* increased max-height for long content */
  opacity: 1;
}

/* ===== Read More Button ===== */
.read-more {
  display: inline-block;
  padding: 12px 25px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  background-color: #ffcc00;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-align: center;
  margin-top: 15px;
  transition: all 0.3s ease;
}

.read-more:hover {
  background-color: #ff9900;
  transform: scale(1.05);
}

/* ===== Image Content ===== */
.image-content {
  flex: 0 0 35%;
  text-align: center;
  animation: imagePopUp 0.8s ease-out;
}

@keyframes imagePopUp {
  0% { opacity: 0; transform: translateY(20px) scale(0.95); }
  60% { opacity: 0.8; transform: translateY(-5px) scale(1.02); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.image-content img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.image-content img:hover {
  transform: scale(1.05);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .content-container {
    flex-direction: column;
    text-align: center;
  }

  .image-content {
    flex: 0 0 100%;
  }

  .image-content img {
    height: 250px;
  }

  .text-content {
    text-align: center;
  }

  .text-content h1,
  .text-content h2 {
    font-size: 2rem;
  }

  .text-content p {
    font-size: 16px;
  }
}

/* ===== Smooth Scroll ===== */
html {
  scroll-behavior: smooth;
}



.paginator {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  gap: 12px;
  font-family: 'Poppins', sans-serif;
  flex-wrap: wrap;
}

.page-link,
.page-number {
  text-decoration: none;
  padding: 10px 18px;
  font-size: 16px;
  font-weight: 600;
  color: white;
  background: linear-gradient(45deg, #007bff, #00d4ff);
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 3px 10px rgba(0, 123, 255, 0.3);
  cursor: pointer;
}

.page-link:hover,
.page-number:hover {
  background: linear-gradient(45deg, #0056b3, #0099cc);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.5);
}

.page-number {
  display: inline-block;
  margin: 0 5px;
  padding: 10px 15px;
}

.page-number.active {
  background: linear-gradient(45deg, #ff7eb3, #ff758c);
  color: #fff;
  font-weight: bold;
  box-shadow: 0 5px 15px rgba(255, 118, 150, 0.5);
}

/* Animation on hover */


@keyframes bounce {

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

  50% {
    transform: translateY(-10px);
  }
}

.page-link:hover,
.page-number:hover {
  animation: bounce 0.4s ease-in-out;
}

/* Responsive Design */
@media (max-width: 768px) {
  .paginator {
    flex-direction: column;
    gap: 8px;
  }

  .page-link,
  .page-number {
    padding: 8px 14px;
    font-size: 14px;
  }
}

/*prouduct iamge bounce in */


@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: translateY(50px) scale(0.85);
  }

  60% {
    opacity: 1;
    transform: translateY(-15px) scale(1.05);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.product-card {
  opacity: 1;
  /* Initially hidden */
  transform: translateY(50px) scale(0.85);
  /* Start from below with smaller scale */
  transition: opacity 0.3s ease, transform 0.3s ease;
  /* Smooth transition when the animation starts */
}

.product-card.visible {
  opacity: 1;
  animation: bounceIn 1.5s ease-in-out forwards;
  /* Animation when it becomes visible */
}

/* Styling for the Our Team section */
.our-team {
  background-color: #f8f8f8;
  /* Adjust this as needed */
  padding: 60px 20px;
}

.our-team h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}

.team-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  justify-items: center;
}

/* Styling for each team member card */
.team-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
  text-align: center;
  padding: 20px;
  max-width: 250px;
}

/* Hover effect */
.team-card:hover {
  transform: translateY(-10px);
  /* Lifts the card on hover */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.team-image-container {
  width: 150px;
  height: 150px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.team-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease-in-out;
}

/* Image zoom on hover */
.team-image-container:hover img {
  transform: scale(1.1);
  /* Zoom effect on hover */
}

.team-info h3 {
  font-size: 1.4rem;
  font-weight: bold;
  margin: 10px 0;
}

.team-info p {
  font-size: 1rem;
  color: #555;
}

/* Animation for the team cards */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.team-card {
  animation: fadeInUp 0.5s ease-out;
}

/* Hover Effects for Team Cards */
.team-card:hover .team-info {
  color: #f79c42;
  /* Change color when hovered */
}



/* Container centered on screen */
.no-products-container {
  grid-column: 1 / -1;
  /* span all columns in the grid */

  display: flex;
  justify-content: center;
  /* horizontal center */
  align-items: center;
  /* vertical center */
  min-height: 70vh;
  /* vertically center on screen */
  width: 100%;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
  /* include padding in width calculation */
}

/* Inner content wrapper */
.no-products-content {
  max-width: 500px;
  /* limit width so it doesn’t stretch */
  width: 100%;
  /* allow responsive scaling */
  display: flex;
  flex-direction: column;
  align-items: center;
  /* center inner elements horizontally */
  animation: fadeInUp 1s ease forwards;
}

/* Icon bounce animation */
.icon-container {
  animation: bounce 2s infinite;
  margin-bottom: 20px;
  color: #6c757d;
  /* muted gray */
}

/* Heading */
.no-products-title {
  font-size: 2rem;
  margin-bottom: 10px;
  animation: slideIn 1s ease forwards;
}

/* Text */
.no-products-text {
  font-size: 1.2rem;
  color: #6c757d;
  line-height: 1.5;
  animation: fadeIn 1.5s ease forwards;
}

/* Button */
.no-products-btn {
  margin-top: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.no-products-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes bounce {

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

  50% {
    transform: translateY(-15px);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* Responsive text */
@media (max-width: 768px) {
  .no-products-title {
    font-size: 1.5rem;
  }

  .no-products-text {
    font-size: 1rem;
  }
}


.section-filter {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

/* Center All Sections select */
#section-select {
  width: 50%;
  padding: 10px 15px;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid #87ceeb; /* light sky blue border */
  cursor: pointer;
  margin: 0 auto;
  background-color: #e0f7ff; /* pastel sky blue */
  color: #03396c; /* dark blue text */
  transition: border 0.3s, box-shadow 0.3s;
}

#section-select:hover {
  border-color: #00bfff;
  box-shadow: 0 2px 8px rgba(0, 191, 255, 0.3);
}

/* Categories button */
.categories-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  font-size: 16px;
  border-radius: 12px;
  border: none;
  background: #b3e5fc; /* soft sky blue */
  color: #03396c; /* dark blue text */
  cursor: pointer;
  font-weight: 600;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: background 0.3s, transform 0.2s;
}

.categories-btn:hover {
  background: #81d4fa; /* slightly darker sky blue */
  transform: translateY(-2px);
}

/* Arrow rotation */
.categories-btn .arrow {
  margin-left: 8px;
  transition: transform 0.3s;
}

.categories-btn.open .arrow {
  transform: rotate(180deg);
}

/* Right panel dropdown */
.panel-right {
  display: none;
  position: absolute;
  top: 110%; /* below button */
  left: 50%;
  transform: translateX(-50%) scaleY(0);
  transform-origin: top center;
  min-width: 220px;
  border-radius: 12px;
  background-color: #e1f5fe; /* soft pastel sky blue */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  z-index: 100;
  overflow: hidden;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}

/* Show panel with animation */
.panel-right.show {
  display: block;
  transform: translateX(-50%) scaleY(1);
  opacity: 1;
}

/* Panel items */
.panel-right .panel-item {
  padding: 12px 20px;
  cursor: pointer;
  color: #03396c; /* dark blue text */
  font-weight: 500;
  transition: background 0.3s, transform 0.2s;
  border-bottom: 1px solid #b3e5fc; /* subtle separation */
}

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

.panel-right .panel-item:hover {
  background: #81d4fa; /* darker sky blue hover */
  color: #fff;
  transform: translateX(5px);
}

/* Center everything */
.category-panel {
  position: relative;
  text-align: center;
  margin-top: 15px;
}

/* Responsive for mobile */
@media (max-width: 768px) {
  #section-select {
    width: 90%;
  }

  .categories-btn, .panel-right {
    width: 90%;
  }

  .panel-right {
    top: 100%;
  }

  .panel-right .panel-item {
    font-size: 15px;
    padding: 10px 15px;
  }
}
