/* Reset & base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


/* Hide team modal (not used) */
.team-modal {
  display: none !important;
}

/* Product Page Styles */
.product-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.product-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(26, 41, 66, 0.8), rgba(26, 41, 66, 0.9));
  z-index: 2;
}

.product-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #FFFFFF !important;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.product-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #FFFFFF !important;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}

.product-hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  color: #FFFFFF !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.product-hero-features {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.feature-tag {
  background: rgba(212, 175, 55, 0.9);
  color: #1A2942;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-details {
  padding: 4rem 0;
  background: #FFFFFF;
}

.product-item {
  margin-bottom: 3rem;
  padding: 2rem;
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #D4AF37;
}

.product-item-title {
  font-family: 'Playfair Display', serif;
  color: #D4AF37;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #D4AF37;
  padding-bottom: 0.5rem;
}

.product-item h3 {
  font-family: 'Playfair Display', serif;
  color: #1A2942;
  font-size: 1.3rem;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.product-item p {
  color: #4A5568;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.product-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.product-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: #4A5568;
  line-height: 1.6;
}

.product-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #D4AF37;
  font-weight: bold;
  font-size: 1.2em;
}

.product-contact {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 12px;
  margin-top: 2rem;
}

.product-contact h2 {
  font-family: 'Playfair Display', serif;
  color: #1A2942;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.product-contact p {
  font-size: 1.1rem;
  color: #4A5568;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.contact-btn.primary {
  background: linear-gradient(45deg, #D4AF37, #FFD700);
  color: #1A2942;
}

.contact-btn.secondary {
  background: #1A2942;
  color: #FFFFFF;
}

.contact-btn.tertiary {
  background: transparent;
  color: #1A2942;
  border: 2px solid #1A2942;
}

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

.contact-btn.primary:hover {
  background: linear-gradient(45deg, #B7924A, #E6C200);
}

.contact-btn.secondary:hover {
  background: #0F1B2E;
}

.contact-btn.tertiary:hover {
  background: #1A2942;
  color: #FFFFFF;
}

/* Mobile optimizations for product pages */
@media (max-width: 768px) {
  .product-hero {
    height: 70vh;
    min-height: 500px;
    padding: 2rem 1rem;
  }

  .product-hero h1 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
  }

  .product-hero-subtitle {
    font-size: 1rem;
    margin-bottom: 2.5rem;
    line-height: 1.5;
  }

  .product-hero-content {
    padding: 1rem;
    max-width: 100%;
  }

  .product-hero-features {
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .feature-tag {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }

  .product-details {
    padding: 2rem 0;
  }

  .product-item {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }

  .product-item-title {
    font-size: 1.5rem;
  }

  .product-contact {
    padding: 2rem 1rem;
  }

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

  .contact-buttons {
    flex-direction: column;
    align-items: center;
  }

  .contact-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}



.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #FFFFFF;
  color: #1A2942;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  text-decoration: none;
  color: inherit;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: #1A2942;
  margin-top: 0;
  font-weight: 400;
  letter-spacing: 0.02em;
}

h1 {
  font-size: 60px;
  line-height: 1.2;
  letter-spacing: 0.03em;
}

h2 {
  font-size: 48px;
  text-align: center;
}

h3 {
  font-size: 32px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

em {
  font-style: italic;
}

/* Header/Nav */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  color: #FFFFFF;
  z-index: 999;
  transition: all 0.3s ease;
  box-shadow: none;
  backdrop-filter: blur(10px);
}


header.scrolled {
  padding: 0;
  background: rgba(11, 31, 58, 0.85);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

/* Product page headers should always have background for visibility */
body:has(.product-hero) header {
  background: rgba(11, 31, 58, 0.85);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

/* Product page headers should always have background for visibility */
header.product-header {
  background: rgba(11, 31, 58, 0.85) !important;
  backdrop-filter: blur(10px) !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25) !important;
}


/* Fallback for browsers that don't support :has() */
.product-hero ~ header,
.product-hero + header {
  background: rgba(11, 31, 58, 0.85) !important;
  backdrop-filter: blur(10px) !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25) !important;
}

/* Ensure product hero content doesn't get hidden behind fixed header */
.product-hero {
  margin-top: 80px;
}

nav {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  transition: all 0.3s ease;
}

header.scrolled nav {
  padding: 0.75rem 2rem;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-family: 'Cinzel', serif;
  font-size: 24px;
  letter-spacing: 0.05em;
  line-height: 1;
  user-select: none;
  color: #FFFFFF;
  height: 80px;
  transition: all 0.3s ease;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.logo-icon {
  max-width: 150px;
  max-height: 50px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: all 0.5s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  transform-origin: center;
  align-self: center;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}


.logo:hover .logo-icon {
  transform: scale(1.1);
}

header.scrolled .logo-icon {
  width: 40px;
  height: 40px;
}

/* Add animation for the center detail */
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(1); opacity: 0.8; }
}

.logo-icon circle:last-of-type {
  animation: pulse 2s ease-in-out infinite;
}

/* Add subtle animation for the dashed lines */
@keyframes dash {
  to {
    stroke-dashoffset: -20;
  }
}

.logo-icon path[stroke-dasharray] {
  animation: dash 20s linear infinite;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 3rem;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.03em;
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 4px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.nav-links li a:focus {
  outline: none;
  box-shadow: 0 0 0 2px #D4AF37;
  border-radius: 4px;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 0;
  background: linear-gradient(to right, #D4AF37, #FFD700);
  transition: width 0.4s ease;
}

.nav-links li a:hover::after,
.nav-links li a:focus::after {
  width: 100%;
}

.nav-links li a:hover {
  color: #D4AF37;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  padding: 10px;
  z-index: 1000;
}
.hamburger div {
  width: 25px;
  height: 2px;
  background: #D4AF37;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.active div:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active div:nth-child(2) {
  opacity: 0;
}
.hamburger.active div:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile nav */
@media (max-width: 768px) {
  /* Ensure header is flush with top on mobile */
  header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  
  nav {
    padding: 0.75rem 1rem;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 250px;
    flex-direction: column;
    background: rgba(11, 31, 58, 0.98);
    backdrop-filter: blur(10px);
    padding: 80px 2rem 2rem;
    gap: 2rem;
    transition: right 0.3s ease-in-out;
    z-index: 998;
  }
  .nav-links.active {
    right: 0;
  }
  .hamburger {
    display: flex;
  }
  .logo {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 18px;
  }
}

/* Section Styles */
section {
  max-width: 100%;
  margin: 0 auto;
  padding: 3rem 1rem;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
}
section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Product pages should show content immediately without scroll animation */
body:has(.product-hero) section {
  opacity: 1;
  transform: translateY(0);
}

/* Hero Section */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #1A2A44;
  text-align: center;
  height: auto;
  min-height: 60vh;
  overflow: hidden;
  padding: 2rem 1rem;
  max-width: 100%;
  transition: all 0.5s ease-out;
  background: linear-gradient(135deg, #663251 0%, #5a2d47 15%, #4d2540 35%, #663251 50%, #4d2540 65%, #3d1e32 85%, #663251 100%);
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.3);
  /* Expanded color palette accents */
  --deep-blue: #0B1F3A;
  --warm-neutral: #F3E9D2;
  --subtle-red: #B03A2E;
}

/* Premium overlay effect */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(102, 50, 81, 0.4) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* Golden speckles effect - Premium refined */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.6) 2px, transparent 2px),
    radial-gradient(circle at 60% 70%, rgba(212, 175, 55, 0.5) 2px, transparent 2px),
    radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.6) 1.5px, transparent 1.5px),
    radial-gradient(circle at 10% 80%, rgba(212, 175, 55, 0.5) 2px, transparent 2px),
    radial-gradient(circle at 90% 60%, rgba(255, 215, 0, 0.6) 1.5px, transparent 1.5px),
    radial-gradient(circle at 30% 10%, rgba(212, 175, 55, 0.5) 2px, transparent 2px),
    radial-gradient(circle at 70% 90%, rgba(255, 215, 0, 0.6) 1.5px, transparent 1.5px),
    radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.5) 2px, transparent 2px),
    radial-gradient(circle at 15% 65%, rgba(255, 215, 0, 0.6) 1.5px, transparent 1.5px),
    radial-gradient(circle at 85% 35%, rgba(212, 175, 55, 0.5) 2px, transparent 2px),
    radial-gradient(circle at 25% 75%, rgba(255, 215, 0, 0.6) 1.5px, transparent 1.5px),
    radial-gradient(circle at 75% 25%, rgba(212, 175, 55, 0.5) 2px, transparent 2px);
  background-size: 300px 300px, 280px 280px, 320px 320px, 290px 290px, 310px 310px,
                   300px 300px, 285px 285px, 315px 315px, 295px 295px, 305px 305px,
                   300px 300px, 280px 280px, 320px 320px;
  background-position: 0 0, 100px 50px, 200px 100px, 300px 150px, 400px 200px,
                       500px 250px, 600px 300px, 350px 350px, 450px 400px, 550px 450px,
                       650px 500px, 750px 550px, 850px 600px;
  animation: sparkle 20s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
  filter: blur(0.5px);
}

@keyframes sparkle {
  0%, 100% {
    opacity: 0.5;
    transform: translateY(0) scale(1);
  }
  50% {
    opacity: 0.8;
    transform: translateY(-3px) scale(1.01);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 769px) {
  .hero {
    height: 85vh;
    min-height: 600px;
    padding: 2rem;
    max-width: none;
  }
  
  .hero h1 {
    font-size: 4.5rem;
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
  }
  
  .hero-description {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    max-width: 900px;
  }
}

/* Use expanded palette in hero text accents */
.headline-main {
  color: var(--warm-neutral);
}

.indian-text {
  color: var(--subtle-red);
}

.roots-text {
  color: var(--deep-blue);
}

/* Animate parallax layers gently */
.parallax-layer {
  transition: transform 0.3s ease-out;
  will-change: transform;
}

/* Floating animation for parallax layers */
@keyframes floatWave {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.parallax-layer:nth-child(1) {
  animation: floatWave 6s ease-in-out infinite;
}

.parallax-layer:nth-child(2) {
  animation: floatWave 5s ease-in-out infinite;
  animation-delay: 1s;
}

.parallax-layer:nth-child(3) {
  animation: floatWave 7s ease-in-out infinite;
  animation-delay: 0.5s;
}

.parallax-layer:nth-child(4) {
  animation: floatWave 6.5s ease-in-out infinite;
  animation-delay: 1.5s;
}

/* Parallax Layers */
.parallax-layer {
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  will-change: transform;
  pointer-events: none;
  opacity: 0.7;
  animation: floatAnimation 6s ease-in-out infinite alternate;
}

.parallax-layer[data-speed="0.1"] {
  top: 10%;
  left: 5%;
  width: 120px;
  height: 120px;
  z-index: 4;
  animation-delay: 0s;
}

.parallax-layer[data-speed="0.2"] {
  top: 20%;
  right: 10%;
  width: 150px;
  height: 150px;
  z-index: 5;
  animation-delay: 1.5s;
}

.parallax-layer[data-speed="0.3"] {
  bottom: 15%;
  left: 15%;
  width: 100px;
  height: 100px;
  z-index: 6;
  animation-delay: 3s;
}

.parallax-layer[data-speed="0.4"] {
  bottom: 20%;
  right: 20%;
  width: 130px;
  height: 130px;
  z-index: 7;
  animation-delay: 4.5s;
}

/* Floating animation for parallax layers */
@keyframes floatAnimation {
  0% {
    transform: translateY(0) translateX(0);
  }
  100% {
    transform: translateY(-15px) translateX(10px);
  }
}

/* Microanimations for headline and CTA */
.headline-main {
  animation: pulseScale 4s ease-in-out infinite;
}

.cta-button.cta-enhanced {
  animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseScale {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow:
      0 4px 15px rgba(212, 175, 55, 0.4),
      inset 0 0 10px rgba(255, 255, 255, 0.2);
  }
  50% {
    box-shadow:
      0 8px 25px rgba(212, 175, 55, 0.7),
      inset 0 0 15px rgba(255, 255, 255, 0.4);
  }
}

.indian-text {
  background: linear-gradient(45deg, #D4AF37, #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 1px 2px rgba(212, 175, 55, 0.6);
  font-weight: 700;
  font-style: italic;
  position: relative;
  display: inline-block;
  padding: 0 0.1em;
  /* added subtle emboss effect */
  text-shadow:
    0 1px 0 #b38f00,
    0 2px 0 #a07e00,
    0 3px 0 #8c6c00,
    0 4px 0 #7a5c00,
    0 5px 0 #6a4d00,
    0 6px 1px rgba(0,0,0,0.05),
    0 0 3px rgba(255, 215, 0, 0.3),
    0 0 6px rgba(255, 215, 0, 0.2);
}

.indian-text::after {
  content: '';
  position: absolute;
  bottom: -0.1em;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent, #D4AF37, transparent);
  opacity: 0.5;
}

/* New handwritten style for Roots */
.roots-text {
  font-family: 'Dancing Script', cursive;
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(45deg, #D4AF37, #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  vertical-align: bottom;
  margin-left: 0.2em;
  /* enhanced gold foil emboss effect */
  text-shadow:
    0 1px 0 #b38f00,
    0 2px 0 #a07e00,
    0 3px 0 #8c6c00,
    0 4px 0 #7a5c00,
    0 5px 0 #6a4d00,
    0 6px 1px rgba(0,0,0,0.05),
    0 0 3px rgba(255, 215, 0, 0.5),
    0 0 6px rgba(255, 215, 0, 0.4);
  animation: fadeInSlide 1.5s ease forwards;
}

/* Refine headline main */
.headline-main {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 3.8rem;
  letter-spacing: 0.12em;
  color: #FFFFFF;
  /* softened drop shadow for cleaner look */
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  opacity: 1;
  display: inline-block;
  margin-bottom: 0.2rem;
}

/* Animations */
@keyframes fadeInSlide {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animate hero description and cta */
.hero-description, .hero-cta {
  opacity: 1;
}

/* Enhance hero overlay with gentle shimmer */
.hero-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0.05) 100%
  );
  animation: shimmer 6s linear infinite;
  pointer-events: none;
  z-index: 3;
}

/* Subtle Indian motifs watermark in hero background */
.hero-watermark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/indian-pattern.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.08;
  pointer-events: none;
  z-index: 1;
}

/* Enhanced CTA button with glassmorphism and 3D effect */
.cta-button.cta-enhanced {
  position: relative;
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 1.3rem;
  font-weight: 700;
  color: #D4AF37;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid #D4AF37;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  box-shadow:
    0 4px 15px rgba(212, 175, 55, 0.4),
    inset 0 0 10px rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  z-index: 5;
}

.cta-button.cta-enhanced:hover,
.cta-button.cta-enhanced:focus {
  color: #fff;
  background: rgba(212, 175, 55, 0.8);
  border-color: #fff;
  box-shadow:
    0 6px 20px rgba(212, 175, 55, 0.8),
    inset 0 0 15px rgba(255, 255, 255, 0.4);
  outline: none;
}

/* Shimmer effect on CTA button text */
.cta-button.cta-enhanced .button-text {
  position: relative;
  z-index: 2;
  display: inline-block;
  overflow: hidden;
}

.cta-button.cta-enhanced .button-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  animation: shimmerMove 2.5s infinite;
  pointer-events: none;
  z-index: 3;
}

@keyframes shimmerMove {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}

/* Subtext below CTA */
.cta-subtext {
  margin-top: 0.6rem;
  font-size: 1rem;
  color: #f0e6c8;
  font-style: italic;
  text-align: center;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

/* Subtle Indian pattern watermark */
.hero-watermark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/indian-pattern.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.08;
  pointer-events: none;
  z-index: 1;
}

/* Gold foil / embossed effect on tagline */
.headline-main, .indian-text, .roots-text {
  position: relative;
  color: #D4AF37;
  background: linear-gradient(45deg, #F3C623, #D4AF37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 1px 0 #b38f00,
    0 2px 0 #a07e00,
    0 3px 0 #8c6c00,
    0 4px 0 #7a5c00,
    0 5px 0 #6a4d00,
    0 6px 1px rgba(0,0,0,0.05),
    0 0 3px rgba(255, 215, 0, 0.3),
    0 0 6px rgba(255, 215, 0, 0.2);
  font-weight: 900;
  letter-spacing: 0.1em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Enhanced CTA button with glassmorphism and 3D effect */
.cta-button.cta-enhanced {
  position: relative;
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 1.3rem;
  font-weight: 700;
  color: #D4AF37;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid #D4AF37;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  box-shadow:
    0 4px 15px rgba(212, 175, 55, 0.4),
    inset 0 0 10px rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  z-index: 5;
}

.cta-button.cta-enhanced:hover,
.cta-button.cta-enhanced:focus {
  color: #fff;
  background: rgba(212, 175, 55, 0.8);
  border-color: #fff;
  box-shadow:
    0 6px 20px rgba(212, 175, 55, 0.8),
    inset 0 0 15px rgba(255, 255, 255, 0.4);
  outline: none;
}

/* Shimmer effect on CTA button text */
.cta-button.cta-enhanced .button-text {
  position: relative;
  z-index: 2;
  display: inline-block;
  overflow: hidden;
}

.cta-button.cta-enhanced .button-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  animation: shimmerMove 2.5s infinite;
  pointer-events: none;
  z-index: 3;
}

@keyframes shimmerMove {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}

/* Subtext below CTA */
.cta-subtext {
  margin-top: 0.6rem;
  font-size: 1rem;
  color: #f0e6c8;
  font-style: italic;
  text-align: center;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}


.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, transparent 30%, transparent 70%, rgba(0, 0, 0, 0.15) 100%);
  z-index: 2;
  backdrop-filter: none;
  pointer-events: none;
}

.hero-overlay::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at center,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 100%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  padding: 0 2rem;
  margin: 0 auto;
  opacity: 1;
  backdrop-filter: blur(0.5px);
}

.hero-badge {
  display: inline-block;
  margin-bottom: 2rem;
  padding: 0.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.badge-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #D4AF37;
  text-transform: uppercase;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #FFFFFF;
  letter-spacing: 0.08em;
  opacity: 1;
  text-shadow: 
    0 2px 10px rgba(0, 0, 0, 0.4),
    0 4px 20px rgba(0, 0, 0, 0.2),
    0 0 30px rgba(255, 255, 255, 0.1);
  position: relative;
}

.hero-subtitle {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: #FFFFFF;
  text-transform: uppercase;
  margin-bottom: 1rem;
  opacity: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  position: relative;
  padding-bottom: 1.5rem;
}

.hero-subtitle::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: #D4AF37;
  opacity: 0;
  animation: fadeIn 0.3s ease forwards 0.6s;
}


.hero-description {
  max-width: 800px;
  margin: 0 auto 2.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  line-height: 1.7;
  padding: 0 1rem;
  color: rgba(255, 255, 255, 0.95);
  opacity: 1;
  text-shadow: 
    0 2px 8px rgba(0, 0, 0, 0.3),
    0 1px 3px rgba(0, 0, 0, 0.2);
  font-weight: 300;
  letter-spacing: 0.02em;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.7rem 2rem;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: all 0.2s ease-in-out;
  opacity: 1;
}

.cta-button.primary {
  background: linear-gradient(135deg, #D4AF37 0%, #FFD700 50%, #D4AF37 100%);
  color: #1A2942;
  box-shadow: 
    0 6px 20px rgba(212, 175, 55, 0.4),
    0 12px 40px rgba(212, 175, 55, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  font-weight: 600;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
}

.cta-button.primary:hover {
  transform: translateY(-2px) scale(1.02);
  background: linear-gradient(135deg, #FFD700 0%, #D4AF37 50%, #FFD700 100%);
  box-shadow: 
    0 8px 30px rgba(212, 175, 55, 0.5),
    0 16px 50px rgba(212, 175, 55, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.button-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.cta-button:hover .button-icon {
  transform: translateX(5px);
}

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-bottom: 4rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(183, 146, 74, 0.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  opacity: 1;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1A2942;
  margin-bottom: 0.5rem;
  background: linear-gradient(45deg, #1A2942, #2A3952);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #4A5568;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, 
    rgba(183, 146, 74, 0),
    rgba(183, 146, 74, 0.2),
    rgba(183, 146, 74, 0)
  );
}

.scroll-indicator {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  animation: fadeIn 1s ease forwards 2s;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom,
    rgba(183, 146, 74, 0.5),
    rgba(183, 146, 74, 0)
  );
  animation: scrollLine 2s ease-in-out infinite;
}

.scroll-indicator span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #B7924A;
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  50.1% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* Product Teaser Enhanced */
.product-teaser {
  position: relative;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  z-index: 2;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
  margin-top: -3.5rem; /* Increased negative margin-top to move teaser further up */
  margin-bottom: 2rem;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
}

.hero {
  height: calc(100vh - 80px - 2rem); /* Adjust height to be viewport height minus menu bar height and spacing */
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Vertically center content */
  align-items: center;
  text-align: center;
  color: #1A2A44;
  background-color: #f5f5f5;
  transition: all 0.5s ease-out;
}

.teaser-container {
  max-width: none;
  margin: 0 auto;
  display: flex;
  gap: 2.5rem;
  padding: 0 2rem;
  align-items: center;
  -webkit-animation: scroll 60s linear infinite;
  -moz-animation: scroll 60s linear infinite;
  -o-animation: scroll 60s linear infinite;
  animation: scroll 60s linear infinite;
  width: max-content;
  will-change: transform;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.teaser-container:hover {
  -webkit-animation-play-state: paused;
  -moz-animation-play-state: paused;
  -o-animation-play-state: paused;
  animation-play-state: paused;
}

.teaser-card {
  position: relative;
  flex: 0 0 200px;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.teaser-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom,
    rgba(26, 42, 68, 0.2),
    rgba(26, 42, 68, 0.6)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.teaser-card:hover .card-overlay {
  opacity: 1;
}

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

.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(5px);
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  text-align: center;
}

.teaser-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #1A2A44;
  margin: 0;
  letter-spacing: 0.05em;
  text-align: center;
  padding-right: 1.5rem;
}

.card-arrow {
  position: absolute;
  right: 1rem;
  font-size: 1.2rem;
  color: #D4AF37;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.4s ease;
}

.teaser-card:hover .card-arrow {
  opacity: 1;
  transform: translateX(0);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% / 2));
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .product-teaser {
    display: none;
  }

  .teaser-card {
    flex: 0 0 160px;
  }

  .teaser-card img {
    height: 90px;
  }

  .card-content {
    padding: 0.5rem;
  }

  .teaser-card h3 {
    font-size: 0.75rem;
    padding-right: 1rem;
  }

  .hero {
    height: auto;
    min-height: 60vh;
    padding: 2rem 1rem;
  }

  .hero h1 {
    font-size: 2.5rem;
    margin: 0.5rem 0;
  }

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

  .hero-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
  }

  .hero-cta {
    margin-bottom: 1.5rem;
    flex-direction: column;
    align-items: center;
  }

  .cta-button {
    padding: 0.875rem 1.75rem;
    font-size: 0.9rem;
    width: 100%;
    text-align: center;
  }

  .hero-badge {
    transform: scale(0.9);
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 50vh;
    padding: 2rem 1rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .hero-description {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
  }

  .product-teaser {
    padding: 0.5rem 0;
  }

  .teaser-container {
    gap: 1rem;
  }

  .teaser-card {
    flex: 0 0 auto;
  }

  .teaser-card img {
    height: 70px;
  }

  .card-content {
    padding: 0.4rem;
  }

  .teaser-card h3 {
    font-size: 0.6rem;
    padding-right: 0.5rem;
  }

  .cta-button {
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
  }

  .hero-badge {
    transform: scale(0.8);
  }

  .teaser-container {
    overflow-x: auto;
    padding-bottom: 1rem;
  }
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .hero h1 {
    font-size: 3.8rem;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 100vh;
    padding: 5vh 1rem;
  }

  .hero h1 {
    font-size: 2.8rem;
    letter-spacing: 0.08em;
  }

  .hero-description {
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  }

  .hero-stats {
    flex-direction: column;
    gap: 2rem;
  }
  
  .stat-divider {
    display: none;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 1rem;
  }
  
  .cta-button {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero h1 .accent {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
}

/* Product Showcase Section */
#products {
  padding-top: 0;
  padding-bottom: 4rem;
  background-color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

/* Add IDs to product sections */
#spices-section {
  scroll-margin-top: 80px;
}

#sauces-section {
  scroll-margin-top: 80px;
}

#handicraft-section {
  scroll-margin-top: 80px;
}

#garments-section {
  scroll-margin-top: 80px;
}

#jewellery-section {
  scroll-margin-top: 80px;
}

#millet-section {
  scroll-margin-top: 80px;
}

#products::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.2), transparent);
}

#products h2 {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  color: #1A2942;
  margin-bottom: 1rem;
  font-size: 48px;
  letter-spacing: 0.03em;
}

#products .section-title {
  color: #1A2942;
  margin-bottom: 1rem;
}

#products .section-subtitle {
  color: #4A5568;
  margin-bottom: 4rem;
}

.product-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 100%;
  margin: 0 auto 3rem;
  padding: 0 1rem;
}

.card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: all 0.4s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #1A2942;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, #D4AF37, #FFD700);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

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

.card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  will-change: transform;
}

.card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(212, 175, 55, 0.3);
}

.card:hover img {
  transform: scale(1.03);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card h3 {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 1rem;
  color: #1A2942;
  position: relative;
  padding-bottom: 1rem;
}

.card h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background: linear-gradient(to right, #D4AF37, #FFD700);
}

.card p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: #4A5568;
}

@media (max-width: 768px) {
  .product-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  #all-products .product-section {
    grid-template-columns: 1fr;
    padding: 1rem;
  }
  
  .product-section img {
    height: 300px;
  }

  .card {
    padding: 1rem;
  }

  .card img {
    height: 200px;
  }

  .card h3 {
    font-size: 20px;
  }

  .card p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .card img {
    height: 150px;
  }

  .card h3 {
    font-size: 18px;
  }

  .card p {
    font-size: 12px;
  }
}

/* Products Full Page */
#all-products {
  padding-top: 2rem;
  background-color: #FFFFFF;
  opacity: 1;
  transform: none;
}

#all-products h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  color: #1A2942;
  margin-bottom: 1rem;
  font-size: 48px;
  text-align: center;
  letter-spacing: 0.03em;
  opacity: 1;
}


.product-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 6rem;
  padding: 2rem;
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  will-change: transform, opacity;
}

.product-section.visible {
  animation: fadeInUp 0.8s ease forwards;
}

.product-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.product-section img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-section:hover img {
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
}

.product-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: #1A2942;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 1rem;
}

.product-info h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, #D4AF37, #FFD700);
}

.product-info p.description {
  font-size: 16px;
  line-height: 1.8;
  color: #4A5568;
  margin-bottom: 1.5rem;
}

.product-info ul.details {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.product-info ul.details li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: #1A2942;
}

.product-info ul.details li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #D4AF37;
  font-size: 1.2em;
}

.inquire-btn {
  align-self: flex-start;
  padding: 0.75rem 2rem;
  background: linear-gradient(45deg, #D4AF37, #FFD700);
  color: #1A2942;
  border: none;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}

.inquire-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}


  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

  background: #1A2942;
  color: #FFFFFF;
  transform: scale(1.1);
}

  display: block;
}

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

  text-align: center;
  margin-bottom: 2rem;
}

  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: #1A2942;
  margin-bottom: 1rem; /* Increased margin */
}

  font-family: 'Montserrat', sans-serif;
  color: #4A5568;
  font-size: 16px;
}

  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: left;
  line-height: 1.3;
  font-size: 0.9rem;
}

  margin-top: 0;
  margin-bottom: 1rem; /* Increased margin */
  text-align: left;
  font-size: 0.9rem;
}

  font-size: 1rem;
  font-weight: 600;
}

  font-size: 0.95rem;
  font-weight: 600;
}

  text-align: left;
  font-size: 1rem;
  font-weight: 600;
}

  text-align: left;
}

  text-align: center;
  font-size: 1.3rem;
  font-weight: 700;
}

  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-section h4 {
  font-family: 'Playfair Display', serif;
  color: #1A2942;
  margin-bottom: 1.5rem; /* Increased margin */
  font-size: 20px;
  position: relative;
  padding-bottom: 0.5rem;
}

.info-section h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(to right, #D4AF37, #FFD700);
}

.info-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-section ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: #4A5568;
}

.info-section ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #D4AF37;
  font-size: 1.2em;
}

  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-btn {
  padding: 1rem 3rem;
  background: linear-gradient(45deg, #D4AF37, #FFD700);
  color: #1A2942;
  border: none;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 16px;
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

@media (max-width: 992px) {
  .product-section {
    grid-template-columns: 1fr;
  }
  
  .product-section img {
    height: 300px;
  }
}

/* About Us Section */
.hero-about {
  position: relative;
  height: 400px;
  background-image: url('images/about-hero.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #FFFFFF;
  margin: -3rem -2rem 3rem;
  padding: 0 2rem;
}

.hero-about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom,
    rgba(26, 41, 66, 0.8),
    rgba(26, 41, 66, 0.6)
  );
}

.hero-about h2 {
  position: relative;
  color: #FFFFFF;
  font-size: 48px;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.story-values-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 4rem;
}

.our-story {
  background: #FFFFFF;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  width: 100%;
  margin-bottom: 0;
}

.story-content {
  font-size: 16px;
  line-height: 1.8;
  color: #4A5568;
  margin-bottom: 2rem;
}

.story-content p {
  margin-bottom: 1.5rem;
}

.story-content p:last-child {
  margin-bottom: 0;
}

/* Remove hidden content and read more styles since we don't need them anymore */
.hidden-content {
  display: block;
  opacity: 1;
}

.read-more-btn {
  display: none;
}

/* Update milestones to be part of the story box */
.milestones {
  background: transparent;
  padding: 2rem 0 0 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  position: relative;
  margin: 0;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.milestone-title {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  color: #1A2942;
  margin-bottom: 2rem;
  position: relative;
  padding: 0;
}

.timeline-track {
  position: relative;
  padding: 2rem 0;
  overflow: visible;
  width: 100%;
}

.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: linear-gradient(to bottom, rgba(212, 175, 55, 0.3), rgba(255, 215, 0, 0.3));
}

.milestone-items {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  align-items: center;
  padding: 2rem 0;
  gap: 3rem;
}

.milestone-items:hover {
  animation-play-state: paused;
}

.milestone-item {
  position: relative;
  width: 100%;
  max-width: 800px;
  padding: 0;
  flex-shrink: 0;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.milestone-dot {
  width: 12px;
  height: 12px;
  background: #D4AF37;
  border: 2px solid #FFFFFF;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  box-shadow: 0 0 0 2px #D4AF37;
  z-index: 2;
}

.milestone-content {
  text-align: center;
  background: #FFFFFF;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 100%;
}

.milestone-item:hover .milestone-content {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.milestone-year {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: #B8860B; /* Darker golden color for better visibility */
  margin-bottom: 0.5rem;
  font-weight: 700;
  text-shadow: 0 0 5px rgba(212, 175, 55, 0.8);
}

.milestone-text {
  color: #4A5568;
  font-size: 14px;
  line-height: 1.5;
}

/* Connecting lines - vertical */
.milestone-item::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 3rem;
  background: rgba(212, 175, 55, 0.3);
  left: 50%;
  transform: translateX(-50%);
  top: 12px;
}

/* Remove connecting line from last milestone */
.milestone-item:last-child::after {
  display: none;
}

/* Gradient overlays - removed for vertical layout */

/* Keyframes for the timeline animation */
@keyframes slideTimeline {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .milestones {
    padding: 2rem 0;
  }

  .timeline-track {
    padding: 1.5rem 0;
  }

  .milestone-item {
    width: 100%;
    padding: 0;
    height: auto;
  }

  .milestone-content {
    padding: 1rem;
    max-width: 100%;
    text-align: center;
  }

  .milestone-year {
    font-size: 20px;
  }

  .milestone-text {
    font-size: 13px;
  }

  .milestone-item::after {
    height: 2rem;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .milestone-dot {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .timeline-line {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Commitment Section */
.commitment-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.commitment-col {
  background: #FFFFFF;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.commitment-col:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.commitment-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
  fill: #D4AF37;
}

.commitment-col h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: #1A2942;
  margin-bottom: 1rem;
}

.commitment-col p {
  color: #4A5568;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.commitment-col p:last-child {
  margin-bottom: 0;
}

.commitment-image {
  position: relative;
  margin-top: 4rem;
}

.commitment-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-box {
  position: relative;
  bottom: auto;
  right: auto;
  background: #FFFFFF;
  padding: 2rem 1rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  max-width: 100%;
}

.testimonial-text {
  font-style: italic;
  color: #1A2942;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  font-family: 'Playfair Display', serif;
  color: #1A2942;
  margin: 0;
  font-size: 16px;
}

.author-info p {
  color: #4A5568;
  margin: 0;
  font-size: 14px;
}


@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 250px;
    flex-direction: column;
    background: rgba(11, 31, 58, 0.98);
    backdrop-filter: blur(10px);
    padding: 80px 2rem 2rem;
    gap: 2rem;
    transition: right 0.3s ease-in-out;
    z-index: 998;
  }
  .nav-links.active {
    right: 0;
  }
  .hamburger {
    display: flex;
  }
  .logo {
    font-size: 20px;
    height: 50px;
    line-height: 1;
  }

  .product-info p.description {
    font-size: 14px;
  }

  .commitment-container {
    grid-template-columns: 1fr;
  }

  .commitment-image {
    margin-top: 2rem;
  }

  .testimonial-box {
    position: static;
    max-width: 100%;
    margin-top: 2rem;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 18px;
    height: 40px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact Section */
.hero-contact::before {
  content: '';
  position: absolute;
}

#contact-order {
  padding: 4rem 1rem;
  background-color: #f9f9f9;
  color: #1A2942;
}

.contact-order-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.contact-order-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-order-block {
  flex: 1 1 280px;
  background: #fff;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact-order-block h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: #1A2942;
  margin: 1rem 0 1rem 0;
}

.contact-order-block p,
.contact-order-block address {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: #4A5568;
  margin: 0.25rem 0;
}

.contact-order-block a {
  color: #D4AF37;
  text-decoration: none;
  font-weight: 600;
}

.contact-order-block a:hover,
.contact-order-block a:focus {
  text-decoration: underline;
}

.contact-order-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .contact-order-grid {
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .hero-contact {
    height: 300px;
  }

  .hero-contact h2 {
    font-size: 36px;
  }

  .hero-contact h3 {
    font-size: 18px;
  }
}

.hero-contact h2 {
  position: relative;
  color: #FFFFFF;
  font-size: 48px;
  margin: 0 0 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-contact h3 {
  position: relative;
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 400;
  margin: 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.contact-form {
  max-width: 100%;
  margin: 0 auto;
  padding: 2rem 1rem;
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #D4AF37;
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

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

.submit-btn {
  display: block;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(45deg, #D4AF37, #FFD700);
  color: #1A2942;
  border: none;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 16px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.form-error {
  color: #ff0000;
  font-size: 14px;
  margin-top: -0.5rem;
  margin-bottom: 1rem;
  display: none;
}

.form-error.visible {
  display: block;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-about {
    text-align: center;
  }

  .footer-column {
    text-align: center;
  }
}

.footer-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-about {
  max-width: 100%;
  padding: 0 1rem;
}

.footer-logo {
  font-family: 'Cinzel', serif;
  font-size: 24px;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #FFFFFF, #D4AF37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}


.footer-column h3 {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #D4AF37;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a,
.footer-links li {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #D4AF37;
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-about {
    text-align: center;
  }

  .footer-column {
    text-align: center;
  }
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-about {
    grid-column: 1 / -1;
    max-width: none;
    text-align: center;
  }
  
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-column {
    text-align: center;
  }
  
  .footer-column h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

.inline-style-1 {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.inline-style-2 {
  margin-left: 0.5rem;
  font-weight: 700;
}

.inline-style-3 {
  opacity: 0.9;
}

.inline-style-4 {
  max-width: 600px !important;
  margin: 0 auto !important;
  text-align: left !important;
  padding: 3rem 2rem 0rem 1rem !important;
}

.inline-style-5 {
  font-weight: 700;
  font-size: 4rem;
  margin-bottom: 1rem;
  color: #F3C623;
}

.inline-style-6 {
  font-size: 1.125rem;
  color: #F4F6FF;
  margin-bottom: 1.5rem;
}

.inline-style-7 {
  font-weight: 600;
  font-size: 1.125rem;
  padding: 0.5rem 1.5rem;
}

.inline-style-8 {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.inline-style-9 {
  flex: 1;
  min-width: 280px;
}

.inline-style-10 {
  flex: 1;
  min-width: 280px;
}

.inline-style-11 {
  background: linear-gradient(135deg, #0B1F3A 0%, #1A2942 100%);
}

/* Smooth Animations */
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.product-section:nth-child(odd) {
  animation: slideInLeft 0.8s ease forwards;
}

.product-section:nth-child(even) {
  animation: slideInRight 0.8s ease forwards;
}

.product-section {
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  will-change: transform, opacity;
}

.product-section.visible {
  animation: fadeInUp 0.8s ease forwards;
}

.milestone-item {
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
}

.milestone-item.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

/* Card Hover Effects */
.card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.card img {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Product Teaser Animation */
.teaser-container {
  -webkit-animation: scroll 60s linear infinite;
  -moz-animation: scroll 60s linear infinite;
  -o-animation: scroll 60s linear infinite;
  animation: scroll 60s linear infinite;
  will-change: transform;
}

@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-100% / 2));
    transform: translateX(calc(-100% / 2));
  }
}

@-moz-keyframes scroll {
  0% {
    -moz-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -moz-transform: translateX(calc(-100% / 2));
    transform: translateX(calc(-100% / 2));
  }
}

@-o-keyframes scroll {
  0% {
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -o-transform: translateX(calc(-100% / 2));
    transform: translateX(calc(-100% / 2));
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% / 2));
  }
}

  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

  color: #2E86C1 !important;
  text-align: left !important;
  line-height: 1.5;
  margin: 0.25rem 0 !important;
  padding: 0 !important;
  font-size: 1rem;
}

  display: inline-block;
  margin-right: 0.5rem;
  color: #1F618D !important; /* Darker blue */
}

  color: #2E86C1 !important;
  text-align: left !important;
  line-height: 1.5;
  margin: 0.25rem 0 !important;
  padding-left: 1.5rem !important;
  font-size: 1rem;
  list-style-position: inside;
}

  margin: 0.25rem 0 !important;
  padding-left: 0.5rem !important;
  margin-bottom: 0.5rem;
}

  border: none;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  margin: 1rem 0;
}

  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
}


/* Responsive Optimizations */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 40px;
    margin-bottom: 1rem;
  }

  .hero h2 {
    font-size: 18px;
    margin-top: 1rem;
    margin-bottom: 2rem;
  }

  .product-section {
    transform: none;
    animation: fadeInUp 0.8s ease forwards;
  }
}

/* Section Titles and Subtitles */
.section-title {
  position: relative;
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  width: 100%;
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  color: #1A2942;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(to right, 
    rgba(212, 175, 55, 0),
    rgba(212, 175, 55, 1) 20%,
    rgba(212, 175, 55, 1) 80%,
    rgba(212, 175, 55, 0)
  );
  margin-top: 1rem;
}

.section-subtitle {
  text-align: center;
  color: #4A5568;
  font-size: 18px;
  max-width: 700px;
  margin: -2rem auto 4rem;
  font-weight: 300;
  line-height: 1.6;
  display: block;
  width: 100%;
}

/* About section specific styles */
.hero-about .section-subtitle {
  color: #FFFFFF;
  margin: 0 auto 2rem;
  font-size: 20px;
  font-weight: 400;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

/* Contact section specific styles */
.hero-contact {
  position: relative;
  height: 400px;
  background-image: url('images/tbg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #FFFFFF;
  margin: -3rem -2rem 3rem;
  padding: 0 2rem;
}

.hero-contact .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
  margin: 0 auto;
  font-size: 20px;
  font-weight: 400;
}


/* About Section */
.hero-about {
  text-align: center;
  padding: 6rem 2rem;
}

.hero-about .section-title {
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  text-align: center;
  width: 100%;
}

.hero-about .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
  margin: 0 auto 2rem;
}

/* Products Section */
#products {
  padding: 6rem 0 4rem;
  text-align: center;
}

#products .section-title {
  margin-bottom: 1.5rem;
  text-align: center;
}

#products .section-subtitle {
  margin: 0 auto 4rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .section-title {
    font-size: 36px;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
  }

  .section-subtitle {
    font-size: 16px;
    margin: -1rem auto 3rem;
    padding: 0 1rem;
  }

  .team-section {
    padding: 4rem 0;
  }

  .hero-about {
    padding: 4rem 1rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 32px;
  }

  .section-subtitle {
    font-size: 15px;
  }
}

/* Hero Section */
.hero-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  color: #4A5568;
  margin-bottom: 2rem;
}

  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: #1A2942;
  margin-bottom: 0.5rem;
}

/* Info Section */
.info-title {
  font-family: 'Playfair Display', serif;
  color: #1A2942;
  margin-bottom: 1rem;
  font-size: 20px;
  position: relative;
  padding-bottom: 0.5rem;
}

.info-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(to right, #D4AF37, #FFD700);
}

/* Commitment Section */
.commitment-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: #1A2942;
  margin-bottom: 1rem;
}

/* Footer */
footer {
  background: linear-gradient(to right, #0B1F3A, #1A2942);
  color: #FFFFFF;
  padding: 4rem 0 0;
}

.footer-title {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #D4AF37;
}

@media (max-width: 768px) {
    font-size: 24px;
  }

  .info-title {
    font-size: 18px;
  }

  .commitment-title {
    font-size: 22px;
  }

  .footer-title {
    font-size: 16px;
  }
}

.section-header {
  text-align: center;
  max-width: 100%;
  margin: 0 auto 3rem;
  padding: 0 1rem;
}

.section-header .section-title {
  margin-bottom: 1.5rem;
}

.section-header .section-subtitle {
  margin: 0 auto 1rem;
}

/* Hero About Section */
.hero-about .section-header {
  max-width: 800px;
  margin: 0 auto;
}


/* Products Section */
#products .section-header {
  max-width: 900px;
  margin: 0 auto 4rem;
}

/* Contact Section */
.hero-contact .section-header {
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .section-header {
    padding: 0 1rem;
    margin: 0 auto 2rem;
  }
}



.inline-style-3 {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inline-style-4 {
  text-align: center;
  color: #fff;
  padding: 2rem;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.inline-style-5 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.inline-style-6 {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.inline-style-7 {
  background-color: #f3c623;
  color: #222;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.inline-style-8 {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  padding: 20px;
  border-radius: 8px;
  background-color: #f9f9f9;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.inline-style-9 {
  flex: 1;
  padding-right: 20px;
  border-right: 1px solid #ddd;
}

.inline-style-10 {
  flex: 1;
  padding-left: 20px;
}

.inline-style-11 {
  background: url('images/contact-hero.jpg') center/cover no-repeat;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Animation for fade-in and slide-up */
@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.animate-on-scroll.animated {
  animation: fadeSlideUp 0.6s ease forwards;
}

/* Product pages should show animate-on-scroll elements immediately */
body:has(.product-hero) .animate-on-scroll {
  opacity: 1;
  transform: translateY(0);
}

/* Hover elevation effect */
.contact-order-block {
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.contact-order-block:hover,
.contact-order-block:focus {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-6px);
  outline: none;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .animate-on-scroll {
    transform: none; /* Disable translate on small screens for better performance */
  }
  .animate-on-scroll.animated {
    animation: fadeSlideUp 0.6s ease forwards;
  }
}

/* Extra small devices (phones, less than 360px) */
@media (max-width: 360px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .logo {
    font-size: 16px;
  }
  
  .contact-form {
    padding: 1rem 0.5rem;
  }
  
    margin: 0.5rem;
    padding: 1rem;
  }
}

/* Large screens (desktops, more than 1200px) */
@media (min-width: 1200px) {
  .hero h1 {
    font-size: 4.5rem;
  }
  
  .section-title {
    font-size: 48px;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
  }
}

/* Extra large screens (large desktops, more than 1440px) */
@media (min-width: 1440px) {
  .hero h1 {
    font-size: 5rem;
  }
  
  .section-title {
    font-size: 52px;
  }
  
  .container {
    max-width: 1400px;
  }
}

/* Landscape orientation for mobile devices */
@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    height: 100vh;
    padding: 2rem 0;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
}

/* Touch-friendly improvements */
@media (max-width: 768px) {
  /* Ensure no top spacing on mobile */
  body {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
  
  /* Ensure minimum touch target size (44px) */
  .hamburger {
    min-width: 44px;
    min-height: 44px;
  }
  
  .inquire-btn,
  .submit-btn,
    min-height: 44px;
    min-width: 44px;
    padding: 12px 24px;
  }
  
  /* Improve button spacing */
  .inquire-btn {
    margin: 0.5rem 0;
    padding: 12px 20px;
    font-size: 16px;
  }
  
    font-size: 24px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Prevent zoom on form inputs */
  input[type="text"],
  input[type="email"],
  textarea {
    font-size: 16px;
  }
  
  /* Better scroll behavior */
  html {
    -webkit-overflow-scrolling: touch;
  }
  
  
  /* Improve product cards on mobile */
  .product-cards {
    gap: 1rem;
  }
  
  .card {
    margin-bottom: 1rem;
  }
}

/* Tablet specific improvements */
@media (min-width: 768px) and (max-width: 1024px) {
  .hero h1 {
    font-size: 3.5rem;
  }
  
  .section-title {
    font-size: 42px;
  }
  
  .product-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
    margin: 2rem;
    max-width: 90vw;
  }
  
  .contact-order-grid {
    flex-direction: row;
    gap: 2rem;
  }
}

/* Touch feedback for mobile */
.touch-active {
  transform: scale(0.98);
  transition: transform 0.1s ease;
}

.touch-active.card {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Performance optimizations for mobile */
@media (max-width: 768px) {
  /* Reduce animations on mobile for better performance */
  * {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  
  
  /* Reduce motion for users who prefer it */
  @media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
  }
}

/* Mobile-specific header positioning fix */
@media (max-width: 768px) {
  /* Reset any mobile browser default margins/padding */
  html, body {
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden;
    position: relative;
  }
  
  /* Force header to absolute top with negative margins to eliminate any spacing */
  header {
    position: fixed !important;
    top: -1px !important;
    left: -1px !important;
    right: -1px !important;
    width: calc(100vw + 2px) !important;
    margin: 0 !important;
    padding: 0 !important;
    z-index: 9999 !important;
    box-sizing: border-box;
  }
  
  /* Ensure nav container has no spacing */
  nav {
    margin: 0 !important;
    padding: 0.75rem 1rem !important;
    box-sizing: border-box;
  }
  
  /* Ensure no spacing on any element that could cause gaps */
  * {
    box-sizing: border-box;
  }
  
  /* Extra small mobile screens - ensure hero text is fully visible */
  @media (max-width: 480px) {
    .product-hero {
      height: 80vh;
      min-height: 600px;
      padding: 3rem 1rem;
    }
    
    .product-hero h1 {
      font-size: 1.8rem;
      margin-bottom: 1rem;
    }
    
    .product-hero-subtitle {
      font-size: 0.9rem;
      margin-bottom: 2rem;
      line-height: 1.4;
    }
    
    .product-hero-content {
      padding: 0.5rem;
    }
  }
  
  /* Eliminate any spacing between header and hero section */
  main {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
  
  .product-hero {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
  
  /* Override the desktop margin-top rule for mobile */
  .product-hero {
    margin-top: 0 !important;
  }
  
  /* Ensure first element after header has no top spacing */
  main > *:first-child {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
  
  /* Force hero section to start immediately after header */
  section.product-hero {
    margin-top: 0 !important;
    padding-top: 0 !important;
    position: relative;
    top: 0;
  }
  
  /* Ensure no spacing on any section */
  section {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
}
