* {
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.site-name {
  font-family: "Playfair Display", serif;
  font-weight: 700;
}

.gold-text {
  color: #b88746;
}

/* Navbar */
.navbar {
  transition: all 0.4s ease;
  padding: 1rem 0;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
  padding: 0.5rem 0;
  background: #fff;
}

.navbar-brand .site-name {
  font-size: 1.2rem;
  color: #1a2a6c;
}

@media (max-width: 768px) {
  .navbar-brand .site-name {
    font-size: 0.9rem;
  }
}

.nav-link {
  font-weight: 500;
  color: #1a2a6c !important;
  margin: 0 10px;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #b88746;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Hero */
.hero-section {
  min-height: 80vh;
  padding: 120px 0 60px;
}

@media (min-width: 1024px) {
  .hero-section {
    height: 100vh;
  }
  h1 {
    font-size: 3.5rem !important;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 1.8rem !important;
  }
  .hero-section {
    min-height: 70vh;
    text-align: center;
  }
}

.bounce {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Slider */
.showcase-slider {
  overflow: hidden;
}

.slide-card {
  position: relative;
  height: 450px;
  border-radius: 15px;
  overflow: hidden;
}

.slide-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
}

/* Products */
.product-card {
  border: none;
  background: #fff;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.product-img-wrapper {
  position: relative;
  height: 350px;
  overflow: hidden;
}

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

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

.badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 8px 12px;
  font-weight: 500;
}

.specs-list {
  list-style: none;
  padding: 0;
  margin: 15px 0;
  font-size: 0.9rem;
}

.specs-list li {
  margin-bottom: 5px;
  border-bottom: 1px solid #eee;
  padding-bottom: 5px;
}

.price {
  color: #1a2a6c;
  font-weight: 700;
}

/* Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.fade-in-up.active {
  opacity: 1;
  transform: translateY(0);
}

/* Footer */
.footer a {
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #b88746 !important;
}

.btn-dark {
  background-color: #1a2a6c;
  border-color: #1a2a6c;
}

.btn-dark:hover {
  background-color: #b88746;
  border-color: #b88746;
}

.btn-primary {
  background-color: #b88746;
  border-color: #b88746;
}

.btn-primary:hover {
  background-color: #a0753d;
  border-color: #a0753d;
} /* Main container padding and base text color */
.regShieldWrap {
  padding: 30px 25px 0 25px; /* Top and side paddings */
  color: #e0e0e0; /* Light text for dark theme */
  line-height: 1.5;
}

/* Heading styles with moderate sizes */
.regShieldWrap h1,
.regShieldWrap h2,
.regShieldWrap h3,
.regShieldWrap h4,
.regShieldWrap h5 {
  color: #000000; /* Brighter white for headings */
  margin-top: 0;
  margin-bottom: 16px;
  font-weight: 600;
  line-height: 1.3;
}

.regShieldWrap h1 {
  font-size: 24px;
}
.regShieldWrap h2 {
  font-size: 20px;
}
.regShieldWrap h3 {
  font-size: 18px;
}
.regShieldWrap h4 {
  font-size: 16px;
}
.regShieldWrap h5 {
  font-size: 14px;
}

/* Paragraph styles */
.regShieldWrap p {
  font-size: 14px;
  margin-bottom: 15px;
  color: #000000; /* Slightly dimmed paragraph text */
}
.costTable {
  color: #000;
}
/* List styles */
.regShieldWrap ul {
  margin: 0 0 15px 20px;
  padding: 0;
  list-style-type: disc;
}

.regShieldWrap li {
  font-size: 14px;
  margin-bottom: 8px;
  color: #000000;
}

/* Reset for the last element to avoid extra bottom spacing */
.regShieldWrap *:last-child {
  margin-bottom: 0;
}

.product-card {
  display: flex;
  flex-direction: column;

  .d-flex.justify-content-between.align-items-center.mt-3 {
    flex-wrap: wrap;
    align-items: center;
    justify-content: center !important;
    text-align: center;
    gap: 14px;
  }
}

.product-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-btns {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;

  button {
    margin: 0;
  }
}

.scroll-arrow {
  transform: translateY(60px);
}

@media (max-width: 767px) {
  .hero-btns {
    justify-content: center;
  }

  .scroll-arrow {
    transform: translateY(0px);
  }
}
