@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Premium Corporate Theme Palette */
  --primary-dark: #f1f5f9;      /* Slate Gray Background */
  --primary-light: #f8fafc;     /* Subtle Gray/White */
  --accent-orange: #f59e0b;     /* Warm Gold/Amber */
  --accent-gold: #fbbf24;       /* Lighter Gold */
  --text-main: #1e293b;         /* Dark Slate Text */
  --text-muted: #64748b;        /* Muted Text */
  --bg-main: #ffffff;           /* Clean White Background */
  --bg-card: rgba(255, 255, 255, 0.9);
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Outfit', sans-serif;
  
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(15, 23, 42, 0.05);
  --glass-shadow: 0 10px 40px -10px rgba(15, 23, 42, 0.1);
}

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

/* Highlighted Text */
em, .highlight {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Glassmorphism Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.4s ease;
  overflow: visible; /* Required for mega menu dropdown */
}

header .logo {
  display: flex;
  align-items: center;
}

header .logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
  transform: scale(1.6);
  transform-origin: left center;
}

header .logo:hover img {
  transform: scale(1.7);
}

nav ul {
  display: flex;
  gap: 2.5rem;
}

.mega-dropdown {
  position: relative;
}

nav ul li a {
  font-weight: 500;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 0.5rem 0;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-orange);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

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

nav ul li a:hover {
  color: var(--accent-gold);
}

/* Dropdown Navigation */
nav ul li {
  position: relative;
}

nav ul li.dropdown > a {
  padding-right: 1.2rem;
}

nav ul li.dropdown > a::before {
  content: '\f107'; /* FontAwesome down arrow */
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.8rem;
  color: inherit;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 15px);
  left: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  min-width: 240px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 8px 0;
  visibility: hidden;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 0; /* Fix inherited gap from nav ul */
}

/* Invisible bridge so mouse doesn't fall off during gap */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
}

nav ul li.dropdown:hover > .dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.dropdown-menu li {
  position: relative;
  display: block;
}

.dropdown-menu li a {
  padding: 12px 20px;
  color: #1e293b;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: capitalize;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
}

.dropdown-menu li a::after {
  display: none !important; /* override the global nav underline */
}

.dropdown-menu li a:hover {
  color: var(--accent-orange) !important;
  background-color: rgba(249, 115, 22, 0.04);
  padding-left: 30px;
}

/* Left accent bar on hover */
.dropdown-menu li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background-color: var(--accent-orange);
  transform: scaleY(0);
  transition: transform 0.3s ease;
  transform-origin: center;
}

.dropdown-menu li a:hover::before {
  transform: scaleY(1);
}

/* Sub-dropdown */
.dropdown-submenu .dropdown-menu {
  top: -8px;
  left: auto;
  right: calc(100% + 5px);
}

.dropdown-submenu:hover > .dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.dropdown-submenu .dropdown-menu::before {
  top: 0;
  left: auto;
  right: -20px;
  width: 20px;
  height: 100%;
}

.dropdown-submenu > a::before {
  display: none; /* override left accent bar for parent trigger */
}

.dropdown-submenu > a:hover {
  padding-left: 25px; /* keep original padding */
}

.dropdown-submenu > a::after {
  content: '\f105'; /* FontAwesome right arrow */
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: static !important;
  display: inline-block !important;
  width: auto !important;
  height: auto !important;
  background: none !important;
  color: #94a3b8;
  transform: none !important;
  transition: color 0.3s ease;
}

.dropdown-submenu:hover > a::after {
  color: var(--accent-orange);
}

/* Advanced Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.95rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: var(--accent-orange);
  color: #fff;
  border: none;
  box-shadow: 0 10px 20px -5px rgba(2, 132, 199, 0.4);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
  z-index: -1;
  transition: opacity 0.4s ease;
  opacity: 0;
}

.btn-primary:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 25px -5px rgba(2, 132, 199, 0.6);
  color: #fff;
}

.btn-primary:hover::before {
  opacity: 1;
}

/* Sections */
section {
  padding: 4.5rem 5%;
  position: relative;
}

.section-label {
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-gold);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 15px;
}
.section-label::before {
  content: '';
  height: 2px;
  width: 40px;
  background: var(--accent-gold);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

.hero-slider {
  width: 100%;
  height: 85vh; /* Increased banner proportion */
  min-height: 500px;
  max-height: 900px;
  position: relative;
  background: var(--primary-dark);
  overflow: hidden;
  margin-top: 80px; /* Offset for the glass header so banner isn't cropped */
}

.hero-slider .slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: bannerFade 15s infinite;
}

.hero-slider .slide:nth-child(1) { animation-delay: 0s; }
.hero-slider .slide:nth-child(2) { animation-delay: 5s; }
.hero-slider .slide:nth-child(3) { animation-delay: 10s; }

.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  /* Dark, cool slate/navy overlay to dim bright images and create a "warm cool" contrast with gold accents */
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(2, 6, 23, 0.65) 100%);
}

.hero-overlay-content {
  text-align: center;
  max-width: 800px;
  padding: 0 2rem;
  color: #fff;
  animation: fadeInUp 1.5s ease-out;
}

.hero-badge {
  display: inline-block;
  background: rgba(245, 158, 11, 0.2);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: #fcd34d;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.hero-overlay-content h1 {
  font-size: 4rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(245, 158, 11, 0.3), 0 10px 20px rgba(0,0,0,0.5);
  color: #fff;
}

.hero-overlay-content h1 em.highlight-text {
  font-style: normal;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-actions .btn-primary {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  box-shadow: 0 10px 20px -5px rgba(245, 158, 11, 0.4);
}
.hero-actions .btn-primary:hover {
  box-shadow: 0 15px 25px -5px rgba(245, 158, 11, 0.6);
}

.hero-overlay-content p {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  text-shadow: 0 5px 10px rgba(0,0,0,0.5);
  color: #f8fafc;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-outline-light:hover {
  background: #fff;
  color: var(--text-main);
}

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

/* Optional overlay to make header visible if images are bright */
.hero-slider::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 20%);
  pointer-events: none;
}

@keyframes bannerFade {
  0% { opacity: 0; transform: scale(1.02); }
  5% { opacity: 1; transform: scale(1); }
  33% { opacity: 1; transform: scale(1); }
  38% { opacity: 0; transform: scale(1.02); }
  100% { opacity: 0; }
}

/* About Section */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about .timeline-process {
  display: grid;
  grid-template-columns: repeat(2, 1fr) !important; /* Force 2x2 grid on home page */
  gap: 2rem;
}

.about-img-wrapper {
  position: relative;
}

.about-img-wrapper::before {
  content: '';
  position: absolute;
  inset: -20px;
  border: 2px solid var(--accent-orange);
  border-radius: 24px;
  z-index: 0;
  transform: translate(-10px, 10px);
}

.about-img {
  width: 100%;
  border-radius: 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transition: transform 0.5s ease;
}

.about-img-wrapper:hover .about-img {
  transform: translate(-10px, -10px);
}

.about-text p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 1.2rem;
}

/* Statewise Section */
.statewise {
  background: var(--primary-dark);
  text-align: center;
}

.statewise .section-label {
  justify-content: center;
}
.statewise .section-label::before,
.statewise .section-label::after {
  content: '';
  height: 2px;
  width: 40px;
  background: var(--accent-gold);
}

.statewise-container {
  max-width: 1200px;
  margin: 2.5rem auto 0;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  padding: 2rem;
  border-radius: 30px;
  box-shadow: var(--glass-shadow);
  transition: transform 0.5s ease;
}

.statewise-container:hover {
  transform: translateY(-10px);
}

.statewise-container img {
  width: 100%;
  height: auto;
  border-radius: 15px;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.service-card {
  background: var(--bg-main);
  border: 1px solid var(--glass-border);
  padding: 3rem 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.4s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(2,132,199,0.05), rgba(14,165,233,0.05));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-orange);
  box-shadow: 0 20px 40px rgba(2,132,199,0.15);
}

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

.service-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  box-shadow: 0 10px 20px rgba(2,132,199,0.3);
  transition: transform 0.4s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.service-card p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* Products Section */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin-top: 2.5rem;
}

.product-card {
  background: var(--primary-light);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  transition: all 0.4s ease;
  position: relative;
  group: hover;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(15,23,42,0.9));
  z-index: 1;
}

.product-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.product-card:hover {
  transform: translateY(-15px);
  border-color: rgba(249, 115, 22, 0.3);
  box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 40px rgba(249, 115, 22, 0.1);
}

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

.product-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2.5rem 2rem;
  z-index: 2;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.product-card:hover .product-info {
  transform: translateY(0);
}

.product-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.product-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
  opacity: 0;
  transition: opacity 0.4s ease;
  transition-delay: 0.1s;
}

.product-card:hover .product-info p {
  opacity: 1;
}

/* Values Section */
.values {
  background: radial-gradient(circle at center, var(--primary-light) 0%, var(--bg-main) 100%);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 2.5rem;
}

.value-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.value-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at center, rgba(249,115,22,0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.value-card:hover {
  transform: translateY(-10px);
  border-color: rgba(249, 115, 22, 0.5);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

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

.value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, rgba(249,115,22,0.2), rgba(217,70,239,0.2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-orange);
  font-size: 2rem;
  transition: transform 0.4s ease;
}

.value-card:hover .value-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, var(--accent-orange), #d946ef);
  color: #fff;
}

.value-card h4 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}

.value-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Page Headers */
.page-header {
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--bg-main) 100%);
  position: relative;
  margin-top: 80px;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.3;
}

.page-header h1 {
  font-size: 3rem;
  position: relative;
  z-index: 1;
  color: #ffffff;
  text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Contact Section */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

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

.info-item .icon {
  width: 50px;
  height: 50px;
  background: rgba(249,115,22,0.1);
  color: var(--accent-orange);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.info-item h4 {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.info-item p {
  color: var(--text-muted);
}

.contact-form {
  background: var(--primary-light);
  padding: 3rem;
  border-radius: 24px;
  border: 1px solid var(--glass-border);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  width: 100%;
  padding: 1rem 1.5rem;
  background: var(--bg-main);
  border: 1px solid rgba(15, 23, 42, 0.2);
  border-radius: 12px;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.2);
}

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

/* What We Export Section */
.export-grid {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  overflow-x: auto;
  padding-bottom: 2rem;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
  cursor: grab;
}

.export-grid.active {
  cursor: grabbing;
  scroll-snap-type: none; /* Disable snap while dragging for smoother feel */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.export-grid::-webkit-scrollbar {
  display: none;
}

.export-card {
  min-width: 350px;
  max-width: 400px;
  flex: 0 0 auto;
  scroll-snap-align: start;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  user-select: none;
}

.export-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  border-color: var(--accent-orange);
}

.export-card-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-bottom: 2px solid var(--accent-orange);
  pointer-events: none; /* Prevent native image drag */
}

.export-card-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.export-card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.export-card-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  flex-grow: 1;
}

.export-card-btn {
  align-self: flex-start;
  color: var(--accent-orange);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

.export-card-btn:hover {
  gap: 1rem;
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  height: 300px;
  border: 1px solid var(--glass-border);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  color: var(--accent-orange);
  font-size: 3rem;
}

/* Footer */
footer {
  background: #1a252c; /* Exact dark slate background */
  padding: 4rem 5% 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 2rem;
  margin-bottom: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-logo {
  max-width: 250px;
  height: auto;
  margin-top: 1rem;
}

.footer-col h4 {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1.8rem;
  letter-spacing: 0.5px;
}

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

.footer-list li {
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
}

.footer-list li i.fa-angle-double-right {
  color: #f97316;
  margin-right: 12px;
  font-size: 0.85rem;
}

.footer-list li a {
  color: #f97316;
  text-decoration: none;
  font-size: 1.05rem;
  transition: opacity 0.3s ease;
}

.footer-list li a:hover {
  opacity: 0.8;
}

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

.footer-contact-item i {
  color: #f97316;
  font-size: 1.25rem;
  margin-right: 15px;
  margin-top: 3px;
}

.footer-contact-item span,
.footer-contact-item a {
  color: #f97316;
  font-size: 1.05rem;
  line-height: 1.5;
  text-decoration: none;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 1.5rem;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 4px; /* Exact match rounded squares */
  color: #fff;
  font-size: 1.15rem;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.footer-socials a:hover {
  transform: translateY(-3px);
}

.bg-facebook { background: #3b5998; }
.bg-twitter { background: #1da1f2; }
.bg-instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.bg-youtube { background: #cd201f; }
.bg-linkedin { background: #0077b5; }

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

.footer-bottom p {
  color: #f97316;
  font-size: 0.95rem;
  margin: 0;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: #fff;
  box-shadow: 2px 2px 10px rgba(37, 211, 102, 0.5);
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 110px;
  right: 40px;
  width: 50px;
  height: 50px;
  background-color: var(--accent-orange);
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  background-color: var(--accent-gold);
  transform: translateY(-3px);
}

/* Animations */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Certifications Bar */
.certifications-bar {
  background: var(--glass-bg);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 3rem 0;
  margin-top: 2rem;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.cert-item {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.cert-item:hover {
  color: var(--accent-orange);
}

/* Sourcing Process Timeline */
.timeline-process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}

.timeline-step {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
}

.timeline-step:hover {
  transform: translateY(-10px);
  border-color: var(--accent-orange);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-gold));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 5px 15px rgba(249,115,22,0.4);
}

.timeline-step h3 {
  margin-top: 1.5rem;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.timeline-step p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, rgba(15,23,42,0.95), rgba(2,6,23,0.95));
  border: 1px solid var(--accent-orange);
  border-radius: 24px;
  padding: 4rem 3rem;
  text-align: center;
  margin-top: 4rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.cta-banner h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.cta-banner p {
  color: #cbd5e1;
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

/* Responsive & Mobile Menu */
.mobile-menu-btn {
  display: none;
  font-size: 1.8rem;
  color: var(--text-main);
  cursor: pointer;
  z-index: 1001;
}

@media (max-width: 991px) {
  section { padding: 3.5rem 5%; }
  .page-header { height: 40vh; min-height: 300px; margin-top: 70px; }
  .hero-overlay-content h1, .page-header h1 { font-size: 3rem; }
  .about { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-wrapper { max-width: 500px; margin: 0 auto; }
  .contact-content { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr 1fr; }
  .mission-vision { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  header { padding: 1rem 5%; }
  .mobile-menu-btn { display: block; }
  
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background: var(--bg-main);
    box-shadow: -5px 0 15px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: right 0.4s ease;
    z-index: 1000;
  }
  
  nav.mobile-active {
    right: 0;
  }

  nav ul {
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
    width: 100%;
  }
  
  nav ul li {
    width: 100%;
    text-align: center;
  }

  
  .hero-slider { padding-top: 70px; min-height: 500px; }
  .hero-overlay-content h1, .page-header h1 { font-size: 2.5rem; }
  .hero-overlay-content p { font-size: 1rem; }
  
  .section-title { font-size: 2rem; }
  .page-header h1 { font-size: 2.5rem; }
  
  .services-grid, .product-grid, .values-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .footer-brand { margin: 0 auto; }
}

@media (max-width: 480px) {
  .hero-overlay-content h1, .page-header h1 { font-size: 2rem; }
  .btn { padding: 12px 24px; font-size: 0.85rem; }
  .video-section { padding: 4rem 1.5rem; }
  .video-section h2 { font-size: 2rem; }
  .filter-btn { padding: 0.5rem 1rem; font-size: 0.8rem; }
  .mv-card { padding: 2rem; }
  .mv-card h3 { font-size: 1.8rem; }
  .contact-form { padding: 1.5rem; }
}

/* MEGA MENU */
/* Shown/hidden by JS via .mega-visible class */
.mega-menu.mega-visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.mega-menu {
    /* Fixed so it always centers on full viewport below the fixed header */
    position: fixed;
    top: 82px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: min(620px, 92vw);
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.18);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    z-index: 9999;
    padding: 1rem 1.4rem;
    pointer-events: auto;
    border: 1px solid var(--glass-border);
    overflow-y: auto;
    max-height: calc(100vh - 100px);
}
/* Single-column vertical stack — each group stacks top-to-bottom */
.mega-menu-inner {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.mega-column {
    padding: 0.4rem 0;
    border-bottom: 1px solid #f1f5f9;
}
.mega-column:last-child { border-bottom: none; }
.mega-column .mega-heading {
    color: var(--accent-orange);
    font-size: 0.62rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    padding-bottom: 0.25rem;
    border-bottom: 2px solid var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    display: inline-block;
}
/* Links flow horizontally in a wrapping row */
.mega-column ul { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 0.1rem 0.3rem; }
.mega-column ul li { margin-bottom: 0; }
.mega-column ul li a {
    color: #334155;
    font-size: 0.72rem;
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.4rem;
    border-radius: 5px;
    transition: all 0.18s ease;
    font-weight: 500;
    white-space: nowrap;
}
.mega-column ul li a i {
    width: 14px;
    min-width: 14px;
    color: var(--accent-gold);
    margin-right: 5px;
    font-size: 0.72rem;
}
.mega-column ul li a:hover {
    background: rgba(2,132,199,0.06);
    color: var(--accent-orange);
    transform: translateX(3px);
}
.mega-column ul li a:hover i { color: var(--accent-orange); }
.mega-action { margin-top: 0.8rem; }
/* View All Products footer row */
.mega-menu-footer {
    border-top: 1px solid #f1f5f9;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    text-align: center;
}
.mega-menu-footer a {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent-orange);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.mega-menu-footer a:hover { color: var(--accent-gold); }
@media (max-width: 1024px) {
    .mega-menu { position: static; width: 100%; max-width: 100%; transform: none; box-shadow: none; opacity: 1; visibility: visible; display: none; padding: 0; background: transparent; border: none; }
    .mega-menu.mega-visible { display: block; }
    .mega-menu-inner { grid-template-columns: 1fr; gap: 0; }
    .mega-column { border-right: none; border-bottom: 1px solid #f1f5f9; padding: 0; }
    .mega-column .mega-heading { cursor: pointer; padding: 1rem 1.2rem; background: #f8fafc; margin: 0; border-bottom: 1px solid #e2e8f0; color: var(--accent-orange); font-size: 0.85rem; font-weight: 700; text-align: left; display: flex; justify-content: space-between; align-items: center; }
    .mega-column .mega-heading::after { content: '\f107'; font-family: 'Font Awesome 5 Free'; font-weight: 900; font-size: 0.8rem; color: var(--text-muted); }
    .mega-column ul { display: none; padding: 0.5rem 1.2rem; background: #ffffff; }
    .mega-column ul.active { display: block; }
    .mega-column ul li { text-align: left; }
    .mega-column ul li a { display: flex; width: 100%; color: var(--text-main); font-size: 0.85rem; white-space: normal; padding: 0.6rem 0; text-align: left; border-bottom: 1px solid #f1f5f9; }
    .mega-column ul li a:hover { background: transparent; color: var(--accent-orange); }
    .mega-menu-footer { display: none; }
}

/* PRODUCTS PAGE */
.filter-tabs { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-bottom: 3rem; }
.filter-btn { padding: 0.8rem 1.8rem; border-radius: 50px; background: #fff; border: 1px solid var(--primary-light); cursor: pointer; transition: all 0.3s; font-weight: 600; color: var(--text-muted); box-shadow: 0 4px 6px rgba(0,0,0,0.02); }
.filter-btn.active, .filter-btn:hover { background: var(--accent-orange); color: #fff; border-color: var(--accent-orange); box-shadow: 0 6px 15px rgba(2,132,199,0.2); }
.product-grid-main { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
@media(max-width: 1200px){ .product-grid-main { grid-template-columns: repeat(3, 1fr); } }
@media(max-width: 992px){ .product-grid-main { grid-template-columns: repeat(2, 1fr); } }
@media(max-width: 600px){ .product-grid-main { grid-template-columns: 1fr; } }
.cat-card { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.05); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); border: 1px solid transparent; display: flex; flex-direction: column; height: 100%; }
.cat-card:hover { transform: translateY(-8px); border-color: rgba(2,132,199,0.3); box-shadow: 0 15px 35px rgba(0,0,0,0.1); }
.cat-img { height: 220px; overflow: hidden; position: relative; }
.cat-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.cat-card:hover .cat-img img { transform: scale(1.08); }
.cat-content { padding: 1.8rem; flex-grow: 1; display: flex; flex-direction: column; }
.cat-icon { width: 45px; height: 45px; background: rgba(2,132,199,0.1); color: var(--accent-orange); display: flex; align-items: center; justify-content: center; border-radius: 10px; margin-bottom: 1.2rem; font-size: 1.4rem; }
.cat-title { font-size: 1.25rem; margin-bottom: 0.8rem; color: var(--text-main); font-weight: 700; }
.cat-desc { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1.5rem; flex-grow: 1; line-height: 1.6; }
.cat-link { display: inline-flex; align-items: center; font-weight: 700; color: var(--accent-orange); font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1px; }
.cat-link i { margin-left: 8px; transition: transform 0.3s; }
.cat-card:hover .cat-link i { transform: translateX(5px); }
/* CATEGORY PAGE */
.timeline-process { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; margin-top: 3rem; }
.timeline-step { background: #fff; padding: 1.8rem 1rem; border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.03); text-align: center; position: relative; border: 1px solid var(--primary-light); }
.timeline-step::after { content: '\f0da'; font-family: 'Font Awesome 5 Free'; font-weight: 900; position: absolute; right: -15px; top: 50%; transform: translateY(-50%); color: var(--accent-gold); font-size: 1.8rem; z-index: 1; }
.timeline-step:last-child::after { display: none; }
.step-number { width: 45px; height: 45px; background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange)); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.2rem; font-weight: 800; font-size: 1.3rem; box-shadow: 0 4px 10px rgba(2,132,199,0.3); }
.timeline-step h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
@media(max-width: 1024px){ .timeline-process { grid-template-columns: repeat(3, 1fr); gap: 2rem; } .timeline-step:nth-child(3)::after { display: none; } }
@media(max-width: 600px){ .timeline-process { grid-template-columns: 1fr; } .timeline-step::after { content: '\f0d7'; right: 50%; bottom: -25px; top: auto; transform: translateX(50%); } }
\n