* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #0d0d0d;
  color: #ffffff;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 8%;
}

.logo {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 1px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
}

.btn {
  padding: 10px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
}

.btn.primary {
  background: #ff2e2e;
  color: #fff;
}

.btn.outline {
  border: 1px solid #fff;
  color: #fff;
}

/* HERO FULL IMAGE */
.hero {
  position: relative;
  min-height: 100vh;
  background: url("assets/images/skpro-hero.jpg") center/cover no-repeat;
  display: flex;
  flex-direction: column;
}

/* DARK OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

/* NAVBAR ON TOP */
.navbar {
  position: relative;
  z-index: 3;
}

/* HERO CONTENT */
.hero-content {
  position: relative;
  z-index: 3;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 8%;
}

.hero-text h1 {
  font-size: 52px;
  line-height: 1.2;
}

.hero-text p {
  margin: 20px 0;
  font-size: 16px;
  max-width: 520px;
  color: #dddddd;
}

.hero-note {
  display: block;
  margin-top: 20px;
  font-size: 13px;
  color: #bbbbbb;
}
/* BUYER FILTER */
.buyer-filter {
  background: #0f0f0f;
  padding: 80px 8%;
}

.filter-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.buyer-filter h2 {
  font-size: 36px;
  margin-bottom: 50px;
}

.buyer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.buyer-card {
  background: #1a1a1a;
  padding: 30px;
  border-radius: 14px;
}

.buyer-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.buyer-card p {
  font-size: 14px;
  color: #cccccc;
}

.filter-note {
  margin-top: 40px;
  font-size: 14px;
  color: #aaaaaa;
}
/* SK PRO RANGE */
.skpro-range {
  background: #111;
  padding: 90px 8%;
}

.range-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.skpro-range h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.range-intro {
  font-size: 15px;
  color: #cccccc;
  max-width: 700px;
  margin: 0 auto 60px;
}

.range-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.range-card {
  background: #1a1a1a;
  padding: 35px;
  border-radius: 16px;
  text-align: left;
}

.range-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.range-card p {
  font-size: 14px;
  color: #cccccc;
  margin-bottom: 12px;
}

.range-card span {
  font-size: 13px;
  color: #aaaaaa;
}

.range-note {
  margin-top: 50px;
  font-size: 14px;
  color: #aaaaaa;
}
/* TRUST SECTION */
.skpro-trust {
  background: #0d0d0d;
  padding: 90px 8%;
}

.trust-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.skpro-trust h2 {
  font-size: 36px;
  margin-bottom: 60px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.trust-card {
  background: #1a1a1a;
  padding: 35px;
  border-radius: 16px;
  text-align: left;
}

.trust-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.trust-card p {
  font-size: 14px;
  color: #cccccc;
}
/* VISUAL TRUST STRIP */
.trust-visual {
  background: #111;
  padding: 70px 8%;
}

.trust-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 30px;
  text-align: center;
}

.trust-item h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 8px;
}

.trust-item p {
  font-size: 14px;
  color: #bbbbbb;
}
.store-photos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.store-photos img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
/* FINAL CTA */
.final-cta {
  background: #0b0b0b;
  padding: 90px 8%;
  text-align: center;
}

.cta-container {
  max-width: 900px;
  margin: auto;
}

.final-cta h2 {
  font-size: 34px;
  margin-bottom: 15px;
}

.final-cta p {
  font-size: 15px;
  color: #cccccc;
  margin-bottom: 35px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 25px;
}

.cta-note {
  font-size: 13px;
  color: #aaaaaa;
}
/* ABOUT PAGE */
.about-hero {
  padding: 120px 8% 80px;
  background: #0d0d0d;
  text-align: center;
}

.about-hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.about-hero p {
  font-size: 15px;
  color: #cccccc;
}

/* VISUAL PROOF */
.about-visual-proof {
  background: #111;
  padding: 70px 8%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  text-align: center;
  gap: 30px;
}

.proof-item h3 {
  font-size: 32px;
}

.proof-item p {
  font-size: 14px;
  color: #bbbbbb;
}
/* =========================
   ABOUT PAGE – PREMIUM UI
   ========================= */

/* ABOUT HERO */
.about-hero {
  padding: 140px 8% 90px;
  background: linear-gradient(
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0.85)
    ),
    url("assets/images/testing.jpg") center/cover no-repeat;
  text-align: center;
}

.about-hero h1 {
  font-size: 44px;
  font-weight: 600;
  margin-bottom: 12px;
}

.about-hero p {
  font-size: 15px;
  color: #cccccc;
  max-width: 650px;
  margin: auto;
}

/* ABOUT DETAIL SECTION */
.about-skpro-detail {
  background: #0f0f0f;
  padding: 100px 8%;
}

.detail-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 60px;
  align-items: center;
}

.detail-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.detail-text h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.detail-text p {
  font-size: 15px;
  color: #cccccc;
  line-height: 1.7;
  margin-bottom: 25px;
}

.detail-text ul {
  list-style: none;
  padding: 0;
}

.detail-text ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 12px;
  font-size: 14px;
  color: #bbbbbb;
}

.detail-text ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ff2e2e;
}

/* VISUAL PROOF STRIP */
.about-visual-proof {
  background: #111;
  padding: 80px 8%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  text-align: center;
}

.proof-item h3 {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 6px;
}

.proof-item p {
  font-size: 14px;
  color: #bbbbbb;
}

/* SK PRO RANGE (ABOUT PAGE VERSION) */
.skpro-range {
  background: #0d0d0d;
  padding: 100px 8%;
}

.skpro-range h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.range-intro {
  max-width: 700px;
  margin: 0 auto 60px;
  font-size: 15px;
  color: #cccccc;
}

.range-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
}

.range-card {
  background: #1a1a1a;
  padding: 35px;
  border-radius: 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.range-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.range-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.range-card p {
  font-size: 14px;
  color: #cccccc;
  margin-bottom: 12px;
}

.range-card span {
  font-size: 13px;
  color: #aaaaaa;
}

/* RANGE NOTE */
.range-note {
  margin-top: 50px;
  font-size: 14px;
  color: #aaaaaa;
}

/* STORE PHOTOS */
.store-photos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.store-photos img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  filter: grayscale(10%);
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 34px;
  }

  .detail-text h2 {
    font-size: 24px;
  }

  .store-photos img {
    height: 240px;
  }
}
/* =========================
   PROFESSIONAL IMAGE SLIDER
   ========================= */

.pro-slider {
  background: #0d0d0d;
  padding: 80px 8%;
}

.slider-container {
  max-width: 1100px;
  margin: auto;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.slides {
  position: relative;
  height: 420px;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.slide.active {
  opacity: 1;
}

/* Buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  font-size: 22px;
  padding: 12px 16px;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.slider-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.slider-btn.prev {
  left: 15px;
}

.slider-btn.next {
  right: 15px;
}

/* Mobile */
@media (max-width: 768px) {
  .slides {
    height: 260px;
  }
}
/* =========================
   CONTACT PAGE
   ========================= */

.contact-hero {
  padding: 140px 8% 90px;
  background: #0d0d0d;
  text-align: center;
}

.contact-hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.contact-hero p {
  font-size: 15px;
  color: #cccccc;
  max-width: 700px;
  margin: auto;
}

/* CONTACT DETAILS */
.contact-details {
  background: #111;
  padding: 90px 8%;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 60px;
  align-items: center;
}

.contact-info h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.contact-info p {
  font-size: 15px;
  color: #cccccc;
  margin-bottom: 25px;
}

.contact-info ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.contact-info ul li {
  font-size: 14px;
  color: #bbbbbb;
  margin-bottom: 12px;
  line-height: 1.6;
}

.contact-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-note {
  font-size: 13px;
  color: #aaaaaa;
}

/* MAP */
.contact-map iframe {
  width: 100%;
  height: 380px;
  border: none;
  border-radius: 18px;
}

/* MOBILE */
@media (max-width: 768px) {
  .contact-hero h1 {
    font-size: 34px;
  }

  .contact-map iframe {
    height: 260px;
  }
}
.about-tagline {
  display: block;
  font-size: 13px;
  letter-spacing: 1px;
  color: #aaaaaa;
  margin-bottom: 10px;
  text-transform: uppercase;
}
/* TESTIMONIALS */
.testimonials {
  background: #0d0d0d;
  padding: 90px 8%;
}

.testimonials-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.testimonials h2 {
  font-size: 34px;
  margin-bottom: 50px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: #1a1a1a;
  padding: 30px;
  border-radius: 16px;
  text-align: left;
}

.testimonial-card p {
  font-size: 14px;
  color: #cccccc;
  margin-bottom: 15px;
  line-height: 1.6;
}

.testimonial-card span {
  font-size: 13px;
  color: #aaaaaa;
}
/* SOCIAL PROOF */
.social-proof {
  background: #111;
  padding: 70px 8%;
  text-align: center;
}

.social-proof h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.social-proof p {
  font-size: 14px;
  color: #cccccc;
  margin-bottom: 30px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 25px;
}

.social-links a {
  text-decoration: none;
  color: #ffffff;
  border: 1px solid #333;
  padding: 12px 22px;
  border-radius: 30px;
  font-size: 14px;
  transition: background 0.3s ease;
}

.social-links a:hover {
  background: #ff2e2e;
}
/* SOCIAL BRAND COLORS */
.social-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.social {
  text-decoration: none;
  color: #ffffff;
  padding: 12px 26px;
  border-radius: 30px;
  font-size: 14px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* YouTube */
.social.youtube {
  background: #ff0000;
}

/* Instagram */
.social.instagram {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

/* Facebook */
.social.facebook {
  background: #1877f2;
}

/* Hover effect (professional, not flashy) */
.social:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}
/* SK PRO QUALITY STRIP */
.skpro-quality {
  background: #fff4ee;
  padding: 70px 8%;
}

.quality-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 40px;
  text-align: center;
}

.quality-item img {
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
}

.quality-item p {
  font-size: 13px;
  font-weight: 500;
  color: #111;
  letter-spacing: 0.5px;
}
/* =========================
   SK PRO QUALITY – POLISHED
   ========================= */

.skpro-quality {
  background: #0b0b0b; /* dark website background */
  padding: 90px 8%;
}

.quality-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 30px;
}

.quality-card {
  background: #141414;
  border-radius: 14px;
  padding: 28px 18px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quality-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.quality-card img {
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  filter: drop-shadow(0 4px 10px rgba(255, 120, 0, 0.25));
}

.quality-card p {
  font-size: 13px;
  color: #dddddd;
  line-height: 1.4;
}
.icon {
  width: 44px;
  height: 44px;
  fill: #ff7a00; /* SK Pro orange */
}
/* =========================
   BRAND FLOAT CONTACT
   ========================= */

.brand-float {
  position: fixed;
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  color: #ffffff;
  background: #ff7a00; /* SK Pro orange */
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.55);
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.7);
}

/* LEFT – CALL */
.call-float {
  left: 20px;
}

/* RIGHT – WHATSAPP */
.whatsapp-float {
  right: 20px;
}

/* ICON STYLE */
.brand-float .icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

/* LABEL */
.brand-float .label {
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
  .brand-float {
    bottom: 20px;
    padding: 9px 14px;
    font-size: 13px;
  }

  .brand-float .icon {
    width: 32px;
    height: 32px;
  }
}
/* =========================
   FOOTER
   ========================= */

.site-footer {
  background: #0b0b0b;
  padding: 70px 8% 30px;
  color: #cccccc;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-brand h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #ffffff;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 16px;
  margin-bottom: 12px;
  color: #ffffff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #cccccc;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: #ff7a00; /* SK Pro orange */
}

.footer-contact p {
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid #1a1a1a;
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: #aaaaaa;
}
/* =========================
   FOOTER – MOBILE FIX
   ========================= */

@media (max-width: 768px) {

  .site-footer {
    padding: 50px 6% 25px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: left;
  }

  .footer-brand h3 {
    font-size: 18px;
  }

  .footer-brand p {
    font-size: 13px;
  }

  .footer-links h4,
  .footer-contact h4 {
    font-size: 15px;
  }

  .footer-links a,
  .footer-contact p {
    font-size: 13px;
  }

  .footer-bottom {
    margin-top: 30px;
    padding-top: 15px;
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 12px;
  }

  .hero-text p {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .hero {
    padding-top: 120px;
    padding-bottom: 50px;
    background-position: center center;
  }
}
@media (max-width: 768px) {
  section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (max-width: 768px) {
  h2 {
    font-size: 28px;
    margin-bottom: 14px;
  }

  p {
    font-size: 15px;
    line-height: 1.6;
  }
}
@media (max-width: 768px) {
  .hero-text,
  .final-cta,
  .contact-hero {
    text-align: center;
  }

  .hero-text p,
  .final-cta p {
    max-width: 90%;
    margin: auto;
  }
}
/* HERO SLIDER */
.hero-slider {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex;
  flex-direction: column;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

/* Keep your existing hero styles */
.hero-content {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 8%;
  position: relative;
  z-index: 3;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 2;
}

/* Mobile fix */
@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 34px;
  }
  .hero-text p {
    font-size: 15px;
  }
}
/* HERO DOTS */
.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}

.hero-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.hero-dots .dot.active {
  background: #ff7a00; /* SK Pro brand */
  transform: scale(1.2);
}

/* Mobile */
@media (max-width: 768px) {
  .hero-dots {
    bottom: 20px;
  }
}
:root {
  --bg-main: #0e0e0e;
  --bg-section: #151515;
  --card-bg: #1d1d1d;
  --text-main: #ffffff;
  --text-soft: #cccccc;
  --accent: #ff7a00;
}

body { background: var(--bg-main); color: var(--text-main); }

section { background: var(--bg-section); }

.buyer-card,
.range-card,
.trust-card,
.testimonial-card,
.quality-card {
  background: var(--card-bg);
}

p { color: var(--text-soft); }

.btn.primary { background: var(--accent); }
:root {
  --bg-main: #121212;
  --bg-section: #1a1a1a;
  --card-bg: #222222;
  --text-main: #f5f5f5;
  --text-soft: #bdbdbd;
  --accent: #ff6a00;
}

body { background: var(--bg-main); color: var(--text-main); }
section { background: var(--bg-section); }
.buyer-card,
.range-card,
.trust-card,
.testimonial-card,
.quality-card { background: var(--card-bg); }
p { color: var(--text-soft); }
.btn.primary { background: var(--accent); }
:root {
  --bg-main: #0d0d0d;
  --bg-section: #f6f5f2;
  --card-bg: #ffffff;
  --text-main: #111111;
  --text-soft: #444444;
  --accent: #ff7a00;
}

section.section-light,
.buyer-filter,
.skpro-range,
.testimonials,
.contact-details {
  background: var(--bg-section);
  color: var(--text-main);
}

.buyer-card,
.range-card,
.testimonial-card,
.quality-card {
  background: var(--card-bg);
}

p { color: var(--text-soft); }
.btn.primary { background: var(--accent); }

:root {
  --bg-main: #0b0f14;
  --bg-section: #111827;
  --card-bg: #1f2933;
  --text-main: #ffffff;
  --text-soft: #c7d2da;
  --accent: #3b82f6;
}

body { background: var(--bg-main); color: var(--text-main); }
section { background: var(--bg-section); }
.buyer-card,
.range-card,
.trust-card,
.testimonial-card,
.quality-card { background: var(--card-bg); }
p { color: var(--text-soft); }
.btn.primary { background: var(--accent); }
/* TRUST VISUAL IMAGE SECTION */
.trust-visual-image {
  background: #0d0d0d;
  padding: 80px 0;
  display: flex;
  justify-content: center;
}

.trust-visual-image img {
  width: 100%;
  max-width: 1400px;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

/* Mobile optimization */
@media (max-width: 768px) {
  .trust-visual-image {
    padding: 50px 0;
  }

  .trust-visual-image img {
    border-radius: 12px;
  }
}
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* Mobile */
@media (max-width:768px){

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 230px;
    background: #111;
    flex-direction: column;
    padding: 90px 25px;
    gap: 20px;

    transform: translateX(100%);
    transition: 0.3s;
  }

  .nav-links.active {
    transform: translateX(0);
  }
}
.hero-slider {
  margin-top: 70px; /* height of navbar */
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}
/* ===== HEADER ===== */

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  z-index: 1000;
}

/* Navbar layout */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 8%;
}

.logo {
  font-size: 18px;
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 26px;
  list-style: none;
}
/* MENU LINKS DESIGN */

.nav-links li {
  width: 100%;
}

.nav-links a {
  display: block;
  width: 100%;
  padding: 14px 18px;

  font-size: 16px;
  letter-spacing: 0.5px;

  border-radius: 10px;
  color: #fff;
  text-decoration: none;

  transition: 0.3s;
}

/* Hover / Tap effect */
.nav-links a:hover {
  background: rgba(255,122,0,0.15);
  color: #ff7a00;
  transform: translateX(6px);
}
.nav-links a::before {
  content: "";
  position: absolute;
  left: 0;
  width: 3px;
  height: 0;
  background: #ff7a00;
  transition: 0.3s;
}

.nav-links a:hover::before {
  height: 100%;
}

/* SCROLL TO TOP BUTTON */
#scrollTopBtn {
  position: fixed;
  bottom: 90px;
  right: 25px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #ff7a00;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: none;
  z-index: 9999;
  box-shadow: 0 8px 22px rgba(0,0,0,0.6);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

#scrollTopBtn:hover {
  transform: translateY(-3px);
}
