.sams-logo {

 font-family: "Sedan SC", serif;
  font-weight: 400;
  font-style: normal;
}
/* ----------- Responsive
/*Video */
/* Fullscreen video background */
.hero-section {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.video-background {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: -1;
}

/* Overlay for brightness control */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(1, 1, 1, 1); /* Adjust opacity for desired brightness */
  z-index: 1;
}

/* Ensure content sits above the video */
.container {
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .video-background {
    display: none;
  }
  .hero-section {
    background: url('path/to/your/thumbnail.jpg') no-repeat center center;
    background-size: cover;
  }
}



.bebas-neue-regular {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 600;
  font-style: normal;
  margin-top: 10px;
  color: rgb(0, 6, 69);
  transition: all 0.3s ease;
  border-style: solid; 
}


/* ===== Variables ===== */
:root {
  --navy-100: #e6eaf0;
  --navy-600: #1e3a5f;
  --navy-700: #152c47;
  --navy-800: #0c1e33;
  --navy-900: #061220;
}

/* ===== Global Styles ===== */
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
    "Helvetica Neue", sans-serif;
  color: #333;
  overflow-x: hidden;
}

/* Text Colors */
.text-navy {
  color: var(--navy-700);
}

.bg-navy {
  background-color: var(--navy-700);
}

.bg-light-navy {
  background-color: var(--navy-100);
}

.btn-primary {
  background-color: var(--navy-700);
  border-color: var(--navy-700);
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--navy-800);
  border-color: var(--navy-800);
}

.btn-outline-primary {
  color: var(--navy-700);
  border-color: var(--navy-700);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background-color: var(--navy-700);
  border-color: var(--navy-700);
}

/* ===== Header ===== */
#main-header {
  transition: all 0.3s ease;
  background-color: #ffffff; /* Navbar background white */
}

#main-header .navbar {
  padding: 1rem 0;
  transition: all 0.3s ease;
  background-color: #ffffff; /* Navbar background white */
}

#main-header .logo {
  height: 40px;
  width: auto;
  transition: all 0.3s ease;
}

#main-header .nav-link,
#main-header .navbar-brand {
  color: var(--navy-700); /* darker text on white bg */
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  padding: 0.5rem 1rem;
}

#main-header .nav-link:hover,
#main-header .navbar-brand:hover {
  color: var(--navy-900);
}

#main-header.scrolled {
  background-color: #ffffff; /* white when scrolled */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#main-header.scrolled .navbar {
  padding: 0.5rem 0;
  background-color: #ffffff;
}

#main-header.scrolled .nav-link,
#main-header.scrolled .navbar-brand {
  color: var(--navy-700);
}

#main-header.scrolled .nav-link:hover,
#main-header.scrolled .navbar-brand:hover {
  color: var(--navy-900);
}

#main-header.scrolled .nav-link.active,
#main-header.scrolled .navbar-brand.active {
  color: var(--navy-900);
}


/* ===== Hero Section ===== */
.hero-section {
  height: 100vh;
  background-image: url("../images/hero-denim.png");
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.page-hero {
  height: 50vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

.scroll-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 2rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0) translateX(-50%);
  }
  50% {
    transform: translateY(-10px) translateX(-50%);
  }
}

/* ===== Animations ===== */
.transition-icon {
  transition: transform 0.3s ease;
}

a:hover .transition-icon {
  transform: translateX(5px);
}

.image-reveal {
  position: relative;
  overflow: hidden;
}

.image-reveal img {
  transition: transform 0.7s ease;
}

.image-reveal:hover img {
  transform: scale(1.05);
}

/* Feature Icons */
.feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.contact-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.green-icon,
.blue-icon,
.purple-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.green-icon {
  background-color: #e6f7e6;
  color: #28a745;
}

.blue-icon {
  background-color: #e6f0f7;
  color: #0d6efd;
}

.purple-icon {
  background-color: #f0e6f7;
  color: #6f42c1;
}

/* ===== Product Cards ===== */
.product-card {
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.card-img-top-wrapper {
  height: 250px;
  overflow: hidden;
}

.card-img-top {
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

/* ===== KPI Cards ===== */
.kpi-card {
  background-color: var(--navy-800);
  border-radius: 0.5rem;
  padding: 2rem 1rem;
  transition: all 0.3s ease;
  height: 100%;
}

.kpi-card:hover {
  background-color: var(--navy-600);
  transform: translateY(-5px);
}

.kpi-icon {
  font-size: 2rem;
}

.quality-metrics-card {
  background-color: var(--navy-800);
  border-radius: 0.5rem;
  padding: 2rem;
}

/* ===== Why Choose Us Cards ===== */
.feature-card {
  background-color: var(--navy-800);
  border-radius: 0.5rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.feature-card:hover {
  background-color: var(--navy-600);
  transform: translateY(-5px);
}

/* ===== Mission, Vision, Values Cards ===== */
.principle-card {
  transition: all 0.3s ease;
}

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

.principle-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: var(--navy-100);
  color: var(--navy-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto;
}

.value-card {
  transition: all 0.3s ease;
  border: none;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.value-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* ===== Global Exports ===== */
.region-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: var(--navy-100);
  color: var(--navy-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin: 0 auto;
  transition: all 0.3s ease;
}

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

.certification-badge {
  display: inline-block;
  background-color: #f8f9fa;
  color: #6c757d;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.certification-badge:hover {
  transform: scale(1.05);
}

/* ===== Contact Page ===== */
.contact-hero {
  padding-top: 7rem;
  position: relative;
}

.map-container {
  height: 400px;
  width: 100%;
}

.map-placeholder {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e9ecef;
  color: #6c757d;
}

/* ===== Footer ===== */
.logo-footer {
  height: 35px;
  width: auto;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  display: block;
  padding: 0.375rem 0;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: white;
  transform: translateX(5px);
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: white;
  color: var(--navy-700);
  transform: translateY(-3px);
}

.contact-info li {
  display: flex;
  margin-bottom: 1rem;
}

.contact-info li i {
  margin-right: 1rem;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ===== Utilities ===== */
.py-md-7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.radial-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  opacity: 0.1;
}

/* ===== Responsive ===== */
@media (max-width: 767.98px) {
  .hero-section,
  .page-hero {
    text-align: center;
  }

  .product-card {
    margin-bottom: 1.5rem;
  }

  .principle-card {
    margin-bottom: 1.5rem;
  }
}
