:root {
  --primary: #f5c451;
  --primary-dark: #cf9f32;
  --primary-light: #ffe6a7;
  --secondary: #7c6cf1;
  --accent: #1f8a9e;
  --text-dark: #f7f7ff;
  --text-medium: #c8cce9;
  --text-light: #9197bb;
  --bg-light: #05060a;
  --bg-dark: #090b12;
  --bg-section: #0d0f17;
  --white: rgba(255, 255, 255, 0.95);
  --surface-card: #11131d;
  --surface-card-alt: #171b28;
  --shadow-sm: 0 4px 16px rgba(4, 5, 9, 0.35);
  --shadow-md: 0 8px 30px rgba(5, 6, 11, 0.5);
  --shadow-lg: 0 16px 40px rgba(5, 6, 11, 0.55);
  --shadow-xl: 0 35px 70px rgba(0, 0, 0, 0.65);
  --border-radius: 18px;
  --border-radius-lg: 28px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --gradient-primary: linear-gradient(135deg, #f5c451 0%, #b9852d 55%, #f07adf 100%);
  --gradient-hero: linear-gradient(125deg, rgba(6, 6, 10, 0.95), rgba(20, 23, 36, 0.8));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Cairo", sans-serif;
  background: radial-gradient(circle at 20% 20%, rgba(245, 196, 81, 0.18), transparent 50%),
    radial-gradient(circle at 80% 0, rgba(124, 108, 241, 0.2), transparent 55%),
    var(--bg-light);
  color: var(--text-medium);
  line-height: 1.7;
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

main {
  overflow: hidden;
}

/* Navbar */
.navbar {
  background: rgba(5, 6, 11, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
}

.container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  gap: 20px;
}

.logo-img {
  height: clamp(36px, 5vw, 48px);
  /* يتغير تلقائياً بين 36 و 48px حسب حجم الشاشة */
  width: auto;
  display: block;
  transition: height 0.3s ease;
}

/* شاشات صغيرة */
@media (max-width: 768px) {
  .logo-img {
    height: 36px;
    /* أصغر في الموبايل */
  }
}

/* شاشات أصغر جدًا (موبايل صغير) */
@media (max-width: 480px) {
  .logo-img {
    height: 30px;
  }
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  transition: 0.3s;
}

nav a:hover {
  color: var(--primary);
}

.lang-switch {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: transparent;
  color: var(--text-dark);
  padding: 6px 18px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

.lang-switch:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 3px;
  transition: 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 120px 20px 80px;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(11, 11, 11, 0.8), rgba(26, 23, 17, 0.5));
  z-index: 1;
}

.carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-kicker {
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 12px;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  justify-content: center;
}

.hero-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.hero-benefits li {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 0.95rem;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  padding: 14px 32px;
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
  font-weight: 700;
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  border-radius: 999px;
  padding: 13px 28px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: white;
  text-decoration: none;
  transition: var(--transition);
}

.btn-outline:hover {
  border-color: var(--primary-light);
  color: var(--primary-light);
}

.btn-secondary {
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 10px 22px;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-link {
  display: inline-flex;
  gap: 6px;
  text-decoration: none;
  color: var(--primary);
  font-weight: 700;
  position: relative;
}

.btn-link::after {
  content: "→";
  transition: transform 0.2s ease;
}

.btn-link:hover::after {
  transform: translateX(-3px);
}

.btn-lg {
  font-size: 1.1rem;
  padding: 16px 36px;
}

/* Trust Bar */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  padding: 40px 20px 10px;
  max-width: 1100px;
  margin: -40px auto 20px;
  position: relative;
  z-index: 5;
}

.trust-item {
  background: white;
  border-radius: var(--border-radius);
  padding: 24px 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.trust-item strong {
  display: block;
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 6px;
}

.story-panels {
  padding: 90px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.story-panels .section-title {
  margin-bottom: 16px;
}

.story-panels .section-lead {
  max-width: 760px;
  margin: 0 auto 32px;
  color: var(--text-light);
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.story-card {
  text-align: right;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.story-card small {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.story-card small::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

html[dir="ltr"] .story-card small {
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.story-card h3 {
  margin: 0;
  font-size: 1.4rem;
  color: var(--text-dark);
}

.story-card p {
  margin: 0;
  color: var(--text-medium);
  flex-grow: 1;
}

.story-card a {
  color: var(--primary-light);
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
}

.story-card a::after {
  content: "↗";
  font-size: 0.9rem;
}

/* Categories */
.categories {
  text-align: center;
  padding: 60px 20px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.category-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 24px;
  transition: 0.3s;
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.category-card:hover {
  transform: translateY(-5px) scale(1.02);
}

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

.category-card p {
  color: var(--text-medium);
  margin: 0;
  flex-grow: 1;
}

/* Solutions */
.solutions {
  padding: 80px 20px;
  background: var(--bg-section);
}

.section-title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 40px;
  color: var(--text-dark);
}

.section-lead {
  text-align: center;
  max-width: 760px;
  margin: -20px auto 40px;
  color: var(--text-medium);
  line-height: 1.8;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.solution-card {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.solution-card h3 {
  margin-top: 0;
  margin-bottom: 12px;
}

.solution-card p {
  margin-top: 0;
  color: var(--text-medium);
}

.solution-card ul {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}

.solution-card li {
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.solution-card li::before {
  content: \"•\";
  color: var(--primary);
}

/* Features */
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 40px 0;
}

.feature {
  flex: 1 1 150px;
  background: #fff;
  border-radius: 15px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Products */
.products {
  text-align: center;
  padding: 40px 20px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.product-card {
  background: white;
  border-radius: 15px;
  padding: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.product-card:hover {
  transform: scale(1.05);
}

.insights {
  padding: 80px 20px;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.insight-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.insight-card p {
  color: var(--text-medium);
  margin: 0;
}

/* Testimonials */
.testimonials {
  background: white;
  padding: 60px 20px;
  text-align: center;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.05);
  margin: 60px auto;
  max-width: 900px;
  border-radius: 24px;
}

.testimonial-slider blockquote {
  margin: 0 0 16px;
  font-size: 1.1rem;
  color: var(--text-medium);
}

/* Footer */
footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 20px;
}

footer a {
  color: white;
  margin: 0 5px;
}

.faq {
  padding: 80px 20px;
  background: var(--bg-section);
}

.faq-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  padding: 20px;
  text-align: right;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item button::after {
  content: '+';
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-item button[aria-expanded="true"]::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 20px 20px;
  color: var(--text-medium);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.experience {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto 60px;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.experience-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--border-radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.4);
  position: relative;
  overflow: hidden;
}

.experience-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent 60%);
  pointer-events: none;
}

.experience-card h2 {
  margin-top: 12px;
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
}

.experience-card p {
  color: var(--text-medium);
  margin-bottom: 20px;
}

.experience-visual {
  background: linear-gradient(145deg, #1f1b13, #2c2215);
  color: white;
}

.experience-video {
  position: relative;
  padding: 60px 20px;
  border-radius: var(--border-radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  margin-bottom: 24px;
}

.experience-video .glow {
  position: absolute;
  inset: 10%;
  border-radius: 24px;
  background: radial-gradient(circle at top, rgba(212, 175, 55, 0.7), transparent);
  filter: blur(30px);
  opacity: 0.8;
  pointer-events: none;
}

.experience-video p {
  position: relative;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.experience-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 700;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.1);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

.experience-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.experience-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.experience-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

.experience-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.experience-visual .chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  }

  nav.open {
    display: block;
    animation: fadeDown 0.3s ease-in-out;
  }

  nav ul {
    flex-direction: column;
    gap: 15px;
    padding: 15px 0;
  }

  @keyframes fadeDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }

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

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.contact-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  padding: 40px 24px;
  text-align: center;
  transition: var(--transition);
  border-top: 4px solid var(--primary);
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.contact-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
  display: block;
}

.contact-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.contact-card p {
  color: var(--text-medium);
  margin: 0;
  font-size: 16px;
}

.contact-card a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.contact-card a:hover {
  color: var(--primary);
}


.map-container {
  border-radius: 15px;
  overflow: hidden;
  margin-top: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-icon {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 12px;
}

/* Hero Banner */
.contact-hero {
  position: relative;
  text-align: center;
  margin-bottom: 40px;
}

.contact-hero-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  filter: brightness(0.8);
}

.contact-hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.contact-hero-text h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.contact-hero-text p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: auto;
  line-height: 1.7;
}

/* Slightly more premium cards */
.contact-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  padding: 30px 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* About Page Enhancements */
.about-page {
  background: radial-gradient(circle at 10% 20%, rgba(245, 196, 81, 0.15), transparent 55%),
    radial-gradient(circle at 90% 10%, rgba(124, 108, 241, 0.18), transparent 60%),
    var(--bg-light);
  color: var(--text-dark);
}

.about-hero {
  background: linear-gradient(135deg, rgba(5, 6, 11, 0.95), rgba(16, 18, 28, 0.85));
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  color: var(--text-dark);
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('images/about-hero.jpg') center/cover no-repeat;
  opacity: 0.35;
  filter: saturate(0.6) contrast(0.9);
}

.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 24px;
  color: var(--text-dark);
}

.about-hero-icon {
  font-size: 4rem;
  margin-bottom: 10px;
  animation: float 3s ease-in-out infinite;
  color: var(--primary-light);
}

@keyframes float {

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

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

.about-hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  margin-bottom: 20px;
}

.about-hero-content p {
  font-size: 1.3rem;
  opacity: 0.95;
  line-height: 1.6;
  color: var(--text-medium);
}

.about-intro,
.about-mission,
.about-why,
.about-certs {
  padding: 90px 24px;
  background: transparent;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-split {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.about-big-icon {
  font-size: clamp(4rem, 8vw, 6rem);
  color: var(--primary);
  margin-bottom: 20px;
  text-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
}

.about-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.about-text p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--text-medium);
  max-width: 600px;
}

.about-mission {
  padding: 90px 24px;
}

.about-mv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin: 60px 0;
}

.about-mv-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.about-mv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.about-mv-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.about-mv-card i {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.about-mv-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.about-mv-card p {
  color: var(--text-medium);
  line-height: 1.6;
  font-size: 1.1rem;
}

.about-why {
  padding: 100px 24px;
  background: var(--white);
}

.about-section-title {
  color: #000;
  text-align: center;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 60px;
  color: var(--text-dark);
  position: relative;
}

.about-section-title::after {
  content: "";
  display: block;
  color: #000;
  width: 60px;
  height: 4px;
  background: var(--gradient-primary);
  margin: 16px auto 0;
  border-radius: 2px;
}

.about-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.about-feature-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.about-feature-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-md);
}

.about-feature-card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.about-feature-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.about-feature-card p {
  color: var(--text-medium);
  line-height: 1.6;
  margin: 0;
}

.about-certs {
  padding: 100px 24px;
  background: var(--bg-section);
}

.about-cert-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
}

.about-cert-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  min-width: 120px;
}

.about-cert-icon:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.about-cert-icon i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.about-cert-icon p {
  margin: 0;
  font-weight: 700;
  color: var(--text-dark);
  font-size: 14px;
}

.about-cta {
  background: var(--gradient-primary);
  color: white;
  text-align: center;
  padding: 80px 24px;
  border-radius: var(--border-radius-lg);
  margin: 60px auto;
  max-width: 900px;
  box-shadow: var(--shadow-lg);
}

.about-cta h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.about-cta p {
  font-size: 1.2rem;
  margin-bottom: 32px;
  opacity: 0.95;
}

.about-btn {
  background: var(--white);
  color: var(--primary);
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  display: inline-block;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.about-btn:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Mission & Vision */
.mv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 60px 0;
}

.mv-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.mv-card:hover {
  transform: translateY(-5px);
}

.mv-card i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 10px;
}

/* Why Choose Us */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.feature-card {
  background: white;
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-card i {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 10px;
}

/* Parallax Section */
.parallax {
  background: url('images/spices-banner.jpg') center/cover fixed no-repeat;
  height: 300px;
  margin: 50px 0;
  border-radius: 20px;
}

/* Stats */
.stats-grid {
  display: flex;
  justify-content: center;
  gap: 50px;
  text-align: center;
  margin: 40px 0;
}

.stat h3 {
  font-size: 2.5rem;
  color: var(--primary);
}

.stat p {
  margin: 0;
  font-weight: bold;
}

/* Call to Action */
.cta {
  background: var(--primary);
  color: white;
  text-align: center;
  padding: 50px 20px;
  border-radius: 20px;
  margin: 40px auto;
  max-width: 800px;
}

.cta h2 {
  margin-bottom: 15px;
}

.cta a {
  background: white;
  color: var(--primary);
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.cta a:hover {
  background: #f1f1f1;
}

.corporate-hero {
  background: url('images/about-hero.jpg') center/cover no-repeat;
  height: 70vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.corporate-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.corporate-hero .hero-content {
  color: white;
  text-align: center;
  position: relative;
  z-index: 2;
}

.corporate-hero .hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 10px;
}

.corporate-hero .hero-content p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: auto;
}

/* Split Section */
.split-section {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 60px 0;
  flex-wrap: wrap;
}

.split-text {
  flex: 1;
}

.split-text h2 {
  margin-bottom: 15px;
  color: var(--primary);
}

.split-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Certifications */
.cert-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
}

.cert-grid img {
  height: 80px;
  filter: grayscale(40%);
  transition: filter 0.3s;
}

.cert-grid img:hover {
  filter: grayscale(0%);
}


/*********/


/* Hero */
.icon-hero {
  background: linear-gradient(135deg, #d4af37, #9c7d26);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 65vh;
  text-align: center;
  position: relative;
  color: #fff;
}

.icon-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(2px);
}

.icon-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-icon {
  font-size: 3.5rem;
  margin-bottom: 15px;
  color: #fff;
}

.icon-hero .hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 10px;
}

.icon-hero .hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
}

/* Animations */
.animate-float {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {

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

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

.animate-pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    opacity: 0.7;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.7;
  }
}

/* Glass Cards */
.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Features & Mission */
.mv-grid,
.features-grid {
  display: grid;
  gap: 25px;
  margin: 50px 0;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.mv-card,
.feature-card {
  text-align: center;
  padding: 25px;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform .3s ease, box-shadow .3s ease;
}

.mv-card i,
.feature-card i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.mv-card:hover,
.feature-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Certifications */
.cert-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.cert-icon {
  font-size: 2.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--primary);
}

.cert-icon p {
  margin-top: 6px;
  font-weight: bold;
}

/* CTA */
.cta {
  background: var(--primary);
  color: white;
  text-align: center;
  padding: 60px 20px;
  border-radius: 25px;
  margin: 50px auto;
  max-width: 850px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.cta h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 10px;
}

.cta .btn-primary {
  background: white;
  color: var(--primary);
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: bold;
  display: inline-block;
  text-decoration: none;
  transition: .3s;
}

.cta .btn-primary:hover {
  background: #f6f6f6;
  transform: scale(1.05);
}

/* Responsiveness */
.split-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  text-align: center;
  margin: 50px auto;
}

.big-icon {
  font-size: clamp(3rem, 8vw, 5rem);
  color: var(--primary);
}

.split-text h2 {
  margin-bottom: 10px;
}

.split-text p {
  font-size: 1.1rem;
  line-height: 1.8;
}


/* products */

.products-page {
  padding: 40px 20px;
  background: var(--bg-light);
}

.products-header {
  text-align: center;
  margin-bottom: 30px;
}

.products-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 10px;
  color: var(--primary);
}

.products-subtitle {
  color: #666;
  font-size: 1rem;
  margin-bottom: 20px;
}

.products-filters {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

#searchBox {
  padding: 10px 15px;
  width: clamp(220px, 50%, 400px);
  border-radius: 25px;
  border: 1px solid #ddd;
  text-align: center;
  font-family: inherit;
  font-size: 1rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: 0.2s;
}

#searchBox:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.category-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.category-button {
  background: white;
  border: 1px solid #ddd;
  border-radius: 25px;
  padding: 8px 15px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: 0.3s;
}

.category-button:hover,
.category-button.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.product-category {
  margin-top: 40px;
}

.product-category h2 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.product-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-info {
  padding: 15px;
  text-align: center;
}

.product-info h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--text-dark);
}

.product-category>h2 {
  text-align: center;
  font-size: 1.8rem;
  color: var(--primary);
  margin: 30px 0 15px;
}

.sub-category-title {
  text-align: center;
  font-size: 1.4rem;
  margin-top: 20px;
  color: #333;
}

.sub-sub-category-title {
  text-align: center;
  font-size: 1.1rem;
  color: #777;
  margin: 10px 0;
}


/*** home */

.container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
}

.logo-img {
  height: clamp(36px, 5vw, 50px);
  width: auto;
}

/* Nav Links */
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  position: relative;
  padding-bottom: 4px;
}

nav a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--primary);
  bottom: 0;
  right: 0;
  transition: width 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

/* Hero Section */
.hero {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.values {
  background: var(--bg-section);
  padding: 100px 24px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.value-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 40px 24px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition);
}

.value-card:hover::before {
  transform: scaleX(1);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.value-card i {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 20px;
  display: block;
}

.value-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.value-card p {
  color: var(--text-medium);
  line-height: 1.6;
  margin: 0;
}


.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.category-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}

.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: var(--transition);
  z-index: 1;
}

.category-card:hover::before {
  opacity: 0.1;
}

.category-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: var(--shadow-xl);
}

.category-card img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  transition: var(--transition);
}

.category-card:hover img {
  transform: scale(1.1);
}


/* Featured Products */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 30px auto;
}

.product-card {
  background: white;
  border-radius: 15px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.product-info {
  padding: 15px;
  text-align: center;
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
  border-radius: 25px;
  padding: 8px 15px;
  display: inline-block;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-secondary:hover {
  background: var(--primary);
  color: white;
}

/* Blog Section */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 30px auto;
}

.blog-card {
  background: white;
  border-radius: 15px;
  box-shadow: var(--shadow);
  padding: 20px;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card a {
  color: var(--primary);
  font-weight: 600;
}

/* Testimonials */
.testimonials {
  background: white;
  border-radius: 20px;
  box-shadow: var(--shadow);
  max-width: 700px;
  margin: 50px auto;
  padding: 40px 20px;
  text-align: center;
  font-style: italic;
}

.testimonials blockquote {
  margin: 0 0 15px;
}

.testimonials cite {
  display: block;
  font-style: normal;
  color: #777;
}

/* CTA Section */
.cta {
  background: var(--primary);
  color: white;
  text-align: center;
  padding: 40px 20px;
  border-radius: 20px;
  max-width: 700px;
  margin: 50px auto;
}


/* Footer */
footer {
  background: var(--bg-dark);
  color: white;
  padding: 40px 20px 20px;
}

/* --- Acrylic Refresh Overrides --- */
body {
  background: radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.2), transparent 45%),
    radial-gradient(circle at 80% 10%, rgba(140, 82, 255, 0.25), transparent 55%),
    #05060a;
  color: #f7f8ff;
}

body::before,
body::after {
  content: "";
  position: fixed;
  width: 45vw;
  height: 45vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 211, 132, 0.28), transparent 70%);
  filter: blur(60px);
  opacity: 0.6;
  z-index: -1;
  animation: orbDrift 18s ease-in-out infinite alternate;
}

body::after {
  top: auto;
  bottom: -10vw;
  left: auto;
  right: -10vw;
  background: radial-gradient(circle, rgba(88, 118, 255, 0.28), transparent 70%);
  animation-delay: -6s;
}

.navbar {
  background: rgba(6, 7, 11, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.35);
}

.navbar a,
.lang-switch {
  color: #eff2ff;
}

nav a {
  color: #f6f7ff;
}

nav a::after {
  background: linear-gradient(90deg, var(--primary), rgba(255, 255, 255, 0.3));
}

nav a:hover {
  color: var(--primary-light);
}

.products-title {
  color: #fefefe;
}

.products-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.products-pulse {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.hero {
  color: #fdfdff;
}

.hero-content h1 {
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.45);
}

.hero-benefits li {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  animation: pulseGlow 6s ease-in-out infinite;
}

.btn-primary,
.btn-outline,
.btn-secondary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after,
.btn-outline::after,
.btn-secondary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.25), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-primary:hover::after,
.btn-outline:hover::after,
.btn-secondary:hover::after {
  opacity: 1;
}

.value-card,
.category-card,
.solution-card,
.insight-card,
.experience-card,
.story-card,
.testimonials,
.cta,
.faq-item,
.product-category,
.product-card,
.contact-card,
.story-card,
.about-mv-card,
.about-feature-card,
.trust-item {
  background: linear-gradient(135deg, rgba(17, 19, 29, 0.95), rgba(8, 9, 15, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(25px);
  color: var(--text-dark);
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.value-card::after,
.category-card::after,
.solution-card::after,
.insight-card::after,
.experience-card::after,
.story-card::after,
.product-card::after,
.contact-card::after,
.about-mv-card::after,
.about-feature-card::after,
.trust-item::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
  z-index: -1;
}

.value-card p,
.category-card p,
.solution-card p,
.insight-card p,
.product-category h2,
.sub-category-title,
.sub-sub-category-title,
.product-info h3,
.faq-item button,
.experience-card p {
  color: rgba(247, 248, 255, 0.85);
}

.products-page {
  background: transparent;
  color: #f8f8ff;
}

.product-category {
  border-radius: 32px;
  padding: 32px;
  margin-top: 50px;
}

.product-grid {
  gap: 28px;
}

.product-card {
  padding: 18px;
  text-decoration: none;
  color: inherit;
  position: relative;
  cursor: pointer;
  border-radius: 24px;
  overflow: hidden;
  transform: translateY(0);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.2), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.product-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 35px 60px rgba(0, 0, 0, 0.45);
}

.product-card:hover::after {
  opacity: 1;
}

.product-card img {
  border-radius: 18px;
  margin-bottom: 16px;
  height: 220px;
}

.product-info {
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-cta {
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(212, 175, 55, 0.18);
  color: #fff;
}

#searchBox {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #f6f7ff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(16px);
}

#searchBox::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.category-button {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #f6f7ff;
  backdrop-filter: blur(12px);
}

.category-button:hover,
.category-button.active {
  background: linear-gradient(135deg, var(--primary), #f07adf);
  border-color: transparent;
  color: #0f1014;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);
}

.experience-video {
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 40px rgba(255, 255, 255, 0.05);
}

footer {
  background: rgba(5, 6, 10, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

 .footer-grid a {
  color: rgba(255, 255, 255, 0.8);
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 rgba(255, 255, 255, 0.2);
  }

  50% {
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
  }

  100% {
    box-shadow: 0 0 0 rgba(255, 255, 255, 0.2);
  }
}

@keyframes cardFloat {
  0% {
    transform: translateY(0px);
  }

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

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

@keyframes ambientShine {
  0% {
    opacity: 0;
    transform: translateX(-60%);
  }

  100% {
    opacity: 0.5;
    transform: translateX(160%);
  }
}

.value-card:nth-child(odd),
.category-card:nth-child(even),
.solution-card:nth-child(2n),
.insight-card:nth-child(odd),
.product-card:nth-child(3n) {
  animation: cardFloat 11s ease-in-out infinite;
}

.category-card::before,
.solution-card::before,
.insight-card::before,
.product-card::before,
.story-card::before {
  content: "";
  position: absolute;
  inset: auto 0 -80% 0;
  height: 140%;
  background: radial-gradient(circle, rgba(245, 196, 81, 0.15), transparent 60%);
  opacity: 0.6;
  filter: blur(40px);
  pointer-events: none;
}

.category-card::after,
.solution-card::after,
.insight-card::after,
.product-card::after,
.contact-card::after,
.about-mv-card::after,
.about-feature-card::after,
.trust-item::after {
  animation: ambientShine 7s linear infinite;
}

@keyframes orbDrift {
  from {
    transform: translate3d(-5%, -5%, 0);
  }

  to {
    transform: translate3d(8%, 6%, 0);
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 100px 20px 60px;
    min-height: auto;
  }

  .hero-content {
    margin: 0 auto;
    text-align: center;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-benefits {
    justify-content: center;
  }

  .trust-bar {
    margin: 20px auto 0;
  }

  .solutions,
  .insights,
  .faq,
  .experience {
    padding: 60px 16px;
  }

  .experience-cta {
    flex-direction: column;
  }

  .product-category {
    padding: 24px;
  }

  nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(4, 5, 9, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  nav.open {
    display: block;
  }

  nav ul {
    flex-direction: column;
    gap: 15px;
    padding: 15px;
  }

  #searchBox {
    width: 100%;
  }
}

.about-cert-img {
    max-width: 100px; /* Adjust size for responsiveness */
    height: auto;
    display: block; /* Ensures centering if parent is text-align: center */
    margin: 0 auto 10px; /* Centers the image and adds bottom margin */
}

/* Ensure the text is centered beneath the image */
.about-cert-icon p {
    text-align: center;
    font-weight: bold;
}

/* Recipes Page */
.recipes-page {
  background: radial-gradient(circle at top, rgba(212, 175, 55, 0.08), transparent 55%) #050505;
  color: #f8f2e8;
  padding-top: 140px;
}

.recipes-hero {
  max-width: 1100px;
  margin: 0 auto 4rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  padding: 3rem;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
}

.recipes-hero .pill {
  background: rgba(212, 175, 55, 0.2);
  color: #f5dba6;
}

.recipes-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  margin: 1.5rem 0 1rem;
}

.recipes-hero p {
  line-height: 1.8;
  max-width: 720px;
  color: #d8d3c4;
}

.recipes-search-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

.recipes-search-bar input {
  flex: 1;
  min-width: 240px;
  padding: 0.95rem 1.25rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(5, 5, 5, 0.8);
  color: #fff;
}

.recipes-kpis {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.recipes-kpis li {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.recipes-kpis strong {
  font-size: 2rem;
  color: #f5dba6;
}

.recipes-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.chip {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: #f8f2e8;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.chip.active,
.chip:hover {
  background: linear-gradient(135deg, #d4af37, #f5dba6);
  color: #050505;
}

.recipes-categories {
  max-width: 1200px;
  margin: 0 auto 4rem;
  text-align: center;
}

.recipe-category-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.recipe-category-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 300px;
}

.recipe-category-media {
  height: 180px;
  background-size: cover;
  background-position: center;
}

.recipe-category-body {
  padding: 1.5rem;
  text-align: right;
}

.recipe-category-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(212, 175, 55, 0.15);
  display: grid;
  place-items: center;
  color: #f5dba6;
  margin-bottom: 1rem;
}

.recipe-category-cta {
  margin-top: 1.5rem;
  background: transparent;
  border: none;
  color: #f5dba6;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.recipes-collection {
  max-width: 1280px;
  margin: 0 auto 4rem;
  display: grid;
  grid-template-columns: 3fr 1.2fr;
  gap: 2rem;
}

.recipes-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.recipe-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(12, 12, 12, 0.95);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

.recipe-card.selected {
  border-color: rgba(212, 175, 55, 0.75);
  box-shadow: 0 35px 70px rgba(212, 175, 55, 0.25);
}

.recipe-card-media {
  height: 260px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.recipe-tag {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(5, 5, 5, 0.7);
  color: #fff;
  padding: 0.35rem 0.95rem;
  border-radius: 999px;
  font-size: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.recipe-card-body {
  padding: 2rem;
}

.recipe-card-body h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
  font-size: 1.8rem;
}

.recipe-subtitle {
  color: #d1ccc0;
  margin-bottom: 1rem;
}

.recipe-meta {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 0.5rem;
  padding: 0;
  margin: 1.5rem 0;
}

.recipe-meta li {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 14px;
  padding: 0.75rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.recipe-meta strong {
  font-size: 0.85rem;
  color: #b8b2a3;
}

.recipe-paragraphs p {
  margin-bottom: 0.75rem;
  color: #dcd6c7;
}

.recipe-ingredients {
  margin: 1rem 0 2rem;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.5rem;
}

.recipe-ingredients li {
  padding: 0.6rem 0.9rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
}

.recipe-spices {
  margin-bottom: 2rem;
}

.recipe-spice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}

.recipe-spice-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
  text-align: center;
}

.recipe-spice-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(245, 219, 166, 0.6);
  margin: 0 auto 0.5rem;
  display: block;
}

.recipe-spice-card figcaption {
  font-size: 0.9rem;
  color: #ded8c9;
}

.recipe-steps h4 {
  margin-top: 0;
}

.recipe-steps ol {
  margin: 0;
  padding-right: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.recipe-steps li {
  background: rgba(255, 255, 255, 0.02);
  padding: 0.75rem 1rem;
  border-radius: 12px;
}

.recipe-steps strong {
  display: block;
  margin-bottom: 0.35rem;
}

.recipe-card-cta {
  margin-top: 1.5rem;
}

.recipe-permalink {
  margin-top: 0.75rem;
  font-size: 0.95rem;
}

.recipe-permalink a {
  color: #f5dba6;
  text-decoration: underline dotted;
}

.recipe-highlight-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  position: sticky;
  top: 120px;
  height: fit-content;
}

.recipe-highlight-gallery {
  margin: 1.5rem 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.recipe-highlight-gallery div {
  padding-top: 65%;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
}

.recipe-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.recipe-keywords span {
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  font-size: 0.85rem;
}

.recipes-seo {
  max-width: 1200px;
  margin: 0 auto 4rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.recipes-seo div {
  padding: 1.5rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.recipes-cta {
  text-align: center;
  padding: 4rem 1rem 6rem;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.25), rgba(5, 5, 5, 0.9));
}

.recipes-cta p {
  max-width: 720px;
  margin: 1rem auto 2rem;
  color: #efe9d4;
}

.recipes-cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 1100px) {
  .recipes-collection {
    grid-template-columns: 1fr;
  }

  .recipe-meta {
    grid-template-columns: repeat(2, minmax(130px, 1fr));
  }

  .recipe-highlight-card {
    position: static;
  }
}

@media (max-width: 768px) {
  .recipes-hero {
    padding: 2rem;
  }

  .recipes-kpis {
    flex-direction: column;
  }

  .recipe-card-body {
    padding: 1.5rem;
  }

  .recipe-meta {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }
}
