/* ================ */
/* Global Variables */
/* ================ */
:root {
  --primary-color: #eccfa1;
  --secondary-color: #02614e;
  --text-light: #ffffff;
  --text-dark: #222222;
  --transition-speed: 0.3s;
  --nav-height: 60px;
}

/* ================ */
/* Reset and Base Styles */
/* ================ */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}
/* Banner Section */
.banner {
  position: relative;
  height: 100vh;
  width: 100%;
  margin-top: 40px;
  overflow: hidden; /* prevents overflow */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
}

/* ================ */
/* Video Background */
/* ================ */
.banner video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover; /* makes video fit properly */
  z-index: -1;
  border-radius: 15px;
  transition: opacity 1s ease;
}
@media (max-width: 768px) {
  .banner {
    height: 60vh; /* smaller banner height on mobile */
  }

  .banner video {
    width: auto;
    height: 100%;
    object-fit: cover;
  }
}
/* ================ */
/* Hero Content */
/* ================ */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  color: var(--text-light);
  padding: 2.5rem 3rem;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(1px);
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  max-width: 90%;
  width: 600px;
  animation: fadeInUp 1s ease-out;
  border: 1px solid rgba(255, 255, 255, 0.1);
}


.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
  color: var(--primary-color);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
  letter-spacing: 1px;
  font-weight: 800;
}

.hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  margin-bottom: 2rem;
  color: var(--primary-color);
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* ================ */
/* Call-to-Action Button */
/* ================ */
.cta-button {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: all var(--transition-speed) ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  letter-spacing: 0.5px;
}

.cta-button:hover {
  background-color: var(--primary-color);
  color:var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.cta-button:active {
  transform: translateY(0);
}

/* Mobile */
@media screen and (max-width: 767px) {
  .banner {
    height: 70vh;
  }
}

/* Tablet */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .banner {
    height: 80vh;
  }
}

/* Larger desktops (1700px and up) */
@media screen and (min-width: 1700px) and (max-width: 2559px) {
  .banner {
    height: 60vh;
  }
}

/* Ultra-wide 4K screens */
@media screen and (min-width: 2560px) {
  .banner {
    height: 70vh;
  }
}


/* ================ */
/* Navigation Bar */
/* ================ */

.navbar {
  position: fixed;
  top: 20px;
  width: 90%; /* Shrinks from both sides */
  max-width: 1450px; /* Prevents it from becoming too wide on large screens */
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--secondary-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 100;
  border-radius: 50px;
  transition: all 0.3s ease;
}


/* Logo */
.logo a {
  text-decoration: none;
  padding-left: 10px;
}

/* Navigation Links */
.nav-links {
  display: flex;
  align-items: center;
}

.nav-links ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  margin-right: 10px;
  padding: 0;
}

.nav-links ul li a {
  position: relative;
  text-decoration: none;
  color: var(--primary-color);
  font-size: 1.1rem;
  font-weight: 500;
  transition: color var(--transition-speed);
  padding: 0.5rem 0;
}

.nav-links ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width var(--transition-speed);
}

.nav-links ul li a:hover::after {
  width: 100%;
}

/* Hide mobile toggle by default */
.menu-toggle {
  display: none;
}

/* ========== Mobile Styles ========== */
@media (max-width: 767px) {
  .navbar {
    width: 90%;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--secondary-color);
    border-radius: 20px;
    padding: 1rem 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  }

  .menu-toggle {
  display: block;
  font-size: 1.8rem;
  cursor: pointer;
  margin-right: 10px;
  color: var(--primary-color);
  }

  .nav-links {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    background-color: transparent;
    overflow: hidden;
    max-height: 0;
    transition: max-height var(--transition-speed) ease;
    flex-direction: column;
  }

  .nav-links.active {
    max-height: 300px;
    margin-top: 1rem;
  }

  .nav-links ul {
    flex-direction: column;
    gap: 1rem;
    padding: 0.5rem 0;
    background-color: var(--secondary-color);
    border-radius: 15px;
  }

  .nav-links ul li {
    text-align: center;
  }

  .nav-links ul li a {
    display: block;
    padding: 0.5rem 0.8rem;
    border-radius: 10px;
    transition: background-color 0.3s;
  }
}

@media (min-width: 992px) {
    #id {
        width: 1000px;
    }
}

/* Large screen spacing improvement */
@media (min-width: 1400px) {
  .navbar {
    padding: 1.5rem 4rem;
  }
}
@media (min-width: 2560px) {
  .navbar {
    max-width: 2200px;
    padding: 2rem 5rem;
  }

  .nav-links ul li a {
    font-size: 1.3rem;
  }

  .logo img {
    height: 80px;
    width: 130px;
  }
}


.position-relative {
  position: relative;
}

/* Default size for desktop */
.easter-egg-gif,
.easter-egg-gif-2,
.easter-egg-gif-3,
.easter-egg-gif-4,
.easter-egg-gif-5,
.easter-egg-gif-6,
.easter-egg-gif-7,
.easter-egg-gif-8 {
  height: 16vw;
  width: 16vw;
  cursor: pointer;
  transition: transform 0.3s ease;
  opacity: 0.25;
}
/* Positioning for Easter Egg GIFs */
.easter-egg-gif { position: absolute; right: 0vw; }
.easter-egg-gif-2 { position: absolute; top: 1vh; }
.easter-egg-gif-3 { position: absolute; left: 65vw; top: 8vh; z-index: -9999; }
.easter-egg-gif-4 { position: absolute; top: 28vh; right: 66vw; }
.easter-egg-gif-5 { position: absolute; bottom: 28vh; left: 57vw; }
.easter-egg-gif-6 { position: absolute; bottom: 10vh; z-index: -1; }
.easter-egg-gif-7 { position: absolute; bottom: 8vh; right: 2vw; }
.easter-egg-gif-8 { position: absolute; top: 3vh; }
/* Hover Animation */
.easter-egg-gif:hover,
.easter-egg-gif-2:hover,
.easter-egg-gif-3:hover,
.easter-egg-gif-4:hover,
.easter-egg-gif-5:hover,
.easter-egg-gif-6:hover,
.easter-egg-gif-7:hover,
.easter-egg-gif-8:hover {
  transform: scale(1.15) rotate(5deg);
}

/* ✅ Make smaller for tablets */
@media (max-width: 992px) {
  .easter-egg-gif,
  .easter-egg-gif-2,
  .easter-egg-gif-3,
  .easter-egg-gif-4,
  .easter-egg-gif-5,
  .easter-egg-gif-6,
  .easter-egg-gif-7,
  .easter-egg-gif-8 {
    height: 20vw;
    width: 20vw;
  }
}

/* ✅ Make even smaller for mobile */
@media (max-width: 600px) {
  .easter-egg-gif,
  .easter-egg-gif-2,
  .easter-egg-gif-3,
  .easter-egg-gif-4,
  .easter-egg-gif-5,
  .easter-egg-gif-6,
  .easter-egg-gif-7,
  .easter-egg-gif-8 {
    height: 25vw;
    width: 25vw;
    opacity: 0.3; /* More visible on mobile */
  }
}



/* ================ */
/* Why choose us */
/* ================ */

/* Importing Google fonts - Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,100..900&display=swap');

.whyus{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  align-items: center;
  justify-content: center;
}

.wrapper {
  max-width: 1100px;
  padding: 20px 10px;
  margin: auto;
  overflow: hidden;
}

.wrapper .card {
  background: var(--primary-color);
  display: flex;
  height: auto;
  flex-direction: column;
  border-radius: 20px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.wrapper .card:hover {
  transform: translateY(-10px);
}

.card .card-image {
  position: relative;
}

.card .card-image img {
  width: 100%;
  padding: 10px;
  border-radius: 22px;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

.card .card-image .card-tag {
  position: absolute;
  top: 25px;
  left: 25px;
  font-size: 0.75rem;
  color: #6366f1;
  padding: 5px 15px;
  border-radius: 30px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.card .card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 10px 25px 25px;
}

.card .card-content .card-title {
  color: #111111;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
}

.card .card-content .card-text {
  color: #747474;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: center; /* Center text for better readability */
}

.card .card-footer {
  display: flex;
  margin-top: auto;
  align-items: center;
  padding-top: 10px; /* Reduced padding */
  padding-bottom: 10px; /* Added bottom padding for balance */
  justify-content: space-between;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 0.75rem; /* Smaller font size */
}

.card .card-footer .card-profile {
  display: flex;
  align-items: center;
}

.card .card-profile .card-profile-info {
  display: flex;
  flex-direction: column;
}

.card .card-profile .card-profile-name {
  font-size: 0.75rem; /* Smaller name font */
  font-weight: 600;
  color: #202020;
}

.card .card-profile .card-profile-role {
  font-size: 0.7rem; /* Smaller role font */
  color: #7A7A7A;
}

.card .card-profile img {
  width: 30px; /* Smaller profile picture */
  height: 30px; /* Matching height */
  margin-right: 8px; /* Reduced margin */
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Media Query for Responsive Adjustment */
@media (max-width: 768px) {
  .card .card-footer {
    font-size: 0.7rem; /* Slightly smaller font for smaller screens */
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .card .card-profile img {
    width: 28px; /* Even smaller image on mobile */
    height: 28px;
  }

  .card .card-profile .card-profile-name {
    font-size: 0.7rem; /* Even smaller name font on mobile */
  }
}


.card .card-button {
  color: #fff;
  padding: 10px 20px; /* Already fixed in px — good */
  border-radius: 30px;
  font-size: 13px; /* Fixed font size for consistency */
  font-weight: 600;
  text-decoration: none;
  background: var(--secondary-color);
  box-shadow: 0 4px 10px rgba(99, 102, 241, 0.2);
  transition: all 0.3s ease;

  display: inline-block;
  white-space: nowrap;     /* Prevent text wrapping */
  max-width: fit-content;  /* Prevent unnecessary stretch */
}

.card .card-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(99, 102, 241, 0.3);
  background-color: #575f4b;
}
.pagination-bullet {
  background: var(--secondary-color);
  opacity: 0.5;
  width: 10px;
  height: 10px;
  margin: 0 5px !important;
  padding-top:10px ;
  transition: all 0.3s ease;
}

.pagination-bullet-active {
  background: var(--secondary-color);
  opacity: 1;
  transform: scale(1.2);
}


@keyframes autoplay-loading {
  0% {
    transform: scaleX(0);
  }

  100% {
    transform: scaleX(1);
  }
}


/* Responsive media query code for small screens */
@media (max-width: 768px) {
  .wrapper {
    margin: 0 10px 25px;
  }
}
/*product info */
.box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 0.3fr));
  gap: 20px; /* Reduced gap between cards */
  justify-content:center;
  padding: 20px;
}

.flip-card {
  background: transparent;
  width: 100%;
  width: 400px;
  height: 460px;
  perspective: 1000px;
  margin: auto;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.flip-card-front {
  background: var(--primary-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.flip-card-front img {
  width: 100%;   /* Increased from 90% to 100% */
  max-height: 230px;  /* Prevents it from becoming too tall */
  object-fit:contain; /* Keeps the aspect ratio */
  border-radius: 10px;
}

.flip-card-front h3 {
  margin-top: 8px;
  color: #333;
  font-size: 16px;
  font-weight: bold;
}

.flip-card-back {
  background: var(--secondary-color);
  color: white;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15px;
}

.flip-card-back h3 {
  margin-bottom: 5px;
  font-size: 18px;
}

.flip-card-back p {
  margin: 3px 0;
  font-size: 14px;
}

.flip-card-back button {
  margin-top: 10px;
  background: var(--primary-color);
  color: #333;
  padding: 8px 16px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  transition: transform 0.3s;
  font-size: 14px;
}

.flip-card-back button:hover {
  transform: scale(1.1);
}
.egg-label {
  background-color: #ffeb3b;
  color: #333;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  padding: 4px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
}
@media (max-width: 1024px) and (min-width: 768px) {
  .box-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; /* same as carousel section */
    padding: 20px;
  }

  .flip-card {
    width: 320px;  /* same sizing style as carousel cards */
    height: 420px;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .flip-card-front {
    animation: pulse 1.5s infinite;
  }
  .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 0fr));
  gap: 40px; /* Reduced gap between cards */
  justify-content: center;
  padding: 20px;
}

.flip-card {
  background: transparent;
  width: 100%;
  width: 260px;
  height: 360px;
  perspective: 1000px;
  margin: auto;
}
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.03); }
  100% { transform: scale(1); }
}

/* ================ */
/*  plan details */
/* ================ */
.delivery-info {
  display: flex;
  justify-content:space-around;  /* Centers both horizontally */
  align-items: center;      /* Aligns vertically */
  gap: 10%;                /* Space between the two texts */
}

.delivery-info .text-muted {
  font-size:larger;
}

.delivery-info .fw-bold {
  font-size:larger;
}
.plan-card {
  cursor: pointer;
  transition: 0.3s;
  border: 3px solid transparent;
}
.plan-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%; /* Take full column width */
}

.plan-container .box-custom {
  width: 100%; /* Make card full width again */
}

.select-plan {
  margin-top: 10px;
  text-align: center;
}

.select-plan input[type="radio"] {
  width: 22px;
  height: 22px;
  accent-color:black;
  cursor: pointer;
  transform: scale(1.3);
}



.box-custom .weight {
  font-size: 14px;
  font-weight: 500;
  color: #ddd;
  margin-bottom: 10px;
}

.box-custom .price {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  margin-top: 15px;
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 10px;
  border-radius: 8px;
}

.box-custom {
  background-color: var(--secondary-color);
  color: white;
  padding: 2rem 1rem;
  border-radius: 40px;
  text-align: center;
  min-height: 100%;
}


.box-custom .title {
  font-weight: 800;
  margin-bottom: 20px;
}

.box-custom ul li {
  padding: 8px 0;
  font-size: 16px;
}

.subscribe-btn {
  border-radius: 100px;
  font-weight: 900;
  font-size:larger;
  padding: 12px 30px;
  margin-top: 50px;
  background-color: var(--secondary-color);
  color: white;
  border: none;
}

.subscribe-btn:hover {
  background-color: #575f4b;
}

/* Responsive layout */
@media (max-width: 768px) {
  .plan-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 0.5rem;
  }

  .plan-row .col-10 {
    flex: 1;
    max-width: 32%;
    padding: 0.5rem;
  }

  .box-custom {
    padding: 1rem 0.5rem;
    font-size: 0.85rem;
    border-radius: 30px;
  }
  .box-custom .title {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .box-custom {
    font-size: 0.75rem;
    padding: 0.8rem 0.4rem;
    border-radius: 20px;
  }

  .box-custom .title {
    font-size: 1rem;
  }

  .box-custom ul li {
    font-size: 0.75rem;
  }
}

.plan-card {
  cursor: pointer;
  transition: 0.3s;
  border: 3px solid transparent;
}

.plan-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.plan-container .box-custom {
  width: 100%;
}

.select-plan {
  margin-top: 10px;
}

/* ================ */
/* Testimonials section */
/* ================ */
.reviews{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background:#fff ;
  padding: 40px;
}

h2 {
  text-align: center;
  color: #000;
  margin-bottom: 30px;
  font-size: 2em;
}

.slider {
  overflow: hidden;
  width: 100%;
  max-width: 1500px; /* ensures 6 cards show at 250px + margin */
  margin: auto;
}

.slider-track {
  display: flex;
  animation: scroll 30s linear infinite;
  width: max-content;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.card-testimoniels {
  background: var(--primary-color);
  width: 250px;
  margin: 0 10px;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  flex-shrink: 0;
}

.card-testimoniels img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid #122f1e;
}

.card-testimoniels h3 {
  font-size: 1.1em;
  margin: 10px 0 5px;
}

.card-testimoniels span {
  color: #122f1e;
  font-size: 0.9em;
}

.card-testimoniels p {
  font-size: 0.85em;
  color: #555;
  margin: 15px 0;
}

.card-testimoniels button {
  padding: 8px 16px;
  background: #122f1e;
  color: #fff;
  border: none;
  border-radius: 25px;
  font-size: 0.9em;
  cursor: pointer;
  transition: background 0.3s;
}

.card-testimoniels button:hover {
  background: #19422a;
}

/* Responsive */
@media (max-width: 768px) {
  .slider {
    max-width: 100%;
  }
  .slider-track {
    animation-duration: 60s;
  }
}
/* ================ */
/* FAQ Styles */
/* ================ */
/* FAQ Section Styles */
.faq {
  position: relative;
  background: url('../Image/staarbox.png') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  background-color: #fff;
  padding: 2rem;
}
.faq::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.85);
  z-index: 0;
}
.faq > * { position: relative; z-index: 1; }
.faq h2 { text-align: center; font-size: 2rem; margin-bottom: 2rem; color: #333; }

.faq-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Odd Category → List left, Answer right */
.faq-category:nth-child(odd) .faq-content {
  flex-direction: row; /* Default */
}

/* Even Category → List right, Answer left */
.faq-category:nth-child(even) .faq-content {
  flex-direction: row-reverse;
}
.faq-category {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  flex-direction: column; /* Title above content */
  margin-bottom: 1rem;
}
.faq-category-title {
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--primary-color);
  background: var(--secondary-color);
  border: none;
  max-width: 300px; /* Optional: limit button size */
}
/* Alternate title alignment */
.faq-category:nth-child(odd) {
  align-items: flex-start; /* Align title left */
}
.faq-category:nth-child(even) {
  align-items: flex-end; /* Align title right */
}
.faq-category-title:hover { opacity: 0.9; }

.faq-content {
  display: none;
  position: relative;
  width: 100%;
  margin-top: 1rem;
}
.faq-category.open .faq-content {
  display: flex;
}
/* FAQ List */
.faq-list {
  width: 50%; /* Half screen */
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

/* FAQ Items */
.faq-item {
  background: transparent;
  padding: 0.8rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
  width: 90%; /* Slight margin from edge */
}

/* Align questions inside their half */
.faq-category:nth-child(odd) .faq-list {
  align-items: flex-start; /* Left side */
}
.faq-category:nth-child(even) .faq-list {
  align-items: flex-end; /* Right side */
}

.faq-item:hover { background: #f1f1f1; }

/* Answer Box */
.faq-answer-box {
  width: 50%; /* Other half of the screen */
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.64);
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  font-size: 1rem;
  font-weight: bolder;
  color: #333;
}
.faq-answer-box.active {
  display: flex;
}

/* Responsive */
@media (max-width: 768px) {
  
  .faq-content {
    flex-direction: column; /* Stack vertically */
    width: 100%;
  }

  .faq-list {
    width: 100%; /* Take full width */
  }

  .faq-item {
    width: 100%; /* Full screen width */
    box-sizing: border-box;
    margin-bottom: 0.8rem;
    padding: 1rem 2.5rem;
    background: transparent;
    border-radius: 6px;
    font-size: 1rem;
    position: relative;
  }

  /* Hide desktop hover answer box on mobile */
  .faq-answer-box {
    display: none !important;
  }

  /* Plus/Minus icons */
  .faq-category:nth-child(odd) .faq-item::after {
    content: '+';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-weight: bold;
    font-size: 1.5rem;
    color: #333;
  }

  .faq-category:nth-child(even) .faq-item::after {
    content: '+';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-weight: bold;
    font-size: 1.5rem;
    color: #333;
  }

  .faq-item.active::after {
    content: '-';
  }

  /* Inline answer */
  .faq-item .answer {
    display: none;
    padding-top: 0.5rem;
    font-size: 0.95rem;
    color: #333;
  }

  .faq-item.active .answer {
    display: block;
  }
}

@media (max-width: 1024px) {
  /* Stack questions and answers */
  .faq-content {
    flex-direction: column;
  }

  .faq-item {
    position: relative;
    padding: 0.8rem 2.5rem; /* space for icon */
    background: #f9f9f9;
    border-radius: 6px;
    margin-bottom: 0.8rem;
    font-size: 1rem;
  }

  /* Default icon for odd categories (icon on right) */
  .faq-category:nth-child(odd) .faq-item::after {
    content: '+';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-weight: bold;
    font-size: 1.5rem;
    color: #333;
  }

  /* Icon for even categories (icon on left) */
  .faq-category:nth-child(even) .faq-item::after {
    content: '+';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-weight: bold;
    font-size: 1.5rem;
    color: #333;
  }

  /* Active state changes icon to '-' */
  .faq-item.active::after {
    content: '-';
  }

  /* Hide desktop answer box on mobile/tablet */
  .faq-answer-box {
    display: none !important;
  }

  /* Inline answer */
  .faq-item .answer {
    display: none;
    padding-top: 0.5rem;
    font-size: 0.95rem;
    color: #333;
  }

  .faq-item.active .answer {
    display: block;
  }
}





  .faq-item .answer {
    display: none;
    padding-top: 0.5rem;
    color: var(--secondary-color);
    font-size: 0.95rem;
  }

  .faq-item.active .answer {
    display: block;
  }




/* ================ */
/*Footer */
/* ================ */
footer {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}
/* ================ */
/* Product Carousel */
/* ================ */
.product-carousel-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 30px;
}

.product-carousel {
  background:linear-gradient(rgba(208 135 0 / .35), rgba(208 135 0 / .35)),url("https://raw.githubusercontent.com/cbolson/icodethis-challenges/main/assets/images/bg-paper-2.webp");
  border-radius: 20px;
  padding: 20px;
  width: 320px;
  position: relative;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.product-carousel input[type="radio"] {
  display: none;
}

.product-carousel .circle-container {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.product-carousel .circle-container div {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  transition: transform 0.4s;
}

.product-carousel .circle-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-carousel .contents {
  position: relative;
}

.product-carousel article {
  display: none;
  animation: fadeIn 0.6s ease-in-out;
}

.product-carousel input:nth-of-type(1):checked ~ .contents article:nth-of-type(1),
.product-carousel input:nth-of-type(2):checked ~ .contents article:nth-of-type(2),
.product-carousel input:nth-of-type(3):checked ~ .contents article:nth-of-type(3) {
  display: block;
}

.product-carousel h2 {
  font-size: 1.8rem;
  color:rgba(55, 91, 0, 0.985);;
  margin-bottom: 10px;
}

.product-carousel ul {
  list-style: none;
  padding: 0;
}

.product-carousel ul li {
  margin: 5px 0;
  font-size: 1.2rem ;
}

.product-carousel ul span {
  font-weight: bold;
}

.product-carousel .buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.product-carousel .buttons label {
  cursor: pointer;
  font-size: 1.4rem;
  color: rgba(0, 0, 0, 0.811);;
  transition: transform 0.3s;
}

.product-carousel .buttons label:hover {
  transform: scale(1.3);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
/* ================ */
/* Zone Map */
/* ================ */
.zone-swiper {
  width: 100%;
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
}

.zone-slide {
  text-align: center;
  background: #fff;
  padding: 20px;
}

.zone-slide img {
  width: 100%;
  max-height: 700px;
  object-fit: contain;
}

.zone-slide h3 {
  margin-top: 1px;
  font-size: 1.2rem;
}
.zone-swiper-button-next,
.zone-swiper-button-prev {
  color: #333;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
}

.zone-swiper-button-next {
  right: 10px;
}

.zone-swiper-button-prev {
  left: 10px;
}
@media (min-width: 768px) {
  .zone-slide img {
    max-height: 500px;
  }
}

/* Laptop/Desktop (≥1024px) */
@media (min-width: 1024px) {
  .zone-slide img {
    max-height: 600px;
  }
}



/* ================ */
/* Scroll Behavior */
/* ================ */
html {
  scroll-behavior: smooth;
}












