@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/* --- Theme Variables & Design Tokens (Solid Colors, No Gradients) --- */
:root {
  --primary-color: #E85D04;
  --accent-color: #C1121F;


  --bg-light: #FAFBF9;
  /* Bright Clean Off-White */
  --text-dark: #1F2540;
  /* Deep Navy for strong contrast */

  --bg-dark: #F3F6FF;
  /* Bright Light Blue Background */
  --bg-dark-card: #ffffff;
  /* Pure White Card Background */
  --bg-card: #ffffff;
  /* Clean White */
  --text-light: #ffffff;
  /* Contrast light text (Always White) */
  --text-muted: #5E6F8A;
  /* Muted Slate Blue */
  --border-color: #E2EAE6;
  /* Light Sage Green Border */

  --font-sans: 'Roboto', sans-serif;
  --font-serif: 'Roboto', sans-serif;

  --transition-smooth: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  --shadow-sm: none;
  --shadow-md: none;
  --shadow-lg: none;
  --shadow-primary: none;

  /* Asymmetric border radius matching user button image */
  --btn-radius: 24px 4px 24px 4px;
  --btn-radius-hover: 4px 24px 4px 24px;
  --border-radius: 16px;
  --border-radius-sm: 8px;
}

/* --- Base & Reset Styles --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: clip;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: clip;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

section {
  padding: 30px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Global Components & Typography --- */
.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  font-family: var(--font-sans);
  color: var(--primary-color);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 2px;
  font-size: 0.875rem;
  display: block;
  margin-bottom: 12px;
}

.section-title h2,
.spice-section-title h2,
.testimonial-section .about-text h2,
.testimonial-highlight-sec h2,
.cta-card h2 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--text-dark);
  font-weight: 700;
}

.section-title h2 span {
  color: var(--primary-color);
}

/* --- Asymmetric Gradient-Free Primary Button with Morphing Hover --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: var(--btn-radius);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-primary);
  transition: var(--transition-smooth);
  letter-spacing: 0.5px;
}

.btn-primary:hover {
  background-color: var(--accent-color);
  color: var(--text-light);
  border-radius: var(--btn-radius-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(31, 77, 54, 0.25);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: var(--btn-radius);
  border: 2px solid var(--primary-color);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
  border-color: var(--primary-color);
  border-radius: var(--btn-radius-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 114, 255, 0.25);
}

/* --- Top Bar Styling --- */
.top-bar {
  position: relative;
  z-index: 1005;
  background-color: rgba(254, 97, 0, 0.062);
  color: var(--text-dark);
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-color);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-info {
  display: flex;
  align-items: center;
}

.tb-desktop-info {
  display: flex;
  gap: 24px;
}

.tb-desktop-info span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tb-desktop-info i {
  color: var(--primary-color);
}

.tb-desktop-info a {
  color: inherit;
  transition: var(--transition-smooth);
}

.tb-desktop-info a:hover {
  color: var(--primary-color);
}

.tb-mobile-info {
  display: none;
}

/* --- Top Bar Dropdowns --- */
.tb-dropdown {
  position: relative;
  display: inline-block;
}

.tb-dropdown-toggle {
  background: transparent;
  border: none;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  transition: var(--transition-smooth);
  outline: none;
}

.tb-dropdown-toggle:hover {
  color: var(--primary-color);
}

.tb-dropdown-toggle i {
  color: var(--primary-color);
  font-size: 0.85rem;
}

.tb-chevron {
  font-size: 0.7rem !important;
  color: var(--text-muted) !important;
  transition: transform 0.3s ease;
}

.tb-dropdown.active .tb-chevron {
  transform: rotate(180deg);
}

.tb-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(31, 37, 64, 0.1);
  padding: 8px 0;
  margin-top: 8px;
  min-width: 260px;
  z-index: 1010;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

/* Hover dropdown behavior on desktop */
@media (min-width: 992px) {
  .tb-dropdown:hover .tb-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .tb-dropdown:hover .tb-chevron {
    transform: rotate(180deg);
  }
}

.tb-dropdown.active .tb-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.tb-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 0.85rem;
  color: var(--text-dark) !important;
  white-space: nowrap;
  transition: var(--transition-smooth);
}

.tb-dropdown-menu a:hover {
  background-color: rgba(232, 93, 4, 0.05);
  color: var(--primary-color) !important;
}

.tb-dropdown-menu a i {
  color: var(--primary-color) !important;
  font-size: 0.8rem;
  width: 14px;
  text-align: center;
}

.top-bar-socials {
  display: flex;
  gap: 16px;
}

.top-bar-socials a {
  color: var(--text-muted);
}

.top-bar-socials a:hover {
  color: var(--primary-color);
}

/* --- Header & Navigation Styling --- */
header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid var(--border-color);
}

header.scrolled {
  box-shadow: var(--shadow-md);
  background-color: rgba(255, 255, 255, 0.98);
}

header.scrolled .logo-img {
  height: 62px;
}

header.scrolled .container {
  padding-top: 3px;
  padding-bottom: 3px;
}

header.scrolled .brand-text .brand-title {
  font-size: 1.5rem;
}

header.scrolled .brand-text .brand-subtitle {
  font-size: 0.78rem;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 6px;
  padding-bottom: 6px;
  transition: padding 0.3s ease;
}

/* Logo brand styles styling */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 75px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text .brand-title {
  font-family: var(--font-sans);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: -0.5px;
  white-space: normal;
  transition: var(--transition-smooth);
}

.brand-text .brand-subtitle {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: #4a5568;
  letter-spacing: 2.2px;
  margin-top: 2px;
  align-self: flex-end;
  text-align: right;
  transition: var(--transition-smooth);
}

footer .brand-text .brand-title {
  color: var(--primary-color);
  font-size: 1.45rem;
  white-space: normal;
}

footer .brand-text .brand-subtitle {
  color: #4a5568;
  align-self: flex-end;
  text-align: right;
}

/* Nav menu styling (Desktop Default) */
.nav-menu {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-link {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1.1rem;
  position: relative;
  padding: 8px 0;
  transition: var(--transition-smooth);
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 3px;
  background-color: var(--primary-color);
  transition: var(--transition-smooth);
  transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--text-dark);
  transition: var(--transition-smooth);
  padding: 8px;
}

.mobile-nav-toggle:hover {
  color: var(--primary-color);
}

/* --- Hero Section Styling --- */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 0;
  color: var(--text-light);
  background-color: var(--text-dark);
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  cursor: grab;
}

.hero-slider:active {
  cursor: grabbing;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  z-index: 1;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}

/* Very light fade overlay on the left side (behind the text) fading out to the right */
.hero-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  pointer-events: none;
}

/* Container inside slide */
.hero-slide .container {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-content {
  max-width: 750px;
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  text-shadow: none;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--text-light);
  /* Crisp, tight, low-blur dark text shadow for visibility without blurry clouding */
  text-shadow: 1px 1.5px 3px rgba(0, 0, 0, 0.95), 0 3px 6px rgba(0, 0, 0, 0.85);
}

.hero h1 span {
  font-style: normal;
  font-weight: 800;
  color: var(--text-light);
  text-shadow: 1px 1.5px 3px rgba(0, 0, 0, 0.95), 0 3px 6px rgba(0, 0, 0, 0.85);
}

.hero p {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 650px;
  line-height: 1.65;
  /* Crisp, tight, low-blur dark text shadow for visibility without blurry clouding */
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.95), 0 2px 5px rgba(0, 0, 0, 0.85);
}

.hero-btns {
  display: flex;
  gap: 16px;
}

.hero-btns .btn-primary {
  background-color: var(--primary-color);
  color: var(--text-light);
  text-shadow: none;
}

.hero-btns .btn-primary:hover {
  background-color: var(--accent-color);
  color: var(--text-light);
}

.hero-btns .btn-secondary {
  border-color: rgba(255, 255, 255, 0.85);
  color: var(--text-light);
  background: rgba(0, 0, 0, 0.5);
  /* Semi-transparent background for contrast */
  backdrop-filter: blur(4px);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-btns .btn-secondary:hover {
  background-color: var(--text-light);
  border-color: var(--text-light);
  color: var(--text-dark);
  text-shadow: none;
}

/* Slider Controls Styles */
.slider-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  z-index: 10;
  pointer-events: none;
}

.slider-nav button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-light);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  pointer-events: auto;
}

.slider-nav button:hover {
  background-color: var(--accent-color);
  color: var(--text-dark);
  border-color: var(--accent-color);
  transform: scale(1.1);
}

.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.slider-dots .dot:hover {
  background-color: var(--primary-color);
  transform: scale(1.2);
}

.slider-dots .dot.active {
  width: 28px;
  border-radius: 10px;
  background-color: var(--primary-color);
}

/* --- About Section Styling --- */
.about {
  padding: 30px 0;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--bg-light) 100%);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.about-img-box {
  position: relative;
}

.about-img-box img {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  border: 2px solid #ff6c25c4;
}

.about-experience {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 24px 32px;
  border-radius: 40px 8px 40px 8px;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 16px;
}

.about-experience h3 {
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 800;
  color: var(--text-light);
}

.about-experience p {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
}

.about-text h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: 1.3;
  color: var(--text-dark);
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.about-feature-item i {
  color: var(--primary-color);
  font-size: 1.25rem;
  margin-top: 4px;
}

/* --- Services / What We Do Section --- */
.services {
  background:
    radial-gradient(circle at 10% 20%, rgba(0, 114, 255, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(255, 213, 0, 0.08) 0%, transparent 40%),
    url('../img/spice_watermark.webp') no-repeat left 250px,
    url('../img/spice_watermark.webp') no-repeat right bottom,
    #FAF7EF;
  background-size: auto, auto, 300px auto, 300px auto, 100% 100%;
  background-blend-mode: normal, normal, multiply, multiply, normal;
  padding: 30px 0;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.services-panes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background-color: var(--bg-card);
  /* White base */
  border: 1px solid var(--border-color);
  border-radius: 40px 8px 40px 8px;
  overflow: hidden;
  margin-top: 50px;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 2;
}

.service-pane {
  padding: 40px 30px;
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background-color: var(--bg-card);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

/* Remove right border on every 4th child (columns) */
.service-pane:nth-child(4n) {
  border-right: none;
}

/* Remove bottom border on the last 4 children (last row) */
.service-pane:nth-child(n+5) {
  border-bottom: none;
}

.service-pane:hover {
  background-color: rgba(0, 114, 255, 0.04);
  /* Faint bright blue tint */
  z-index: 3;
}

.pane-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 25px;
}

.service-pane .service-number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 800;
  color: rgba(31, 77, 54, 0.15);
  /* Faint Deep Green Outline-ish font color */
  line-height: 1;
  transition: var(--transition-smooth);
}

.service-pane:hover .service-number {
  color: var(--primary-color);
  transform: translateY(-3px);
}

.service-icon {
  font-size: 1.9rem;
  transition: var(--transition-smooth);
}

.service-icon.text-red {
  color: var(--primary-color);
}

.service-icon.text-green {
  color: var(--accent-color);
}

.service-pane:hover .service-icon {
  transform: scale(1.15) rotate(10deg);
}

.service-pane h3 {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.35;
}

.service-pane p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 991px) {
  .services-panes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-pane {
    border-right: 1px solid var(--border-color) !important;
    border-bottom: 1px solid var(--border-color) !important;
  }

  /* Reset columns for 2-col */
  .service-pane:nth-child(2n) {
    border-right: none !important;
  }

  .service-pane:nth-child(n+7) {
    border-bottom: none !important;
  }
}

@media (max-width: 575px) {
  .services-panes-grid {
    grid-template-columns: 1fr;
  }

  .service-pane {
    border-right: none !important;
    border-bottom: 1px solid var(--border-color) !important;
  }

  .service-pane:last-child {
    border-bottom: none !important;
  }
}


/* --- Products Section Styling --- */
.products {
  position: relative;
  background-color: transparent;
  background-image: radial-gradient(rgba(226, 234, 230, 0.9) 2px, transparent 2px);
  background-size: 24px 24px;
  overflow: hidden;
}

.products-filter {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--border-color);
  padding: 10px 24px;
  border-radius: 30px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-btn.active,
.filter-btn:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--text-light);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 30px;
}

.product-card {
  position: relative;
  height: 280px;
  border-radius: 24px 8px 24px 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  background-color: var(--bg-card);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-radius: 8px 24px 8px 24px;
  border-color: var(--primary-color);
}

.product-img-wrap {
  width: 100%;
  height: 100%;
  position: relative;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: var(--transition-smooth);
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.05);
}

.product-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 25%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 70%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 12px 16px;
  box-sizing: border-box;
  z-index: 2;
}

.product-title {
  color: var(--text-light);
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0;
  line-height: 1.2;
}

.product-card-btn {
  background-color: var(--primary-color);
  color: var(--text-light);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 24px;
  border-radius: 20px 4px 20px 4px;
  border: none;
  cursor: pointer;
  align-self: flex-start;
  transition: var(--transition-smooth);
}

.product-card-btn:hover {
  background-color: var(--accent-color);
  color: var(--text-dark);
  border-radius: 4px 20px 4px 20px;
  transform: translateY(-2px);
}

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--accent-color);
  color: var(--text-dark);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  z-index: 5;
}



/* --- Clients Section Styling --- */
.clients {
  background-color: #FFFFFF;
  /* Pure White background */
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cg stroke='%238B5A2B' stroke-width='1.5' fill='none' stroke-opacity='0.22'%3E%3Ccircle cx='40' cy='40' r='3'/%3E%3Ccircle cx='40' cy='33' r='2.5' fill='%238B5A2B' fill-opacity='0.1' stroke-opacity='0.22'/%3E%3Ccircle cx='47' cy='38' r='2.5' fill='%238B5A2B' fill-opacity='0.1' stroke-opacity='0.22'/%3E%3Ccircle cx='44' cy='46' r='2.5' fill='%238B5A2B' fill-opacity='0.1' stroke-opacity='0.22'/%3E%3Ccircle cx='36' cy='46' r='2.5' fill='%238B5A2B' fill-opacity='0.1' stroke-opacity='0.22'/%3E%3Ccircle cx='33' cy='38' r='2.5' fill='%238B5A2B' fill-opacity='0.1' stroke-opacity='0.22'/%3E%3C/g%3E%3Cg stroke='%238B5A2B' stroke-width='1.5' fill='none' stroke-opacity='0.22'%3E%3Cpath d='M110 30 C 110 25, 117 27, 120 30 C 130 40, 125 60, 105 60 C 117 55, 117 40, 110 30 Z' fill='%238B5A2B' fill-opacity='0.08'/%3E%3Cpath d='M113 28 L 111 23'/%3E%3C/g%3E%3Cg stroke='%231F4D36' stroke-width='1.5' stroke-linecap='round' fill='none' stroke-opacity='0.22'%3E%3Cpath d='M25 135 Q 35 120 45 110'/%3E%3Cpath d='M30 125 C 26 118, 36 112, 38 120 Z' fill='%231F4D36' fill-opacity='0.1' stroke-width='1.2'/%3E%3Cpath d='M38 118 C 36 110, 46 106, 44 114 Z' fill='%231F4D36' fill-opacity='0.1' stroke-width='1.2'/%3E%3C/g%3E%3Ccircle cx='80' cy='80' r='3.5' fill='%238B5A2B' fill-opacity='0.3' stroke='none'/%3E%3Ccircle cx='120' cy='120' r='3' fill='%231F4D36' fill-opacity='0.3' stroke='none'/%3E%3Ccircle cx='40' cy='80' r='2' fill='%231F4D36' fill-opacity='0.3' stroke='none'/%3E%3Ccircle cx='120' cy='80' r='2' fill='%238B5A2B' fill-opacity='0.3' stroke='none'/%3E%3Ccircle cx='80' cy='30' r='2' fill='%231F4D36' fill-opacity='0.3' stroke='none'/%3E%3Ccircle cx='80' cy='130' r='2.5' fill='%238B5A2B' fill-opacity='0.3' stroke='none'/%3E%3C/svg%3E");
  background-size: 160px 160px;
  padding: 30px 0;
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

.clients::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 90, 43, 0.04) 0%, transparent 70%);
  /* Cinnamon Brown aura */
  pointer-events: none;
  z-index: 1;
}

.clients::after {
  content: '';
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 77, 54, 0.05) 0%, transparent 70%);
  /* Deep Green aura */
  pointer-events: none;
  z-index: 1;
}

.clients .container {
  position: relative;
  z-index: 2;
}

.clients-slider {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.clients-logos-track {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.client-logo-item {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-color);
  background-color: var(--bg-card);
  padding: 12px 24px;
  border-radius: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition-smooth);
  cursor: default;
}

.client-logo-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-color);
  color: var(--text-dark);
}

.client-logo-item i {
  color: var(--accent-color);
  font-size: 1.15rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.testimonial-card {
  background-color: var(--bg-card);
  border-radius: 30px 8px 30px 8px;
  padding: 35px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-radius: 8px 30px 8px 30px;
}

.testimonial-stars {
  color: #F2B922;
  /* Vibrant Warm Gold for standard review star styling */
  margin-bottom: 16px;
}

.testimonial-stars i {
  font-size: 0.9rem;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary-color);
  border: 1px solid var(--border-color);
}

.author-info h4 {
  font-size: 1rem;
  font-weight: 750;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.author-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: normal;
  margin-bottom: 0;
}

/* --- Contact Us Section Styling --- */
.contact {
  background-color: var(--bg-card);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.contact-info-panel {
  background: #1b1412;
  background-image:
    linear-gradient(135deg, rgba(27, 20, 18, 0.96) 0%, rgba(42, 29, 25, 0.94) 100%),
    url('../img/spice_watermark.webp');
  background-size: cover, 220px auto;
  background-repeat: no-repeat;
  background-position: center, bottom -40px right -40px;
  color: var(--text-light);
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.contact-info-panel::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: var(--primary-color);
  opacity: 0.15;
}

.contact-info-content h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--bg-light);
}

.contact-info-content>p {
  color: rgba(245, 230, 200, 0.8);
  margin-bottom: 40px;
  font-size: 0.95rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-detail-item i {
  color: var(--accent-color);
  font-size: 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.contact-detail-item div h4 {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(245, 230, 200, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.contact-detail-item div p {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--text-light);
}

.contact-socials {
  display: flex;
  gap: 12px;
  margin-top: 40px;
}

.contact-socials a {
  background: rgba(255, 255, 255, 0.08);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--bg-light);
  transition: var(--transition-smooth);
}

.contact-socials a:hover {
  background-color: var(--accent-color);
  color: var(--text-dark);
  transform: translateY(-3px);
}

.contact-form-panel {
  padding: 50px;
  background-color: var(--bg-card);
}

.contact-form-panel h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.contact-form-panel p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  padding: 12px 16px;
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--border-color);
  background-color: var(--bg-light);
  color: var(--text-dark);
  transition: var(--transition-smooth);
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background-color: var(--bg-card);
  box-shadow: 0 0 0 4px rgba(31, 77, 54, 0.1);
}

.contact-form button {
  align-self: flex-start;
  margin-top: 10px;
}

/* --- Footer Styling --- */
footer {
  background-color: rgba(254, 97, 0, 0.096);
  color: var(--text-muted);
  padding: 80px 0 30px;
  border-top: 1px solid var(--border-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand .brand-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-brand .logo-img {
  height: 55px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer-brand .top-bar-socials a {
  color: var(--text-muted);
}

.footer-brand .top-bar-socials a:hover {
  color: var(--primary-color);
}

.footer-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 24px;
  position: relative;
}

.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
}

.footer-links a::before {
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.75rem;
  color: var(--accent-color);
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--primary-color);
  transform: translateX(4px);
}

.footer-links a:hover::before {
  color: var(--primary-color);
}

.footer-newsletter p {
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  border-radius: var(--btn-radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 4px;
}

.newsletter-form input {
  font-family: var(--font-sans);
  background: transparent;
  border: none;
  padding: 10px 16px;
  color: var(--text-dark);
  font-size: 0.9rem;
  outline: none;
  flex-grow: 1;
}

.newsletter-form button {
  background-color: var(--primary-color);
  border: none;
  color: var(--text-light);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.newsletter-form button:hover {
  background-color: var(--accent-color);
  color: var(--text-dark);
  transform: scale(1.05);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-copy a {
  color: var(--primary-color);
  font-weight: 600;
}

.footer-copy a:hover {
  color: var(--accent-color);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: var(--text-muted);
}

.footer-bottom-links a:hover {
  color: var(--primary-color);
}

/* --- Modals & Alert Toasts (Success State) --- */
.notification-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: var(--text-dark);
  color: var(--bg-light);
  padding: 16px 24px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2000;
  transform: translateY(150%);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-left: 4px solid var(--accent-color);
}

.notification-toast.show {
  transform: translateY(0);
}

.notification-toast i {
  color: var(--accent-color);
  font-size: 1.25rem;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
  section {
    padding: 30px 0;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .about-grid,
  .contact-wrapper {
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Header adjustments for medium screens to prevent overlapping/wrapping */
  .logo-img {
    height: 60px;
  }

  .brand-text .brand-title {
    font-size: 1.35rem;
  }

  .brand-text .brand-subtitle {
    font-size: 0.8rem;
    letter-spacing: 1.5px;
  }

  .nav-menu {
    gap: 16px;
  }

  .nav-link {
    font-size: 1rem;
  }

  .header-right {
    gap: 15px !important;
  }
}

@media (max-width: 991px) {
  .top-bar {
    display: block !important;
    padding: 6px 0;
  }

  .top-bar-info {
    position: relative;
    gap: 12px;
  }

  .tb-desktop-info {
    display: none;
  }

  .tb-mobile-info {
    display: flex;
    gap: 12px;
  }

  .tb-dropdown {
    position: static;
  }

  .tb-dropdown-toggle {
    width: 36px;
    height: 36px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(232, 93, 4, 0.06);
    border-radius: 50%;
    border: 1px solid rgba(232, 93, 4, 0.12);
  }

  .tb-dropdown-toggle:hover,
  .tb-dropdown.active .tb-dropdown-toggle {
    background-color: var(--primary-color);
    color: var(--text-light) !important;
    border-color: var(--primary-color);
  }

  .tb-dropdown-toggle:hover i,
  .tb-dropdown.active .tb-dropdown-toggle i {
    color: var(--text-light) !important;
  }

  .tb-dropdown-toggle:hover .tb-chevron,
  .tb-dropdown.active .tb-dropdown-toggle .tb-chevron {
    color: var(--text-light) !important;
  }

  .tb-dropdown-toggle .tb-text {
    display: none;
  }

  .tb-dropdown-menu {
    left: 0;
    transform: translateY(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    width: max-content;
    max-width: calc(100vw - 32px);
    min-width: auto;
  }

  .tb-dropdown-menu a {
    white-space: normal !important;
    word-break: break-all;
  }

  .tb-dropdown.active .tb-dropdown-menu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  @media (max-width: 480px) {
    .top-bar-info {
      gap: 8px;
    }
    .tb-dropdown-toggle {
      width: 32px;
      height: 32px;
    }
    .top-bar-socials {
      gap: 12px;
    }
    .page-banner-content h1 {
      font-size: 1.7rem !important;
      margin-bottom: 2px !important;
    }
    .breadcrumb {
      font-size: 0.7rem !important;
      padding: 3px 10px !important;
    }
  }

  .mobile-nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    right: 24px;
    left: auto;
    width: 220px;
    background-color: var(--bg-card);
    flex-direction: column;
    gap: 0;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-smooth);
    z-index: 1000;
    display: flex;
  }

  .nav-menu.active {
    max-height: 400px;
    padding: 20px 0;
  }

  .nav-link {
    width: 100%;
    text-align: center;
    padding: 14px 0;
  }

  .nav-link::after {
    display: none;
  }

  .nav-link:hover,
  .nav-link.active {
    background-color: rgba(232, 93, 4, 0.05);
  }

  .services {
    background-image:
      radial-gradient(circle at 10% 20%, rgba(0, 114, 255, 0.08) 0%, transparent 40%),
      radial-gradient(circle at 90% 80%, rgba(255, 213, 0, 0.08) 0%, transparent 40%) !important;
    background-color: #FAF7EF !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .hero {
    min-height: 550px !important;
    height: auto !important;
    padding: 100px 0 60px 0 !important;
  }
}

@media (max-width: 768px) {
  .section-title h2,
  .spice-section-title h2,
  .quality-assurance-section .section-title h2,
  .testimonial-section .about-text h2,
  .testimonial-highlight-sec h2,
  .cta-card h2 {
    font-size: 2.1rem !important;
  }

  header .btn-primary {
    display: none;
    /* Hide primary button inside header on mobile to fit bar */
  }

  .hero {
    min-height: 480px !important;
    height: auto !important;
    padding: 120px 0 60px 0 !important;
  }

  .hero-slide::before {
    display: block !important;
  }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    margin: 0 auto;
    background: transparent !important;
    padding: 0 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-badge {
    display: none;
    /* Hide floating card on mobile */
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-img-box {
    max-width: 480px;
    margin: 0 auto 40px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-info-panel {
    padding: 40px;
  }

  .contact-form-panel {
    padding: 40px;
  }

  footer {
    padding: 50px 0 20px;
  }

  .footer-grid {
    gap: 30px;
    margin-bottom: 40px;
  }

  .footer-brand .brand-logo {
    margin-bottom: 15px;
  }

  .footer-brand p {
    margin-bottom: 16px;
  }

  .footer-title {
    margin-bottom: 16px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px !important;
  }

  .nav-menu {
    right: 16px !important;
  }

  .brand-title {
    font-size: 1.3rem !important;
  }

  .brand-subtitle {
    font-size: 0.65rem !important;
    letter-spacing: 1px !important;
  }

  .logo-img {
    height: 42px !important;
  }

  .section-title h2,
  .spice-section-title h2,
  .quality-assurance-section .section-title h2,
  .testimonial-section .about-text h2,
  .testimonial-highlight-sec h2,
  .cta-card h2 {
    font-size: 1.6rem !important;
  }

  .section-description {
    font-size: 0.9rem !important;
    margin-top: 15px !important;
    line-height: 1.5 !important;
  }

  .service-pane {
    padding: 30px 18px !important;
  }

  .hero {
    min-height: 250px !important;
    height: auto !important;
    padding: 40px 0 !important;
    display: flex !important;
    align-items: center !important;
  }

  .hero h1 {
    font-size: 1.6rem !important;
    margin-bottom: 12px !important;
  }

  .hero p {
    display: none !important;
  }

  .hero-btns {
    flex-direction: row !important;
    justify-content: center !important;
    gap: 8px !important;
    width: auto !important;
  }

  .hero-btns a {
    width: auto !important;
    padding: 10px 16px !important;
    font-size: 0.85rem !important;
  }

  .cta-card {
    padding: 35px 20px !important;
    border-radius: 24px 8px 24px 8px !important;
  }


  .cta-btns {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .cta-btns .btn,
  .cta-btns a {
    width: 100%;
    margin-right: 0 !important;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 25px;
  }

  footer {
    padding: 30px 0 15px;
  }

  .footer-brand .brand-logo {
    margin-bottom: 10px;
  }

  .footer-brand p {
    margin-bottom: 12px;
  }

  .footer-title {
    margin-bottom: 12px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 0;
  }

  .contact-info-panel,
  .contact-form-panel {
    padding: 30px 16px !important;
  }
}

/* --- Contact CTA Section --- */
.contact-cta {
  padding: 30px 0;
  background: url('../img/contact_cta_bg.webp') no-repeat center center;
  background-size: cover;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-cta::before {
  display: none;
}

.contact-cta::after {
  display: none;
}

.cta-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 25px 60px;
  border-radius: 32px 8px 32px 8px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  text-align: center;
  box-shadow: 0 20px 45px rgba(31, 37, 64, 0.08);
  color: var(--text-dark);
  max-width: 1220px;
  margin: 0 auto;
  z-index: 2;
  position: relative;
}

.cta-subtitle {
  color: var(--primary-color);
  font-weight: 750;
  text-transform: none;
  font-size: 0.9rem;
  letter-spacing: 3px;
  display: inline-block;
  margin-bottom: 18px;
  background: rgba(232, 93, 4, 0.08);
  padding: 6px 18px;
  border-radius: 30px;
  border: 1px solid rgba(232, 93, 4, 0.15);
}

.cta-card h2 {
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.35;
}

.cta-text-p {
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 35px;
  color: var(--text-muted);
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 5;
}

.cta-btns .btn-primary {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.cta-btns .btn-primary:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--text-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(232, 93, 4, 0.25);
}

.cta-btns .btn-secondary {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background: transparent;
}

.cta-btns .btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
  border-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(232, 93, 4, 0.2);
}

@media (max-width: 768px) {
  .cta-card {
    padding: 40px 30px;
  }


  .cta-text-p {
    font-size: 0.95rem;
  }
}

/* --- Enquiry Modal Styling --- */
.enquiry-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.enquiry-modal.show {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background-color: var(--bg-light);
  padding: 40px;
  border-radius: 40px 8px 40px 8px;
  width: 100%;
  max-width: 550px;
  position: relative;
  box-shadow: var(--shadow-lg);
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}

.enquiry-modal.show .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.modal-close:hover {
  color: var(--primary-color);
}

.modal-content h3 {
  font-family: var(--font-sans);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.modal-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 25px;
  line-height: 1.5;
}

/* --- Scroll Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform, opacity;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered transition delays for lists, grids, or columns */
.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}



/* Footer contact list styles */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-contact-list i {
  color: var(--primary-color);
  font-size: 1.15rem;
  margin-top: 3px;
}

.footer-contact-list a {
  color: inherit;
  transition: var(--transition-smooth);
  word-break: break-all;
}

.footer-contact-list a:hover {
  color: var(--primary-color);
}

.footer-developer a {
  color: var(--primary-color);
  font-weight: 600;
  transition: var(--transition-smooth);
}

.footer-developer a:hover {
  color: var(--accent-color);
}

/* ============================================
   ANIMATIONS, EFFECTS & TRANSITIONS
   ============================================ */

/* --- Keyframe Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.85);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes floatBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes wiggle {

  0%,
  100% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(-5deg);
  }

  75% {
    transform: rotate(5deg);
  }
}

/* --- Header Nav Link Hover Underline --- */
.nav-link {
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* --- Section Subtitle Shimmer --- */
.section-subtitle {
  background: linear-gradient(90deg, var(--primary-color) 0%, #C4443B 45%, var(--primary-color) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}


/* --- About Experience Badge Float --- */
.about-experience {
  animation: floatBounce 3s ease-in-out infinite;
}

/* --- Product Card Enhanced Hover --- */
.product-card {
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.product-card:hover .product-badge {
  animation: pulse 0.6s ease-in-out;
}

.product-card:hover .product-overlay {
  height: 30%;
}

.product-overlay {
  transition: height 0.4s ease;
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.08);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* --- Filter Button Ripple --- */
.filter-btn {
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  overflow: hidden;
}

.filter-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(0, 114, 255, 0.08);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
}

.filter-btn:hover::before {
  width: 300px;
  height: 300px;
}

.filter-btn:active {
  transform: scale(0.95);
}

/* --- Service Pane Sliding Top Line --- */
.service-pane {
  position: relative;
  overflow: hidden;
}

.service-pane::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  transition: left 0.6s ease;
}

.service-pane:hover::after {
  left: 100%;
}

.service-pane:hover h3 {
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.service-pane:hover .service-icon {
  animation: wiggle 0.5s ease-in-out;
}

/* --- Testimonial Card Hover Glow --- */
.testimonial-card {
  position: relative;
  overflow: hidden;
}

.testimonial-card:hover .author-avatar {
  transform: scale(1.1);
  background: var(--primary-color);
  color: var(--text-light);
  transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-stars i {
  animation: pulse 0.4s ease-in-out;
  animation-fill-mode: both;
}

.testimonial-card:hover .testimonial-stars i:nth-child(1) {
  animation-delay: 0s;
}

.testimonial-card:hover .testimonial-stars i:nth-child(2) {
  animation-delay: 0.05s;
}

.testimonial-card:hover .testimonial-stars i:nth-child(3) {
  animation-delay: 0.1s;
}

.testimonial-card:hover .testimonial-stars i:nth-child(4) {
  animation-delay: 0.15s;
}

.testimonial-card:hover .testimonial-stars i:nth-child(5) {
  animation-delay: 0.2s;
}

.author-avatar {
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

/* --- Button Icon Slide --- */
.btn-primary i,
.btn-secondary i {
  transition: transform 0.3s ease;
  margin-right: 10px;
}

.btn-primary:hover i,
.btn-secondary:hover i {
  transform: translateX(3px);
}

/* ==================== PAGE LOADER ==================== */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FAF7EF;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.page-loader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.loader-logo {
  height: 90px;
  width: auto;
  animation: logo-pulse 1.8s ease-in-out infinite;
  z-index: 10;
}

.loader-spinner {
  position: absolute;
  width: 140px;
  height: 140px;
  border: 3px solid rgba(232, 93, 4, 0.08);
  border-top-color: var(--primary-color);
  border-radius: 50%;
  animation: spinner-spin 1.2s linear infinite;
}

@keyframes logo-pulse {

  0%,
  100% {
    transform: scale(0.95);
    opacity: 0.9;
  }

  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

@keyframes spinner-spin {
  to {
    transform: rotate(360deg);
  }
}

/* --- CTA Subtitle Glow --- */
.cta-subtitle {
  transition: all 0.4s ease;
}

.cta-card:hover .cta-subtitle {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
}

/* --- Footer Links Slide-in --- */
.footer-links a {
  position: relative;
  transition: all 0.3s ease;
  padding-left: 0;
}

.footer-links a:hover {
  padding-left: 8px;
  color: var(--primary-color);
}

.footer-links a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 1px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
  transform: translateY(-50%);
}

.footer-links a:hover::before {
  width: 5px;
}

/* --- Social Icons Hover Pop --- */
.top-bar-socials a {
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.top-bar-socials a:hover {
  transform: translateY(-3px) scale(1.15);
  color: var(--primary-color);
}

/* --- Top Bar Entrance --- */
.top-bar {
  animation: slideInDown 0.6s ease-out;
}

/* --- Hero Content Entrance --- */
.hero-slide.active .hero-content h1 {
  animation: fadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.2s both;
}

.hero-slide.active .hero-content p {
  animation: fadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.4s both;
}

.hero-slide.active .hero-btns {
  animation: fadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.6s both;
}

/* --- Form Input Focus Glow --- */
..contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 114, 255, 0.1);
  transition: all 0.3s ease;
}

/* --- Modal Entrance --- */
.enquiry-modal.active .modal-content {
  animation: scaleIn 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* --- Footer Contact Hover --- */
.footer-contact-list li {
  transition: all 0.3s ease;
}

.footer-contact-list li:hover {
  transform: translateX(5px);
  color: var(--text-dark);
}

.footer-contact-list li:hover i {
  transform: scale(1.15);
  transition: transform 0.3s ease;
}

/* ==================== INNER PAGE BANNER ==================== */
.page-banner {
  position: relative;
  width: 100%;
  aspect-ratio: 1934 / 544;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* Overlay removed — background image shows cleanly */

/* Subtle animated shimmer line */
.page-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  z-index: 2;
}

.page-banner-content {
  position: relative;
  z-index: 3;
  color: #ffffff;
  animation: fadeInUp 0.7s cubic-bezier(0.25, 1, 0.5, 1) both;
}

.page-banner-content h1 {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.9),
    0 4px 16px rgba(0, 0, 0, 0.75),
    0 8px 32px rgba(0, 0, 0, 0.5);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  line-height: 1.15;
}

.page-banner-content h1 span {
  color: var(--primary-color);
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.9),
    0 4px 16px rgba(0, 0, 0, 0.6);
}

/* Breadcrumb */
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  padding: 7px 20px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.25s ease;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.breadcrumb a:hover {
  color: var(--primary-color);
}

.breadcrumb .bc-sep {
  color: var(--primary-color);
  font-size: 0.75rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

.breadcrumb .bc-current {
  color: #ffffff;
  font-weight: 600;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

/* Responsive banner */
@media (max-width: 768px) {
  .page-banner {
    height: auto !important;
  }

  .page-banner-content h1 {
    font-size: 2.2rem !important;
  }

  .breadcrumb {
    font-size: 0.75rem !important;
    padding: 5px 12px !important;
  }
}

/* ==================== MODERN CONTACT PAGE LAYOUT ==================== */
.contact-grid-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}

.contact-info-column {
  padding-right: 20px;
}

.contact-info-column h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 12px;
  font-weight: 700;
  line-height: 1.25;
}

.contact-info-column .subtitle-desc {
  font-size: 1.15rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 24px;
}

.contact-info-column .info-p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 40px;
}

.info-details-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 40px;
}

.info-detail-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.info-detail-card .icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: rgba(232, 93, 4, 0.08);
  border: 1px solid rgba(232, 93, 4, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.info-detail-card:hover .icon-wrap {
  background-color: var(--primary-color);
  color: var(--text-light);
  transform: translateY(-2px);
}

.info-detail-card .text-wrap h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 6px;
  font-weight: 700;
}

.info-detail-card .text-wrap p {
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.55;
  font-weight: 500;
  overflow-wrap: break-word;
  word-break: break-word;
}

.info-detail-card .text-wrap p a {
  color: var(--text-dark);
  transition: color 0.25s ease;
  word-break: break-all;
}

.info-detail-card .text-wrap p a:hover {
  color: var(--primary-color);
}

.social-links-modern {
  display: flex;
  gap: 12px;
}

.social-links-modern a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background-color: var(--bg-card);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.social-links-modern a:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
  border-color: var(--primary-color);
  transform: translateY(-3px);
}

/* Right Column: Form Card */
.contact-form-card,
.contact-info-card {
  background-color: var(--bg-card);
  border-radius: var(--border-radius);
  padding: 50px;
  border: 1px solid var(--border-color);
  box-shadow: 0 15px 40px rgba(31, 37, 64, 0.04);
}

.contact-form-card h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 12px;
  font-weight: 700;
}

.contact-form-card .form-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 991px) {
  .contact-grid-modern {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-info-column {
    padding-right: 0;
  }
}

@media (max-width: 576px) {
  .contact-form-card,
  .contact-info-card {
    padding: 35px 20px;
  }

  .contact-info-column h3 {
    font-size: 1.6rem !important;
  }

  .contact-info-column .subtitle-desc {
    font-size: 1rem !important;
    margin-bottom: 18px !important;
  }


  .contact {
    padding: 30px 0 !important;
  }
}

/* ==================== TIMELINE HISTORY STYLE ==================== */
.history-section {
  padding: 30px 0;
  background-color: #FAFBF9;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(232, 93, 4, 0.06) 0%, transparent 45%),
    radial-gradient(circle at 90% 80%, rgba(232, 93, 4, 0.06) 0%, transparent 45%),
    radial-gradient(rgba(205, 218, 211, 0.95) 1.5px, transparent 1.5px);
  background-size: 100% 100%, 100% 100%, 28px 28px;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.history-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, #FAFBF9 0%, transparent 15%, transparent 85%, #FAFBF9 100%);
  pointer-events: none;
  z-index: 1;
}

.history-section .container {
  position: relative;
  z-index: 2;
}

.timeline-container {
  position: relative;
  max-width: 1000px;
  margin: 40px auto 0;
  padding: 20px 0;
}

.timeline-container::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--border-color);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 50px;
  position: relative;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-content {
  width: 45%;
  background: var(--bg-card);
  padding: 30px;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(31, 37, 64, 0.03);
  position: relative;
  transition: var(--transition-smooth);
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(31, 37, 64, 0.06);
  border-color: var(--primary-color);
}

.timeline-content h3 {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.timeline-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
}

.timeline-badge {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--bg-card);
  border: 3px solid var(--primary-color);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 4px 15px rgba(232, 93, 4, 0.15);
  transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-badge {
  background-color: var(--primary-color);
  color: var(--text-light);
  transform: translateX(-50%) scale(1.1);
}

.timeline-content::before {
  content: '';
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  transform: translateY(-50%);
  z-index: 1;
}

.timeline-item:nth-child(even) .timeline-content::before {
  right: -10px;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent var(--border-color);
}

.timeline-item:nth-child(odd) .timeline-content::before {
  left: -10px;
  border-width: 10px 10px 10px 0;
  border-color: transparent var(--border-color) transparent transparent;
}

@media (max-width: 768px) {
  .timeline-container::before {
    left: 30px;
  }

  .timeline-item {
    flex-direction: row !important;
    justify-content: flex-start;
    padding-left: 70px;
    box-sizing: border-box;
  }

  .timeline-content {
    width: 100%;
  }

  .timeline-badge {
    left: 30px;
    transform: translateX(-50%);
  }

  .timeline-item:hover .timeline-badge {
    transform: translateX(-50%) scale(1.1);
  }

  .timeline-content::before {
    left: -10px !important;
    border-width: 10px 10px 10px 0 !important;
    border-color: transparent var(--border-color) transparent transparent !important;
    right: auto !important;
  }
}

.mission-vision-section {
  padding: 30px 0;
  background:
    linear-gradient(180deg, rgb(255 216 108 / 10%) 0%, rgb(255 216 108 / 10%) 100%), url(../img/cta_bg.webp) no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.mission-vision-section::before {
  display: none !important;
}

/* ==================== MISSION & VISION STYLE ==================== */
.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
}

.mv-card {
  background: rgba(255, 255, 255, 0.92) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border-radius: 40px 8px 40px 8px;
  padding: 50px 40px;
  border: 1px solid rgb(232, 91, 4) !important;
  box-shadow: 0 15px 35px rgba(31, 37, 64, 0.06) !important;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.mv-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.98) !important;
  border-color: rgb(232, 91, 4) !important;
  box-shadow: 0 20px 40px rgba(232, 93, 4, 0.1) !important;
  border-radius: 8px 40px 8px 40px;
}

.mv-card::after {
  content: '\f810';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  bottom: -30px;
  right: -10px;
  font-size: 8rem;
  color: rgba(232, 93, 4, 0.02) !important;
  z-index: -1;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  pointer-events: none;
}

.mv-card:hover::after {
  transform: scale(1.15) rotate(-15deg);
  color: rgba(232, 93, 4, 0.04) !important;
}

.mv-card::before {
  display: none !important;
  /* Left border removed */
}

.mv-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 20px 4px 20px 4px;
  background-color: rgba(232, 93, 4, 0.08) !important;
  border: 1px solid rgba(232, 93, 4, 0.15) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color) !important;
  font-size: 1.8rem;
  margin-bottom: 24px;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.mv-card:hover .mv-icon-box {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: var(--text-light) !important;
  border-radius: 4px 20px 4px 20px;
  transform: scale(1.08) rotate(15deg);
  box-shadow: 0 8px 20px rgba(232, 93, 4, 0.2);
}

.mv-content h3 {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark) !important;
  margin-bottom: 14px;
}

.mv-content p {
  font-size: 0.95rem;
  color: var(--text-muted) !important;
  line-height: 1.65;
}

@media (max-width: 768px) {
  .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
}

/* ==================== QUALITY ASSURANCE SECTIONS STYLING ==================== */
.quality-assurance-section {
  padding: 30px 0;
  background-color: #181d2a !important;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.quality-assurance-section .section-title h2 {
  color: #ffffff !important;
}

.quality-assurance-section .section-description {
  color: #a0aec0 !important;
}

.methods-grid-new {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 60px auto 0;
}

.method-card-new {
  background-color: #222938;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 35px 30px;
  width: calc(25% - 22.5px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: var(--transition-smooth);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.method-card-new:hover {
  transform: translateY(-6px);
  border-color: var(--primary-color);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.method-card-new .card-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.3rem;
  margin-bottom: 24px;
  transition: var(--transition-smooth);
}

.method-card-new:hover .card-icon {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--text-light);
  transform: rotate(5deg) scale(1.05);
}

.method-card-new h4 {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.3;
}

.method-card-new p {
  font-size: 0.9rem;
  color: #a0aec0;
  line-height: 1.6;
}

.method-card-new.highlighted-card {
  background-color: var(--primary-color) !important;
  border: none !important;
}

.method-card-new.highlighted-card .card-icon {
  background-color: rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #ffffff;
}

.method-card-new.highlighted-card h4 {
  color: #ffffff;
}

.method-card-new.highlighted-card p {
  color: rgba(255, 255, 255, 0.9);
}

.method-card-new.highlighted-card:hover {
  background-color: var(--accent-color) !important;
  box-shadow: 0 15px 35px rgba(232, 93, 4, 0.3);
}

@media (max-width: 1199px) {
  .method-card-new {
    width: calc(33.333% - 20px);
  }
}

@media (max-width: 768px) {
  .method-card-new {
    width: calc(50% - 15px);
  }
}

@media (max-width: 480px) {
  .method-card-new {
    width: 100%;
  }
}

/* --- Accessibility: Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==================== FOOD SAFETY & COMPLIANCE SECTION ==================== */
.food-safety-section {
  padding: 30px 0;
  background-color: var(--bg-light);
  border-top: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.safety-grid-new {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 50px auto 0;
}

.safety-card-new {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 30px 24px;
  width: calc(33.333% - 20px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition-smooth);
}

.safety-card-new:hover {
  transform: translateY(-6px);
  border-color: var(--primary-color);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.safety-card-new .card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(232, 93, 4, 0.08);
  border: 1px solid rgba(232, 93, 4, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: var(--transition-smooth);
}

.safety-card-new:hover .card-icon {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--text-light);
  transform: scale(1.08);
}

.safety-card-new h4 {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
}

@media (max-width: 991px) {
  .safety-card-new {
    width: calc(50% - 15px);
  }
}

@media (max-width: 575px) {
  .safety-card-new {
    width: 100%;
  }
}



.spices-tabs .tabs-content {
  margin-top: 40px;
}

.spices-tabs .tab-panel {
  display: none;
}

.spices-tabs .tab-panel.active {
  display: block;
}

.spices-tabs .tab-top {
  display: grid;
  grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  margin-bottom: 42px;
}

.spices-tabs .tab-copy {
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}

.spices-tabs .tab-copy .section-subtitle {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--primary-color);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: none;
}

.spices-tabs .tab-copy h1 {
  font-size: 2.3rem;
  line-height: 1.05;
  margin-bottom: 20px;
}

.spices-tabs .tab-copy p {
  margin-bottom: 16px;
  color: var(--text-muted);
  line-height: 1.75;
}

.spices-tabs .tab-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius);
  min-height: 320px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.spices-tabs .spice-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: 18px;
}

.spices-tabs .spice-card {
  background: var(--bg-card);
  border: 1px solid var(--primary-color);
  border-radius: var(--border-radius);
  padding: 18px 18px;
  color: var(--text-dark);
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background-color 0.3s ease, color 0.3s ease;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
}

.spices-tabs .spice-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  background: var(--primary-color);
  color: var(--text-light);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

.spice-section-title {
  margin: 40px 0 20px;
  text-align: left;
}

.spice-section-title h2 {
  position: relative;
  padding-bottom: 10px;
}

.spice-section-title h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

.spice-features-section {
  padding: 30px 0;
}

.spice-features-section .section-title {
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid rgba(232, 93, 4, 0.18);
  border-radius: var(--border-radius);
  padding: 28px 26px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.04);
}

.feature-card h3 {
  margin-bottom: 20px;
  font-size: 1.25rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
  line-height: 1.7;
  color: var(--text-dark);
}

.feature-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--primary-color);
  font-size: 0.9rem;
}

@media (max-width: 991px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  .spices-tabs {
    padding: 30px;
  }

  .spices-tabs .tab-top,
  .spices-tabs .tab-top-reverse {
    grid-template-columns: 1fr;
  }

  .spices-tabs .spice-card-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }
}

@media (max-width: 575px) {
  .spices-tabs {
    padding: 30px 15px;
  }

  .spices-tabs .spices-tab-btn {
    min-width: 100%;
  }

  .spices-tabs .tab-copy h1 {
    font-size: 1.85rem;
  }

  .spices-tabs .spice-card-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================================
   PAGE: spices.php — Spices Page Styles
   ============================================================= */

/* --- Intro Section --- */
.spices-intro {
  padding: 30px 0;
}

.spices-intro .section-title {
  margin-bottom: 0;
}

.spices-intro .section-description {
  max-width: 800px;
  margin: 20px auto 0 auto;
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.75;
  text-align: center;
}

/* --- Tab Switcher --- */
.spices-btn-container {
  display: inline-flex;
  align-items: center;
  background-color: #F1F3F6;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 50px;
  padding: 5px;
  margin-top: 35px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.03);
}

.spices-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 12px 32px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: 50px;
  transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
  outline: none;
  margin: 0;
}

.spices-btn:hover {
  color: var(--primary-color);
}

.spices-btn.active {
  background-color: var(--primary-color);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(232, 93, 4, 0.25);
}

.spices-btn:active {
  transform: scale(0.96);
}

/* --- Tabs Content Section --- */
.spices-tabs {
  background-color: #FAF7EF;
  padding: 30px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.tabs-content {
  margin-top: 0;
}

/* --- Tab Panel Copy --- */
.tab-copy {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.tab-copy h1 {
  font-family: var(--font-serif);
  font-size: 2.3rem;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.tab-copy p {
  color: var(--text-muted);
  margin-bottom: 15px;
  line-height: 1.75;
  font-size: 1.05rem;
}

/* --- Product Card Grid --- */
.spice-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.small-spice-card {
  background-color: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 220px;
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1),
    box-shadow 0.35s cubic-bezier(0.25, 1, 0.5, 1),
    border-color 0.35s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
  text-align: center;
}

.small-spice-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(232, 93, 4, 0.12);
  border-color: rgba(232, 93, 4, 0.25);
}

.spice-card-img-wrap {
  width: 100%;
  height: 150px;
  overflow: hidden;
  background-color: #FFFFFF;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.spice-card-img-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.small-spice-card:hover .spice-card-img-wrap img {
  transform: scale(1.04);
}

.spice-card-info {
  padding: 12px 10px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spice-card-info h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.4;
  word-break: break-word;
}

/* --- Key Features Section --- */
.spices-features-container {
  margin-top: 50px;
  padding: 40px 30px;
  background-color: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  border: 1px solid var(--border-color);
}

.features-title-box {
  text-align: center;
  margin-bottom: 35px;
}

.features-title-box h3 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 0;
}

.features-title-box h3 span {
  color: var(--primary-color);
}

.spices-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.spices-feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px 20px;
  background-color: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  transition: all 0.25s ease;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.01);
}

.spices-feature-item:hover {
  transform: translateY(-2px);
  border-color: var(--primary-color);
  box-shadow: 0 6px 15px rgba(232, 93, 4, 0.06);
}

.feature-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: rgba(232, 93, 4, 0.08);
  color: var(--primary-color);
  font-size: 0.95rem;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.spices-feature-item:hover .feature-icon-wrap {
  background-color: var(--primary-color);
  color: #FFFFFF;
}

.feature-text-label {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.35;
}

/* --- Spices Page Responsive --- */
@media (max-width: 991px) {
  .spices-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .spices-feature-item {
    grid-column: auto !important;
  }
}

@media (max-width: 767px) {
  section {
    padding: 30px 0 !important;
  }

  .mission-vision-section,
  .quality-assurance-section,
  .food-safety-section,
  .history-section,
  .contact-cta {
    padding: 30px 0 !important;
  }

  .spices-feature-grid {
    grid-template-columns: 1fr;
  }

  .spices-feature-item {
    grid-column: auto !important;
  }
}

@media (max-width: 575px) {
  .tab-copy h1 {
    font-size: 1.75rem;
  }

  .tab-copy p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .spices-tabs {
    padding: 30px 0;
  }
}

@media (max-width: 480px) {
  .spices-btn-container {
    display: flex;
    width: 100%;
    max-width: 310px;
    margin: 30px auto 0 auto;
  }

  .spices-btn {
    flex: 1;
    padding: 10px 8px;
    font-size: 0.9rem;
    letter-spacing: 0;
  }

  .spice-grid-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 25px;
  }

  .spices-features-container {
    padding: 30px 15px;
    margin-top: 35px;
  }

  .spices-feature-item {
    padding: 12px 15px;
    gap: 10px;
  }

  .feature-text-label {
    font-size: 0.85rem;
  }

  .feature-icon-wrap {
    width: 30px;
    height: 30px;
    font-size: 0.85rem;
  }
}

/* ==================== FLOATING WHATSAPP BUTTON ==================== */
.whatsapp-float-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-family: var(--font-sans);
}

.whatsapp-btn {
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #ffffff !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  animation: wa-ripple 2s infinite;
}

@keyframes wa-ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7), 0 6px 20px rgba(37, 211, 102, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0), 0 6px 20px rgba(37, 211, 102, 0.4);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 6px 20px rgba(37, 211, 102, 0.4);
  }
}

.whatsapp-btn:hover {
  transform: scale(1.08) translateY(-3px);
  background-color: #20ba5a;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
  animation: none;
}

.whatsapp-tooltip-text {
  position: absolute;
  right: 75px;
  background-color: #ffffff;
  color: var(--text-dark);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
  border: 1px solid var(--border-color);
}

.whatsapp-tooltip-text::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent transparent #ffffff;
}

.whatsapp-tooltip-text::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -7px;
  transform: translateY(-50%);
  border-width: 7px;
  border-style: solid;
  border-color: transparent transparent transparent var(--border-color);
  z-index: -1;
}

.whatsapp-btn:hover .whatsapp-tooltip-text {
  transform: scale(1.03);
}

@media (max-width: 575px) {
  .whatsapp-float-container {
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-btn {
    width: 52px;
    height: 52px;
    font-size: 26px;
  }
  .whatsapp-tooltip-text {
    font-size: 0.8rem;
    padding: 6px 12px;
    right: 65px;
  }
}

/* Fix header text overlapping hamburger menu on small screen widths (e.g. 320px) */
@media (max-width: 375px) {
  header .container {
    padding-left: 10px !important;
    padding-right: 10px !important;
    gap: 6px !important;
  }
  .brand-logo {
    gap: 6px !important;
  }
  .logo-img {
    height: 35px !important;
  }
  .brand-text .brand-title {
    font-size: 0.95rem !important;
  }
  .brand-text .brand-subtitle {
    font-size: 0.55rem !important;
    letter-spacing: 0.2px !important;
  }
  .mobile-nav-toggle {
    padding: 6px !important;
    font-size: 1.35rem !important;
  }
  header.scrolled .logo-img {
    height: 35px !important;
  }
  header.scrolled .brand-text .brand-title {
    font-size: 0.95rem !important;
  }
  header.scrolled .brand-text .brand-subtitle {
    font-size: 0.55rem !important;
  }
}

/* ==================== CERTIFICATES TAGS ==================== */
.about-certificates {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.cert-title-label {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cert-tags-grid {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cert-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(232, 93, 4, 0.06);
  border: 1px solid rgba(232, 93, 4, 0.15);
  color: var(--primary-color);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.cert-pill-tag i {
  font-size: 0.9rem;
}

.cert-pill-tag:hover {
  background-color: var(--primary-color);
  color: #FFFFFF;
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(232, 93, 4, 0.2);
}

@media (max-width: 576px) {
  .about-certificates {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* ==================== TESTIMONIAL PAGE LAYOUT & STYLE FIXES ==================== */

/* --- Consolidated Testimonial Section --- */
.testimonial-section {
  padding: 30px 0;
  background: 
    /* Top Right: Accent Red Filled Circle & Ring */
    radial-gradient(circle at 90% 15%, rgba(193, 18, 31, 0.06) 0%, rgba(193, 18, 31, 0.06) 50px, transparent 51px),
    radial-gradient(circle at 90% 15%, transparent 70px, rgba(193, 18, 31, 0.03) 71px, rgba(193, 18, 31, 0.03) 73px, transparent 74px),
    
    /* Top Left: Primary Orange Filled Circle & Ring */
    radial-gradient(circle at 10% 20%, rgba(232, 93, 4, 0.06) 0%, rgba(232, 93, 4, 0.06) 60px, transparent 61px),
    radial-gradient(circle at 10% 20%, transparent 80px, rgba(232, 93, 4, 0.03) 81px, rgba(232, 93, 4, 0.03) 83px, transparent 84px),
    
    /* Bottom Right: Primary Orange Filled Circle & Ring */
    radial-gradient(circle at 85% 85%, rgba(232, 93, 4, 0.06) 0%, rgba(232, 93, 4, 0.06) 90px, transparent 91px),
    radial-gradient(circle at 85% 85%, transparent 115px, rgba(232, 93, 4, 0.03) 116px, rgba(232, 93, 4, 0.03) 118px, transparent 119px),

    /* Bottom Left: Accent Red Filled Circle & Ring */
    radial-gradient(circle at 15% 75%, rgba(193, 18, 31, 0.05) 0%, rgba(193, 18, 31, 0.05) 75px, transparent 76px),
    radial-gradient(circle at 15% 75%, transparent 100px, rgba(193, 18, 31, 0.025) 101px, rgba(193, 18, 31, 0.025) 103px, transparent 104px),

    /* Ambient Glows */
    radial-gradient(circle at 12% 18%, rgba(232, 93, 4, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 88% 82%, rgba(193, 18, 31, 0.08) 0%, transparent 45%),
    linear-gradient(180deg, #FFFFFF 0%, #FAF7EF 100%);
  position: relative;
  overflow: hidden;
}

.testimonial-section .container {
  position: relative;
  z-index: 2;
}

.testimonial-section .about-text h2 {
  margin-bottom: 24px;
}

.testimonial-section .about-text h2 span {
  color: var(--primary-color);
}

.testimonial-section .about-text p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.testimonial-section .about-text p:last-child {
  margin-bottom: 0;
}

/* --- Testimonial Swiper Slider --- */
.testimonialSwiper {
  padding: 20px 0 0 0 !important;
  position: relative;
  overflow: hidden !important; /* Clipped to container to show exactly 3 cards on laptop screens */
}

.testimonialSwiper .swiper-slide {
  height: auto !important;
}

.t-slide-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 30px 24px;
  border-radius: 30px 8px 30px 8px;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 380px; /* Reduced from 420px to make card size more compact */
  box-shadow: var(--shadow-sm);
  box-sizing: border-box;
}

.t-slide-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 15px 35px rgba(31, 37, 64, 0.08);
  border-radius: 8px 30px 8px 30px;
}

.t-quote-icon {
  font-size: 2.2rem;
  color: rgba(232, 93, 4, 0.12);
  margin-bottom: 8px;
  line-height: 1;
}

.t-stars {
  color: #F2B922;
  margin-bottom: 16px;
  display: flex;
  gap: 4px;
}

.t-stars i {
  font-size: 0.9rem;
}

.t-slide-card:hover .t-stars i {
  animation: pulse 0.4s ease-in-out;
  animation-fill-mode: both;
}

/* Star pulse hover stagger */
.t-slide-card:hover .t-stars i:nth-child(1) { animation-delay: 0s; }
.t-slide-card:hover .t-stars i:nth-child(2) { animation-delay: 0.05s; }
.t-slide-card:hover .t-stars i:nth-child(3) { animation-delay: 0.1s; }
.t-slide-card:hover .t-stars i:nth-child(4) { animation-delay: 0.15s; }
.t-slide-card:hover .t-stars i:nth-child(5) { animation-delay: 0.2s; }

.t-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.35;
}

.t-card-quote {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 24px;
  flex-grow: 1;
  max-height: 120px; /* Reduced to fit the 380px container */
  overflow-y: auto;
  scrollbar-width: none;
}

.t-card-quote::-webkit-scrollbar {
  display: none;
}

.t-client-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
  border-top: 1px solid var(--border-color);
  padding-top: 18px;
}

.t-client-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(232, 93, 4, 0.08);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.t-slide-card:hover .t-client-avatar {
  transform: scale(1.08);
  background-color: var(--primary-color);
  color: var(--text-light);
  border-color: var(--primary-color);
}

.t-client-details h4 {
  font-size: 1rem;
  font-weight: 750;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.t-client-details span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- Swiper Centered Navigation Controls --- */
.swiper-pagination {
  bottom: 22px !important;
  height: 20px;
  text-align: center;
  left: 0 !important;
  width: 100% !important;
  z-index: 5;
}

.swiper-pagination-bullet {
  background: var(--text-muted) !important;
  opacity: 0.4;
  width: 8px;
  height: 8px;
  transition: var(--transition-smooth);
  display: inline-block !important;
  margin: 0 4px !important;
}

.swiper-pagination-bullet-active {
  background: var(--primary-color) !important;
  opacity: 1 !important;
  width: 24px !important;
  border-radius: 4px !important;
}

.swiper-nav-prev,
.swiper-nav-next {
  position: absolute;
  bottom: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  z-index: 10;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.swiper-nav-prev {
  left: calc(50% - 90px);
}

.swiper-nav-next {
  left: calc(50% + 50px);
}

.swiper-nav-prev:hover,
.swiper-nav-next:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
  border-color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(232, 93, 4, 0.2);
}

/* --- Highlight Quote Section (Full Width, Design-Focused) --- */
.testimonial-highlight-sec {
  padding: 30px 0;
  background: 
    /* Top Left: Primary Orange Filled Circle & Ring */
    radial-gradient(circle at 10% 20%, rgba(232, 93, 4, 0.08) 0%, rgba(232, 93, 4, 0.08) 60px, transparent 61px),
    radial-gradient(circle at 10% 20%, transparent 80px, rgba(232, 93, 4, 0.04) 81px, rgba(232, 93, 4, 0.04) 83px, transparent 84px),
    
    /* Bottom Right: Accent Red Filled Circle & Ring */
    radial-gradient(circle at 90% 80%, rgba(193, 18, 31, 0.08) 0%, rgba(193, 18, 31, 0.08) 80px, transparent 81px),
    radial-gradient(circle at 90% 80%, transparent 105px, rgba(193, 18, 31, 0.04) 106px, rgba(193, 18, 31, 0.04) 108px, transparent 109px),

    /* Ambient Glows */
    radial-gradient(circle at 10% 20%, rgba(232, 93, 4, 0.18) 0%, transparent 45%),
    radial-gradient(circle at 90% 80%, rgba(193, 18, 31, 0.18) 0%, transparent 45%),
    
    /* Tiny Dotted Grid */
    radial-gradient(rgba(255, 255, 255, 0.08) 1.2px, transparent 1.2px),
    
    /* Base Background Gradient */
    linear-gradient(135deg, #1F2540 0%, #111529 100%);
  background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 24px 24px, 100% 100%;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.testimonial-highlight-sec h2 {
  color: #ffffff;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.testimonial-highlight-sec h2 span {
  color: var(--primary-color);
}

.testimonial-highlight-sec .highlight-quote {
  font-size: 1.35rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 auto;
  line-height: 1.8;
  max-width: 900px;
  font-weight: 300;
  position: relative;
  z-index: 2;
}

/* --- Why Trust Us Section --- */
.why-trust-sec {
  padding: 30px 0;
  background: radial-gradient(circle at 10% 20%, rgba(232, 93, 4, 0.04) 0%, transparent 45%),
              radial-gradient(circle at 90% 80%, rgba(193, 18, 31, 0.04) 0%, transparent 45%),
              #FAF7EF;
  position: relative;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
  align-items: stretch;
}

.trust-card {
  background-color: var(--bg-card);
  border: 1px solid rgba(232, 93, 4, 0.08);
  padding: 30px 24px;
  border-radius: var(--border-radius);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  box-sizing: border-box;
  height: 100%;
  box-shadow: 0 4px 15px rgba(31, 37, 64, 0.015);
}

.trust-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-color);
  box-shadow: 0 15px 35px rgba(232, 93, 4, 0.08);
}

.trust-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background-color: rgba(232, 93, 4, 0.08);
  border: 1px solid rgba(232, 93, 4, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.4rem;
  margin-bottom: 20px;
  transition: var(--transition-smooth);
}

.trust-card:hover .trust-icon {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--text-light);
  transform: rotate(5deg) scale(1.05);
}

.trust-card h3 {
  font-size: 1.05rem; /* Reduced font size from 1.2rem */
  font-weight: 500; /* Reduced font weight from 700 */
  color: var(--text-dark);
  margin-bottom: 0;
  line-height: 1.5;
}

.trust-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* --- Testimonial CTA Section --- */
.testimonial-cta {
  padding: 30px 0;
  background: url('../img/contact_cta_bg.webp') no-repeat center center;
  background-size: cover;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.testimonial-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(31, 37, 64, 0.4); /* Overlay for enhanced text readability */
  z-index: 1;
}

.testimonial-cta .container {
  position: relative;
  z-index: 2;
}

.testimonial-cta .cta-card {
  transition: var(--transition-smooth);
}

.testimonial-cta:hover .cta-card {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 25px 50px rgba(232, 93, 4, 0.15);
}

/* --- Responsive Adjustments for Testimonials Page --- */
@media (max-width: 991px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .t-slide-card {
    padding: 24px;
    height: 380px;
  }

  .swiper-nav-prev,
  .swiper-nav-next {
    bottom: 12px;
  }

  .swiper-pagination {
    bottom: 22px !important;
  }
}

/* --- Relocated Testimonial Controls --- */
.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 20px;
}

.testimonial-header .section-title {
  margin-bottom: 0 !important;
  text-align: left !important;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-controls .swiper-pagination-container {
  position: relative;
  width: 80px;
  height: 20px;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.testimonial-controls .swiper-pagination {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  bottom: auto !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.testimonial-controls .swiper-nav-prev,
.testimonial-controls .swiper-nav-next {
  position: static !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
}

/* --- Home Page Product Cards Mobile Grid (2 Cards in a Single Row) --- */
@media (max-width: 575px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .product-card {
    height: 190px;
    border-radius: 16px 6px 16px 6px;
  }

  .product-overlay {
    height: 35%;
    padding: 8px 10px;
  }

  .product-title {
    font-size: 0.95rem;
  }
}

/* Overrides for extremely small mobile viewports (360px and below, e.g., 320px) */
@media (max-width: 360px) {
  .product-title {
    font-size: 0.85rem;
  }
  .product-card {
    height: 175px;
  }
  .section-title h2,
  .spice-section-title h2,
  .quality-assurance-section .section-title h2,
  .testimonial-section .about-text h2,
  .testimonial-highlight-sec h2,
  .cta-card h2 {
    font-size: 1.45rem !important;
  }
  .page-banner-content h1 {
    font-size: 1.5rem !important;
  }
}

/* --- Testimonial Header Responsive Alignments --- */
@media (max-width: 768px) {
  .testimonial-header {
    flex-wrap: nowrap !important;
    gap: 12px !important;
  }
  .testimonial-header .section-title h2 {
    white-space: normal;
  }
  .testimonial-controls {
    flex-shrink: 0;
  }
}

@media (max-width: 480px) {
  .testimonial-controls {
    gap: 8px !important;
  }
  .testimonial-controls .swiper-pagination-container {
    width: 60px !important;
  }
  .testimonial-controls .swiper-nav-prev,
  .testimonial-controls .swiper-nav-next {
    width: 32px !important;
    height: 32px !important;
    font-size: 13px !important;
  }
}