:root {
  --gold: #d4af37;
  --navy: #04142f;
}

html {
  scroll-behavior: smooth;
}

body {
  background: radial-gradient(circle at top left, #173970 0%, transparent 30%),
    radial-gradient(circle at bottom right, #0d2446 0%, transparent 35%),
    #030d22;
  color: white;
  overflow-x: hidden;
  padding-top: 70px;
}

/* Navbar */

.glass-navbar {
  background: rgba(255, 255, 255, 0.084);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
}

.navbar-fixed {
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
  z-index: 1;
  top: 0;
}

.navbar-brand {
  font-weight: 800;
  font-size: 30px;
  background: linear-gradient(180deg, #ffd978, #d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 0;
  img {
    width: 90px;
  }
}

.nav-link {
  color: #fff !important;
  font-weight: 500;
  margin: 0 8px;
}

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

.btn-gold-outline {
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 12px;
  padding: 10px 25px;
}

.btn-gold-outline:hover {
  background: var(--gold);
  color: #04142f;
}

/* Hero */

.hero {
  padding: 100px 0;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.3;
  background: linear-gradient(180deg, #ffe08c, #d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 15px;
}

.hero-text {
  color: #d7d7d7;
  line-height: 2.2;
  font-size: 18px;
}

.btn-gold {
  background: linear-gradient(180deg, #ffe08c, #d4af37);

  border: none;
  padding: 14px 35px;
  border-radius: 12px;
  font-weight: 700;
  color: #04142f;
}

.btn-gold:hover {
  opacity: 0.9;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  border-radius: 30px;
}

.floating-box {
  position: absolute;
  bottom: 30px;
  left: 30px;
  padding: 20px 30px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
}

.floating-box-p {
  color: var(--gold);
  font-size: 40px;
  font-weight: 800;
  margin: 0;
}

.vision-section,
.activity-section,
.advantages-section,
.services-section,
.brands-table-section,
.product-category-section,
.brands-section,
.achievements-section,
.contact-section,
.capabilities-section {
  padding: 100px 0 0 0 !important;
  @media (max-width: 600px) {
    padding: 60px 0 0 0 !important;
  }
}

/* Features */

.section-title {
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(180deg, #ffe08c, #d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 600px) {
  .section-title {
    font-size: 36px;
  }
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 25px;
  padding: 45px 25px;
  height: 100%;
  transition: 0.4s;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 35px rgba(212, 175, 55, 0.15);
}

.feature-icon {
  font-size: 55px;
  color: var(--gold);
  margin-bottom: 25px;
}

.feature-title {
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 15px;
}

.feature-text {
  color: #d7d7d7;
  line-height: 1.9;
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 3rem;
  }

  .hero-image {
    margin-top: 40px;
  }

  .hero-image img {
    height: 450px;
  }
}

/* ===== Vision Section ===== */

.section-subtitle {
  color: #d4af37;
  letter-spacing: 2px;
  font-size: 14px;
  text-transform: uppercase;
}

.vision-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 30px;
  padding: 50px 35px;
  height: 100%;
  transition: 0.4s;
}

.vision-card:hover {
  transform: translateY(-12px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.12);
}

.vision-icon {
  width: 90px;
  height: 90px;
  margin: auto auto 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.vision-icon i {
  color: #d4af37;
  font-size: 36px;
}

.vision-card h3 {
  color: #d4af37;
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 700;
}

.vision-card p {
  color: #d6d6d6;
  line-height: 2;
  margin: 0;
}

.activity-box {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 30px;
  padding: 45px;
}

.activity-box p {
  color: #d6d6d6;
  line-height: 2.4;
  font-size: 18px;
  margin: 0;
  text-align: justify;
}

.adv-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 28px;
  padding: 40px 25px;
  height: 100%;
  transition: 0.4s;
}

.adv-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 0 35px rgba(212, 175, 55, 0.12);
}

.adv-icon {
  width: 80px;
  height: 80px;
  margin: auto auto 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.adv-icon i {
  font-size: 32px;
  color: #d4af37;
}

.adv-card h4 {
  color: #d4af37;
  font-size: 22px;
  margin-bottom: 15px;
  min-height: 60px;
}

.adv-card p {
  color: #d6d6d6;
  line-height: 1.9;
  margin: 0;
}

.service-card {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 28px;
  overflow: hidden;
  height: 220px;
  transition: 0.4s;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.12);
}

.service-image {
  width: 42%;
  height: 100%;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-content {
  width: 58%;
  padding: 25px;
}

.service-content i {
  font-size: 32px;
  color: #d4af37;
  margin-bottom: 15px;
}

.service-content h4 {
  color: #d4af37;
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 700;
}

.service-content p {
  color: #d6d6d6;
  line-height: 1.9;
  margin: 0;
}

@media (max-width: 768px) {
  .service-card {
    flex-direction: column;
    height: auto;
  }

  .service-image {
    width: 100%;
    height: 220px;
  }

  .service-content {
    width: 100%;
  }
}

.capabilities-text {
  max-width: 850px;
  margin: auto;
  color: #cfcfcf;
  line-height: 2.2;
}

.capability-card {
  overflow: hidden;
  height: 100%;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.12);
  transition: 0.4s;
}

.capability-card:hover {
  transform: translateY(-10px);
  border-color: #d4af37;
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.12);
}

.capability-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.capability-content {
  padding: 30px;
  text-align: center;
}

.capability-content i {
  font-size: 34px;
  color: #d4af37;
  margin-bottom: 15px;
}

.capability-content h4 {
  color: #d4af37;
  margin-bottom: 12px;
}

.capability-content p {
  color: #d7d7d7;
  margin: 0;
}

.feature-box {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  height: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 22px;
  transition: 0.3s;
}

.feature-box:hover {
  border-color: #d4af37;
  transform: translateY(-5px);
}

.feature-box i {
  font-size: 30px;
  color: #d4af37;
}

.feature-box h5 {
  color: #d4af37;
  margin-bottom: 8px;
}

.feature-box p {
  margin: 0;
  color: #d0d0d0;
}

.brands-desc {
  color: #bdbdbd;
  max-width: 800px;
  margin: auto;
  line-height: 2;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 50px;
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.12);
  transition: 0.3s;
}
.brand-row:nth-child(1) {
  border-top-right-radius: 20px;
  @media (max-width: 992px) {
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
  }
}
.brand-row:nth-child(2) {
  border-top-left-radius: 20px;
  @media (max-width: 992px) {
    border-top-left-radius: 0px;
  }
}
.brand-row:nth-last-child(1) {
  border-bottom-left-radius: 20px;
  @media (max-width: 992px) {
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
  }
}
.brand-row:nth-last-child(2) {
  border-bottom-right-radius: 20px;
  @media (max-width: 992px) {
    border-bottom-right-radius: 0px;
  }
}

.brand-row:hover {
  transform: translateY(-5px);
  border-color: #d4af37;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.12);
}

.brand-name {
  color: #d4af37;
  font-weight: 700;
  width: 30%;
}

.brand-maker {
  color: #fff;
  width: 45%;
}

.brand-country {
  color: #cfcfcf;
  width: 25%;
  text-align: left;
}

@media (max-width: 992px) {
  .brands-grid {
    grid-template-columns: 1fr;
  }
}

.category-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 60px 30px;
}

.category-item {
  text-align: center;

  text-decoration: none;
}

.category-circle {
  position: relative;

  width: 180px;

  height: 180px;

  margin: auto;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  background: #0b1a31;

  border: 2px solid rgba(212, 175, 55, 0.15);

  transition: 0.5s;
}

.category-circle img {
  width: 110px;
  aspect-ratio: 1/1;
  object-fit: contain;

  transition: 0.5s;

  z-index: 2;
}

.circle-ring {
  position: absolute;

  inset: -8px;

  border-radius: 50%;

  border: 2px dashed rgba(212, 175, 55, 0.5);

  animation: ringRotate 20s linear infinite;
}

.category-item p {
  margin-top: 25px;

  color: #fff;

  font-size: 18px;

  line-height: 1.8;

  transition: 0.4s;
}

.category-item:hover .category-circle {
  transform: translateY(-10px);

  border-color: #d4af37;

  box-shadow: 0 0 35px rgba(212, 175, 55, 0.3);
}

.category-item:hover img {
  transform: scale(1.12);
}

.category-item:hover .circle-ring {
  animation-duration: 5s;
}

.category-item:hover p {
  color: #d4af37;
}

@keyframes ringRotate {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 992px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .category-grid {
    grid-template-columns: 1fr;
  }
}

.product-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 30px;
  overflow: hidden;
  height: 100%;
  transition: 0.4s;
}

.product-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.15);
}

.product-image {
  height: 260px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}

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

.product-content {
  padding: 30px;
}

.product-content h4 {
  color: #d4af37;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.product-content p {
  color: #d6d6d6;
  line-height: 2;
  margin: 0;
}
.brands-section {
  padding: 120px 0;
  direction: ltr;
  position: relative;
}

.brands-description {
  max-width: 800px;
  margin: 20px auto 0;
  color: #b8b8b8;
  line-height: 2;
}

.slider-wrapper {
  padding-top: 30px;
  overflow: hidden;
  position: relative;
  width: 100%;
  cursor: grab;
  user-select: none;
}

.slider-wrapper.dragging {
  cursor: grabbing;
}

.slider-track {
  display: flex;
  gap: 30px;
  width: max-content;
}

.slider-wrapper::before,
.slider-wrapper::after {
  content: "";
  position: absolute;

  tp: 0;
  width: 180px;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.slider-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #07132676, transparent);
}

.slider-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #07132676, transparent);
}

/* Card */

.brand-card {
  position: relative;
  width: 300px;
  flex-shrink: 0;
  padding: 35px;
  text-align: center;
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.12);
  transition: 0.4s;
}

.brand-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(212, 175, 55, 0.12),
    transparent 70%
  );
  opacity: 0;
  transition: 0.5s;
}

.brand-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  transition: 0.8s;
}

.brand-card:hover::after {
  left: 100%;
}

.brand-card:hover::before {
  opacity: 1;
}

.brand-card:hover {
  transform: translateY(-12px);
  border-color: #d4af37;
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.15),
    inset 0 0 25px rgba(212, 175, 55, 0.05);
}

/* Image */

.brand-image {
  width: 140px;
  height: 140px;
  margin: auto auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.brand-image img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  transition: 0.5s;
}

.brand-card:hover .brand-image img {
  transform: scale(1.15) rotate(5deg);
}

.brand-content p {
  color: #d4af37;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.brand-content span {
  color: #c8c8c8;
  font-size: 14px;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .brand-card {
    width: 240px;
    padding: 25px;
  }
  .brand-image {
    width: 110px;
    height: 110px;
  }
  .brand-image img {
    width: 70px;
    height: 70px;
  }
  .slider-wrapper::before,
  .slider-wrapper::after {
    width: 60px;
  }
}

.achievements-section {
  background: linear-gradient(
    180deg,
    transparent,
    rgba(212, 175, 55, 0.03),
    transparent
  );
}

.achievement-desc {
  max-width: 800px;
  margin: auto;
  color: #bdbdbd;
  line-height: 2;
}

.achievement-card {
  text-align: center;
  padding: 45px 20px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.12);
  backdrop-filter: blur(20px);
  transition: 0.4s;
}

.achievement-card:hover {
  transform: translateY(-10px);
  border-color: #d4af37;
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.15);
}

.achievement-card i {
  font-size: 40px;
  color: #d4af37;
  margin-bottom: 20px;
}

.achievement-card span {
  display: block;
  font-size: 52px;
  color: #fff;
  font-weight: 800;
  margin-bottom: 10px;
}

.achievement-card p {
  color: #d4af37;
  margin: 0;
  font-size: 18px;
}

.contact-desc {
  color: #b8b8b8;
  max-width: 700px;
  margin: auto;
}

.contact-card {
  height: 100%;
  text-align: center;
  padding: 40px 25px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 30px;
  transition: 0.4s;
}

.contact-card:hover {
  transform: translateY(-12px);
  border-color: #d4af37;
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.15);
}

.contact-icon {
  width: 85px;
  height: 85px;
  margin: auto auto 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.contact-icon i {
  font-size: 32px;
  color: #d4af37;
}

.contact-card h4 {
  color: #d4af37;
  margin-bottom: 15px;
  font-size: 24px;
}

.contact-card p {
  color: #e1e1e1;
  margin: 0;
}

.address-box {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 40px;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.08),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 30px;
}

.address-icon {
  width: 90px;
  height: 90px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.12);
}

.address-icon i {
  font-size: 36px;
  color: #d4af37;
}

.address-box h3 {
  color: #d4af37;
  margin-bottom: 10px;
}

.address-box p {
  color: #d6d6d6;
  margin: 0;
  line-height: 2;
}

@media (max-width: 768px) {
  .address-box {
    flex-direction: column;
    text-align: center;
  }
}

.footer {
  margin-top: 0px;
  padding-top: 40px;
  padding-bottom: 60px;
  text-align: center;
}

.footer-content {
  p {
    direction: ltr;
  }
  img {
    width: 180px;
    filter: drop-shadow(0px 0px 3px #ffffff50);
  }
}
.footer-logo {
  color: #d4af37;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 4px;
}

.footer-line {
  width: 120px;
  height: 2px;
  margin: 20px auto;
  background: #d4af37;
}

.footer p {
  color: #9a9a9a;
  margin: 0;
  letter-spacing: 1px;
}

.premium-btn-container {
  display: flex;
  width: 100%;
  justify-content: center;
  padding-top: 40px;
}
.premium-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 38px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  color: #04142f;
  background: linear-gradient(135deg, #ffd978, #d4af37);
  overflow: hidden;
  transition: 0.4s;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.25);
}

.premium-btn span,
.premium-btn i {
  position: relative;
  z-index: 2;
}

.premium-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.5),
    transparent
  );
  transform: skewX(-25deg);
  transition: 1s;
}

.premium-btn:hover::before {
  left: 150%;
}

.premium-btn:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.35);
}

.premium-btn i {
  transition: 0.4s;
}

.premium-btn:hover i {
  transform: translateX(-8px);
}

/* animate load */
.animate-load {
  opacity: 0;
  transform: translateY(60px) scaleX(0.9);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-load.loaded {
  opacity: 1;
  transform: translateY(0) scaleX(1);
}

.animate-load-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-load-left.loaded {
  opacity: 1;
  transform: translateX(0);
}

.animate-load-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-load-right.loaded {
  opacity: 1;
  transform: translateX(0);
}
