/* GENERAL */
body {
  background-color: #0a0e14;
  color: #ffffff;
  font-family: "Segoe UI", Arial, sans-serif;
}

/* HERO */
.hero {
  /* position: relative; */
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(
    rgba(10, 14, 20, 0.85),
    rgba(10, 14, 20, 0.85)
  );
}

/* Three.js canvas */
#three-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Content above canvas */
.hero-content {
  z-index: 2;
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  color: #9aa7bd;
}

.hero-title {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 700;
  line-height: 1.15;
  margin: 20px 0;
}

.hero-title .highlight {
  color: #ffb703;
}

.hero-subheadline {
  font-size: 18px;
  color: #d0d7e2;
  max-width: 800px;
}

.hero-intro {
  font-size: 16px;
  color: #c6cfdd;
  max-width: 900px;
  margin-top: 15px;
}

/* Parallax smoothing */
.hero {
  perspective: 1200px;
}

.hero-content {
  transition: transform 0.15s ease-out;
  will-change: transform;
}

@media (max-width: 768px) {
  .hero {
    min-height: calc(100vh - 80px);
    padding-top: 40px;
    padding-bottom: 120px;
  }
}

/* =========================
   NAVBAR STYLING
========================= */

/* Default (transparent on hero) */
.custom-navbar {
  padding: 18px 0;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  background-color: transparent;
}

/* Solid navbar after scroll */
.custom-navbar.scrolled {
  background-color: rgba(10, 14, 20, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* Brand */
.navbar-brand {
  font-size: 20px;
  letter-spacing: 0.5px;
}

/* Links */
.navbar-nav .nav-link {
  font-weight: 500;
  padding: 8px 14px;
  color: #d0d7e2 !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #ffb703 !important;
}

/* Mobile menu background */
@media (max-width: 991px) {
  .navbar-collapse {
    background-color: rgba(10, 14, 20, 0.97);
    padding: 20px;
    border-radius: 8px;
    margin-top: 10px;
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  letter-spacing: 1px;
  color: #b9c3d6;
  opacity: 0.8;
}

.scroll-indicator::after {
  content: "↓";
  display: block;
  text-align: center;
  margin-top: 6px;
  font-size: 16px;
  color: #ffb703;
  animation: bounce 1.6s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* =========================
   NAVBAR INTERACTIONS
========================= */

/* Nav link base */
.navbar-nav .nav-link {
  position: relative;
  font-weight: 500;
  padding: 8px 14px;
  color: #d0d7e2 !important;
  transition: color 0.25s ease;
}

/* Hover color */
.navbar-nav .nav-link:hover {
  color: #ffb703 !important;
}

/* Animated underline */
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #ffb703;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

/* Show underline on hover */
.navbar-nav .nav-link:hover::after {
  width: 60%;
}

/* Active link */
.navbar-nav .nav-link.active {
  color: #ffb703 !important;
}

/* Active underline */
.navbar-nav .nav-link.active::after {
  width: 60%;
}

/* =========================
   GLASS NAVBAR EFFECT
========================= */

.custom-navbar.scrolled {
  background: rgba(10, 14, 20, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* ################################## products #################################### */
/* Smooth transition from hero to next section */
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(
    to bottom,
    rgba(10, 14, 20, 0) 0%,
    rgba(15, 20, 28, 1) 100%
  );
  z-index: 3;
  pointer-events: none;
}

/* =========================
   PRODUCTS SECTION
========================= */
/* =========================
   PRODUCTS SECTION
========================= */

.products-section {
  padding: 120px 0 100px;
  background-color: #0f141c;
  position: relative;
}

/* Section header */
.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #ffb703;
  margin-bottom: 8px;
}

.section-title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 16px;
  color: #b9c3d6;
  max-width: 600px;
}

/* Product card */
.product-card {
  height: 100%;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.01)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 22px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Image wrapper */
.product-image {
  height: 210px;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 18px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(25%) contrast(1.05);
  transition: transform 0.5s ease, filter 0.5s ease;
}

/* Content */
.product-content h5 {
  font-size: 18px;
  font-weight: 600;
  color: #ffb703;
  margin-bottom: 14px;
}

.product-content ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.product-content ul li {
  font-size: 15px;
  color: #d0d7e2;
  padding-left: 18px;
  margin-bottom: 8px;
  position: relative;
}

/* Custom bullet */
.product-content ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ffb703;
  font-weight: bold;
}

/* Hover effects */
.image-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.45);
}

.image-card:hover img {
  transform: scale(1.08);
  filter: grayscale(0%) contrast(1.1);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .products-section {
    padding-top: 80px;
  }

  .product-image {
    height: 180px;
  }
}


/* =========================
   SERVICES SECTION
========================= */

.services-section {
  padding: 120px 0 100px;
  background: linear-gradient(
    to bottom,
    #0f141c,
    #0b1016
  );
}

/* Service card */
.service-card {
  height: 100%;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.01)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 28px 24px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Icon */
.service-icon {
  font-size: 28px;
  margin-bottom: 16px;
}

/* Title */
.service-card h5 {
  font-size: 18px;
  font-weight: 600;
  color: #ffb703;
  margin-bottom: 12px;
}

/* Text */
.service-card p {
  font-size: 15px;
  color: #d0d7e2;
  line-height: 1.6;
  margin: 0;
}

/* Hover effect */
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.45);
}

/* Mobile spacing */
@media (max-width: 768px) {
  .services-section {
    padding-top: 80px;
  }
}
/* ################################## services #################################### */
/* =========================
   WHY CHOOSE US SECTION
========================= */

.why-choose-section {
  padding: 120px 0 100px;
  background-color: #0b1016;
}

/* Card */
.why-card {
  height: 100%;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.01)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 28px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Icon */
.why-icon {
  display: inline-block;
  font-size: 20px;
  color: #ffb703;
  margin-bottom: 14px;
}

/* Title */
.why-card h5 {
  font-size: 18px;
  font-weight: 600;
  color: #ffb703;
  margin-bottom: 10px;
}

/* Text */
.why-card p {
  font-size: 15px;
  color: #d0d7e2;
  line-height: 1.6;
  margin: 0;
}

/* Hover */
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.45);
}

/* Mobile */
@media (max-width: 768px) {
  .why-choose-section {
    padding-top: 80px;
  }
}

/* =========================
   WHY CHOOSE US – ROYAL BANNERS
========================= */

.why-banner-row {
  display: flex;
  gap: 22px;
  margin-top: 40px;
}

/* Individual banner */
.why-banner {
  flex: 1;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.015)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 34px 22px;
  min-height: 260px;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Hanging illusion */
.why-banner::before {
  content: "";
  position: absolute;
  top: -12px;
  width: 40%;
  height: 3px;
  background: rgba(255, 183, 3, 0.6);
  border-radius: 2px;
}

/* Icon */
.why-banner .why-icon {
  font-size: 22px;
  color: #ffb703;
  margin-bottom: 18px;
}

/* Title */
.why-banner h5 {
  font-size: 17px;
  font-weight: 600;
  color: #ffb703;
  margin-bottom: 14px;
}

/* Text */
.why-banner p {
  font-size: 14.5px;
  color: #d0d7e2;
  line-height: 1.6;
}

/* Hover */
.why-banner:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.45);
}

/* =========================
   MOBILE BEHAVIOR
========================= */
@media (max-width: 992px) {
  .why-banner-row {
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .why-banner {
    min-width: 260px;
    flex: none;
  }
}

/* =========================
   WHY CHOOSE US – MOBILE GRID FIX
========================= */

@media (max-width: 992px) {

  .why-banner-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 40px;
  }

  /* Make banners full-width cards again */
  .why-banner {
    min-width: unset;
  }

  /* Center the last banner (5th item) */
  .why-banner:nth-child(5) {
    grid-column: 1 / -1;      /* span both columns */
    max-width: 320px;
    justify-self: center;
  }
}

/* ################################## why choose us #################################### */

/* =========================
   TIMELINE SECTION
========================= */

.timeline-section {
  padding: 120px 0 100px;
  background: linear-gradient(
    to bottom,
    #0b1016,
    #0f141c
  );
}

/* Timeline wrapper */
.timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 60px;
}

/* Horizontal line */
.timeline::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255, 183, 3, 0.4);
}

/* Step */
.timeline-step {
  position: relative;
  max-width: 200px;
  text-align: center;
}

/* Dot */
.timeline-dot {
  width: 64px;
  height: 64px;
  background: #0f141c;
  border: 2px solid #ffb703;
  border-radius: 50%;
  color: #ffb703;
  font-weight: 600;
  font-size: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0 auto 20px;
  z-index: 1;
}

/* Title */
.timeline-step h5 {
  font-size: 16px;
  font-weight: 600;
  color: #ffb703;
  margin-bottom: 10px;
}

/* Text */
.timeline-step p {
  font-size: 14.5px;
  color: #d0d7e2;
  line-height: 1.6;
}

/* =========================
   MOBILE (VERTICAL TIMELINE)
========================= */

@media (max-width: 992px) {
  .timeline {
    flex-direction: column;
    gap: 40px;
  }

  .timeline::before {
    top: 0;
    left: 66px;
    width: 2px;
    height: 100%;
  }

  .timeline-step {
    max-width: 100%;
    text-align: left;
    padding-left: 80px;
  }

  .timeline-dot {
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
  }
}
/* =========================
/* =========================
   TIMELINE PROGRESS GLOW
========================= */

/* Base timeline line (already exists) */
.timeline::before {
  content: "";
  position: absolute;
  top: 67px;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255, 183, 3, 0.25);
  z-index: 1;
}

/* Animated glowing progress */
.timeline::after {
  content: "";
  position: absolute;
  top: 66px;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(255, 183, 3, 0.1),
    rgba(255, 183, 3, 0.9),
    rgba(255, 183, 3, 0.1)
  );
  box-shadow:
    0 0 8px rgba(255, 183, 3, 0.6),
    0 0 18px rgba(255, 183, 3, 0.4);
  animation: timelineProgress 6s ease-in-out infinite;
  z-index: 2;
}

/* Horizontal animation */
@keyframes timelineProgress {
  0% {
    width: 0%;
    opacity: 0.3;
  }
  50% {
    width: 100%;
    opacity: 1;
  }
  100% {
    width: 100%;
    opacity: 0;
  }
}

/* =========================
   MOBILE VERTICAL PROGRESS
========================= */

@media (max-width: 992px) {
  .timeline::before {
    top: 0;
    left: 66px;
    width: 2px;
    height: 100%;
  }

  .timeline::after {
    top: 0;
    left: 66px;
    width: 2px;
    height: 0%;
    background: linear-gradient(
      180deg,
      rgba(255, 183, 3, 0.1),
      rgba(255, 183, 3, 0.9),
      rgba(255, 183, 3, 0.1)
    );
    animation: timelineProgressVertical 6s ease-in-out infinite;
  }

  @keyframes timelineProgressVertical {
    0% {
      height: 0%;
      opacity: 0.3;
    }
    50% {
      height: 100%;
      opacity: 1;
    }
    100% {
      height: 100%;
      opacity: 0;
    }
  }
}
/* =========================
   MOBILE VERTICAL PROGRESS
========================= */

@media (max-width: 992px) {
  .timeline::before {
    top: 0;
    left: 66px;
    width: 2px;
    height: 100%;
  }

  .timeline::after {
    top: 0;
    left: 66px;
    width: 2px;
    height: 0%;
    background: linear-gradient(
      180deg,
      rgba(255, 183, 3, 0.1),
      rgba(255, 183, 3, 0.9),
      rgba(255, 183, 3, 0.1)
    );
    animation: timelineProgressVertical 6s ease-in-out infinite;
  }

  @keyframes timelineProgressVertical {
    0% {
      height: 0%;
      opacity: 0.3;
    }
    50% {
      height: 100%;
      opacity: 1;
    }
    100% {
      height: 100%;
      opacity: 0;
    }
  }
}

/* =========================
   ABOUT US SECTION
========================= */

.about-section {
  padding: 120px 0 100px;
  background: linear-gradient(
    to bottom,
    #0f141c,
    #0b1016
  );
}

/* Paragraph text */
.about-text {
  font-size: 15.5px;
  color: #d0d7e2;
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 640px;
}

/* Right-side highlight box */
.about-highlight {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.015)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px;
}

/* List */
.about-highlight ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-highlight ul li {
  font-size: 15px;
  color: #d0d7e2;
  padding-left: 22px;
  margin-bottom: 14px;
  position: relative;
}

/* Check icon */
.about-highlight ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #ffb703;
  font-weight: 600;
}

/* Mobile */
@media (max-width: 768px) {
  .about-section {
    padding-top: 80px;
  }
}


/* about end#####################################################################333 */

/* =========================
   CONTACT SECTION
========================= */

.contact-section {
  padding: 120px 0 120px;
  background: linear-gradient(
    to bottom,
    #0b1016,
    #080c11
  );
}

/* Left info box */
.contact-info-box {
  height: 100%;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.015)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 30px;
}

.contact-info-box h5 {
  font-size: 18px;
  font-weight: 600;
  color: #ffb703;
  margin-bottom: 14px;
}

.contact-info-box p {
  font-size: 15px;
  color: #d0d7e2;
  line-height: 1.6;
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.contact-info-list li {
  font-size: 14.5px;
  color: #d0d7e2;
  margin-bottom: 10px;
}

.contact-note {
  font-size: 13.5px;
  color: #b9c3d6;
}

/* Form box */
.contact-form-box {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.01)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 30px;
}

/* Inputs */
.contact-form-box .form-control {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  padding: 12px 14px;
}

.contact-form-box .form-control::placeholder {
  color: #9aa4b2;
}

.contact-form-box .form-control:focus {
  border-color: #ffb703;
  box-shadow: none;
  background: rgba(0, 0, 0, 0.4);
}

/* Button */
.contact-form-box .btn-warning {
  font-weight: 600;
  padding: 12px 26px;
}

/* Mobile */
@media (max-width: 768px) {
  .contact-section {
    padding-top: 80px;
  }
}
/* ################################## contact #################################### */
/* =========================
   FOOTER
========================= */

.site-footer {
  background-color: #080c11;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 30px 0;
}

.footer-text {
  font-size: 14px;
  color: #b9c3d6;
  margin: 0;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  gap: 18px;
}

.footer-links li a {
  font-size: 14px;
  color: #d0d7e2;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-links li a:hover {
  color: #ffb703;
}

/* Mobile */
@media (max-width: 768px) {
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;              /* circle reads as badge, not box */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3px;

  background: rgba(255, 255, 255, 0.025); /* softer */
  border: none;                    /* ❌ remove inner box border */
}

.service-icon i {
  font-size: 28px;
  color: #9aa7bd;                  /* steel grey */
  line-height: 1;

  text-shadow: 0 1px 0 rgba(0,0,0,0.6); /* etched, not glow */
  transition: color 0.3s ease, transform 0.3s ease;
}

.service-card:hover .service-icon i {
  color: #ffb703;                  /* accent gold */
  transform: scale(1.05);          /* subtle, B2B-safe */
}

.service-card:hover .service-icon {
  background: rgba(255, 183, 3, 0.06);
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.3px;

  color: #ffffff;
  margin-bottom: 12px;
}

.section-title span {
  color: #ffb703; /* accent gold */
}

.section-title::after {
  content: "";
  display: block;
  width: 600px;
  height: 2px;
  margin-top: 14px;

  background: linear-gradient(
    90deg,
    #ffb703 0%,
    rgba(255, 183, 3, 0.6) 60%,
    rgba(255, 183, 3, 0.1) 100%
  );
}
@media (max-width: 768px) {
  .section-title::after {
    width: 100%;
  }
}

#formResponse {
  margin-top: 10px;
}

.wa-logo-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Logo only — fully transparent background */
.wa-logo-float img {
  width: 100%;
  height: auto;
  filter:
    drop-shadow(0 0 6px rgba(37, 211, 102, 0.55))
    drop-shadow(0 0 12px rgba(37, 211, 102, 0.25));
  animation: wa-soft-pulse 3s ease-in-out infinite;
}

/* Very subtle breathing glow */
@keyframes wa-soft-pulse {
  0% {
    filter:
      drop-shadow(0 0 6px rgba(37, 211, 102, 0.4))
      drop-shadow(0 0 12px rgba(37, 211, 102, 0.2));
    transform: scale(1);
  }
  50% {
    filter:
      drop-shadow(0 0 10px rgba(37, 211, 102, 0.7))
      drop-shadow(0 0 18px rgba(37, 211, 102, 0.35));
    transform: scale(1.04);
  }
  100% {
    filter:
      drop-shadow(0 0 6px rgba(37, 211, 102, 0.4))
      drop-shadow(0 0 12px rgba(37, 211, 102, 0.2));
    transform: scale(1);
  }
}

/* Hover = crisp, no animation */
.wa-logo-float:hover img {
  animation-play-state: paused;
  filter:
    drop-shadow(0 0 12px rgba(37, 211, 102, 0.9));
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .wa-logo-float img {
    animation: none;
  }
}
