/* ==============================
   FINAL FIXED TRANSPARENT NAVBAR
================================= */

.ws-navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1050;
  background: transparent; /* start fully transparent */
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
  transition: all 0.5s ease-in-out;
  padding: 1rem 0;
}

/* ✨ add gradient overlay on top of hero */
.ws-navbar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.25) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: -1;
  opacity: 1;
  transition: all 0.5s ease;
}

/* After scroll — solid white with slight shadow */
.ws-navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}
.ws-navbar.scrolled::before {
  opacity: 0;
}

/* Navbar brand */
.ws-navbar .navbar-brand span {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  transition: color 0.4s ease;
}
.ws-navbar.scrolled .navbar-brand span {
  color: #000;
}

/* Navbar links */
.ws-navbar .nav-link {
  color: #fff !important;
  font-weight: 600;
  text-transform: uppercase;
  margin-left: 25px;
  transition: color 0.3s ease;
}
.ws-navbar .nav-link:hover,
.ws-navbar .nav-link.active {
  color: #d4a23a !important;
}
.ws-navbar.scrolled .nav-link {
  color: #111 !important;
}

/* Contact button */
.contact-btn {
  background-color: #d4a23a;
  color: #fff !important;
  font-weight: 600;
  border-radius: 4px;
  padding: 8px 18px;
  transition: all 0.3s ease;
}
.contact-btn:hover {
  background-color: #000 !important;
}

/* Toggler */
.navbar-toggler {
  border: none;
  outline: none;
}
.navbar-toggler-icon {
  width: 25px;
  height: 25px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,1)' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.ws-navbar.scrolled .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0,0,0,0.85)' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Ensure hero image isn’t covered */
body {
  padding-top: 90px;
}

/* Slight dark overlay on hero for visibility */
.hero-carousel-overlay {
  background: rgba(0, 0, 0, 0.25);
}
/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #d4a23a;
  color: #fff;
  border: none;
  border-radius: 50%;
  transition: all 0.4s ease;
  z-index: 999;
  opacity: 0;
}
.back-to-top:hover {
  background-color: #000;
  color: #fff;
}
/* =============================
   HERO CAROUSEL - MARBLEX STYLE
============================= */

.hero-section {
  width: 100%;
  height: 100vh;
  position: relative;
}

.hero-slide {
  position: relative;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 20px;
}

.hero-subtitle {
  font-size: 16px;
  letter-spacing: 2px;
  color: #f7d488;
  font-weight: 500;
  margin-bottom: 10px;
}

.hero-text {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  font-size: 58px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
}

/* Buttons */
.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 0;
  transition: all 0.4s ease;
}

.btn-gold {
  background-color: #d4a23a;
  color: #fff;
  border: none;
}
.btn-gold:hover {
  background-color: #c38d28;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}
.btn-outline:hover {
  background-color: #fff;
  color: #000;
  transform: translateY(-2px);
}

/* Arrows */
.btn-hero i {
  transition: transform 0.3s ease;
}
.btn-hero:hover i {
  transform: translateX(5px);
}

/* Owl Carousel adjustments */
.owl-carousel .owl-dots {
  position: absolute;
  bottom: 25px;
  left: 0;
  right: 0;
  text-align: center;
}
.owl-carousel .owl-dot span {
  width: 12px;
  height: 12px;
  margin: 4px;
  background: #fff;
  opacity: 0.5;
  transition: all 0.3s ease;
}
.owl-carousel .owl-dot.active span {
  background: #d4a23a;
  opacity: 1;
}
/* ---------------------------
   About Section
----------------------------*/
.about-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #fff;
}

.about-image {
  height: 100%;
  min-height: 500px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-content {
  position: relative;
  z-index: 2;
}

.text-highlight {
  color: #c19739;
}

.text-gold {
  color: #c19739;
}

.icon-box {
  width: 45px;
  height: 45px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-gold {
  background-color: #c19739;
  color: #fff;
  border: none;
  transition: 0.3s ease;
}
.btn-gold:hover {
  background-color: #a87e2a;
  transform: translateY(-2px);
}

.letter-spacing-sm {
  letter-spacing: 2px;
}

@media (max-width: 991px) {
  .about-content {
    text-align: center;
  }
  .about-image {
    min-height: 350px;
  }
}
/* ===========================
   OUR PRODUCTS - CLEAN RESPONSIVE FIX
=========================== */

/* Section Title */
.section-title h1 {
  font-weight: 700;
  color: #111;
  letter-spacing: 0.5px;
  position: relative;
}
.section-title h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 3px;
  background-color: #c19739;
  border-radius: 2px;
}

/* Product Card Wrapper */
.portfolio-item {
  background: #fff;
  transition: all 0.3s ease;
  overflow: hidden;
  border-radius: 6px;
}
.portfolio-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Product Image */
.portfolio-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}
.portfolio-item:hover img {
  transform: scale(1.05);
  filter: brightness(80%);
}

/* Overlay */
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
  visibility: visible;
}

/* Read More Button */
.readmore-btn {
  background-color: #c19739;
  color: #fff !important;
  font-weight: 600;
  border-radius: 50px;
  padding: 10px 24px !important;
  font-size: 0.95rem;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  transition: all 0.3s ease;
}
.readmore-btn:hover {
  background-color: #a87e2a;
  transform: translateY(-3px);
}
.readmore-btn i {
  transition: transform 0.3s ease;
}
.readmore-btn:hover i {
  transform: translateX(5px);
}

/* Product Title */
.portfolio-item h5 {
  color: #222;
  font-size: 1.05rem;
  font-weight: 600;
  transition: color 0.3s ease;
}
.portfolio-item:hover h5 {
  color: #c19739;
}

/* Border & Layout */
.portfolio-item .border {
  background-color: #fff;
  transition: all 0.3s ease;
}
.portfolio-item:hover .border {
  border-color: #c19739 !important;
}

/* Responsive Fixes */
@media (max-width: 992px) {
  .portfolio-item img {
    height: 230px;
  }
}
@media (max-width: 576px) {
  .portfolio-item img {
    height: 200px;
  }
  .readmore-btn {
    font-size: 0.85rem;
    padding: 8px 18px !important;
  }
}
/* Mobile: show overlay & button (no hover required) */
@media (max-width: 767px) {
  .portfolio-overlay {
    opacity: 1 !important;
    visibility: visible !important;
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.55),
      rgba(0, 0, 0, 0.25)
    );
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 18px;
  }

  .portfolio-item img {
    /* slightly dim the image so text/button is readable */
    filter: brightness(78%);
    transform: none !important; /* avoid scale on mobile */
  }

  /* make sure the button is visible and tappable */
  .portfolio-overlay .readmore-btn {
    opacity: 1 !important;
    transform: translateY(0) !important;
    padding: 10px 18px !important;
    font-size: 0.95rem;
  }

  /* ensure title area doesn't overlap dangerously */
  .portfolio-item .border {
    padding-bottom: 18px;
  }
}
/* ===========================
   SERVICES SECTION - MARBLEX STYLE
=========================== */

.services-section {
  background-color: #fafafa;
  position: relative;
  overflow: hidden;
}

.section-header .section-subtitle {
  font-size: 14px;
  letter-spacing: 2px;
  color: #c19739;
  display: block;
}

.section-header .section-title {
  color: #111;
}

.btn-readmore {
  background: transparent;
  border: none;
  color: #111;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-readmore:hover {
  color: #c19739;
}

/* Service Card */
.service-card {
  background-color: #fff;
  padding: 40px 25px;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  text-align: left;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* Icon */
.service-icon {
  font-size: 40px;
  color: #c19739;
}

/* Title & Description */
.service-title {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #222;
}

.service-desc {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 30px;
}

/* Circular arrow button */
.service-arrow {
  position: absolute;
  bottom: 25px;
  left: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid #c19739;
  border-radius: 50%;
  color: #c19739;
  font-size: 18px;
  transition: all 0.3s ease;
}

.service-card:hover .service-arrow {
  background-color: #c19739;
  color: #fff;
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 768px) {
  .service-card {
    text-align: center;
    padding: 35px 20px 60px;
  }

  .service-arrow {
    left: 50%;
    transform: translateX(-50%);
    bottom: 15px;
  }
}
/* ===========================
   REACH US SECTION (CONTACT)
=========================== */

.quote {
  position: relative;
  background-color: #fff;
  overflow: hidden;
}

.quote-text {
  background-color: #fff;
  padding: 60px 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.section-title h1 {
  font-weight: 700;
  color: #111;
  position: relative;
  display: inline-block;
}

.section-title h1::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #c19739;
  border-radius: 2px;
}

/* Text paragraph */
.quote-text p {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Form fields */
.quote-text .form-control {
  border-radius: 6px;
  background-color: #f7f7f7;
  border: 1px solid #ddd;
  padding: 12px 15px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.quote-text .form-control:focus {
  border-color: #c19739;
  background-color: #fff;
  box-shadow: 0 0 0 0.2rem rgba(193, 151, 57, 0.15);
  outline: none;
}

/* Textarea */
.quote-text textarea.form-control {
  height: 120px;
  resize: none;
}

/* Submit Button */
.quote-text .btn-primary {
  background-color: #c19739;
  border: none;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border-radius: 6px;
}

.quote-text .btn-primary:hover {
  background-color: #a87e2a;
  transform: translateY(-2px);
}

/* Left Image */
.quote img {
  object-fit: cover;
  filter: brightness(92%);
  transition: all 0.5s ease;
}

.quote img:hover {
  filter: brightness(100%);
  transform: scale(1.03);
}

/* Spacing and Alignment */
@media (max-width: 992px) {
  .quote-text {
    padding: 40px 25px;
    text-align: center;
  }

  .section-title h1::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .quote-text .btn-primary {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .quote-text {
    padding: 30px 20px;
  }

  .quote-text textarea.form-control {
    height: 100px;
  }
}

/* ===============================
   ✅ WS TRADERS FOOTER STYLING
=============================== */

.footer {
  background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
  color: #d9d9d9 !important;
  font-size: 15px;
  position: relative;
  overflow: hidden;
  border-top: 3px solid #c19739;
  line-height: 1.8;
}

/* ===============================
   Footer Headings
=============================== */
.footer h4 {
  color: #fff !important;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  position: relative;
}

.footer h4::after {
  content: "";
  display: block;
  width: 45px;
  height: 2px;
  background: #c19739;
  margin-top: 6px;
  border-radius: 2px;
}

/* ===============================
   Footer Paragraphs & Contact Info
=============================== */
.footer p {
  color: #d0d0d0;
  font-size: 15px;
  margin-bottom: 10px;
}

.footer .fa {
  color: #c19739;
  width: 20px;
  text-align: center;
}

/* ===============================
   Links
=============================== */
.footer .btn-link {
  display: block;
  color: #dcdcdc;
  padding: 4px 0;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
}

.footer .btn-link::before {
  content: "›";
  position: absolute;
  left: -12px;
  color: #c19739;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer .btn-link:hover {
  color: #c19739 !important;
  transform: translateX(5px);
}

.footer .btn-link:hover::before {
  opacity: 1;
  left: -5px;
}

/* ===============================
   Social Media Buttons
=============================== */
.footer .btn-social {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #c19739;
  border-radius: 50%;
  margin-right: 10px;
  transition: all 0.3s ease;
  color: #fff;
  background: transparent;
}

.footer .btn-social:hover {
  background: #c19739;
  border-color: #c19739;
  color: #fff !important;
  transform: scale(1.1);
}

/* ===============================
   Copyright Section
=============================== */
.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 0;
  text-align: center;
  font-size: 14px;
  background: #fff;
  color: #222 !important;
}

.copyright a {
  color: #c19739;
  font-weight: 600;
  text-decoration: none;
}

.copyright a:hover {
  text-decoration: underline;
}

/* ===============================
   Responsive Adjustments
=============================== */
@media (max-width: 992px) {
  .footer {
    text-align: center;
  }

  .footer h4::after {
    margin: 6px auto;
  }

  .footer .btn-social {
    margin: 5px;
  }

  .footer .col-lg-3 {
    margin-bottom: 30px;
  }
}

/* ===============================
   ✅ Spinner Styling (Image Trades)
=============================== */

        .text-gold {
  color: #c19739 !important;
}

.spinner-border.text-gold {
  border-color: #c19739;
  border-right-color: transparent !important;
  animation: spinnerRotate 1.1s linear infinite;
  filter: drop-shadow(0 0 5px rgba(193, 151, 57, 0.5));
}

@keyframes spinnerRotate {
  to {
    transform: rotate(360deg);
  }
}

/* Elegant fade text animation */
.fade-text {
  letter-spacing: 2px;
  animation: fadeText 2s ease-in-out infinite;
}

@keyframes fadeText {
  0%,
  100% {
    opacity: 0.4;
  }

  50% {
    opacity: 1;
  }
}

/* Fade-out on page load */
#spinner {
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#spinner.hide {
  opacity: 0;
  visibility: hidden;
}

/* ==============================
   Page Header Section (Fixed)
============================== */
.page-header {
  position: relative;
  width: 100%;
  height: 400px; /* Adjust height as needed */
  background: url("../my-img2/banner.png") center center / cover no-repeat !important;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

/* Overlay for better text visibility */
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55); /* Slight dark overlay */
  z-index: 1;
}

/* Text Styling */
.page-header h1,
.page-header nav {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
  animation: fadeInDown 1.2s ease-in-out;
}

.page-header .breadcrumb {
  justify-content: center;
  background: transparent;
  margin-bottom: 0;
  font-size: 1rem;
}

.page-header .breadcrumb-item a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-header .breadcrumb-item a:hover {
  color: #f8c102;
}

/* Animation */
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .page-header {
    height: 300px;
  }
  .page-header h1 {
    font-size: 2rem;
  }
}

/* =====================================
   GLOBAL STYLES
===================================== */
body {
  font-family: "Open Sans", sans-serif;
  padding-top: 90px; /* prevent navbar overlap */
  background-color: #fff;
  color: #333;
}

a {
  text-decoration: none;
}

.text-gold {
  color: #d4a23a;
}

/* =====================================
   NAVBAR
===================================== */
.ws-navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1050;
  background: transparent;
  backdrop-filter: none;
  transition: all 0.5s ease-in-out;
  padding: 0.6rem 0; /* slightly reduced padding for balance */
}

.ws-navbar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.25) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: -1;
  opacity: 1;
  transition: all 0.5s ease;
}

/* On scroll */
.ws-navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

.ws-navbar.scrolled::before {
  opacity: 0;
}

/* =====================================
   LOGO (Navbar Brand)
===================================== */
.ws-navbar .navbar-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.ws-navbar .navbar-brand img {
  height: 70px; /* Increased logo size */
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

/* When navbar is scrolled, shrink logo a bit for a neat effect */
.ws-navbar.scrolled .navbar-brand img {
  height: 55px;
}

/* =====================================
   NAV LINKS
===================================== */
.ws-navbar .nav-link {
  color: #fff !important;
  font-weight: 600;
  text-transform: uppercase;
  margin-left: 25px;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  height: 100%;
}

.ws-navbar.scrolled .nav-link {
  color: #111 !important;
}

.ws-navbar .nav-link:hover,
.ws-navbar .nav-link.active {
  color: #d4a23a !important;
}

/* =====================================
   CONTACT BUTTON
===================================== */
.contact-btn {
  background-color: #d4a23a;
  color: #fff !important;
  font-weight: 600;
  border-radius: 4px;
  padding: 8px 18px;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background-color: #000 !important;
  color: #fff !important;
}

.contact-btn.active {
  background-color: #000 !important;
  color: #fff !important;
}

/* =====================================
   TOGGLER (MOBILE MENU ICON)
===================================== */
.navbar-toggler {
  border: none;
  outline: none;
}

.navbar-toggler-icon {
  width: 25px;
  height: 25px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,1)' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.ws-navbar.scrolled .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0,0,0,0.85)' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* =====================================
   RESPONSIVE ADJUSTMENTS
===================================== */
@media (max-width: 992px) {
  .ws-navbar .nav-link {
    margin-left: 0;
    padding: 10px 0;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .ws-navbar .navbar-brand img {
    height: 60px;
  }
}


/* =====================================
   PAGE HEADER / BANNER
===================================== */
.page-header {
  position: relative;
  width: 100%;
  height: 400px;
  background: url("../my-img2/banner2.webp") center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.page-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #fff);
  z-index: 2;
}

.page-header h1,
.page-header nav {
  position: relative;
  z-index: 3;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 1px;
  animation: fadeInDown 1.2s ease-in-out;
}

.page-header .breadcrumb {
  justify-content: center;
  background: transparent;
  margin-top: 15px;
  font-size: 1rem;
}

.page-header .breadcrumb-item a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-header .breadcrumb-item a:hover {
  color: #d4a23a;
}

/* =====================================
   SERVICES SECTION
===================================== */
.service-section-wrapper {
  background-color: #fff;
}

.service-main-title {
  font-weight: 700;
  color: #222;
}

.service-box {
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  background: #fff;
  transition: all 0.4s ease;
  height: 100%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
}

.service-box-inner {
  position: relative;
}

.service-icon-svg {
  width: 20%;
  margin-bottom: 20px;
  transition: transform 0.4s ease;
}

.service-box:hover .service-icon-svg {
  transform: scale(1.1);
}

.service-box-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #000;
}

.service-box-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* =====================================
   BACK TO TOP BUTTON
===================================== */
.back-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #d4a23a;
  color: #fff;
  border: none;
  border-radius: 50%;
  transition: all 0.4s ease;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: #000;
  color: #fff;
}

/* =====================================
   ANIMATIONS & RESPONSIVE
===================================== */
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .page-header {
    height: 300px;
  }
  .page-header h1 {
    font-size: 2rem;
  }
  .service-icon-svg {
    width: 25%;
  }
}
.product-section p strong {
  color: #333;
}

.product-section span.text-primary {
  font-weight: 600;
  color: #0d6efd;
}

.product-section .specifications ul {
  list-style: disc;
  padding-left: 20px;
}

.product-section .specifications li {
  margin-bottom: 6px;
  color: #333;
}
/* Fix mobile navbar background */
.ws-navbar {
    background: #ffffff !important;
    z-index: 9999 !important;
}

/* Mobile toggle dropdown menu background */
@media (max-width: 991px) {
    #navbarNav {
        background: #ffffff !important;
        padding: 20px 15px;
        border-radius: 8px;
        margin-top: 10px;
        width: 100%;
    }

    .navbar-nav .nav-link {
        color: #333 !important;
        font-size: 18px;
        padding: 10px 0;
    }

    .contact-btn {
        display: inline-block;
        margin-top: 10px;
    }
}
