/*
 * File: MultipleFiles/style.css
 * Description: This stylesheet contains the main styling for the website,
 *              including responsive design, animations, and component-specific styles.
 */

/*------------------------------------------------------------------------------
  # Global Styles & Utilities
------------------------------------------------------------------------------*/
/*

*/

/* General section spacing */
section {
  position: relative;
  z-index: 2; /* Ensures sections are above parallax backgrounds */
}

/* AOS Compatibility Styles */
[data-aos] {
  transition-property: transform, opacity;
}

.aos-animate {
  visibility: visible !important; /* Ensures content is visible during AOS animations */
}

/* Parallax container for background effects */
.parallax-container {
  position: relative;
  overflow: hidden;
}

/*------------------------------------------------------------------------------
  # Hero Section
------------------------------------------------------------------------------*/

/* FIXED HERO SECTION - Clean on All Screen Sizes */
header {
  height: 100vh;
  min-height: 700px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

/* Background video styling */
.bg_video {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 110%;
  width: 110%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: -1; /* Places video behind content */
}

/* Hero content container */
#hero {
  height: 100%;
  width: 100%;
  background: transparent !important;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}

/* FIXED HERO CONTENT - No Grey Tint on Small Screens */
.hero-content {
  max-width: 600px;
  padding: 2rem;
  position: relative;
  z-index: 10; /* Ensures content is above other elements */
}

/* Hero title styling */
.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem); /* Responsive font size */
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #ffffff !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 10;
}

/* Hero subtitle styling */
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9) !important;
  margin-bottom: 2rem;
  line-height: 1.6;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 10;
}

/* Hero buttons container */
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 10;
}

/* Scroll indicator styling */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
}

.scroll-indicator:hover {
  color: var(--secondary);
  transform: translateX(-50%) translateY(-5px);
}

.scroll-indicator .scroll-arrow {
  width: 2px;
  height: 30px;
  background: rgba(255, 255, 255, 0.5);
  margin: 0.5rem auto;
  position: relative;
  animation: scrollBounce 2s infinite;
}

.scroll-indicator .scroll-arrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -3px;
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(255, 255, 255, 0.8);
  border-bottom: 2px solid rgba(255, 255, 255, 0.8);
  transform: rotate(45deg);
}

/* Scroll bounce animation for indicator */
@keyframes scrollBounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/*------------------------------------------------------------------------------
  # About Section
------------------------------------------------------------------------------*/

.aboutSection {
  background: linear-gradient(135deg, #f7f9fc, #ffffff);
  padding: 60px 0;
}

/* About Card styling */
.aboutCard {
  background: #ffffffcc; /* semi-transparent white */
  backdrop-filter: blur(10px);
  border-radius: 24px;
  border: 1px solid rgba(243, 146, 12, 0.08);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
  transition: all 0.4s ease;
  padding: 2rem 1.5rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aboutCard:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(243, 146, 12, 0.15);
}

/* Gradient hover effect for about card */
.aboutCard::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(243, 146, 12, 0.1), transparent);
  transition: left 0.5s;
  z-index: 1;
}

.aboutCard:hover::before {
  left: 100%;
}

.aboutCard .text-center {
  position: relative;
  z-index: 2;
}

.aboutCard h3 {
  font-size: 1.25rem;
  letter-spacing: 0.5px;
  color: #333;
}

.aboutCard p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666;
}

.aboutCard img {
  transition: transform 0.3s ease;
}

.aboutCard:hover img {
  transform: scale(1.05);
}

/* About Carousel */
.aboutcarousel-wrapper {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  background: transparent;
}

/* Decorative background for carousel wrapper */
.aboutcarousel-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.aboutcarousel-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.aboutcarousel-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 2;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.3));
  border-radius: 2rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(12px);
  transition: all 0.4s ease;
}

.aboutcarousel-text {
  flex: 1;
  max-width: 460px;
}

.carousel-options {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.carousel-option {
  background: rgba(255, 255, 255, 0.55);
  border-left: 5px solid transparent;
  border-radius: 1rem;
  margin-bottom: 5px;
  padding: 24px 30px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.carousel-option:hover {
  transform: translateX(6px);
  background: rgba(255, 255, 255, 0.8);
}

.carousel-option:hover .option-title {
  color: #f3920c;
}

.carousel-option.active {
  border-left: 5px solid #f3920c;
  background: linear-gradient(135deg, #fff9f0, #fff0e3);
}

.carousel-option.active .option-title {
  color: #f3920c;
}

.carousel-option.active .option-description {
  color: #f3920c;
  opacity: 0.85;
}

.option-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1a5f3f;
}

.option-description {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #4a7c59;
  opacity: 0.9;
}

.aboutcarousel-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -30px;
  transform: translateY(10px);
}

.image-container {
  position: relative;
  max-width: 520px;
  width: 100%;
  border-radius: 30px;
  background: #fff6ec;
  padding: 12px;
  height: 550px; /* Adjust this value to your preferred height */
  overflow: hidden;
  /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05); */
}

/* Decorative background for image container */
.image-container::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
  border-radius: 30px;
  z-index: -1;
}

.carousel-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* This will make images cover the container */
  object-position: center; /* Centers the image in the container */
  border-radius: 20px;
  /* box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 10px 20px rgba(0, 0, 0, 0.1); */
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  /* backdrop-filter: blur(5px); */
}

.carousel-image:hover {
  transform: scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2), 0 15px 25px rgba(0, 0, 0, 0.15);
}

/* Floating elements for visual flair */
.floating-element {
  position: absolute;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1));
  border-radius: 50%;
  backdrop-filter: blur(10px);
  animation: float 6s ease-in-out infinite;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
}

.floating-element:nth-child(1) {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.floating-element:nth-child(2) {
  top: 20%;
  right: 15%;
  animation-delay: 2s;
}

.floating-element:nth-child(3) {
  bottom: 25%;
  left: 5%;
  animation-delay: 4s;
}

/* Floating animation */
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

/*------------------------------------------------------------------------------
  # Mission Section
------------------------------------------------------------------------------*/

#mission {
  background: linear-gradient(135deg, rgba(25, 28, 24, 0.4), rgba(15, 18, 13, 0.4)), url("../img/mission_bg.jpg") center center/cover fixed;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  isolation: isolate;
  z-index: 1;
}

.mission-bg {
  animation: none; /* Animation handled by ::before pseudo-element */
  will-change: transform;
  transition: transform 0.3s ease-out;
}

/* Shine effect for mission section background */
#mission::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  right: -50%;
  bottom: -50%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(243, 146, 12, 0.08) 50%,
    transparent 70%
  );
  animation: shine 8s infinite linear;
  pointer-events: none;
  z-index: -1;
}

#mission .container-fluid {
  position: relative;
  z-index: 2;
}

#mission h2 {
  font-size: 2.5rem;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInUp 0.8s 0.2s forwards;
}

#mission p {
  line-height: 1.8;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  transform: translateY(20px);
  opacity: 0;
}

#mission p:first-of-type {
  animation: fadeInUp 0.8s 0.4s forwards;
}

#mission p:last-of-type {
  animation: fadeInUp 0.8s 0.6s forwards;
}

#mission .heading_separator {
  height: 3px;
  width: 80px;
  background: rgba(243, 146, 12, 0.7);
  margin: 1.5rem auto 2.5rem;
  transform: scaleX(0);
  transform-origin: center;
  animation: scaleIn 0.6s 0.3s forwards cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#mission .btn_secondary {
  padding: 0.75rem 2rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInUp 0.8s 0.8s forwards;
}

#mission .btn_secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Shine animation for mission section */
@keyframes shine {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* Fade in and up animation */
@keyframes fadeInUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Scale in animation */
@keyframes scaleIn {
  to {
    transform: scaleX(1);
  }
}

/*------------------------------------------------------------------------------
  # Contact Section
------------------------------------------------------------------------------*/

#contact {
  background-color: #f8f9fa;
  padding: 5rem 0;
  position: relative;
}

.contact-header {
  margin-bottom: 3rem;
}

.contact-header h2 {
  font-size: 2.5rem;
  color: #2b2b2b;
  margin-bottom: 1rem;
}

.contact-header .heading_separator {
  height: 3px;
  width: 80px;
  background: var(--secondary);
  margin: 1rem auto;
}

.contact-header p {
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Unified Contact Wrapper */
.contact-wrapper {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-block {
  padding: 2.5rem;
}

.contact-block.left {
  border-right: 1px; /* Placeholder, likely needs a color */
}

.contact-block.right {
  background-color: #fff;
}

/* Info Section */
.contact-block h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #2b2b2b;
}

.contact-block p {
  color: #666;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.contact-details {
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-icon {
  background: rgba(243, 146, 12, 0.1);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--secondary);
}

.contact-text h4 {
  margin: 0 0 0.25rem 0;
  color: #2b2b2b;
  font-size: 1.3rem;
}

.contact-text p,
.contact-text a {
  margin: 0;
  color: #666;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-text a:hover {
  color: var(--secondary);
}

/* Social Links */
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.social-link:hover {
  background: var(--secondary);
  transform: translateY(-3px);
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: #666;
}

.social-link:hover svg {
  fill: white;
}

/* Form Fields */
.contact-form .form-control {
  padding: 1.2rem 1.5rem;
  font-size: 1.1rem;
  border-radius: 18px; /* more rounded */
  border: 1px solid #ccc;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(243, 146, 12, 0.1);
}

.contact-form textarea.form-control {
  min-height: 180px;
  resize: vertical;
}

/* Privacy text */
.privacy-text {
  color: #666;
  font-size: 0.9rem;
  margin: 1.5rem 0;
}

/* Submit Button */
.btn-submit {
  background: var(--secondary);
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 15px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
}

.btn-submit:hover {
  background: var(--dark_secondary);
  transform: translateY(-2px);
}

/*------------------------------------------------------------------------------
  # Explore Cards
------------------------------------------------------------------------------*/

.exploreCard {
  min-height: 260px;
  max-height: fit-content;
  position: relative;
  background: #ffffff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.exploreCard:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.exploreCardContent {
  position: relative;
}

/* Decorative line for explore card content */
.exploreCardContent::after {
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  left: -25px;
  border-radius: 100px;
  border: 3px solid var(--secondary);
}

.exploreCardBtn {
  height: 48px;
  width: 48px;
  background: transparent;
  border: 2px solid var(--secondary);
  color: var(--secondary);
  fill: var(--secondary);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.exploreCardBtn svg {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.exploreCard:hover .exploreCardBtn svg {
  transform: rotate(45deg);
}

.exploreCard:hover .exploreCardBtn {
  background: var(--secondary);
  fill: var(--white);
  color: var(--white);
  transform: scale(1.1);
}

/* New badge styling */
.new_badge {
  background: linear-gradient(135deg, #ffefd8, #fff5e6);
  border: 1px solid rgba(243, 146, 12, 0.2);
  color: var(--dark);
}

/*------------------------------------------------------------------------------
  # Product Showcase Section
------------------------------------------------------------------------------*/

#product-showcase {
  background-color: transparent;
  background-size: 40px 40px;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

/* Grid pattern background for product showcase */
#product-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  pointer-events: none;
}

.product-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Top border for product card */
.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  /* background: linear-gradient(90deg, #ffecb3, #ffd54f); */ /* Uncomment and define if needed */
}

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

.product-image-container {
  position: relative;
  /* background: linear-gradient(135deg, #fffde7 0%, #fff9c4 100%); */ /* Uncomment and define if needed */
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2rem;
  overflow: hidden;
}

/* Rotating background for product image container */
.product-image-container::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  /* background: radial-gradient(circle, rgba(255, 235, 59, 0.1) 0%, transparent 70%); */ /* Uncomment and define if needed */
  animation: rotate 20s linear infinite;
}

/* Rotation animation */
@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.product-image {
  width: 100%;
  height: 500px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.badge-new {
  background: linear-gradient(45deg, #ffecb3, #ffd54f);
  color: #4e342e;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  animation: pulse 2s infinite;
}

/* Pulse animation for new badge */
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.product-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #5d4037;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.product-description {
  color: #6d4c41;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.btn-primary-custom {
  background: linear-gradient(45deg, #ffecb3, #ffd54f);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  color: #4e342e;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(255, 213, 79, 0.3);
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(255, 213, 79, 0.4);
  color: #3e2723;
}

.btn-outline-custom {
  border: 2px solid #ffd54f;
  color: #ffd54f;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  background: transparent;
  transition: all 0.3s ease;
}

.btn-outline-custom:hover {
  background: #ffd54f;
  color: #3e2723;
  transform: translateY(-2px);
}

.section-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #141414ff;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  margin-bottom: 3rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

/* Floating elements for product showcase */
.floating-element {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
  width: 60px;
  height: 60px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-element:nth-child(2) {
  width: 40px;
  height: 40px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.floating-element:nth-child(3) {
  width: 80px;
  height: 80px;
  top: 80%;
  left: 20%;
  animation-delay: 4s;
}

/* Stats grid for product features */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1rem;
  background: rgba(255, 213, 79, 0.15);
  border-radius: 12px;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fbc02d;
}

.stat-label {
  font-size: 0.9rem;
  color: #6d4c41;
}

/* Feature list styling */
.feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.feature-list li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #6d4c41;
}

.feature-list li::before {
  content: '✓';
  color: #fbc02d;
  font-weight: bold;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 213, 79, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

/*------------------------------------------------------------------------------
  # FAQs Section (Accordion)
------------------------------------------------------------------------------*/

/* Fix for accordion animation glitches */
.accordion-button.collapsed {
  transition: all 0.3s ease;
}

/* Custom AOS delays for accordion bodies */
.accordion-collapse {
  transition: height 0.3s ease;
}

/* Custom Accordion Styles */
.custom-accordion .accordion-button {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(243, 146, 12, 0.1);
  padding: 1.25rem 1.5rem;
  color: var(--dark);
  transition: all 0.3s ease;
}

.custom-accordion .accordion-button:not(.collapsed) {
  background: rgba(243, 146, 12, 0.05);
  color: var(--secondary);
  box-shadow: none;
}

.custom-accordion .accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(243, 146, 12, 0.2);
  border-color: var(--secondary);
}

.custom-accordion .accordion-body {
  background: rgba(255, 255, 255, 0.6);
  border-left: 1px solid rgba(243, 146, 12, 0.1);
  border-right: 1px solid rgba(243, 146, 12, 0.1);
  border-bottom: 1px solid rgba(243, 146, 12, 0.1);
  border-radius: 0 0 12px 12px;
  padding: 1.5rem;
  line-height: 1.7;
}

/* Custom arrow icon for accordion buttons */
.custom-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23f3920c'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  transform: scale(1.2);
  transition: transform 0.3s ease;
}

.custom-accordion .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23f3920c'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  transform: rotate(-180deg) scale(1.2);
}

/*------------------------------------------------------------------------------
  # Responsive Adjustments
------------------------------------------------------------------------------*/

/* Media query for screens smaller than 992px */
@media (max-width: 992px) {
  .aboutcarousel-content {
    flex-direction: column;
    gap: 40px;
    text-align: center;
    padding: 2.5rem 1.5rem;
  }

  .aboutcarousel-text {
    max-width: 100%;
  }

  .aboutcarousel-image {
    margin-top: 0;
  }

  .carousel-option {
    padding: 20px 25px;
    font-size: 1.1rem;
  }

  .image-container {
    max-width: 100%;
  }

  .contact-block.left {
    border-right: none;
    border-bottom: 1px solid #f0f0f0;
  }

  .contact-block {
    padding: 1.5rem;
  }

  .contact-header h2 {
    font-size: 2rem;
  }
}

/* Media query for screens smaller than 768px */
@media (max-width: 768px) {
  header {
    height: 100vh;
    min-height: 600px;
  }

  #hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2)); /* Adds tint on small screens */
  }

  .hero-content {
    padding: 1rem;
  }

  .hero-title {
    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
  }

  .hero-subtitle {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .exploreCardContent::after,
  .aboutCardContent::after {
    left: -16px;
  }

  #mission {
    padding: 4rem 0;
  }

  #mission h2 {
    font-size: 2rem;
  }

  .product-card {
    padding: 1.5rem;
  }

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

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

  .stats-grid {
    grid-template-columns: 1fr; /* Stacks stats on small screens */
  }
}

/* Media query for screens smaller than 576px */
@media (max-width: 576px) {
  .hero-buttons {
    width: 100%;
  }

  .hero-buttons .btn_secondary,
  .hero-buttons .btn_transparent {
    width: 100%;
    justify-content: center;
  }

  .aboutcarousel-wrapper {
    padding: 40px 0;
  }

  .carousel-option {
    padding: 18px 20px;
    font-size: 1rem;
  }
  .aboutCard svg {
    background-color: rgba(243, 146, 12, 0.1); /* light orange tint */
    border-radius: 50%;
    padding: 16px;
}


  .aboutcarousel-content {
    gap: 30px;
    padding: 2rem 1rem;
  }

  .floating-element {
    display: none; /* Hides floating elements on very small screens */
  }
}
