/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Roboto, sans-serif;
  background-color: #fff;
  color: #333;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid #ddd;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 10px;
}

.logo-img {
  height: 40px; /* adjust based on your actual logo */
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* left-align both lines */
  justify-content: center;
  line-height: 1.05;
}

.logo-text h1 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111;
  margin: 0;
  text-align: left; /* make sure it stays left-aligned */
}

.logo-text p {
  font-size: 0.85rem;
  font-weight: 600;
  color: #666; /* gray color for tagline */
  margin: 2px 0 0 0;
  text-align: left; /* left-align tagline too */
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1rem;
}

.nav-links a {
  text-decoration: none;
  color: #555;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: all 0.3s;
}

.nav-links a:hover {
  background: #000;
  color: #fff;
}

.nav-links a.active {
  background: #000;
  color: #fff;
}


/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem 3rem;
  background: linear-gradient(135deg, #f9f9f9, #fff);
  min-height: 80vh;
  border-bottom: 1px solid #ddd;
}

.hero-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: center;
  gap: 3rem;
  max-width: 1300px;
  margin: auto;
}

.tagline {
  background: #000;
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.hero-text h1 {
  font-size: 3rem;
  margin: 1rem 0 1.5rem 0; /* reduced bottom margin for tighter spacing */
  color: #111;
  line-height: 1.1; /* reduces vertical gap */
}

.hero-text h1 span {
  display: block; /* ensures it stays directly under without inline gap */
  font-size: 2.2rem; /* slightly smaller text */
  color: #555;
  font-weight: 400;
  margin-top: -0.2rem; /* fine-tunes spacing even more */
}

.hero-text p {
  font-size: 1.1rem;
  color: #666;
  max-width: 500px;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.btn {
  text-decoration: none;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s;
}

.primary {
  background: #000;
  color: #fff;
}

.primary:hover {
  background: #333;
}

.secondary {
  border: 2px solid #000;
  color: #000;
}

.secondary:hover {
  background: #000;
  color: #fff;
}

.hero-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Slideshow */
.hero-slideshow {
  position: relative;
  width: 850px;
  height: 650px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.hero-slideshow img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slideshow img.active {
  opacity: 1;
}


/* Features Section */
.features {
  padding: 6rem 2rem;
  background: linear-gradient(to bottom, #f9f9f9, #fff);
  text-align: center;
}

.features-header h2 {
  font-size: 2.5rem;
  color: #111;
}

.features-header p {
  color: #666;
  max-width: 600px;
  margin: 1rem auto 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.feature {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 16px;
  padding: 2rem 2rem 1.8rem;
  transition: all 0.3s;
}

.feature:hover {
  border-color: #000;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-accent {
  width: 48px; 
  height: 4px; 
  border-radius: 4px; 
  background: #000; 
  margin: 0 auto 1rem; 
  opacity: 0.9;
}

/* CTA Section */
.cta {
  position: relative;
  padding: 6rem 2rem;
  background: linear-gradient(to bottom, #f9f9f9, #fff);
  color: #111;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid #ddd;
}

.cta-overlay {
   display: none;
}

.cta-content {
  position: relative;
  max-width: 700px;
  margin: auto;
}

.cta-content h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.cta-content p {
  color: #666;
  margin-bottom: 2rem;
}

.cta-btn {
  background: #000;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s;
}

.cta-btn:hover {
  background: #333;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #000, #222);
  color: #fff;
  padding-top: 4rem;
  margin-top: 4rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: auto;
  padding: 0 2rem;
}

.logo-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}

.logo-icon.light {
  background: #fff;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  transform: rotate(45deg);
}

.footer-col h4 {
  margin-bottom: 1rem;
}

.footer-col a {
  color: #fff;
  text-decoration: none;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #333;
  text-align: center;
  padding: 1rem;
  color: #fff;
  font-size: 0.9rem;
  margin-top: 2rem;
}

.footer-logo {
   width: 50px; 
   height: auto; 
   filter: invert(1);
}

/* Match footer logo spacing to navbar */
.logo-footer h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.05; /* same as navbar logo */
}

.logo-footer p {
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  margin: 2px 0 0 0; /* same vertical spacing as navbar tagline */
  line-height: 1.1;
}

/* Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    background: #fff;
    width: 100%;
    padding: 1rem 2rem;
  }
  .nav-links.open {
    display: flex;
  }
  .hero {
    padding-top: 7rem;
  }
}

/* About Page Styles */
.about-hero {
  padding: 8rem 2rem 4rem;
  text-align: center;
  background: linear-gradient(to bottom, #f9f9f9, #fff);
}

.about-hero h1 {
  font-size: 3.5rem;
  color: #111;
  margin-bottom: 1rem;
}

.about-hero p {
  color: #555;
  font-size: 1.2rem;
  max-width: 700px;
  margin: auto;
}

/* Mission Section */
.mission-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem 3rem;
  background: linear-gradient(135deg, #f9f9f9, #fff);
  min-height: 60vh;
  height = 420px;
  width= 100px; 
  border-bottom: 1px solid #ddd;
}

.mission-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: center;
  gap: 3rem;
  max-width: 1200px;
  margin: auto;
}

.mission-text h2 {
  font-size: 2.5rem;
  color: #111;
  margin-bottom: 1rem;
}

.mission-text p {
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.mission-image img {
  width: 600px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Values Section */
.values-section {
  background: linear-gradient(to bottom, #f9f9f9, #fff);
  padding: 6rem 2rem;
  text-align: center;
}

.values-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #111;
}

.values-header p {
  color: #666;
  margin-bottom: 3rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.value-box {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s;
}

.value-box:hover {
  border-color: #000;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.value-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* Capabilities Section */
.capabilities-section {
  position: relative;
  background: linear-gradient(to bottom, #f9f9f9, #fff);
  color: #111;
  padding: 6rem 2rem 5rem;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid #ddd;
}

.capabilities-overlay {
  display: none;
}

.capabilities-content {
  position: relative;
  max-width: 800px;
  margin: auto;
}

.capabilities-content h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.capabilities-content p {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

/* Products Page Styles */
.products-hero {
  padding: 8rem 2rem 4rem;
  text-align: center;
  background: linear-gradient(to bottom, #f9f9f9, #fff);
}

.products-hero h1 {
  font-size: 3.5rem;
  color: #111;
  margin-bottom: 1rem;
}

.products-hero p {
  color: #555;
  font-size: 1.2rem;
  max-width: 700px;
  margin: auto;
}


/* Product Intro Alt Section */
.product-intro-alt {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12rem 2rem 5rem;
  background: linear-gradient(135deg, #f9f9f9, #fff);
  border-bottom: 1px solid #ddd;
}

.product-intro-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  align-items: center;
  gap: 3rem;
  max-width: 1200px;
  margin: auto;
}

.product-intro-text h2 {
  font-size: 2.5rem;
  color: #111;
  margin-bottom: 1rem;
  position: relative;
}

.product-intro-text h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #000;
  margin-top: 0.8rem;
  border-radius: 2px;
}

.product-intro-text p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.product-intro-image img {
  width: 600px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}

.product-intro-image img:hover {
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .product-intro-alt {
    padding: 7rem 1.5rem 4rem;
  }
}



/* Product Grid */
.products-section {
  padding: 6rem 2rem;
  background: linear-gradient(to bottom, #f9f9f9, #fff);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.product-card {
  border: 2px solid #e5e5e5;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  transition: all 0.3s;
}

.product-card:hover {
  border-color: #000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.product-card:hover img {
  transform: scale(1.05);
}

.badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #000;
  color: #fff;
  padding: 6px 14px;
  font-size: 0.8rem;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-content {
  padding: 1.5rem;
}

.product-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #111;
}

.product-content p {
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.product-content ul {
  list-style: none;
  padding: 0;
}

.product-content li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  color: #555;
  font-size: 0.95rem;
}

.product-content li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #000;
}

/* History Page Styles */
.history-hero {
  padding: 8rem 2rem 4rem;
  text-align: center;
  background: linear-gradient(to bottom, #f9f9f9, #fff);
}

.history-hero h1 {
  font-size: 3.5rem;
  color: #111;
  margin-bottom: 1rem;
}

.history-hero p {
  color: #555;
  font-size: 1.2rem;
  max-width: 700px;
  margin: auto;
}

/* Legacy Section */
.legacy-section {
  padding: 12rem 2rem 6rem;
  background: linear-gradient(to bottom, #f9f9f9, #fff);
}

.legacy-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: center;
  gap: 5rem;
  max-width: 1200px;
  margin: auto;
  background: linear-gradient(to bottom, #f9f9f9, #fff);
}

.legacy-image img {
  width: 600px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.legacy-text h2 {
  font-size: 2.5rem;
  color: #111;
  margin-bottom: 1rem;
}

.legacy-text p {
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* Fixed Timeline Section */
.timeline-section {
  padding: 6rem 2rem 3rem; /* reduced bottom padding for footer flow */
  background: #fff;
  position: relative;
  border-top: 1px solid #ddd;
}


.timeline-header {
  text-align: center;
  margin-bottom: 4rem;
}

.timeline-header h2 {
  font-size: 2.5rem;
  color: #111;
  margin-bottom: 1rem;
}

.timeline-header p {
  color: #666;
}

.timeline-container {
  position: relative;
  max-width: 1000px;
  margin: auto;
}

.timeline-container::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: linear-gradient(to bottom, #ddd, #000, #ddd);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  margin-bottom: 3rem;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-content {
  background: #fff;
  border: 2px solid #ddd;
  border-radius: 16px;
  padding: 1.5rem;
  width: 45%;
  transition: all 0.3s;
  position: relative;
  z-index: 1;
}

.timeline-item:nth-child(odd) .timeline-content {
  text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
  text-align: left;
}

.timeline-content:hover {
  border-color: #000;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.timeline-content .year {
  font-size: 2rem;
  font-weight: bold;
  color: #111;
  margin-bottom: 0.5rem;
}

.timeline-content h3 {
  font-size: 1.3rem;
  color: #111;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Connector dots */
.timeline-item::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background: #000;
  border: 3px solid #fff;
  border-radius: 50%;
  z-index: 2;
}

/* Responsive Fix */
@media (max-width: 768px) {
  .timeline-container::before {
    left: 8px;
  }

  .timeline-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .timeline-content {
    width: 100%;
    text-align: left !important;
    margin-left: 30px;
  }

  .timeline-item::before {
    left: 0;
  }
}


/* Our Shop Page */
.shop-hero {
  padding: 8rem 2rem 4rem;
  text-align: center;
  background: linear-gradient(to bottom, #f9f9f9, #fff);
}

.shop-hero h1 {
  font-size: 3.5rem;
  color: #111;
  margin-bottom: 1rem;
}

.shop-hero p {
  color: #555;
  font-size: 1.2rem;
  max-width: 700px;
  margin: auto;
}

/* Facility Section */
.facility-section {
  padding: 12rem 2rem 6rem;
  background: linear-gradient(to bottom, #f9f9f9, #fff);
}

.facility-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: center;
  gap: 3rem;
  max-width: 1200px;
  margin: auto;
}

.facility-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.facility-text h2 {
  font-size: 2.5rem;
  color: #111;
  margin-bottom: 1rem;
}

.facility-text p {
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* Capabilities Grid */
.capabilities-grid-section {
  padding: 6rem 2rem;
  background: #fff;
  text-align: center;
}

.capabilities-grid-section h2 {
  font-size: 2.5rem;
  color: #111;
  margin-bottom: 1rem;
}

.capabilities-grid-section p {
  color: #666;
  margin-bottom: 3rem;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.capability-card {
  background: #fff;
  border: 2px solid #e5e5e5;
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s;
}

.capability-card:hover {
  border-color: #000;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.capability-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* Equipment Section */
.equipment-section {
  padding: 6rem 2rem;
  background: linear-gradient(to bottom, #f9f9f9, #fff);
  text-align: center;
}

.equipment-header h2 {
  font-size: 2.5rem;
  color: #111;
  margin-bottom: 1rem;
}

.equipment-header p {
  color: #666;
  margin-bottom: 3rem;
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.equipment-card {
  border: 2px solid #e5e5e5;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  transition: all 0.3s;
}

.equipment-card:hover {
  border-color: #000;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.equipment-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.6s;
}

.equipment-card:hover img {
  transform: scale(1.05);
}

.equipment-info {
  padding: 1.5rem;
  text-alighn: center; 
}

.equipment-info h3 {
  font-size: 1.5rem;
  color: #111;
  margin-bottom: 0.5rem;
}

.equipment-info p {
  color: #666;
  line-height: 1.6;
}

.equipment-info ul {
  display: inline-block;       /* centers the list itself */
  text-align: left;            /* aligns bullets + text together */
  list-style-position: inside; /* keeps bullets close to text */
  margin: 1rem 0 0;            /* small top margin for spacing */
  padding-left: 0;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

.equipment-info li {
  margin-bottom: 0.4rem;
}

/* Contact Page */
.contact-hero {
  padding: 8rem 2rem 4rem;
  text-align: center;
  background: linear-gradient(to bottom, #f9f9f9, #fff);
}

.contact-hero h1 {
  font-size: 3.5rem;
  color: #111;
  margin-bottom: 1rem;
}

.contact-hero p {
  color: #555;
  font-size: 1.2rem;
  max-width: 700px;
  margin: auto;
  line-height: 1.6;
}

/* Tabs Section */
.contact-tabs-section {
  padding: 12rem 2rem 6rem;
  background: linear-gradient(to bottom, #f9f9f9, #fff);
}

.contact-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: auto;
}

.contact-card {
  border: 2px solid #e5e5e5;
  border-radius: 16px;
  padding: 2rem;
  background: #fff;
  transition: all 0.3s;
}

.contact-card:hover {
  border-color: #000;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 2rem;
  border-bottom: 2px solid #eee;
}

.tab-btn {
  padding: 1rem;
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.tab-btn.active {
  border-bottom: 3px solid #000;
  color: #000;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.tab-content h2 {
  font-size: 2rem;
  color: #111;
  margin-bottom: 1.5rem;
}

/* Forms */
.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.form-group {
  text-align: left;
  margin-bottom: 1.2rem;
}

.form-group label {
  font-weight: 600;
  display: block;
  color: #111;
  margin-bottom: 0.4rem;
}

input, textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  color: #333;
  transition: all 0.3s;
}

input:focus, textarea:focus {
  border-color: #000;
  outline: none;
}

textarea {
  min-height: 120px;
}

.contact-btn {
  width: 100%;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 1rem;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
}

.contact-btn:hover {
  background: #333;
}

/* Info Column */
.contact-info-column h2 {
  font-size: 2rem;
  color: #111;
  margin-bottom: 1rem;
}

.contact-info-column p {
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.info-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  margin-bottom: 1.2rem;
}

.info-card:hover {
  border-color: #000;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.info-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(to bottom right, #111, #000);
  color: #fff;
  font-size: 1.3rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-card h3 {
  font-weight: 700;
  color: #111;
  margin-bottom: 0.3rem;
}

.info-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}


/* === Our Shop: Video Hero (safe: no overlap with equipment classes) === */
.shop-video-hero {
  padding: 8rem 2rem 2rem;           /* room below fixed navbar + tight bottom */
  background: #f9f9f9;
  color: #fff;
  border-bottom: 1px solid #ddd;
}

.video-shell {
  max-width: 1200px;
  margin: 0 auto;
}

.video-wrapper {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

/* Responsive 16:9 aspect ratio */
.video-wrapper::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.video-wrapper video,
.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-caption {
  max-width: 900px;
  margin: 1.25rem auto 0;
  text-align: center;
  color: #666;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .shop-video-hero { padding: 7rem 1rem 1.5rem; }
}





