@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap");

/* ROOT VARIABLES */
:root {
  --navy: #14243a;
  --yellow: #e77811;
  --dark-yellow: #da730b;
  --gray: #adabab;
  --light-gray: #f5f5f5;
  --white: #ffffff;
  --text-dark: #1a1a2e;
  --text-muted: #6b7280;
}

/* GLOBAL RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BASE ELEMENTS */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--white);
  color: var(--text-dark);
  line-height: 1.4;
  font-size: 16px !important;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Space Grotesk", sans-serif;
  color: var(--navy);
  line-height: 1.2;
}
p {
  font-size: 15.5px !important;
}

section {
  padding: 40px 0;
}

.text-amber {
  color: var(--yellow) !important;
}

.bg-amber {
  background-color: var(--yellow) !important;
}

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

.btn-amber {
  background: linear-gradient(
    135deg,
    var(--yellow) 0%,
    var(--dark-yellow) 100%
  );
  color: var(--white) !important;
  border: none;
  transition: all 0.3s ease;
  font-weight: 600;
}

.btn-amber:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(231, 120, 17, 0.4);
  background: linear-gradient(
    135deg,
    var(--dark-yellow) 0%,
    var(--yellow) 100%
  );
}
.btn-amber-outline {
  background: transparent;
  color: var(--yellow) !important;
  border: 2px solid var(--yellow);
  transition: all 0.3s ease;
  font-weight: 600;
}
.btn-amber-outline:hover {
  background: linear-gradient(
    135deg,
    var(--yellow) 0%,
    var(--dark-yellow) 100%
  );
  color: var(--white) !important;
  border-color: transparent;
  box-shadow: 0 8px 25px rgba(231, 120, 17, 0.4);
}

.text-gradient-amber {
  background: linear-gradient(
    135deg,
    var(--yellow) 0%,
    var(--dark-yellow) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(231, 120, 17, 0.15) 0%,
    rgba(218, 115, 11, 0.15) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  transition: all 0.3s ease;
}

.icon-circle:hover {
  background: linear-gradient(
    135deg,
    var(--yellow) 0%,
    var(--dark-yellow) 100%
  );
  color: var(--white);
  transform: scale(1.1);
}

.product-card {
  transition: all 0.3s ease;
  border-color: rgba(97, 96, 96, 0.3) !important;
  box-shadow: 0 5px 20px rgba(20, 36, 58, 0.1);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(20, 36, 58, 0.15);
  border-color: var(--yellow) !important;
}

.shadow-sm {
  box-shadow: 0 2px 8px rgba(20, 36, 58, 0.08) !important;
}

.shadow-xl {
  box-shadow: 0 20px 50px rgba(20, 36, 58, 0.2) !important;
}

/* TOP BAR */
.top-bar {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3048 100%);
  padding: 10px 0;
}

.top-bar a {
  color: #d8d7d7;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.top-bar a:hover {
  color: var(--yellow);
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .top-bar .row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .top-bar-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

/* NAVBAR */
.navbar {
  background: var(--white) !important;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(20, 36, 58, 0.1);
}

.navbar-brand img {
  transition: transform 0.3s ease;
}

.navbar-brand img:hover {
  transform: scale(1.05);
}

.nav-link {
  color: var(--navy) !important;
  position: relative;
  padding: 8px 16px !important;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

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

.nav-link:hover {
  color: var(--yellow) !important;
}

.nav-link.active {
  color: var(--yellow) !important;
}

.navbar-toggler {
  border: 2px solid var(--navy);
  padding: 8px;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(231, 120, 17, 0.3);
}

.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='%2314243a' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* remove default bootstrap arrow */
.dropdown-toggle::after {
  display: none !important;
}

/* custom hover */
.dropdown-item i {
  transition: transform 0.3s ease;
}

.dropdown-item:hover i {
  transform: translateX(5px);
}

.dropdown-toggle i {
  transition: transform 0.3s ease;
}

.dropdown-toggle.show i {
  transform: rotate(180deg);
}

/* smoother dropdown */
.dropdown-menu {
  animation: dropdownFade 0.3s ease;
}

@keyframes dropdownFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-menu {
  border: none;
  box-shadow: 0 10px 40px rgba(20, 36, 58, 0.15);
  border-radius: 12px;
  padding: 12px;
  border: 1px solid rgba(97, 96, 96, 0.3) !important;
}

.dropdown-item {
  color: var(--navy);
  border-radius: 8px;
  padding: 10px 16px;
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background: linear-gradient(
    135deg,
    var(--yellow) 0%,
    var(--dark-yellow) 100%
  );
  color: var(--white);
}

/* HERO */
#home {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3048 100%);
  min-height: 80vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: visible;
}

#home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-text {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
}
.hero-content {
  padding-bottom: 120px;
}

.hero-stats {
  position: absolute;
  left: 50%;
  bottom: -70px;
  transform: translateX(-50%);
  width: 100%;
  z-index: 5;
}

.stat-card {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  padding: 30px;
  max-width: 900px;
  margin: auto;
}

/* Mobile Fix */
@media (max-width: 768px) {
  .hero-content {
    padding-bottom: 10px;
  }

  .stat-card {
    padding: 20px 0;
  }
  .hero-stats {
    position: static;
    transform: none;
    margin-top: 30px;
  }

  .icon-circle {
    width: 50px;
    height: 50px;
  }
  .journey-card {
    height: fit-content !important;
  }
}

/* JOURNEY */
#journey {
  overflow-x: hidden;
}

.journey-wrapper {
  padding-top: 40px;
}

.journey-line {
  position: absolute;
  top: 25px;
  left: 0;
  right: 0;
  z-index: 0;
}

.journey-dot {
  width: 14px;
  height: 14px;
  background: var(--yellow);
  border-radius: 50%;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
}

.journey-card {
  border-radius: 14px;
  padding: 10px 20px;
  height: 9rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(97, 96, 96, 0.3);
  transition: all 0.3s ease;
}

.journey-card h5 {
  color: var(--yellow);
  font-weight: 700;
}

.journey-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* mobile scroll */
/* ===== MOBILE FIX FOR JOURNEY ===== */
@media (max-width: 768px) {
  .journey-wrapper {
    padding-top: 0;
  }

  /* remove horizontal line */
  .journey-line {
    display: none;
  }

  /* make vertical layout */
  .journey-wrapper .row {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .journey-wrapper .col-md {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    min-width: 100%;
  }

  /* vertical line */
  .journey-wrapper {
    position: relative;
  }

  .journey-wrapper::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #ddd;
  }

  /* dot left side */
  .journey-dot {
    margin: 0;
    flex-shrink: 0;
  }

  /* card full width */
  .journey-card {
    text-align: left;
    width: 100%;
    padding: 16px;
  }

  .journey-card h5 {
    font-size: 16px;
  }

  .journey-card p {
    font-size: 14px;
    margin-bottom: 0;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ABOUT */
#about {
  background: var(--white);
}
.about-header {
  padding-top: 100px;
}

@media (max-width: 768px) {
  #about .p-5 {
    padding: 24px !important;
  }
  .about-header {
    padding-top: 0px;
  }
}

/* WHY CHOOSE */
#why-choose {
  background: linear-gradient(180deg, var(--light-gray) 0%, var(--white) 100%);
}

/* PRODUCTS */
#products {
  background: var(--white);
}

/* INDUSTRIES */
#industries {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3048 100%);
}

.industry-card {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.15) !important;
  border: 1px solid #adabab88 !important;
}
.industry-card:hover {
  background: rgba(184, 130, 69, 0.25) !important;
  border: 1px solid rgb(173, 120, 40) !important;
  box-shadow: 0 15px 40px rgba(199, 143, 71, 0.2);
}
/* EXHIBITIONS */
#exhibitions {
  background: var(--light-gray);
}

.video-card {
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-card:hover {
  transform: scale(1.02);
}

.video-card img {
  transition: all 0.3s ease;
}

.video-card:hover img {
  opacity: 0.9;
}

.play-btn {
  width: 70px;
  height: 70px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.video-card:hover .play-btn {
  transform: scale(1.1);
}

/* BRANDS MARQUEE */
#brands {
  background: var(--light-gray);
}

.marquee-container {
  animation: marquee 30s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.marquee-wrapper {
  overflow: hidden;
}

.marquee-wrapper:hover .marquee-container {
  animation-play-state: paused;
}

.brand-card {
  min-width: 170px;
  height: 110px;
  background: var(--white);
  border: 1px solid rgba(97, 96, 96, 0.3);
  box-shadow: 0 5px 15px rgba(20, 36, 58, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  transition: all 0.3s ease;
}

.brand-card:hover {
  border-color: var(--yellow);
  box-shadow: 0 5px 20px rgba(231, 120, 17, 0.15);
}

.brand-card img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

/* TESTIMONIALS */
#testimonials {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3048 100%);
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(97, 96, 96, 0.3);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

/* CATALOG CTA */
/* CATALOG CTA */
#catalog-cta {
  position: relative;
  overflow: hidden;
  background: url("images/catalog-cta.jpg") center/cover no-repeat;
}

/* Dark overlay */
#catalog-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 25, 47, 0.9),
    rgba(10, 25, 47, 0.85)
  );
  z-index: 1;
}

/* KEEP your animation layer */
#catalog-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.08) 0%,
    transparent 70%
  );
  animation: pulse 4s ease-in-out infinite;
  z-index: 2;
}

/* Content above everything */
#catalog-cta .container {
  position: relative;
  z-index: 3;
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

/* CONTACT */
#contact {
  background: var(--white);
}

.form-control,
.form-select {
  border: 2px solid rgba(173, 171, 171, 0.3);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 4px rgba(231, 120, 17, 0.15);
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-info-item .icon-circle {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .contact-form-card {
    padding: 24px !important;
  }
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, var(--navy) 0%, #0d1520 100%);
}

footer a {
  color: var(--gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--yellow);
}

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

.social-link:hover {
  background: var(--yellow);
  color: var(--white);
  transform: translateY(-3px);
}

/* SECTION HEADINGS */
.section-label {
  color: var(--yellow);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.875rem;
}

/* ANIMATIONS */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

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

/* SCROLL TO TOP */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--yellow) 0%,
    var(--dark-yellow) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(231, 120, 17, 0.4);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-5px);
  color: var(--white);
}

/* RESPONSIVE UTILITIES */
@media (max-width: 576px) {
  .display-5 {
    font-size: 1.75rem;
  }

  .btn-lg {
    padding: 10px 24px !important;
    font-size: 0.95rem;
  }
}

/* UTILITY CLASSES */
.lh-1 {
  line-height: 1.1;
}

.text-muted-foreground {
  color: var(--text-muted);
}

.bg-light-custom {
  background-color: var(--light-gray);
}

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
  background: var(--gray);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--navy);
}

/* SELECTION */
::selection {
  background: var(--yellow);
  color: var(--white);
}
