:root {
  --gold-dark: #775a19;
  --gold-mid: #b88b26;
  --gold-light: #dda72e;
  --gold-grad: linear-gradient(135deg, #775a19 0%, #dda72e 100%);
  --gold-grad-h: linear-gradient(135deg, #dda72e 0%, #775a19 100%);
  --dark-bg: #0a0a0a;
  --dark-card: #111111;
  --dark-card2: #161616;
  --dark-border: rgba(184, 139, 38, 0.18);
  --text-muted-c: #8a8a8a;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--dark-bg);
  color: var(--white);
  overflow-x: hidden;
}

/* */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #0a0a0a;
}
::-webkit-scrollbar-thumb {
  background: var(--gold-mid);
  border-radius: 3px;
}

/*NAVBAR*/
.navbar {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--dark-border);
  padding: 19px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s;
}
.navbar-brand img {
  height: 60px;
}
.navbar-brand span {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 2px;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nav-link {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 0.85rem !important;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--gold-grad);
  transition: all 0.3s;
  border-radius: 2px;
}
.nav-link:hover,
.nav-link.active {
  color: var(--gold-light) !important;
}
.nav-link:hover::after,
.nav-link.active::after {
  left: 10%;
  right: 10%;
}

.btn-contact {
  background: var(--gold-grad);
  color: #fff;
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border: none;
  text-decoration: none;
  border-radius: 4px;
  padding: 0.55rem 1.6rem !important;
  transition: all 0.3s;
  box-shadow: 0 0 0 transparent;
}
.btn-contact:hover {
  background: var(--gold-grad-h);
  box-shadow: 0 4px 20px rgba(221, 167, 46, 0.4);
  transform: translateY(-1px);
}

/*HERO SLIDER*/
.hero-swiper {
  width: 100%;
  height: 92vh;
  min-height: 520px;
}
.hero-slide {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-slide .bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.45);
  transition: transform 6s ease;
}
.swiper-slide-active .bg-img {
  transform: scale(1.06);
}

.hero-slide-1 .bg-img {
  background-image: url("../images/Hero Section_ Architectural Slider.png");
}
.hero-slide-2 .bg-img {
  background-image: url("https://images.unsplash.com/photo-1558494949-ef010cbdcc31?w=1600&q=80");
}
.hero-slide-3 .bg-img {
  background-image: url("https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?w=1600&q=80");
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.1) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}
.hero-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--gold-grad);
  color: #000;
  padding: 0.3rem 0.9rem;
  border-radius: 3px;
  margin-bottom: 1.2rem;
}
.hero-title {
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: #fff;
}
.hero-title span {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-desc {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.btn-primary-gold {
  background: var(--gold-grad);
  color: #000 !important;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  padding: 0.72rem 1.7rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
  text-decoration: none;
}
.btn-primary-gold:hover {
  background: var(--gold-grad-h);
  box-shadow: 0 6px 28px rgba(221, 167, 46, 0.5);
  transform: translateY(-2px);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold-light) !important;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border: 1.5px solid var(--gold-mid);
  border-radius: 4px;
  padding: 0.7rem 1.7rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
  text-decoration: none;
}
.btn-outline-gold:hover {
  background: var(--gold-grad);
  color: #000 !important;
  box-shadow: 0 6px 28px rgba(221, 167, 46, 0.35);
  transform: translateY(-2px);
}

/* Swiper nav */
.swiper-button-next,
.swiper-button-prev {
  color: var(--gold-light) !important;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid var(--dark-border);
  width: 44px !important;
  height: 44px !important;
  border-radius: 50%;
  transition: all 0.3s;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--gold-grad);
  color: #000 !important;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 0.85rem !important;
  font-weight: 900;
}
.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.4) !important;
}
.swiper-pagination-bullet-active {
  background: var(--gold-light) !important;
}
.stats-bar {
  background: var(--dark-card);
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
  padding: 1.5rem 0;
}
.stat-item {
  text-align: center;
}
.stat-num {
  font-size: 1.9rem;
  font-weight: 800;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted-c);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.stat-divider {
  width: 1px;
  background: var(--dark-border);
  height: 50px;
}
.stat-text {
  font-size: 11px;
  color: var(--text-muted-c);
}
/*ABOUT*/
.about-section {
  padding: 100px 0;
  background: var(--dark-bg);
}
.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-mid);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.7rem;
}
.section-label::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--gold-grad);
  border-radius: 2px;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 1.2rem;
}
.section-title span {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about-text {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  line-height: 1.85;
}
.section-sub {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  max-width: 640px;
  margin: 0 auto;
}
.about-img-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}
.about-img-wrap img {
  width: 100%;
  display: block;
  filter: brightness(0.85);
}
.about-img-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184, 139, 38, 0.12), transparent);
  z-index: 1;
}
.about-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  z-index: 2;
  gap: 11px;
  background: #35353a;
  border-radius: 8px;
  padding: 15px 22px;
  text-align: center;
}
.badge-icon {
  width: 38px;
  height: 38px;
  background: var(--gold-mid);
  font-size: 24px;
  border-radius: 4px;
  line-height: 39px;
}

.about-badge .num {
  font-size: 23px;
  font-weight: 900;
  color: #fff;
  display: block;
  text-align: left;
  line-height: 1;
}
.about-badge .lbl {
  font-size: 0.65rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.link_btn {
  color: var(--gold-light);
  font-size: 14px;
  margin-left: 15px;
  transition: all 0.3s;
  transform: translateX(0%);
  text-decoration: none;
}
.link_btn:hover {
  color: #fff;
  transform: translateX(10%);
}
/* Feature Section */
.feature_section {
  background: #35353a;
  padding: 60px 0;
}
.feature-box {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 10px;
  padding: 20px;
  transition: all 0.35s;
  cursor: default;
}
.feature-box:hover {
  border-color: var(--gold-mid);
  box-shadow: 0 8px 30px rgba(184, 139, 38, 0.18);
  transform: translateY(-4px);
}
.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: var(--gold-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #000;
  margin-bottom: 0.9rem;
  flex-shrink: 0;
}
.feature-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.3rem;
}
.feature-desc {
  font-size: 0.78rem;
  color: var(--text-muted-c);
  line-height: 1.6;
}

/*WHY CHOOSE US */
.why-section {
  padding: 90px 0;
  background: var(--dark-card);
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
}
.why-card {
  background: var(--dark-card2);
  border: 1px solid var(--dark-border);
  border-radius: 12px;
  padding: 2rem 1.6rem;
  height: 100%;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-grad);
  transform: scaleX(0);
  transition: transform 0.35s;
  transform-origin: left;
}
.why-card:hover {
  border-color: var(--gold-mid);
  box-shadow: 0 12px 40px rgba(184, 139, 38, 0.2);
  transform: translateY(-6px);
}
.why-card:hover::after {
  transform: scaleX(1);
}
.why-num {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.25;
  margin-bottom: 0.5rem;
}
.why-icon {
  font-size: 2rem;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
  display: block;
}
.why-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.6rem;
}
.why-desc {
  font-size: 0.82rem;
  color: var(--text-muted-c);
  line-height: 1.7;
}

/*PRODUCTS*/
.products-section {
  padding: 45px 12px;
  background: var(--dark-bg);
}
.product-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.35s;
  cursor: pointer;
  position: relative;
  display: block;
  text-decoration: none;
}
.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184, 139, 38, 0.07), transparent);
  opacity: 0;
  transition: opacity 0.35s;
  z-index: 0;
}
.product-card:hover {
  border-color: var(--gold-mid);
  box-shadow: 0 12px 40px rgba(184, 139, 38, 0.25);
  transform: translateY(-6px);
}
.product-card:hover::before {
  opacity: 1;
}
.product-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  filter: brightness(0.85) grayscale(0.1);
  transition: all 0.4s;
}
.product-card:hover .product-img {
  filter: brightness(1) grayscale(0);
  transform: scale(1.04);
}
.product-body {
  padding: 1.1rem 1.2rem 1.4rem;
  position: relative;
  z-index: 1;
}
.product-cat {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 0.35rem;
}
.product-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.3rem;
}
.product-sub {
  font-size: 0.75rem;
  color: var(--text-muted-c);
}
.product-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 0.9rem;
  margin-top: 0.8rem;
  transition: all 0.3s;
}
.product-card:hover .product-arrow {
  transform: rotate(45deg) scale(1.1);
}

/* Product filter tabs */
.filter-tabs {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.filter-tab {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 0.45rem 1.1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
}
.filter-tab:hover,
.filter-tab.active {
  background: var(--gold-grad);
  color: #000;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(221, 167, 46, 0.35);
}

/*SERVICES*/
.services-section {
  padding: 90px 0;
  background: var(--dark-card);
  border-top: 1px solid var(--dark-border);
}
.service-card {
  background: var(--dark-bg);
  border: 1px solid var(--dark-border);
  border-radius: 12px;
  padding: 2rem 1.6rem;
  height: 100%;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  border-color: var(--gold-mid);
  box-shadow: 0 10px 35px rgba(184, 139, 38, 0.2);
  transform: translateY(-5px);
}
.service-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(119, 90, 25, 0.3),
    rgba(221, 167, 46, 0.1)
  );
  border: 1px solid var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
  transition: all 0.35s;
}
.service-card:hover .service-icon-wrap {
  background: var(--gold-grad);
  color: #000;
  border-color: transparent;
}
.service-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.6rem;
}
.service-desc {
  font-size: 0.82rem;
  color: var(--text-muted-c);
  line-height: 1.7;
}

/*PARTNERS SLIDER SECTION*/
.partners-section {
  padding: 40px 0 0px;
  background: var(--dark-bg);
  border-top: 1px solid var(--dark-border);
}
.partners-heading {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 0;
}
.partners-heading span {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.partners-swiper {
  padding: 20px 4px 55px !important;
  position: relative;
}
.partner-card {
  background: #fff;
  border-radius: 14px;
  padding: 1.4rem 1.4rem 1.6rem;
  height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.35s, box-shadow 0.35s, transform 0.35s;
}
.partner-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  border-radius: 0 0 14px 14px;
}
.partner-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(184, 139, 38, 0.06),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.35s;
  border-radius: 12px;
  pointer-events: none;
}

.partner-card:hover {
  border-color: var(--gold-mid);
  box-shadow: 0 12px 40px rgba(184, 139, 38, 0.22),
    0 2px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-6px);
}
.partner-card:hover::after {
  transform: scaleX(1);
}
.partner-card:hover::before {
  opacity: 1;
}
.partner-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.partner-badge {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.22rem 0.65rem;
  border-radius: 4px;
}
.badge-premium {
  background: #fff4dc;
  color: #a07210;
  border: 1px solid #e8c76a;
}
.badge-enterprise {
  background: #e8f0fe;
  color: #1a56c4;
  border: 1px solid #a8c0f5;
}
.badge-commercial {
  background: #e8faf0;
  color: #1a7a45;
  border: 1px solid #7dd4a8;
}
.badge-health {
  background: #fde8f4;
  color: #9c1a6e;
  border: 1px solid #f0a0d5;
}

/* Category icon (top-right) */
.partner-cat-icon {
  font-size: 1.1rem;
  color: #ccc;
  transition: color 0.3s;
}
.partner-card:hover .partner-cat-icon {
  color: var(--gold-mid);
}
.partner-logo-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0;
}
.partner-logo-wrap img {
  max-height: 52px;
  max-width: 130px;
  object-fit: contain;

  transition: filter 0.35s;
}
.partner-info {
  padding-top: 0.3rem;
}
.partner-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 0.15rem;
}
.partner-desc {
  font-size: 0.72rem;
  color: #888;
  line-height: 1.4;
}
.partners-prev,
.partners-next {
  position: absolute;
  top: 50%;
  transform: translateY(-calc(50% + 20px));
  z-index: 10;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1.4rem;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: -20px;
}
.partners-prev {
  left: -18px;
}
.partners-next {
  right: -18px;
}
.partners-prev:hover,
.partners-next:hover {
  background: var(--gold-grad);
  color: #000;
  border-color: transparent;
  box-shadow: 0 4px 18px rgba(221, 167, 46, 0.4);
}
.partners-pagination {
  bottom: 8px !important;
}
.partners-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.25) !important;
  transition: all 0.3s;
}
.partners-pagination .swiper-pagination-bullet-active {
  background: var(--gold-light) !important;
  width: 20px !important;
  border-radius: 4px !important;
}
@media (max-width: 767px) {
  .partners-prev {
    left: 0;
  }
  .partners-next {
    right: 0;
  }
}
/* Industry Served */
.industry_card {
  position: relative;
  border-radius: 6px;
  margin-bottom: 20px;
  overflow: hidden;
}

.industry_card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  border-radius: 6px;
  transition: transform 0.4s ease;
}

.industry_card:hover img {
  transform: scale(1.05); /* subtle zoom on hover */
}

/* Dark overlay */
.industry_card::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.25) 40%,
    rgba(0, 0, 0, 0.8) 100%
  );
  border-radius: 6px;
  z-index: 1;
}
.industry_content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.1rem 1.2rem;
  z-index: 2;
}

.industry_title {
  color: var(--gold-light);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 0.3rem;
  line-height: 1.3;
}

.industry_desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.55;
  margin: 0;
}
/* division section */

.division-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Hover Effects */
.division-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.division-card:hover .card-image-wrapper img {
  transform: scale(1.08);
}

.card-image-wrapper {
  position: relative;
  height: 216px;
  width: 100%;

  overflow: hidden;
}

.card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.icon-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--brand-gold);
  color: #fff;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: 1.2rem;
  z-index: 2;
}
/* Content Area */
.card-content {
  padding: 1rem 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}
.division-card:hover .card-content {
  background: var(--gold-mid);
}
.card-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.card-text {
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.explore-link {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  display: inline-block;
  align-items: center;
  transition: opacity 0.3s ease;
  margin-top: auto;
}

.explore-link i {
  font-size: 1.1rem;
  margin-left: 2px;
}

.explore-link:hover {
  opacity: 0.8;
}

/* Theme variations (Dark vs Active Gold) */
.theme-dark {
  background-color: #292828;
  color: #fff;
}

.theme-dark .card-text {
  color: var(--text-muted);
}

.theme-dark .explore-link {
  color: var(--brand-gold);
}

.theme-accent .card-text {
  color: rgba(255, 255, 255, 0.9);
}

.theme-accent .explore-link {
  color: #fff;
}
/*FAQ SECTION*/
.faq-section {
  background: var(--dark-bg);
  padding: 90px 0;
  border-top: 1px solid var(--dark-border);
}

.faq-subtext {
  font-size: 0.9rem;
  color: var(--text-muted-c);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}
.faq-item {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 8px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.faq-item:hover {
  border-color: var(--gold-mid);
  box-shadow: 0 4px 20px rgba(184, 139, 38, 0.12);
}

.faq-item.active {
  border-color: var(--gold-mid);
  box-shadow: 0 4px 24px rgba(184, 139, 38, 0.15);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  cursor: pointer;
  user-select: none;
}

.faq-question span {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
  transition: color 0.3s;
}

.faq-item.active .faq-question span,
.faq-item:hover .faq-question span {
  color: var(--gold-light);
}

/* */
.faq-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--dark-card2);
  border: 1px solid var(--dark-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.15rem;
  color: var(--text-muted-c);
  transition: all 0.3s;
}

.faq-item.active .faq-icon {
  background: var(--gold-grad);
  border-color: transparent;
  color: #000;
}

/*  */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1.4rem;
}

.faq-answer p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.8;
  margin: 0;
  padding-bottom: 1.2rem;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-top: 0;
}

/*  */
.faq-cta-banner {
  margin-top: 2rem;
  background: var(--gold-grad);
  border-radius: 10px;
  padding: 1.6rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.faq-cta-bg-icon {
  position: absolute;
  right: 220px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 7rem;
  color: rgba(0, 0, 0, 0.08);
  line-height: 1;
  pointer-events: none;
}

.faq-cta-left h5 {
  color: #000;
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.faq-cta-left p {
  color: rgba(0, 0, 0, 0.65);
  font-size: 0.82rem;
  margin: 0;
}

/* Override btn color inside gold banner */
.faq-cta-banner .btn-primary-gold {
  background: #000;
  color: #fff !important;
  box-shadow: none;
  white-space: nowrap;
}

.faq-cta-banner .btn-primary-gold:hover {
  background: var(--dark-card);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

@media (max-width: 575px) {
  .faq-cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }
  .faq-cta-bg-icon {
    display: none;
  }
  .faq-cta-banner .btn-primary-gold {
    width: 100%;
    justify-content: center;
  }
}

/* 
   TESTIMONIALS SECTION
*/
.testimonials-section {
  background: var(--dark-card);
  padding: 90px 0;
  border-top: 1px solid var(--dark-border);
}

.testimonials-swiper {
  padding: 10px 4px 55px !important;
  position: relative;
}

.testi-card {
  background: var(--dark-bg);
  border: 1px solid var(--dark-border);
  border-radius: 14px;
  padding: 2rem 1.8rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  height: 100%;
  min-height: 240px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.35s, box-shadow 0.35s, transform 0.35s;
}

.testi-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.testi-card:hover {
  border-color: var(--gold-mid);
  box-shadow: 0 12px 40px rgba(184, 139, 38, 0.2);
  transform: translateY(-5px);
}

.testi-card:hover::after {
  transform: scaleX(1);
}

.testi-card--gold {
  background: var(--gold-grad);
  border-color: transparent;
}

.testi-card--gold:hover {
  box-shadow: 0 12px 40px rgba(184, 139, 38, 0.45);
  border-color: transparent;
}

.testi-card--gold::after {
  background: rgba(0, 0, 0, 0.2);
}

.testi-quote {
  font-size: 1.6rem;
  color: var(--gold-light);
  line-height: 1;
}

.testi-card--gold .testi-quote {
  color: rgba(0, 0, 0, 0.35);
}

.testi-text {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  flex: 1;
  margin: 0;
  font-style: italic;
}

.testi-card--gold .testi-text {
  color: rgba(0, 0, 0, 0.78);
  font-style: italic;
}

.testi-footer {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--dark-border);
}

.testi-card--gold .testi-footer {
  border-color: rgba(0, 0, 0, 0.15);
}

.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--gold-mid);
}

.testi-card--gold .testi-avatar {
  border-color: rgba(0, 0, 0, 0.25);
}

.testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testi-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
}

.testi-card--gold .testi-name {
  color: #000;
}

.testi-role {
  font-size: 0.72rem;
  color: var(--text-muted-c);
}

.testi-card--gold .testi-role {
  color: rgba(0, 0, 0, 0.55);
}

.testi-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 1.1rem;
  text-decoration: none;
  margin-left: auto;
  flex-shrink: 0;
  transition: all 0.3s;
}

.testi-arrow:hover {
  transform: scale(1.15) rotate(-45deg);
  box-shadow: 0 4px 14px rgba(221, 167, 46, 0.4);
}

.testi-arrow--dark {
  background: rgba(0, 0, 0, 0.25);
  color: #000;
}

.testi-arrow--dark:hover {
  background: rgba(0, 0, 0, 0.4);
}

.testi-prev,
.testi-next {
  position: absolute;
  top: 50%;
  transform: translateY(-calc(50% + 20px));
  z-index: 10;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--dark-bg);
  border: 1px solid var(--dark-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1.4rem;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: -20px;
}

.testi-prev {
  left: -18px;
}
.testi-next {
  right: -18px;
}

.testi-prev:hover,
.testi-next:hover {
  background: var(--gold-grad);
  color: #000;
  border-color: transparent;
  box-shadow: 0 4px 18px rgba(221, 167, 46, 0.4);
}

.testi-pagination {
  bottom: 8px !important;
}

.testi-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.25) !important;
  transition: all 0.3s;
}

.testi-pagination .swiper-pagination-bullet-active {
  background: var(--gold-light) !important;
  width: 20px !important;
  border-radius: 4px !important;
}

@media (max-width: 767px) {
  .testi-prev {
    left: 0;
  }
  .testi-next {
    right: 0;
  }
}
/* 
       CTA BANNER
     */
.cta-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #0f0a00 0%, #1a1100 40%, #0a0a0a 100%);
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(184, 139, 38, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.cta-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
}
.cta-title span {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/*
       FOOTER
     */
footer {
  background: #060606;
  border-top: 1px solid var(--dark-border);
  padding: 70px 0 0;
}
.footer-brand span {
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 3px;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer-desc {
  font-size: 0.82rem;
  color: var(--text-muted-c);
  line-height: 1.8;
  margin-top: 0.8rem;
}
.footer-heading {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 0.6rem;
}
.footer-links a {
  color: var(--text-muted-c);
  font-size: 0.82rem;
  text-decoration: none;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-links a:hover {
  color: var(--gold-light);
}
/* .footer-links a::before { content:''; color:var(--gold-mid); font-size:.9rem; } */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1rem;
  font-size: 0.82rem;
  color: var(--text-muted-c);
}
.footer_logo {
  width: 42%;
}
.footer-contact-item i {
  color: var(--gold-light);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.social-links {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.4rem;
}
.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s;
}
.map_box {
  position: relative;
  margin-bottom: 20px;
}
.map_address {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--bs-black);
  color: var(--gold-light);
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  max-width: 200px;
}
.social-btn:hover {
  background: var(--gold-grad);
  color: #000;
  border-color: transparent;
  transform: translateY(-2px);
}
.footer-bottom {
  border-top: 1px solid var(--dark-border);
  padding: 1.4rem 0;
  margin-top: 3rem;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: var(--text-muted-c);
  margin: 0;
}
.footer-legal-links a {
  color: var(--text-muted-c);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal-links a:hover {
  color: var(--gold-light);
}
/* 
       BACK TO TOP
 */
#backTop {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--gold-grad);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 1.2rem;
  box-shadow: 0 4px 20px rgba(221, 167, 46, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  cursor: pointer;
}
#backTop.show {
  opacity: 1;
  pointer-events: all;
}
#backTop:hover {
  transform: translateY(-3px) scale(1.08);
}

/*
       FLOATING SIDE ICONS
     */
/* Floating Menu Container */
.floating-menu {
  position: fixed;
  bottom: 92px; /* Adjust distance from bottom */
  right: 13px; /* Adjust distance from right */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  z-index: 9999;
}

/* Action Buttons Wrapper */
.action-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  /* Spring-like transition for opening */
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  opacity: 1;
  transform: translateY(0) scale(1);
  transform-origin: bottom center;
  pointer-events: auto;
}

/* Hidden State Animation */
.floating-menu.closed .action-buttons {
  opacity: 0;
  transform: translateY(40px) scale(0.5);
  pointer-events: none; /* Prevents clicking when hidden */
}

/* Base styling for all circular buttons */
.action-btn,
.toggle-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  text-decoration: none;
  font-size: 22px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Hover effect for buttons */
.action-btn:hover,
.toggle-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
  color: #ffffff;
}

/* Specific Brand Colors from your screenshot */
.wa-btn {
  background-color: #1ea34b;
}
.doc-btn {
  background-color: #a8640d;
}
.phone-btn {
  background-color: #2d448e;
}
.toggle-btn {
  background-color: #b48628;
}

/* Toggle Icon Animation */
.toggle-btn i {
  transition: transform 0.4s ease;
  /* Default Open State: Rotated to look like an X */
  transform: rotate(45deg);
}

/* Closed State: Rotates back to look like a + */
.floating-menu.closed .toggle-btn i {
  transform: rotate(0deg);
}
/* 
   MOBILE DRAWER
 */

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  backdrop-filter: blur(3px);
}
.drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 290px;
  height: 100dvh;
  background: #0a0a0a;
  border-right: 1px solid var(--dark-border);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  overflow-x: hidden;
}

.mobile-drawer.open {
  transform: translateX(0);
}

/* Scrollbar inside drawer */
.mobile-drawer::-webkit-scrollbar {
  width: 3px;
}
.mobile-drawer::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 3px;
}

@media (min-width: 992px) {
  .mobile-drawer,
  .drawer-overlay {
    display: none !important;
  }
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--dark-border);
  flex-shrink: 0;
}

.drawer-logo {
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 3px;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.drawer-contact-btn {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: var(--gold-grad);
  color: #000 !important;
  text-decoration: none;
  padding: 0.38rem 0.85rem;
  border-radius: 5px;
  transition: all 0.25s;
  white-space: nowrap;
}
.drawer-contact-btn:hover {
  background: var(--gold-grad-h);
  box-shadow: 0 3px 12px rgba(221, 167, 46, 0.4);
}

.drawer-close {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  border: 1px solid var(--dark-border);
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.25s;
  flex-shrink: 0;
}
.drawer-close:hover {
  background: var(--gold-grad);
  color: #000;
  border-color: transparent;
}

.drawer-nav {
  flex: 1;
  padding: 0.6rem 0.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.drawer-link {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.7rem 0.9rem;
  border-radius: 8px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: all 0.25s;
  border: 1px solid transparent;
}

.drawer-link:hover {
  color: var(--gold-light);
  background: rgba(184, 139, 38, 0.07);
  border-color: rgba(184, 139, 38, 0.15);
}

.drawer-link.active {
  color: var(--gold-light);
  background: rgba(184, 139, 38, 0.1);
  border-color: rgba(184, 139, 38, 0.2);
}

/* Icon box */
.drawer-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid rgba(184, 139, 38, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold-light);
  flex-shrink: 0;
  background: rgba(184, 139, 38, 0.08);
  transition: all 0.25s;
}

.drawer-link:hover .drawer-icon,
.drawer-link.active .drawer-icon {
  background: var(--gold-grad);
  color: #000;
  border-color: transparent;
}

.drawer-social {
  padding: 0.9rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-top: 1px solid var(--dark-border);
  flex-shrink: 0;
}

.drawer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.25s;
}
.drawer-social-btn:hover {
  background: var(--gold-grad);
  color: #000;
  border-color: transparent;
  transform: translateY(-2px);
}

.drawer-contact-card {
  margin: 0 0.8rem 0.8rem;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 10px;
  padding: 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex-shrink: 0;
}

.drawer-contact-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted-c);
  margin: 0 0 0.15rem;
}

.drawer-contact-num {
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}
.drawer-contact-num:hover {
  color: var(--gold-light);
}

.drawer-contact-email {
  font-size: 0.78rem;
  color: var(--text-muted-c);
  text-decoration: none;
  transition: color 0.2s;
  margin-bottom: 0.4rem;
}
.drawer-contact-email:hover {
  color: var(--gold-light);
}

.drawer-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  border: 1px solid var(--gold-mid);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 7px;
  padding: 0.65rem;
  margin-top: 0.3rem;
  transition: all 0.3s;
}
.drawer-call-btn:hover {
  background: var(--gold-grad);
  color: #000;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(221, 167, 46, 0.35);
}

/*  Bottom CTA  */
.drawer-bottom-cta {
  display: flex;
  border-top: 1px solid var(--dark-border);
  flex-shrink: 0;
  margin-top: auto;
  position: sticky;
  bottom: 0;
  background: #0a0a0a;
}

.drawer-bottom-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  padding: 1rem 0.5rem;
  transition: all 0.3s;
  text-transform: uppercase;
}

.drawer-whatsapp {
  background: #1a1a1a;
  color: #25d366;
  border-right: 1px solid var(--dark-border);
}
.drawer-logo img {
  font-size: 50%;
}
.drawer-whatsapp i {
  font-size: 1.15rem;
}
.drawer-whatsapp:hover {
  background: #25d366;
  color: #fff;
}

.drawer-brochure {
  background: var(--gold-grad);
  color: #000;
}
.drawer-brochure i {
  font-size: 1rem;
}
.drawer-brochure:hover {
  background: var(--gold-grad-h);
  box-shadow: 0 -3px 16px rgba(221, 167, 46, 0.3);
}
/* 
       RESPONSIVE
     */
@media (max-width: 991px) {
  .hero-swiper {
    height: 72vh;
  }
  .navbar-collapse {
    background: rgba(10, 10, 10, 0.98);
    padding: 1rem;
  }
  .nav-link {
    padding: 0.8rem 0.5rem !important;
  }
  .nav-link::after {
    display: none;
  }
}
@media (max-width: 767px) {
  .hero-swiper {
    height: 60vh;
    min-height: 380px;
  }
  .about-badge {
  }
  .floating-menu {
    display: none;
  }
  .hero-title {
    font-size: 24px;
  }
}
/* All Page Banner */
.page-banner .banner_img {
  width: 100%;
  height: 450px;
  overflow: hidden;
  position: relative;
}

.page-banner .banner_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 768px) {
  .page-banner .banner_img {
    height: 250px;
  }
}
/* 
   ENTERPRISE PARTNER SECTION
*/
.enterprise-section {
  padding: 90px 0;
  background: var(--dark-bg);
  border-top: 1px solid var(--dark-border);
}

/* Label */
.ent-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.ent-label::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--gold-grad);
  border-radius: 2px;
  display: inline-block;
}

/* Title */
.ent-title {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.4rem;
  line-height: 1.2;
}
.ent-title span {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Body text */
.ent-body p {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.85;
  margin-bottom: 0.85rem;
}

/* Quote block */
.ent-quote {
  margin-top: 1.5rem;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-left: 3px solid var(--gold-mid);
  border-radius: 0 8px 8px 0;
  padding: 1.1rem 1.3rem 1.1rem 1.4rem;
  position: relative;
}
.ent-quote p {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.ent-quote-icon {
  font-size: 1.4rem;
  color: var(--gold-mid);
  display: block;
  margin-bottom: 0.5rem;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Person Slider Ã¢â€â‚¬Ã¢â€â‚¬ */
.person-slider-wrap {
  position: relative;
}

.person-swiper {
  border-radius: 14px;
  overflow: hidden;
}

.person-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
}

.person-img-wrap {
  position: relative;
  width: 100%;
  height: 480px;
}

.person-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.5s ease;
}

/* Gradient overlay on image */
.person-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 40%,
    rgba(0, 0, 0, 0.35) 70%,
    rgba(0, 0, 0, 0.85) 100%
  );
  transition: opacity 0.35s;
}

/* Gold shimmer border on hover */
.person-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  border: 2px solid transparent;
  background: var(--gold-grad) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}
.person-card:hover::after {
  opacity: 1;
}

/* Name badge */
.person-name-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.3rem;
  z-index: 2;
}
.person-name-badge i {
  font-size: 1.3rem;
  color: var(--gold-light);
  flex-shrink: 0;
}
.person-name-badge span {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.3px;
}

/* Prev / Next arrows */
.person-prev,
.person-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  transition: all 0.3s;
}
.person-prev {
  left: 14px;
}
.person-next {
  right: 14px;
}
.person-prev:hover,
.person-next:hover {
  background: var(--gold-grad);
  color: #000;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(221, 167, 46, 0.4);
}

/* Dot pagination */
.person-pagination {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  padding-top: 1rem;
}
.person-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.25) !important;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
  opacity: 1 !important;
}
.person-pagination .swiper-pagination-bullet-active {
  background: var(--gold-light) !important;
  width: 22px !important;
  border-radius: 4px !important;
}

@media (max-width: 767px) {
  .person-img-wrap {
    height: 340px;
  }
}

/* 
   MISSION SECTION
*/
.mission-section {
  padding: 90px 0;
  background: var(--dark-card);
  border-top: 1px solid var(--dark-border);
}

.mission-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.8rem;
}
.mission-title span {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mission-sub {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  max-width: 640px;
  margin: 0 auto;
}

.mission-card {
  background: var(--dark-bg);
  border: 1px solid var(--dark-border);
  border-radius: 14px;
  padding: 2rem 1.8rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: border-color 0.35s, box-shadow 0.35s, transform 0.35s;
  cursor: default;
}

/* Gold glow bg on hover */
.mission-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(184, 139, 38, 0.14) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

/* Gold bottom line */
.mission-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.mission-card:hover {
  border-color: var(--gold-mid);
  box-shadow: 0 12px 40px rgba(184, 139, 38, 0.18);
  transform: translateY(-5px);
}
.mission-card:hover::before {
  opacity: 1;
}
.mission-card:hover::after {
  transform: scaleX(1);
}

/* Icon */
.mission-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(119, 90, 25, 0.25),
    rgba(221, 167, 46, 0.1)
  );
  border: 1px solid rgba(184, 139, 38, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold-light);
  margin-bottom: 1.1rem;
  transition: all 0.35s;
}
.mission-card:hover .mission-icon-wrap {
  background: var(--gold-grad);
  color: #000;
  border-color: transparent;
  box-shadow: 0 4px 18px rgba(221, 167, 46, 0.35);
}

/* Separator line */
.mission-card-line {
  width: 36px;
  height: 2px;
  background: var(--gold-grad);
  border-radius: 2px;
  margin-bottom: 1rem;
  transition: width 0.35s ease;
}
.mission-card:hover .mission-card-line {
  width: 60px;
}

/* Title */
.mission-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 0.65rem;
  transition: color 0.3s;
}

/* Desc */
.mission-card-desc {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.8;
  margin: 0;
}
/* Journey Section */
.journey-section {
  padding: 50px 0;
  background: var(--bs-gray-900);
  border-top: 1px solid var(--dark-border);
}
/* Base Card Setup */
.history-node-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

/* Image Wrapper */
.history-node-visual {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  overflow: hidden;
  background-color: #222;
}

.history-node-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 2018 Milestone Block Styling */
.milestone-visual {
  background: linear-gradient(135deg, #a67c00 0%, #d4af37 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.milestone-content h2 {
  color: #fff;
  font-size: 3rem;
  font-weight: 800;
  margin: 0;
  line-height: 1;
  opacity: 0.85;
}

.milestone-content span {
  color: #fff;
  font-size: 0.65rem;
  letter-spacing: 2px;
  font-weight: 600;
  text-transform: uppercase;
  opacity: 0.9;
}

/* Text Content Area */
.history-node-details {
  padding-right: 15px; /* Slight breathing room on the right */
}

.history-node-year {
  color: var(--gold-light);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}

.history-node-title {
  color: var(--gold-light);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.history-node-desc {
  color: var(--history-text);
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
}
.history-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
  position: relative;
  z-index: 10;
}

.history-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.25) !important;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
  opacity: 1 !important;
}

.history-pagination .swiper-pagination-bullet-active {
  background: var(
    --gold-light
  ) !important; /* Ensure this variable is defined! */
  width: 22px !important;
  border-radius: 4px !important;
}
/*
   EXPERTISE SECTION
*/
.expertise-section {
  padding: 50px 0;
  background: var(--dark-card);
  border-top: 1px solid var(--dark-border);
}

.expertise-title {
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}
.expertise-title span {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--dark-border);
  border-radius: 14px;
  overflow: hidden;
}
.exp-card {
  padding: 1.8rem 1.6rem 2rem;
  border-right: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
  background: var(--dark-card);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.35s, box-shadow 0.35s;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.exp-card:nth-child(4n) {
  border-right: none;
}

.exp-card:nth-last-child(-n + 4) {
  border-bottom: none;
}

/* Hover glow bg */
.exp-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(184, 139, 38, 0.09),
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.35s;
}

/* Gold top border reveal */
.exp-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.exp-card:hover {
  background: #141414;
  box-shadow: inset 0 0 40px rgba(184, 139, 38, 0.06);
  z-index: 1;
}
.exp-card:hover::before {
  opacity: 1;
}
.exp-card:hover::after {
  transform: scaleX(1);
}

.exp-card--active {
  background: var(--gold-grad) !important;
}
.exp-card--active::before,
.exp-card--active::after {
  display: none;
}
.exp-card--active:hover {
  background: linear-gradient(135deg, #8a6820, #e8b535) !important;
  box-shadow: none;
}
.exp-icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.75);
  flex-shrink: 0;
  transition: all 0.35s;
  margin-bottom: 0.2rem;
}

.exp-card:hover .exp-icon-wrap {
  background: var(--gold-grad);
  border-color: transparent;
  color: #000;
  box-shadow: 0 4px 16px rgba(221, 167, 46, 0.35);
}

.exp-card--active .exp-icon-wrap {
  background: rgba(0, 0, 0, 0.18);
  border-color: rgba(0, 0, 0, 0.15);
  color: #000;
}
.exp-card--active:hover .exp-icon-wrap {
  background: rgba(0, 0, 0, 0.25);
  box-shadow: none;
  color: #000;
}

.exp-card-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin: 0;
  transition: color 0.3s;
}
.exp-card:hover .exp-card-title {
  color: var(--gold-light);
}
.exp-card--active .exp-card-title,
.exp-card--active:hover .exp-card-title {
  color: #000;
}

.exp-card-desc {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.75;
  margin: 0;
  flex: 1;
  transition: color 0.3s;
}
.exp-card:hover .exp-card-desc {
  color: rgba(255, 255, 255, 0.7);
}
.exp-card--active .exp-card-desc {
  color: rgba(0, 0, 0, 0.65);
}
.exp-card--active:hover .exp-card-desc {
  color: rgba(0, 0, 0, 0.75);
}

.exp-card-arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: auto;
  transition: all 0.35s;
  align-self: flex-start;
}
.exp-card:hover .exp-card-arrow {
  background: var(--gold-grad);
  border-color: transparent;
  color: #000;
  transform: rotate(-45deg) scale(1.1);
}
.exp-card--active .exp-card-arrow {
  background: rgba(0, 0, 0, 0.2);
  border-color: transparent;
  color: #000;
}
.exp-card--active:hover .exp-card-arrow {
  background: rgba(0, 0, 0, 0.3);
  transform: rotate(-45deg) scale(1.1);
}

@media (max-width: 991px) {
  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .exp-card:nth-child(4n) {
    border-right: 1px solid var(--dark-border);
  }
  .exp-card:nth-last-child(-n + 4) {
    border-bottom: 1px solid var(--dark-border);
  }
  .exp-card:nth-child(2n) {
    border-right: none;
  }
  .exp-card:nth-last-child(-n + 2) {
    border-bottom: none;
  }
}

@media (max-width: 575px) {
  .expertise-grid {
    grid-template-columns: 1fr;
    border-radius: 10px;
  }
  .exp-card {
    border-right: none !important;
  }
  .exp-card:last-child {
    border-bottom: none;
  }
  .exp-card:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--dark-border);
  }
  .exp-card:nth-last-child(1) {
    border-bottom: none !important;
  }
}

/* 
   BACKBONE SECTION
 */
.backbone-section {
  padding: 0 0 40px;
  background: var(--dark-card);
}

.backbone-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--dark-border);
}

.backbone-img-wrap {
  position: relative;
  min-height: 360px;
  overflow: hidden;
}
.backbone-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.75);
  transition: transform 0.5s ease, filter 0.5s ease;
}
.backbone-inner:hover .backbone-img-wrap img {
  transform: scale(1.04);
  filter: brightness(0.85);
}
.backbone-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0) 60%,
    rgba(10, 10, 10, 0.9) 100%
  );
}

.backbone-content {
  background: var(--dark-card);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.2rem;
}

.backbone-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin: 0;
}
.backbone-title span {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.backbone-desc {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.85;
  margin: 0;
}

.backbone-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 0.5rem;
  border: 1px solid var(--dark-border);
  border-radius: 10px;
  overflow: hidden;
}

.backbone-stat {
  flex: 1;
  padding: 1.2rem 1.4rem;
  position: relative;
  transition: background 0.3s;
}
.backbone-stat:hover {
  background: rgba(184, 139, 38, 0.07);
}

.backbone-stat-inner {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  border-left: 3px solid var(--gold-mid);
  padding-left: 0.9rem;
}

.backbone-stat-num {
  font-size: 1.9rem;
  font-weight: 900;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.backbone-stat-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted-c);
}

.backbone-stat-divider {
  width: 1px;
  height: 50px;
  background: var(--dark-border);
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .backbone-inner {
    grid-template-columns: 1fr;
  }
  .backbone-img-wrap {
    min-height: 220px;
  }
  .backbone-img-overlay {
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0) 50%,
      rgba(10, 10, 10, 0.9) 100%
    );
  }
  .backbone-content {
    padding: 2rem 1.5rem;
  }
}
/* Leader section */
.visionary-leaders-area {
  background-color: var(--dark-card);
  color: #ffffff;
  padding-bottom: 60px;
}

/* Heading Styling */
.leaders-main-title {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 0;
  letter-spacing: 0.5px;
}

.leaders-text-gold {
  color: var(--gold-mid);
}

/* Main Box Styling & Animation Setup */
.leader-profile-box {
  border-radius: 6px;
  padding: 18px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    box-shadow 0.4s ease;
  cursor: pointer;
}

/* Theme Color Variations */
.theme-charcoal {
  background-color: var(--bs-gray-900);
  transition: all 0.3s ease;
}
.theme-charcoal:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8);
}
.theme-charcoal:hover .leader-designation {
  color: #fff;
}
.theme-charcoal:hover .leader-quote-text {
  color: #fff;
}
.theme-charcoal:hover {
  background-color: var(--gold-mid);
}

/* Image Frame and Photo */
.leader-portrait-frame {
  background-color: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  text-align: center;
  position: relative;
}

.leader-img {
  width: 100%;
  height: 380px; /* Fixed height for consistency */
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s ease, filter 0.6s ease;
  display: block;
}

/* Photo Bottom Label */
.leader-photo-label {
  color: #000;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 15px 10px;
  margin: 0;
  background: #ffffff;
  position: relative;
  z-index: 2;
}

/* Bottom Content Area */
.leader-details-content {
  padding: 25px 10px 10px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.leader-display-name {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.theme-charcoal .leader-display-name {
  color: var(--leader-gold);
}
.theme-gold .leader-display-name {
  color: #ffffff;
}

.leader-designation {
  font-size: 0.65rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

.theme-charcoal .leader-designation {
  color: #999999;
}
.theme-gold .leader-designation {
  color: rgba(255, 255, 255, 0.85);
}

/* The thin dividing line */
.leader-divider {
  margin: 18px 0;
  opacity: 0.15;
}
.theme-charcoal .leader-divider {
  border-color: #ffffff;
}
.theme-gold .leader-divider {
  border-color: #ffffff;
}

/* Quote Text */
.leader-quote-text {
  font-size: 0.8rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

.theme-charcoal .leader-quote-text {
  color: #bbbbbb;
}
.theme-gold .leader-quote-text {
  color: #ffffff;
}

/* Action Link */
.leader-profile-link {
  font-size: 0.7rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  transition: opacity 0.3s ease, padding-left 0.3s ease;
  text-transform: uppercase;
  margin-top: auto;
}

.leader-profile-link i {
  margin-left: 4px;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.theme-charcoal .leader-profile-link {
  color: var(--leader-gold);
}
.theme-gold .leader-profile-link {
  color: #ffffff;
}

/* Link Nudge Hover Effect */
.leader-profile-box:hover .leader-profile-link {
  padding-left: 5px;
  opacity: 0.8;
}
.leader-profile-box:hover .leader-profile-link i {
  transform: translateX(4px);
}
/* Product Detail Styles */
.product-detail-img img {
  border-radius: 10px;
}
/* 
   RELATED PRODUCTS SECTION
 */
.related-products-section {
  padding: 50px 0;
  background: var(--dark-bg);
  border-top: 1px solid var(--dark-border);
}
.rp-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.rp-header-left {
  flex: 1;
  min-width: 220px;
}

.rp-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.rp-title span {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.rp-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted-c);
  line-height: 1.6;
  margin: 0;
  max-width: 480px;
}

.rp-explore-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-light);
  text-decoration: none;
  white-space: nowrap;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
  flex-shrink: 0;
}
.rp-explore-link i {
  font-size: 1.1rem;
  transition: transform 0.3s;
}
.rp-explore-link:hover {
  color: #fff;
  border-bottom-color: var(--gold-mid);
}
.rp-explore-link:hover i {
  transform: translateX(5px);
}

.rp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.rp-card {
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
    box-shadow 0.4s ease;
}

.rp-card:hover {
  transform: translateY(-6px);
}

.rp-img-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
}

.rp-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease, filter 0.55s ease;
  filter: brightness(0.8);
}

.rp-card:hover .rp-img {
  transform: scale(1.06);
  filter: brightness(1);
}

.rp-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 0.55) 100%
  );
  transition: opacity 0.4s;
}

.rp-card-body {
  padding: 1.6rem 1.8rem 1.8rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex: 1;
  position: relative;
  overflow: hidden;
}

.rp-card--gold .rp-card-body {
  background: var(--gold-grad);
}
.rp-card--gold:hover {
  box-shadow: 0 20px 50px rgba(184, 139, 38, 0.45);
}

/* Shimmer sweep on gold card */
.rp-card--gold .rp-card-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.18) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}
.rp-card--gold:hover .rp-card-body::before {
  left: 130%;
}

.rp-card--dark .rp-card-body {
  background: #1a1a1a;
  border: 1px solid var(--dark-border);
  border-top: none;
}
.rp-card--dark:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* Gold border glow on dark card hover */
.rp-card--dark::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  border: 2px solid var(--gold-mid);
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}
.rp-card--dark:hover::after {
  opacity: 1;
}

.rp-card-content {
  flex: 1;
}

.rp-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  line-height: 1.2;
  transition: color 0.3s;
}
.rp-card--gold .rp-card-title {
  color: #000;
}
.rp-card--dark .rp-card-title {
  color: #fff;
}

.rp-card-desc {
  font-size: 0.82rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.rp-card--gold .rp-card-desc {
  color: rgba(0, 0, 0, 0.68);
}
.rp-card--dark .rp-card-desc {
  color: var(--text-muted-c);
}

/* View Products button */
.rp-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 0.55rem 1.1rem;
  border-radius: 6px;
  transition: all 0.3s;
}

.rp-card--gold .rp-card-btn {
  border: 1.5px solid rgba(0, 0, 0, 0.35);
  color: #000;
  background: transparent;
}
.rp-card--gold:hover .rp-card-btn {
  background: rgba(0, 0, 0, 0.15);
  border-color: rgba(0, 0, 0, 0.5);
}

.rp-card--dark .rp-card-btn {
  background: var(--gold-grad);
  color: #000;
  border: none;
}
.rp-card--dark:hover .rp-card-btn {
  background: var(--gold-grad-h);
  box-shadow: 0 4px 16px rgba(221, 167, 46, 0.4);
  transform: translateY(-1px);
}

/* â”€â”€ Hover Icon (top-right) â”€â”€ */
.rp-card-hover-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  transform: translateY(8px);
  opacity: 0;
  transition: all 0.35s ease;
}
.rp-card:hover .rp-card-hover-icon {
  transform: translateY(0);
  opacity: 1;
}

.rp-card--gold .rp-card-hover-icon {
  background: rgba(0, 0, 0, 0.18);
  color: #000;
}
.rp-card--dark .rp-card-hover-icon {
  background: var(--gold-grad);
  color: #000;
}
.evt-meta-stacked i {
  color: var(--gold-mid);
}
/*  Responsive*/
@media (max-width: 767px) {
  .rp-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .rp-img-wrap {
    height: 200px;
  }
  .rp-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.8rem;
  }
  .rp-card-body {
    padding: 1.3rem 1.4rem 1.5rem;
  }
  .rp-card-hover-icon {
    display: none;
  }
}

@media (max-width: 400px) {
  .rp-img-wrap {
    height: 170px;
  }
  .rp-card-title {
    font-size: 1.05rem;
  }
}
/* Division Details */

.opex-section {
  padding: 90px 0;
  background: var(--dark-bg);
  border-top: 1px solid var(--dark-border);
}

/* Label */
.opex-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.opex-label::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--gold-grad);
  border-radius: 2px;
  display: inline-block;
}

/* Title */
.opex-title {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.opex-title span {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

/* Body text */
.opex-body p {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.85;
  margin-bottom: 0.9rem;
}

/* Feature tag pill */
.opex-feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-left: 3px solid var(--gold-mid);
  border-radius: 0 8px 8px 0;
  padding: 0.85rem 1.2rem;
  margin: 1.2rem 0;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.opex-feature-tag:hover {
  border-color: var(--gold-mid);
  box-shadow: 0 4px 20px rgba(184, 139, 38, 0.12);
}

.opex-feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--gold-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #000;
  flex-shrink: 0;
}

.opex-feature-title {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.15rem;
}
.opex-feature-desc {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted-c);
  line-height: 1.4;
}

/* Image wrap */
.opex-img-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}
.opex-img-wrap img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
  filter: brightness(0.75);
  position: relative;
  transition: transform 0.5s ease, filter 0.5s ease;
}
.small_img {
  position: absolute;
  top: -77px;
  right: -11px;
  width: 37%;
  z-index: -99;
  height: 0px;
  border-radius: 14px;
}
.small_img img {
  border-radius: 14px;
}
.opex-img-wrap:hover img {
  transform: scale(1.03);
  filter: brightness(0.9);
}

.opex-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 0.75) 100%
  );
}

/* Image badge */
.opex-img-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(10, 10, 10, 0.88);
  border: 1px solid var(--dark-border);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 0.85rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: border-color 0.3s, transform 0.3s;
  z-index: 2;
}
.opex-img-wrap:hover .opex-img-badge {
  border-color: var(--gold-mid);
  transform: translateY(-3px);
}

.opex-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--gold-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #000;
  flex-shrink: 0;
}

.opex-badge-name {
  display: block;
  font-size: 0.68rem;
  color: var(--text-muted-c);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.1rem;
}
.opex-badge-sub {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
}

@media (max-width: 767px) {
  .opex-img-wrap img {
    height: 300px;
  }
  .small_img {
    display: none;
  }
}
/* 
   RELATED COMPANIES SECTION
 */
.rel-co-section {
  padding: 90px 0;
  background: var(--dark-bg);
  border-top: 1px solid var(--dark-border);
}

/* â”€â”€ Heading â”€â”€ */
.rel-co-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  margin: 0;
}
.rel-co-heading span {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.rel-co-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

.rel-co-card {
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
    box-shadow 0.4s ease;
}

.rel-co-card:hover {
  transform: translateY(-7px);
}

.rel-co-img-wrap {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  flex-shrink: 0;
}

.rel-co-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  transition: transform 0.55s ease, filter 0.55s ease;
}

.rel-co-card:hover .rel-co-img-wrap img {
  transform: scale(1.06);
}

/* Gradient fade at bottom of image */
.rel-co-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 35%,
    rgba(0, 0, 0, 0.45) 70%,
    rgba(0, 0, 0, 0.82) 100%
  );
  z-index: 1;
}

.rel-co-badge {
  position: absolute;
  bottom: 36px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--gold-grad);
  color: #000;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 0.28rem 0.75rem;
  border-radius: 4px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.rel-co-badge i {
  font-size: 0.72rem;
}
.rel-co-card:hover .rel-co-badge {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(221, 167, 46, 0.5);
}

/* Company name over image */
.rel-co-img-name {
  position: absolute;
  bottom: 10px;
  left: 16px;
  z-index: 2;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.3px;
  transition: color 0.3s;
}
.rel-co-card:hover .rel-co-img-name {
  color: var(--gold-light);
}

.rel-co-body {
  flex: 1;
  padding: 1.4rem 1.6rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

/* Shimmer sweep on hover */
.rel-co-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.05) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  transition: left 0.65s ease;
  pointer-events: none;
}
.rel-co-card:hover .rel-co-body::before {
  left: 130%;
}

.rel-co-card--gold .rel-co-body {
  background: var(--gold-grad);
}
.rel-co-card--gold:hover {
  box-shadow: 0 20px 55px rgba(184, 139, 38, 0.4);
}

.rel-co-card--dark .rel-co-body {
  background: #191919;
  border: 1px solid var(--dark-border);
  border-top: none;
}
.rel-co-card--dark:hover {
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.55);
}

/* Gold bottom border on dark card */
.rel-co-card--dark::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 4;
}
.rel-co-card--dark:hover::after {
  transform: scaleX(1);
}

.rel-co-desc {
  font-size: 0.83rem;
  line-height: 1.8;
  margin: 0;
  flex: 1;
}
.rel-co-card--gold .rel-co-desc {
  color: rgba(0, 0, 0, 0.7);
}
.rel-co-card--dark .rel-co-desc {
  color: rgba(255, 255, 255, 0.55);
}

.rel-co-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.9rem;
  margin-top: auto;
}

.rel-co-card--gold .rel-co-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}
.rel-co-card--dark .rel-co-footer {
  border-top: 1px solid var(--dark-border);
}

/* Link */
.rel-co-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: gap 0.3s, color 0.3s;
}
.rel-co-link i {
  font-size: 1.1rem;
  transition: transform 0.3s;
}
.rel-co-card:hover .rel-co-link i {
  transform: translateX(5px);
}

.rel-co-card--gold .rel-co-link {
  color: rgba(0, 0, 0, 0.75);
}
.rel-co-card--gold:hover .rel-co-link {
  color: #000;
}
.rel-co-card--dark .rel-co-link {
  color: var(--text-muted-c);
}
.rel-co-card--dark:hover .rel-co-link {
  color: var(--gold-light);
}

/* Icon button */
.rel-co-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.3s;
  flex-shrink: 0;
}

.rel-co-card--gold .rel-co-icon-btn {
  background: rgba(0, 0, 0, 0.15);
  color: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.15);
}
.rel-co-card--gold:hover .rel-co-icon-btn {
  background: rgba(0, 0, 0, 0.25);
  color: #000;
  transform: scale(1.1);
}

.rel-co-card--dark .rel-co-icon-btn {
  background: var(--dark-bg);
  color: var(--text-muted-c);
  border: 1px solid var(--dark-border);
}
.rel-co-card--dark:hover .rel-co-icon-btn {
  background: var(--gold-grad);
  color: #000;
  border-color: transparent;
  transform: scale(1.1);
}

/* â”€â”€ Responsive â”€â”€ */
@media (max-width: 767px) {
  .rel-co-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .rel-co-img-wrap {
    height: 200px;
  }
  .rel-co-body {
    padding: 1.2rem 1.3rem 1.4rem;
  }
}

@media (max-width: 400px) {
  .rel-co-img-wrap {
    height: 170px;
  }
}
/* 
   DISTINGUISHED ENTERPRISES
 */
.dist-section {
  padding: 90px 0 80px;
  background: var(--dark-bg);
  border-top: 1px solid var(--dark-border);
}

.dist-heading-wrap {
  margin-bottom: 3.5rem;
}

.dist-heading {
  font-size: 35px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.6rem;
  line-height: 1.15;
}
.dist-heading span {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dist-heading-line {
  width: 120px;
  height: 2px;
  background: var(--gold-grad);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
/* Shimmer animation on heading line */
.dist-heading-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  animation: lineShimmer 2.5s ease infinite;
}
@keyframes lineShimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 200%;
  }
}

.dist-row {
  display: grid;
  gap: 0;
  margin-bottom: 0;
  position: relative;
}

.dist-row--text-left {
  grid-template-columns: 1fr 1fr;
}
.dist-row--text-right {
  grid-template-columns: 1fr 1fr;
}

/* Divider between rows */
.dist-row + .dist-row {
  border-top: 1px solid var(--dark-border);
  padding-top: 4rem;
  margin-top: 4rem;
}

.dist-text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 3.5rem 2rem 0;
}

.dist-text-block--right {
  padding: 2rem 0 2rem 3.5rem;
}

/* Company name */
.dist-company-name {
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.2;
  position: relative;
  transition: color 0.3s;
}

/* Gold underline on name hover */
.dist-row:hover .dist-company-name {
  color: var(--gold-light);
}

/* Description */
.dist-company-desc {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.85;
  margin-bottom: 1.8rem;
  transition: color 0.3s;
}
.dist-row:hover .dist-company-desc {
  color: rgba(255, 255, 255, 0.68);
}

/* Detail button */
.dist-detail-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.65);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 5px;
  padding: 0.55rem 1.2rem;
  width: fit-content;
  transition: all 0.35s;
}
.dist-detail-btn i {
  font-size: 1rem;
  transition: transform 0.3s;
}
.dist-detail-btn:hover {
  background: var(--gold-grad);
  border-color: transparent;
  color: #000;
  box-shadow: 0 4px 20px rgba(221, 167, 46, 0.35);
  transform: translateY(-2px);
}
.dist-detail-btn:hover i {
  transform: translateX(4px);
}

.dist-img-block {
  display: flex;
  align-items: center;
  justify-content: center;
}

.dist-img-wrap {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.55);
}

.dist-img-wrap img {
  width: 100%;
  height: 515px;
  object-fit: cover;
  display: block;
  /* Greyscale like screenshot */
  filter: grayscale(1) brightness(0.75);
  transition: filter 0.5s ease, transform 0.5s ease;
}

.dist-row:hover .dist-img-wrap img {
  filter: grayscale(0) brightness(0.9);
  transform: scale(1.03);
}

.dist-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(184, 139, 38, 0.08) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.dist-row:hover .dist-img-overlay {
  opacity: 1;
}

/* Gold border frame appears on hover */
.dist-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  border: 2px solid var(--gold-mid);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.dist-row:hover .dist-img-wrap::after {
  opacity: 1;
}

@media (max-width: 991px) {
  .dist-text-block {
    padding: 1.5rem 2rem 1.5rem 0;
  }
  .dist-text-block--right {
    padding: 1.5rem 0 1.5rem 2rem;
  }
  .dist-img-wrap img {
    height: 260px;
  }
}

@media (max-width: 767px) {
  .dist-row--text-left {
    grid-template-columns: 1fr;
  }
  .dist-row--text-right {
    grid-template-columns: 1fr;
  }
  /* On mobile: image always comes first */
  .dist-row--text-right .dist-img-block {
    order: -1;
  }
  .dist-row--text-right .dist-text-block {
    order: 1;
  }

  .dist-text-block {
    padding: 1.5rem 0 0;
  }
  .dist-text-block--right {
    padding: 1.5rem 0 0;
  }
  .dist-img-wrap img {
    height: 220px;
  }
  .dist-row + .dist-row {
    padding-top: 2.5rem;
    margin-top: 2.5rem;
  }
}

@media (max-width: 480px) {
  .dist-img-wrap img {
    height: 190px;
  }
  .dist-heading-line {
    width: 80px;
  }
}
/* Company Details Section */

/* --- Main Layout --- */
.comp-detail-section {
  background-color: var(--dark-card);
  color: #ffffff;
  overflow: hidden;
}

/* --- Typography & Content --- */
.comp-detail-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0;
  letter-spacing: -0.5px;
}

.comp-detail-highlight {
  color: var(--gold-light);
}

.comp-detail-divider {
  width: 150px;
  height: 1px;
  background-color: var(--gold-light);
  margin: 25px 0 35px 0;
  opacity: 0.8;
}

.comp-detail-text p {
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-weight: 300;
  padding-right: 15px;
}

/* --- Button Styling & Animation --- */
.comp-detail-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  padding: 12px 28px;
  border: 1px solid var(--gold-light);
  border-radius: 4px;
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.comp-detail-btn i {
  font-size: 1.1rem;
  margin-left: 8px;
  transition: transform 0.3s ease;
}

/* Button Hover Fill Effect */
.comp-detail-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--gold-light);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.comp-detail-btn:hover {
  color: #000 !important; /* Forces text black on hover */
  border-color: var(--gold-light);
}

.comp-detail-btn:hover::before {
  width: 100%;
}

.comp-detail-btn:hover i {
  transform: translateX(4px);
}

/* --- Image Gallery Grid --- */
.comp-detail-img-box {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  background-color: #111; /* Loading placeholder color */
}

.comp-detail-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  display: block;
}

/* Hover effect for images */
.comp-detail-img-box:hover img {
  transform: scale(1.05);
}

.comp-detail-img-large {
  aspect-ratio: 16 / 9;
}

.comp-detail-img-small {
  aspect-ratio: 4 / 3;
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
  .comp-detail-text p {
    padding-right: 0;
  }
  .comp-detail-divider {
    margin: 20px 0 25px 0;
  }
  .comp-detail-img-large {
    aspect-ratio: 3 / 2;
  }
  .comp-detail-img-small {
    aspect-ratio: 1 / 1;
  }
}
/* ══════════════════════════════════════
   RELATED DIVISION SECTION
══════════════════════════════════════ */
.rel-div-section {
  padding: 90px 0;
  background: var(--dark-card);
  border-top: 1px solid var(--dark-border);
}

/* ── Heading ── */
.rel-div-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  margin: 0;
}
.rel-div-heading span {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── Card ── */
.rel-div-card {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 0;
  background: #1c1c1c;
  border: 1px solid var(--dark-border);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  position: relative;
  transition: border-color 0.35s, box-shadow 0.35s, transform 0.35s;
}

.rel-div-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  border: 2px solid var(--gold-mid);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  z-index: 3;
}

.rel-div-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(184, 139, 38, 0.2);
}
.rel-div-card:hover::after {
  opacity: 1;
}

/* ── Image ── */
.rel-div-img-wrap {
  position: relative;
  min-height: 380px;
  overflow: hidden;
}

.rel-div-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.85);
  transition: transform 0.6s ease, filter 0.6s ease;
}

.rel-div-card:hover .rel-div-img-wrap img {
  transform: scale(1.05);
  filter: brightness(1);
}

.rel-div-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0) 55%,
    rgba(28, 28, 28, 0.5) 100%
  );
}

/* ── Content ── */
.rel-div-content {
  padding: 2.6rem 2.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

/* Icon */
.rel-div-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(
    135deg,
    rgba(119, 90, 25, 0.25),
    rgba(221, 167, 46, 0.1)
  );
  border: 1px solid rgba(184, 139, 38, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold-light);
  margin-bottom: -0.2rem;
  transition: all 0.35s;
}
.rel-div-card:hover .rel-div-icon {
  background: var(--gold-grad);
  color: #000;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(221, 167, 46, 0.35);
}

/* Title */
.rel-div-title {
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  font-weight: 800;
  color: #fff;
  margin: 0;
  transition: color 0.3s;
}
.rel-div-card:hover .rel-div-title {
  color: var(--gold-light);
}

/* Description */
.rel-div-desc {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.85;
  margin: 0;
  transition: color 0.3s;
}
.rel-div-card:hover .rel-div-desc {
  color: rgba(255, 255, 255, 0.7);
}

/* ── Stats ── */
.rel-div-stats {
  display: flex;
  gap: 2.5rem;
  padding: 0.3rem 0 0.6rem;
  border-top: 1px solid var(--dark-border);
  margin-top: 0.3rem;
  padding-top: 1.2rem;
  transition: border-color 0.3s;
}
.rel-div-card:hover .rel-div-stats {
  border-color: rgba(184, 139, 38, 0.2);
}

.rel-div-stat {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.rel-div-stat-num {
  font-size: 0.92rem;
  font-weight: 800;
  color: #fff;
  transition: color 0.3s;
}
.rel-div-card:hover .rel-div-stat-num {
  color: var(--gold-light);
}

.rel-div-stat-label {
  font-size: 0.76rem;
  color: var(--text-muted-c);
}

/* ── Button ── */
.rel-div-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #000;
  background: var(--gold-grad);
  border-radius: 6px;
  padding: 0.7rem 1.4rem;
  width: fit-content;
  transition: all 0.35s;
}
.rel-div-btn i {
  transition: transform 0.3s;
}

.rel-div-card:hover .rel-div-btn {
  background: var(--gold-grad-h);
  box-shadow: 0 4px 18px rgba(221, 167, 46, 0.4);
}
.rel-div-card:hover .rel-div-btn i {
  transform: translateX(4px);
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .rel-div-card {
    grid-template-columns: 1fr;
  }
  .rel-div-img-wrap {
    min-height: 280px;
  }
  .rel-div-img-overlay {
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0) 50%,
      rgba(28, 28, 28, 0.6) 100%
    );
  }
  .rel-div-content {
    padding: 2rem 1.6rem;
  }
}

@media (max-width: 575px) {
  .rel-div-img-wrap {
    min-height: 220px;
  }
  .rel-div-stats {
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  .rel-div-content {
    padding: 1.6rem 1.3rem;
    gap: 0.85rem;
  }
}
/* architect_section */
.architect-section {
  padding: 90px 0;
  background: var(--dark-card);
  border-top: 1px solid var(--dark-border);
}
.architect-box {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 10px;
  padding: 20px;
  transition: all 0.35s;
  cursor: default;
}
.architect-box:hover {
  border-color: var(--gold-mid);
  background-color: var(--gold-mid);
  box-shadow: 0 8px 30px rgba(184, 139, 38, 0.18);
  transform: translateY(-4px);
}
.architect-box:hover .architect-desc {
  color: #fff;
}
.architect-box:hover .architect-title {
  color: #fff;
}
.architect-box:hover .architect-icon {
  background: #fff;
  color: var(--gold-mid);
}
.architect-icon {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: var(--gold-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #000;
  margin-bottom: 0.9rem;
  flex-shrink: 0;
}
.architect-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.3rem;
}
.architect-desc {
  font-size: 0.78rem;
  color: var(--text-muted-c);
  line-height: 1.6;
}
/* Engineered for Success */
.engineered_section {
  padding: 50px 0;
  background: #212121;
}
.engineered-box {
  text-align: center;
  transition: all 0.3s;
}
.engineered-box:hover {
  transform: translateY(-10px);
}
.engineered-box:hover .engineered-icon {
  color: var(--gold-light);
}
.engineered-box:hover .engineered-title {
  color: var(--gold-light);
}
.engineered-icon {
  font-size: 30px;
  color: #fff;
}
.engineered-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}
.engineered-desc {
  font-size: 12px;
  color: var(--text-muted-c);
  line-height: 1.6;
}
/* ══════════════════════════════════════
   CURRENT OPPORTUNITIES / JOBS
══════════════════════════════════════ */
.jobs-section {
  padding: 90px 0;
  background: var(--dark-bg);
  border-top: 1px solid var(--dark-border);
}

/* ── Header row ── */
.jobs-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.jobs-heading {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800;
  color: #fff;
  margin: 0;
}
.jobs-heading span {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── Filter buttons group ── */
.jobs-filters {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* Single filter btn */
.jobs-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 1px solid var(--gold-mid);
  border-radius: 8px;
  padding: 0.6rem 1.1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-light);
  cursor: pointer;
  position: relative;
  transition: all 0.3s;
  user-select: none;
}
.jobs-filter-btn i:first-child {
  font-size: 0.95rem;
}
.jobs-filter-arrow {
  font-size: 0.95rem;
  transition: transform 0.3s;
  margin-left: 0.15rem;
}
.jobs-filter-btn:hover,
.jobs-filter-btn.open {
  background: rgba(184, 139, 38, 0.1);
  border-color: var(--gold-light);
  box-shadow: 0 4px 18px rgba(184, 139, 38, 0.18);
}
.jobs-filter-btn.open .jobs-filter-arrow {
  transform: rotate(180deg);
}

/* Dropdown */
.jobs-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 170px;
  background: #1a1a1a;
  border: 1px solid var(--dark-border);
  border-radius: 10px;
  overflow: hidden;
  z-index: 500;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.5);
}
.jobs-filter-btn.open .jobs-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.jobs-dropdown-item {
  display: block;
  padding: 0.65rem 1.1rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: all 0.2s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.jobs-dropdown-item:last-child {
  border-bottom: none;
}
.jobs-dropdown-item:hover,
.jobs-dropdown-item.active {
  background: rgba(184, 139, 38, 0.12);
  color: var(--gold-light);
  padding-left: 1.4rem;
}

/* ── Jobs list ── */
.jobs-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

/* ── Single job row ── */
.job-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-left: 3px solid transparent;
  border-radius: 10px;
  padding: 1.4rem 1.6rem;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s,
    transform 0.3s;
}

/* Gold left accent line reveal */
.job-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold-grad);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s ease;
  border-radius: 3px 0 0 3px;
}

/* Shimmer sweep */
.job-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.04) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  transition: left 0.6s ease;
  pointer-events: none;
}

.job-item:hover {
  background: #161616;
  border-color: var(--gold-mid);
  border-left-color: transparent;
  box-shadow: 0 6px 28px rgba(184, 139, 38, 0.14);
  transform: translateX(4px);
}
.job-item:hover::before {
  transform: scaleY(1);
}
.job-item:hover::after {
  left: 130%;
}

/* ── Left content ── */
.job-left {
  flex: 1;
  min-width: 0;
}

.job-title-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-bottom: 0.45rem;
}

.job-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  transition: color 0.3s;
}
.job-item:hover .job-title {
  color: var(--gold-light);
}

/* Urgent badge */
.job-badge--urgent {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--gold-grad);
  color: #000;
  padding: 0.18rem 0.6rem;
  border-radius: 4px;
  flex-shrink: 0;
  animation: urgentPulse 2s ease-in-out infinite;
}
@keyframes urgentPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(221, 167, 46, 0.4);
  }
  50% {
    box-shadow: 0 0 0 5px rgba(221, 167, 46, 0);
  }
}

/* Meta row */
.job-meta {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.job-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  color: var(--text-muted-c);
  transition: color 0.3s;
}
.job-meta-item i {
  font-size: 0.85rem;
  color: var(--gold-dark);
}
.job-item:hover .job-meta-item {
  color: rgba(255, 255, 255, 0.65);
}

/* ── Right: Apply button ── */
.job-right {
  flex-shrink: 0;
}

.job-apply-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  background: var(--gold-grad);
  color: #000;
  border-radius: 6px;
  padding: 0.65rem 1.3rem;
  white-space: nowrap;
  transition: all 0.3s;
  cursor: pointer;
}
.job-item:hover .job-apply-btn {
  background: var(--gold-grad-h);
  box-shadow: 0 4px 18px rgba(221, 167, 46, 0.4);
  transform: scale(1.04);
}

/* ── Empty state ── */
.jobs-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-muted-c);
}
.jobs-empty i {
  font-size: 2.5rem;
  color: var(--gold-dark);
  display: block;
  margin-bottom: 0.8rem;
}
.jobs-empty p {
  font-size: 0.88rem;
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 767px) {
  .jobs-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .job-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .job-right {
    width: 100%;
  }
  .job-apply-btn {
    width: 100%;
    justify-content: center;
  }
  .job-item:hover {
    transform: translateX(0) translateY(-3px);
  }
}

@media (max-width: 400px) {
  .jobs-filter-btn {
    font-size: 0.74rem;
    padding: 0.5rem 0.85rem;
  }
}
/* ── Filter Selects ── */
.jobs-filters {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 10;
}

/* Wrapper positions icon + arrow around native select */
.jobs-select-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--gold-mid);
  border-radius: 8px;
  background: transparent;
  transition: all 0.3s;
  overflow: visible;
}

.jobs-select-wrap:hover,
.jobs-select-wrap:focus-within {
  background: rgba(184, 139, 38, 0.1);
  border-color: var(--gold-light);
  box-shadow: 0 4px 18px rgba(184, 139, 38, 0.18);
}

/* Left icon */
.jobs-select-icon {
  position: absolute;
  left: 0.9rem;
  font-size: 1rem;
  color: var(--gold-light);
  pointer-events: none;
  z-index: 2;
  flex-shrink: 0;
}

/* Right chevron */
.jobs-select-arrow {
  position: absolute;
  right: 0.8rem;
  font-size: 1rem;
  color: var(--gold-light);
  pointer-events: none;
  z-index: 2;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.jobs-select {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: none;
  outline: none;
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-light);
  padding: 0.65rem 2.4rem 0.65rem 2.4rem;
  cursor: pointer;
  width: 100%;
  min-width: 170px;
  position: relative;
  z-index: 1;

  /* Style the dropdown list */
  background-color: #1a1a1a;
}

/* Option items inside dropdown */
.jobs-select option {
  background: #1a1a1a;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.5rem 0.8rem;
}

.jobs-select option:checked,
.jobs-select option:hover {
  background: #2a2000;
  color: var(--gold-light);
}

/* Rotate arrow when select is focused/open */
.jobs-select-wrap:focus-within .jobs-select-arrow {
  transform: rotate(180deg);
}
.jobs-header {
  position: relative;
  z-index: 100;
}

.jobs-list {
  position: relative;
  z-index: 1;
}

.open-app-section {
  background-color: #212121;
  color: #ffffff;
  padding-top: 80px;
  padding-bottom: 80px;
}

/* Typography */
.open-app-title {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
}

.open-app-desc {
  color: var(--app-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 650px;
  margin-bottom: 2.5rem;
}

/* Upload Wrapper Setup */
.open-app-upload-wrapper {
  max-width: 480px;
  width: 100%;
}

.open-app-input {
  display: none;
}

.open-app-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background-color: #222222;
  border: 2px dashed #444444;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

/* Inside the Box */
.open-app-icon-wrapper {
  position: relative;
  font-size: 2.2rem;
  color: #ffffff;
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}

.open-app-icon-wrapper .upload-arrow {
  position: absolute;
  font-size: 1.2rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%);
}

.open-app-main-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 6px;
  transition: color 0.3s ease;
}

.open-app-sub-text {
  font-size: 0.75rem;
  color: #777777;
  font-weight: 500;
}

/* --- Hover Effects --- */
.open-app-label:hover {
  border-color: var(--gold-light);
  background-color: #252525;
}

/* Bounces the icon up slightly on hover */
.open-app-label:hover .open-app-icon-wrapper {
  transform: translateY(-5px);
  color: var(--gold-light);
}

.open-app-label:hover .open-app-main-text {
  color: var(--gold-light);
}

/* State class added by JS when a file is selected */
.open-app-label.file-selected {
  border-color: #28a745; /* Success Green */
  border-style: solid;
}
.open-app-label.file-selected .open-app-icon-wrapper {
  color: #28a745;
}
/* ══════════════════════════════════════
   BLOG PAGE SECTION
══════════════════════════════════════ */
.blog-page-section {
  padding: 70px 0 90px;
  background: var(--dark-bg);
  border-top: 1px solid var(--dark-border);
}

/* ── Top Bar ── */
.blog-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

/* Filter Tabs */
.blog-filter-tabs {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.blog-tab {
  background: transparent;
  border: 1px solid var(--dark-border);
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 0.42rem 1rem;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}
.blog-tab:hover {
  border-color: var(--gold-mid);
  color: var(--gold-light);
  background: rgba(184, 139, 38, 0.08);
}
.blog-tab.active {
  background: var(--gold-grad);
  border-color: transparent;
  color: #000;
  font-weight: 700;
  box-shadow: 0 3px 14px rgba(221, 167, 46, 0.3);
}

/* Sort label */
.blog-sort {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted-c);
  cursor: pointer;
  transition: color 0.3s;
  white-space: nowrap;
}
.blog-sort i {
  font-size: 1rem;
  color: var(--gold-mid);
}
.blog-sort:hover {
  color: var(--gold-light);
}

/* ── Main Layout ── */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2rem;
  align-items: start;
}

/* ── Posts Grid ── */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

/* ── Blog Post Card ── */
.blog-post-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.35s, box-shadow 0.35s, transform 0.35s;
}

/* Gold bottom bar */
.blog-post-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.blog-post-card:hover {
  border-color: var(--gold-mid);
  box-shadow: 0 10px 35px rgba(184, 139, 38, 0.18);
  transform: translateY(-5px);
}
.blog-post-card:hover::after {
  transform: scaleX(1);
}

/* Image */
.bpc-img-wrap {
  position: relative;
  width: 100%;
  height: 185px;
  overflow: hidden;
  flex-shrink: 0;
}
.bpc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.75);
  transition: transform 0.5s ease, filter 0.5s ease;
}
.blog-post-card:hover .bpc-img-wrap img {
  transform: scale(1.06);
  filter: brightness(0.95);
}
.bpc-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 40%,
    rgba(0, 0, 0, 0.55) 100%
  );
}

/* Category tag over image */
.bpc-cat-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--gold-grad);
  color: #000;
  padding: 0.22rem 0.65rem;
  border-radius: 4px;
  z-index: 2;
  transition: transform 0.3s, box-shadow 0.3s;
}
.blog-post-card:hover .bpc-cat-tag {
  transform: translateY(-1px);
  box-shadow: 0 3px 12px rgba(221, 167, 46, 0.4);
}

/* Body */
.bpc-body {
  padding: 1.1rem 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.55rem;
}
.bpc-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  margin: 0;
  transition: color 0.3s;
}
.blog-post-card:hover .bpc-title {
  color: var(--gold-light);
}

.bpc-excerpt {
  font-size: 0.77rem;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.75;
  margin: 0;
  flex: 1;
  transition: color 0.3s;
}
.blog-post-card:hover .bpc-excerpt {
  color: rgba(255, 255, 255, 0.68);
}

.bpc-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--gold-mid);
  margin-top: 0.3rem;
  transition: color 0.3s, gap 0.3s;
}
.bpc-read-more i {
  transition: transform 0.3s;
}
.blog-post-card:hover .bpc-read-more {
  color: var(--gold-light);
  gap: 0.55rem;
}
.blog-post-card:hover .bpc-read-more i {
  transform: translateX(4px);
}

/* ── Load More ── */
.blog-load-more {
  text-align: center;
  margin-top: 2rem;
}
.blog-load-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 1px solid var(--gold-mid);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.35s;
}
.blog-load-btn i {
  font-size: 1rem;
  transition: transform 0.5s;
}
.blog-load-btn:hover {
  background: var(--gold-grad);
  border-color: transparent;
  color: #000;
  box-shadow: 0 4px 18px rgba(221, 167, 46, 0.35);
}
.blog-load-btn:hover i {
  transform: rotate(180deg);
}

/* ══════════════════════════════════════
   SIDEBAR
══════════════════════════════════════ */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: sticky;
  top: 80px;
}

/* Widget base */
.bs-widget {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 12px;
  padding: 1.4rem 1.3rem;
}

/* Widget title */
.bs-widget-title {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--dark-border);
}

/* ── Category list ── */
.bs-cat-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.bs-cat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: none;
  border-radius: 6px;
  padding: 0.55rem 0.7rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  text-align: left;
  transition: all 0.25s;
}
.bs-cat-item i {
  font-size: 0.5rem;
  color: var(--gold-dark);
  transition: color 0.25s;
}
.bs-cat-item:hover,
.bs-cat-item.active {
  background: rgba(184, 139, 38, 0.1);
  color: var(--gold-light);
}
.bs-cat-item.active i,
.bs-cat-item:hover i {
  color: var(--gold-light);
}

/* ── Newsletter Widget (Gold) ── */
.bs-widget--gold {
  background: var(--gold-grad);
  border-color: transparent;
}
.bs-widget-title--dark {
  color: #000;
  border-bottom-color: rgba(0, 0, 0, 0.15);
}
.bs-newsletter-desc {
  font-size: 0.78rem;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.bs-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.bs-newsletter-input {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  padding: 0.6rem 0.9rem;
  font-size: 0.78rem;
  font-family: "Inter", sans-serif;
  color: #111;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.bs-newsletter-input::placeholder {
  color: #888;
}
.bs-newsletter-input:focus {
  border-color: rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}
.bs-newsletter-btn {
  background: #000;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 0.65rem;
  cursor: pointer;
  transition: all 0.3s;
}
.bs-newsletter-btn:hover {
  background: #1a1a1a;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

/* ── Trending List ── */
.bs-trending-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.bs-trending-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  padding: 0.5rem 0.5rem;
  border-radius: 8px;
  transition: background 0.25s;
}
.bs-trending-item:hover {
  background: rgba(184, 139, 38, 0.08);
}

.bs-trending-img {
  width: 52px;
  height: 44px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}
.bs-trending-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.4);
  transition: filter 0.3s;
}
.bs-trending-item:hover .bs-trending-img img {
  filter: grayscale(0);
}

.bs-trending-text span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
  display: block;
  transition: color 0.25s;
}
.bs-trending-item:hover .bs-trending-text span {
  color: var(--gold-light);
}

/* ── Social Row ── */
.bs-social-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.bs-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--dark-bg);
  border: 1px solid var(--dark-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.25s;
}
.bs-social-btn:hover {
  background: var(--gold-grad);
  color: #000;
  border-color: transparent;
  transform: translateY(-2px);
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .blog-layout {
    grid-template-columns: 1fr 260px;
  }
}

@media (max-width: 991px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }
  .blog-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

@media (max-width: 767px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-sidebar {
    grid-template-columns: 1fr;
  }
  .blog-top-bar {
    flex-direction: column;
    align-items: flex-start;
  }
  .bpc-img-wrap {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .blog-filter-tabs {
    gap: 0.3rem;
  }
  .blog-tab {
    font-size: 0.7rem;
    padding: 0.38rem 0.8rem;
  }
}
/* Blog Detail Section */
.blog-detail-section {
  background-color: var(--dark-bg);
  color: #ffffff;
  font-family: "Inter", sans-serif; /* Adjust to your main font */
}

/* --- Top Area --- */
.blog-detail-breadcrumbs {
  font-size: 0.8rem;
  color: #b3b3b3;
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-detail-badge {
  background-color: #222;
  color: #fff;
  padding: 4px 10px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 4px;
}

.blog-detail-read-time {
  font-size: 0.8rem;
  color: #b3b3b3;
}

.blog-detail-main-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
}

.blog-detail-text-gold {
  color: var(--gold-light);
}

/* --- Author Meta --- */
.blog-detail-author-row {
  border-top: 1px solid #333333;
  border-bottom: 1px solid #333333;
  padding: 15px 0;
}

.blog-detail-avatar {
  width: 45px;
  height: 45px;
  background-color: var(--gold-light);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
}

.blog-detail-author-info h6,
.blog-detail-date-info h6 {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
}

.blog-detail-author-info span,
.blog-detail-date-info span {
  font-size: 0.75rem;
  color: #b3b3b3;
}

/* --- Main Content --- */
.blog-detail-hero-wrapper img {
  border-radius: 8px;
  width: 100%;
  max-height: 500px;
  object-fit: cover;
}

.blog-detail-content p {
  color: #b3b3b3;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.blog-detail-content h3 {
  font-weight: 700;
  font-size: 1.6rem;
}

/* --- Inline Tags & Cards --- */
.blog-detail-tag {
  padding: 6px 15px;
  border: 1px solid #333333;
  color: #b3b3b3;
  border-radius: 20px;
  font-size: 0.8rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-detail-tag:hover,
.blog-detail-tag.active {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.blog-detail-read-next-card {
  max-width: 400px;
  background: transparent;
  transition: transform 0.3s ease;
}

.blog-detail-read-next-card:hover {
  transform: translateY(-5px);
}

.blog-detail-mini-label {
  font-size: 0.65rem;
  color: var(--gold-light);
  font-weight: 700;
  letter-spacing: 1px;
}

.blog-detail-read-next-img-wrapper img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
}

.blog-detail-read-next-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
}

.blog-detail-read-next-card p {
  font-size: 0.85rem;
  color: #b3b3b3;
  line-height: 1.5;
}

.blog-detail-read-link {
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.blog-detail-read-link i {
  transition: transform 0.3s ease;
}
.blog-detail-read-link:hover i {
  transform: translateX(4px);
}

/* --- Sidebar Global --- */
.blog-detail-widget-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.blog-detail-widget-divider {
  border-color: var(--bd-gold);
  opacity: 0.5;
  margin-bottom: 20px;
}

/* Related Items */
.blog-detail-related-item {
  display: flex;
  gap: 15px;
  text-decoration: none;
  margin-bottom: 20px;
  align-items: center;
}

.related-img-box {
  width: 80px;
  height: 60px;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
}

.related-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-detail-related-item:hover .related-img-box img {
  transform: scale(1.1);
}

.related-content h5 {
  font-size: 0.85rem;
  color: #fff;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 4px;
  transition: color 0.3s ease;
}

.blog-detail-related-item:hover .related-content h5 {
  color: var(--bd-gold);
}

.related-content span {
  font-size: 0.7rem;
  color: #b3b3b3;
}

/* Category Pills */
.blog-detail-pill {
  padding: 6px 14px;
  border: 1px solid var(--gold-light);
  color: var(--gold-light);
  font-size: 0.75rem;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-detail-pill:hover {
  background-color: var(--gold-light);
  color: #000;
}

/* Newsletter Box */
.blog-detail-newsletter-box {
  background-color: var(--gold-light);
  padding: 30px 25px;
  border-radius: 12px;
  color: #000;
}

.blog-detail-newsletter-box h4 {
  font-weight: 800;
  margin-bottom: 10px;
}

.blog-detail-newsletter-box p {
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 20px;
}

.blog-detail-input {
  width: 100%;
  padding: 12px 15px;
  background-color: rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  margin-bottom: 10px;
  color: #000;
  outline: none;
}
.blog-detail-input::placeholder {
  color: rgba(0, 0, 0, 0.6);
}

.blog-detail-submit-btn {
  width: 100%;
  padding: 12px;
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-weight: 700;
  transition: background-color 0.3s ease;
}

.blog-detail-submit-btn:hover {
  background-color: #222;
}

.newsletter-disclaimer {
  display: block;
  text-align: center;
  font-size: 0.6rem;
  font-weight: 700;
  margin-top: 15px;
  letter-spacing: 1px;
}

/* Advisory Promo Box */
.blog-detail-advisory-box {
  background-color: #111111;
  border: 1px solid rgba(198, 155, 53, 0.2);
  padding: 30px 25px;
  border-radius: 12px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.blog-detail-advisory-box:hover {
  border-color: var(--gold-light);
  transform: translateY(-4px);
}

.advisory-label {
  font-size: 0.65rem;
  color: var(--gold-light);
  letter-spacing: 1px;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}

.blog-detail-advisory-box h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.blog-detail-advisory-box p {
  font-size: 0.85rem;
  color: #b3b3b3;
  margin-bottom: 20px;
}

.advisory-link {
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
}

/* Filter List Box */
.blog-detail-filter-box {
  background-color: var(--gold-light);
  padding: 25px;
  border-radius: 12px;
  color: #000;
}

.blog-detail-filter-box h4 {
  font-weight: 700;
  font-size: 1.1rem;
}

.filter-divider {
  border-color: #000;
  opacity: 0.15;
  margin: 15px 0;
}

.blog-detail-filter-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-detail-filter-list li {
  margin-bottom: 12px;
}
.blog-detail-filter-list li:last-child {
  margin-bottom: 0;
}

.blog-detail-filter-list a {
  color: #000;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  transition: font-weight 0.2s ease;
}

.blog-detail-filter-list a:hover {
  font-weight: 800;
}

/* Social Buttons */
.blog-detail-social-btn {
  width: 40px;
  height: 40px;
  background-color: var(--gold-light);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.2rem;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-detail-social-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(198, 155, 53, 0.4);
  color: #000;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .blog-detail-main-title {
    font-size: 2.2rem;
  }
}
/* --- Variables --- */

.evt-section {
  background-color: var(--dark-bg);
  color: #ffffff;
}

/* Typography & Header */
.evt-main-title {
  font-size: 2.2rem;
  font-weight: 700;
}

.evt-text-gold {
  color: var(--gold-light);
}

.evt-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 450px;
}

/* Tabs */
.evt-tab-btn {
  background-color: #222;
  color: #fff;
  border: none;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.evt-tab-btn:hover,
.evt-tab-btn.active {
  background-color: var(--gold-mid);
  color: #fff;
}

/* --- Card Base Styles (A Tag Resets) --- */
.evt-card {
  display: flex;
  text-decoration: none;
  color: inherit;
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    box-shadow 0.4s ease;
}

/* Hover Lift Effect */
.evt-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  color: inherit; /* Prevents blue link text */
}

/* Themes */
.theme-dark {
  background-color: var(--dark-card);
  color: #fff;
}
.theme-gold {
  background-color: var(--gold-mid);
  color: #fff;
}

.evt-card-outline {
  background-color: #212121;
  border: 1px solid var(--gold-light);
}
.evt-card-outline:hover {
  box-shadow: 0 15px 35px rgba(198, 155, 53, 0.15);
}

/* --- Badges --- */
.evt-badge {
  background-color: #fff;
  color: #000;
  padding: 4px 10px;
  font-size: 0.65rem;
  font-weight: 800;
  border-radius: 4px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.evt-badge-gold {
  background-color: var(--gold-mid);
  color: #000;
}

/* --- Specific Card Layouts --- */

/* 1. Horizontal Split Card */
.evt-card-split {
  flex-direction: row;
}
@media (max-width: 991px) {
  .evt-card-split {
    flex-direction: column;
  }
}

.evt-img-panel {
  flex: 1;
  position: relative;
  min-height: 250px;
}
.evt-img-panel .evt-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
}
.evt-img-panel img,
.evt-img-panel-sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.evt-card:hover .evt-img-panel img,
.evt-card:hover .evt-img-panel-sm img {
  transform: scale(1.05);
}

/* 2. Vertical Card */
.evt-card-vertical {
  flex-direction: column;
}
.evt-img-panel-sm {
  position: relative;
  height: 180px;
  overflow: hidden;
}
.evt-img-panel-sm .evt-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 2;
}

/* Internal Content */
.evt-content-panel {
  padding: 30px;
  flex: 1;
}

.evt-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  gap: 15px;
  text-transform: uppercase;
}
.evt-meta-stacked {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.evt-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}
.evt-title-sm {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.evt-text {
  font-size: 0.9rem;
  color: #fff;
  line-height: 1.6;
}
.evt-text-sm {
  font-size: 0.85rem;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 25px;
}

/* Links & Buttons */
.evt-link-text {
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  margin-top: 20px;
}
.evt-card:hover .evt-link-text i {
  transform: translateX(5px);
  transition: transform 0.3s ease;
}

.evt-btn-solid {
  display: block;
  text-align: center;
  background-color: var(--gold-mid);
  color: #000;
  padding: 12px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.85rem;
  transition: background-color 0.3s ease;
}
.evt-card:hover .evt-btn-solid {
  background-color: var(--gold-mid);
}

/* Avatar Group */
.evt-avatar-group {
  display: flex;
  align-items: center;
}
.evt-avatar-group img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid var(--gold-light);
  object-fit: cover;
  margin-left: -10px;
}
.evt-avatar-group img:first-child {
  margin-left: 0;
}
.evt-avatar-more {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #fff;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 800;
  margin-left: -10px;
  border: 2px solid var(--gold-light);
}

/* Filter Animation States */
.evt-grid-item {
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.evt-hide {
  display: none !important;
}
.evt-fade-out {
  opacity: 0;
  transform: scale(0.95);
}
/* --- Section Styling --- */
.past-engagements-section {
  background-color: var(--dark-bg);
  color: var(--white);
}

.past-main-title {
  font-size: 2.2rem;
  font-weight: 700;
}

.past-text-gold {
  color: var(--gold-mid);
}

/* --- Card Base Styling --- */
.past-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: var(--dark-card2);
  border: 1px solid var(--dark-border);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Hover Lift & Glow Effect */
.past-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-mid);
  box-shadow: 0 15px 35px rgba(184, 139, 38, 0.15);
  color: inherit;
}

/* --- Image & Badge --- */
.past-img-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-bottom: 1px solid var(--dark-border);
}

.past-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.past-card:hover .past-img-wrapper img {
  transform: scale(1.08);
}

.past-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--gold-mid);
  color: var(--white);
  padding: 4px 12px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1px;
  border-radius: 20px;
  z-index: 2;
  text-transform: uppercase;
}

/* --- Content Layout --- */
.past-card-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.past-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.4;
}

.past-meta-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.75rem;
  color: var(--text-muted-c);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
}

.past-meta-info i {
  font-size: 0.9rem;
  vertical-align: middle;
  margin-top: -2px;
  margin-right: 2px;
}

.past-divider {
  color: var(--dark-border);
}

.past-card-desc {
  color: var(--text-muted-c);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1; /* Pushes the button to the bottom */
}

/* --- Styled Button inside the Anchor --- */
.past-gallery-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  background: var(--gold-mid);
  color: var(--white);
  padding: 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.past-gallery-btn i {
  font-size: 1.1rem;
}

/* Button Gradient Swap on Card Hover */
.past-card:hover .past-gallery-btn {
  background: var(--gold-grad-h);
}
/* Event Detail Overview */
.evt-detail-overview {
  background-color: var(--dark-bg);
  color: #ffffff;
  overflow: hidden;
}

/* --- Typography --- */
.evt-detail-title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
}

.evt-detail-highlight {
  color: var(--gold-mid);
}

.evt-detail-text {
  color: #a3a3a3;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  padding-right: 5%; /* Gives the text a little breathing room from the grid on large screens */
}

/* --- 2x2 Grid Styling --- */
.evt-grid-square {
  /* The magic property that forces a perfect square */
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    box-shadow 0.4s ease;
  cursor: default; /* Change to pointer if you plan to link these */
}

/* Hover lift effect for all squares */
.evt-grid-square:hover {
  transform: translateY(-6px);
}

/* --- Stat Boxes --- */
.evt-stat-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; /* Center horizontally */
  text-align: center;
  padding: 20px;
}

/* Match the exact alignment from your screenshot (bottom-left aligned text) */
.evt-stat-gold .evt-stat-content,
.evt-stat-green .evt-stat-content {
  justify-content: flex-end;
  align-items: flex-start;
  text-align: left;
  padding: 30px;
}

.evt-stat-num {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
  color: #ffffff;
}

.evt-stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

/* Colors & Glows */
.evt-stat-gold {
  background-color: var(--gold-mid);
}
.evt-stat-gold:hover {
  box-shadow: 0 15px 30px rgba(198, 155, 53, 0.25);
}

.evt-stat-green {
  background-color: #127242;
}
.evt-stat-green:hover {
  box-shadow: 0 15px 30px rgba(18, 114, 66, 0.3);
}

/* --- Image Boxes --- */
.evt-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Inner zoom effect on hover */
.evt-grid-square:hover img {
  transform: scale(1.08);
}

/* Responsive tweaks for mobile */
@media (max-width: 768px) {
  .evt-detail-title {
    font-size: 2rem;
  }
  .evt-stat-gold .evt-stat-content,
  .evt-stat-green .evt-stat-content {
    padding: 20px; /* Reduce padding on smaller screens */
  }
  .evt-stat-num {
    font-size: 2.2rem;
  }
  .evt-stat-label {
    font-size: 0.65rem;
  }
}
/* ══════════════════════════════════════
   EVENT GALLERY SLIDER
══════════════════════════════════════ */
.event-gallery-section {
  padding: 60px 0 70px;
  background: #161616;
  border-top: 1px solid var(--dark-border);
}

/* ── Header ── */
.eg-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.eg-heading {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
}

.eg-nav {
  display: flex;
  gap: 0.5rem;
}

.eg-prev,
.eg-next {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s;
}
.eg-prev:hover,
.eg-next:hover {
  background: var(--gold-grad);
  color: #000;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(221, 167, 46, 0.35);
}

/* ── Swiper ── */
.eg-swiper {
  padding-bottom: 4px;
}

/* ── Card ── */
.eg-card {
  position: relative;
  width: 100%;
  height: 150px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}

.eg-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.85);
  transition: transform 0.5s ease, filter 0.5s ease;
}
.eg-card:hover img {
  transform: scale(1.08);
  filter: brightness(1);
}

/* Bottom dark gradient */
.eg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 0.55) 100%
  );
  transition: opacity 0.35s;
}

/* Gold border on hover */
.eg-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  border: 2px solid var(--gold-mid);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 2;
}
.eg-card:hover::after {
  opacity: 1;
}

/* ── Caption (large, "EVENT / HIGHLIGHT") ── */
.eg-caption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
}
.eg-caption-main {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 6px;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}
.eg-caption-sub {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.3rem;
}

/* ── Caption small (Event Highlight 2 style) ── */
.eg-caption--small {
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  padding: 0.8rem;
}
.eg-caption-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  display: block;
}
.eg-caption-desc {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.5);
  display: block;
  margin-top: 0.2rem;
  line-height: 1.4;
}

/* ── Tag badge (bottom-left, "Connecting The Future") ── */
.eg-tag {
  position: absolute;
  bottom: 8px;
  left: 8px;
  z-index: 2;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  padding: 0.25rem 0.55rem;
  border-radius: 4px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
}
.eg-card:hover .eg-tag {
  background: var(--gold-grad);
  color: #000;
  border-color: transparent;
}

/* ── Pagination dots ── */
.eg-pagination {
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  margin-top: 1.6rem;
}
.eg-pagination .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  background: rgba(255, 255, 255, 0.2) !important;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
  opacity: 1 !important;
  margin: 0 !important;
}
.eg-pagination .swiper-pagination-bullet-active {
  background: var(--gold-light) !important;
  width: 20px !important;
  border-radius: 4px !important;
}

/* ── Responsive ── */
@media (max-width: 575px) {
  .eg-card {
    height: 95px;
  }
  .eg-caption-main {
    font-size: 1rem;
    letter-spacing: 4px;
  }
}
/* Discover Events Section */

.discover-evt-section {
  background-color: var(--bg-dark);
  color: #ffffff;
  padding-top: 80px;
  padding-bottom: 80px;
}

/* --- Header Styling --- */
.discover-evt-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.discover-evt-subtitle {
  color: #a3a3a3;
  font-size: 0.9rem;
  max-width: 600px;
  line-height: 1.6;
}

/* --- Card Base Styling --- */
.discover-evt-card {
  display: flex;
  flex-direction: column;
  padding: 35px;
  border-radius: 14px;
  text-decoration: none;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    box-shadow 0.4s ease;
  height: 100%;
}

.discover-evt-card:hover {
  transform: translateY(-8px);
}

/* --- Theme Variations --- */

/* Gold Card */
.theme-gold {
  background-color: var(--gold-mid);
  color: #ffffff;
}
.theme-gold:hover {
  box-shadow: 0 15px 35px rgba(198, 155, 53, 0.25);
  color: #ffffff; /* Prevent link color override */
}

/* Dark Card */
.theme-dark {
  background-color: var(--dark-card);
  color: #ffffff;
  border: 1px solid #2a2a2a;
}
.theme-dark:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  border-color: #3a3a3a;
  background-color: var(--gold-light);
  color: #ffffff; /* Prevent link color override */
}
.theme-dark:hover .discover-evt-badge {
  background-color: #fff;
  color: var(--gold-mid);
}
.theme-dark:hover .discover-evt-meta {
  color: #fff;
}
.theme-dark:hover .discover-evt-meta i {
  color: #fff;
}
.theme-dark:hover .discover-evt-link {
  color: #fff;
}
.theme-dark:hover .discover-evt-icon-top {
  color: #fff;
}
/* --- Inner Card Elements --- */
.discover-evt-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.discover-evt-badge {
  padding: 6px 14px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1px;
  border-radius: 4px;
  text-transform: uppercase;
}

/* Badge Color Swaps */
.theme-gold .discover-evt-badge {
  background-color: #ffffff;
  color: var(--gold-mid);
}
.theme-dark .discover-evt-badge {
  background-color: var(--gold-mid);
  color: #ffffff;
}

/* Top Right Icon */
.discover-evt-icon-top {
  font-size: 1.4rem;
  opacity: 0.8;
}
.theme-dark .discover-evt-icon-top {
  color: var(--gold-mid);
}

/* Typography Inside Card */
.discover-evt-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.discover-evt-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 30px;
}
/* Slightly fade the meta text to match the screenshot */
.theme-gold .discover-evt-meta {
  color: rgba(255, 255, 255, 0.9);
}
.theme-dark .discover-evt-meta {
  color: #a3a3a3;
}

.discover-evt-meta i {
  font-size: 1.1rem;
  vertical-align: text-bottom;
  margin-right: 6px;
  opacity: 0.8;
}
/* Ensure the dark card's icons are tinted gold based on the image */
.theme-dark .discover-evt-meta i {
  color: var(--gold-mid);
}

/* The Line */
.discover-evt-divider {
  border: none;
  height: 1px;
  margin: 0 0 20px 0;
  margin-top: auto; /* Pushes the divider and link to the bottom if cards are uneven heights */
}
.theme-gold .discover-evt-divider {
  background-color: rgba(255, 255, 255, 0.3);
}
.theme-dark .discover-evt-divider {
  background-color: rgba(255, 255, 255, 0.1);
}

/* The Link */
.discover-evt-link {
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  transition: opacity 0.3s ease;
}

.theme-dark .discover-evt-link {
  color: var(--gold-mid);
}

.discover-evt-link i {
  font-size: 1.2rem;
  margin-left: 5px;
  transition: transform 0.3s ease;
}

/* Hover effect on the link arrow */
.discover-evt-card:hover .discover-evt-link i {
  transform: translateX(5px);
}
.discover-evt-card:hover .discover-evt-link {
  opacity: 0.8;
}

/* --- Responsive Adjustments --- */
@media (max-width: 576px) {
  .discover-evt-card {
    padding: 25px;
  }
  .discover-evt-card-title {
    font-size: 1.2rem;
  }
}
/* ══════════════════════════════════════
   GLOBAL INQUIRY / CONTACT SECTION
══════════════════════════════════════ */
.contact-section {
  padding: 90px 0;
  background: var(--dark-bg);
  border-top: 1px solid var(--dark-border);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

/* ── Left Column ── */
.contact-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}
.contact-heading span {
  display: block;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-intro {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.85;
  margin-bottom: 2rem;
  max-width: 480px;
}

/* ── Contact List ── */
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  text-decoration: none;
  padding: 0.4rem;
  border-radius: 8px;
  transition: background 0.3s, transform 0.3s;
}

.contact-item--link:hover {
  background: rgba(184, 139, 38, 0.06);
  transform: translateX(4px);
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--gold-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #000;
  flex-shrink: 0;
  transition: all 0.3s;
}
.contact-item--link:hover .contact-icon {
  box-shadow: 0 4px 16px rgba(221, 167, 46, 0.4);
  transform: scale(1.08);
}

.contact-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-top: 0.1rem;
}

.contact-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-mid);
}

.contact-value {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
  transition: color 0.3s;
}
.contact-item--link:hover .contact-value {
  color: var(--gold-light);
}

/* ── Image ── */
.contact-img-wrap {
  position: relative;
  width: 100%;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
}
.contact-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.8);
  transition: transform 0.5s ease, filter 0.5s ease;
}
.contact-img-wrap:hover img {
  transform: scale(1.05);
  filter: brightness(0.95);
}
.contact-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184, 139, 38, 0.1), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}
.contact-img-wrap:hover .contact-img-overlay {
  opacity: 1;
}

/* ══════════════════════════════════════
   FORM CARD
══════════════════════════════════════ */
.contact-form-card {
  background: #1a1a1a;
  border: 1px solid var(--dark-border);
  border-radius: 14px;
  padding: 2.4rem 2.2rem;
  position: relative;
  overflow: hidden;
}

.contact-form-title {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2rem;
}

/* ── Form Layout ── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

.cf-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cf-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted-c);
  transition: color 0.3s;
}

/* ── Inputs ── */
.cf-input,
.cf-select {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--dark-border);
  border-radius: 0;
  padding: 0.5rem 0.1rem 0.7rem;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  color: #fff;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}

.cf-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
}

.cf-input:focus,
.cf-select:focus {
  border-color: var(--gold-mid);
}
.cf-input:focus ~ .cf-label,
.cf-group:has(.cf-input:focus) .cf-label,
.cf-group:has(.cf-select:focus) .cf-label {
  color: var(--gold-light);
}

.cf-textarea {
  resize: vertical;
  min-height: 70px;
  font-family: "Inter", sans-serif;
}

/* ── Select wrapper ── */
.cf-select-wrap {
  position: relative;
}
.cf-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 1.8rem;
}
.cf-select option {
  background: #1a1a1a;
  color: #fff;
}
.cf-select-arrow {
  position: absolute;
  right: 0;
  bottom: 0.7rem;
  font-size: 1.1rem;
  color: var(--gold-light);
  pointer-events: none;
  transition: transform 0.3s;
}
.cf-select-wrap:has(.cf-select:focus) .cf-select-arrow {
  transform: rotate(180deg);
}

/* ── Submit Button ── */
.cf-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  border: 1.5px solid var(--gold-mid);
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 8px;
  padding: 0.9rem 1.5rem;
  margin-top: 0.5rem;
  cursor: pointer;
  transition: all 0.35s;
}
.cf-submit-btn i {
  font-size: 1.1rem;
  transition: transform 0.3s;
}
.cf-submit-btn:hover {
  background: var(--gold-grad);
  border-color: transparent;
  color: #000;
  box-shadow: 0 6px 24px rgba(221, 167, 46, 0.4);
}
.cf-submit-btn:hover i {
  transform: translateX(5px);
}

/* ── Footnote ── */
.cf-footnote {
  text-align: center;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  margin: 0.5rem 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.cf-footnote i {
  font-size: 0.85rem;
  color: var(--gold-dark);
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 575px) {
  .cf-row {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }
  .contact-form-card {
    padding: 1.8rem 1.4rem;
  }
  .contact-img-wrap {
    height: 160px;
  }
}
/* ══════════════════════════════════════
   FOUNDER SECTION
══════════════════════════════════════ */
.founder-section {
  padding: 90px 0;
  background: var(--dark-bg);
  border-top: 1px solid var(--dark-border);
}

.founder-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* ── Label ── */
.founder-label {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 1rem;
}
.founder-label-line {
  width: 28px;
  height: 2px;
  background: var(--gold-grad);
  border-radius: 2px;
  display: inline-block;
}

/* ── Name ── */
.founder-name {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}
.founder-name span {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── Role ── */
.founder-role {
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.6rem;
  line-height: 1.6;
}

/* ── Bio ── */
.founder-bio p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.9;
  margin-bottom: 1rem;
}

/* ── Quote ── */
.founder-quote {
  margin-top: 1.8rem;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-left: 3px solid var(--gold-mid);
  border-radius: 0 8px 8px 0;
  padding: 1.2rem 1.4rem;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.founder-quote:hover {
  border-color: var(--gold-mid);
  box-shadow: 0 8px 30px rgba(184, 139, 38, 0.15);
  transform: translateX(4px);
}
.founder-quote-icon {
  font-size: 1.3rem;
  color: var(--gold-mid);
  display: block;
  margin-bottom: 0.6rem;
}
.founder-quote p {
  font-size: 0.82rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin: 0;
}

/* ══════════════════════════════════════
   IMAGE GALLERY (Right)
══════════════════════════════════════ */
.founder-img-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  height: 480px;
}

/* ── Main portrait — spans both rows ── */
.founder-img-main {
  grid-row: span 2;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

.founder-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: brightness(0.92);
}
.founder-img-main:hover img {
  transform: scale(1.04);
  filter: brightness(1);
}

/* Gold border frame on hover */
.founder-img-main::after,
.founder-img-small::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  border: 2px solid var(--gold-mid);
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
  z-index: 2;
}
.founder-img-main:hover::after,
.founder-img-small:hover::after {
  opacity: 1;
}

/* ── Small images (top-right, bottom-right) ── */
.founder-img-small {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

.founder-img-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: brightness(0.7) saturate(0.6) hue-rotate(170deg);
}
.founder-img-small:hover img {
  transform: scale(1.06);
  filter: brightness(0.85) saturate(0.75) hue-rotate(170deg);
}

/* ── Overlay (bottom gradient on all images) ── */
.founder-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 55%,
    rgba(0, 0, 0, 0.6) 100%
  );
  pointer-events: none;
}

/* ── Identity Badge (white card over main image) ── */
.founder-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: #f5f1e8;
  border-left: 3px solid var(--gold-mid);
  border-radius: 0 6px 6px 0;
  padding: 0.6rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  z-index: 3;
  transition: transform 0.3s, box-shadow 0.3s;
}
.founder-img-main:hover .founder-badge {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
.founder-badge-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #666;
}
.founder-badge-name {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--gold-dark);
}

/* ── Tag on bottom-right small image ── */
.founder-img-tag {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 3;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 0.2rem 0.55rem;
  backdrop-filter: blur(4px);
  transition: all 0.3s;
}
.founder-img-small:hover .founder-img-tag {
  background: var(--gold-grad);
  color: #000;
  border-color: transparent;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .founder-img-grid {
    height: 420px;
    order: -1;
  }
}

@media (max-width: 575px) {
  .founder-img-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 280px 130px 130px;
    height: auto;
  }
  .founder-img-main {
    grid-row: span 1;
  }
  .founder-name {
    font-size: 2.2rem;
  }
  .founder-badge {
    left: 10px;
    bottom: 10px;
    padding: 0.5rem 0.8rem;
  }
}
/* ══════════════════════════════════════
   PRIVACY POLICY PAGE
══════════════════════════════════════ */
.privacy-section {
  padding: 70px 0 90px;
  background: var(--dark-bg);
}

/* ── Header ── */
.pp-header {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--dark-border);
  margin-bottom: 2.5rem;
  align-items: start;
}

.pp-tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--gold-grad);
  color: #000;
  padding: 0.25rem 0.8rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.pp-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.1;
}
.pp-title span {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pp-intro {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.85;
  max-width: 540px;
  margin: 0;
}

/* ── Header Right (Effective Date card) ── */
.pp-header-right {
  background: #1c1c1c;
  border: 1px solid var(--dark-border);
  border-radius: 12px;
  padding: 1.4rem 1.5rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.pp-header-right:hover {
  border-color: var(--gold-mid);
  box-shadow: 0 8px 30px rgba(184, 139, 38, 0.12);
}

.pp-ref-label {
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted-c);
  margin-bottom: 0.5rem;
}
.pp-effective-title {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.2rem;
}
.pp-effective-date {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-light);
}
.pp-divider {
  height: 1px;
  background: var(--dark-border);
  margin: 0.9rem 0;
}
.pp-version {
  font-size: 0.72rem;
  color: var(--text-muted-c);
  line-height: 1.7;
  margin: 0;
}

/* ── Image Banner ── */
.pp-img-banner {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 1rem;
  margin-bottom: 3rem;
}

.pp-img-large,
.pp-img-small {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 200px;
}

.pp-img-large img,
.pp-img-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.7) grayscale(0.3);
  transition: transform 0.5s ease, filter 0.5s ease;
}
.pp-img-large:hover img,
.pp-img-small:hover img {
  transform: scale(1.04);
  filter: brightness(0.85) grayscale(0);
}

.pp-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(184, 139, 38, 0.06),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s;
}
.pp-img-large:hover .pp-img-overlay,
.pp-img-small:hover .pp-img-overlay {
  opacity: 1;
}

/* ── Main Layout ── */
.pp-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 3rem;
  align-items: start;
}

/* ── Policy Blocks ── */
.pp-block {
  margin-bottom: 2.6rem;
  padding-top: 0.5rem;
}
.pp-block:last-child {
  margin-bottom: 0;
}

.pp-block-heading {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.pp-block-num {
  font-size: 1.4rem;
  font-weight: 900;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.pp-block-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
}

.pp-text {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.9;
  margin-bottom: 0.9rem;
}
.pp-text:last-child {
  margin-bottom: 0;
}

/* ── Info Cards (Data Collection) ── */
.pp-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.2rem 0;
}

.pp-info-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 10px;
  padding: 1.1rem 1.3rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.pp-info-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.pp-info-card:hover {
  border-color: var(--gold-mid);
  box-shadow: 0 8px 26px rgba(184, 139, 38, 0.15);
  transform: translateY(-3px);
}
.pp-info-card:hover::after {
  transform: scaleX(1);
}

.pp-info-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 0.4rem;
  transition: color 0.3s;
}
.pp-info-desc {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin: 0;
}

/* ══════════════════════════════════════
   SIDEBAR (TOC)
══════════════════════════════════════ */
.pp-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: sticky;
  top: 90px;
}

.pp-toc {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.pp-toc-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.6rem 0.9rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s;
  border: 1px solid transparent;
}

.pp-toc-num {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--gold-mid);
  transition: color 0.3s;
  flex-shrink: 0;
}

.pp-toc-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.4;
  transition: color 0.3s;
}

.pp-toc-item:hover {
  background: rgba(184, 139, 38, 0.08);
  border-color: rgba(184, 139, 38, 0.15);
}
.pp-toc-item:hover .pp-toc-text {
  color: var(--gold-light);
}

/* Active state — full gold */
.pp-toc-item.active {
  background: var(--gold-grad);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(221, 167, 46, 0.3);
}
.pp-toc-item.active .pp-toc-num,
.pp-toc-item.active .pp-toc-text {
  color: #000;
  font-weight: 700;
}

/* ── Support Box ── */
.pp-support-box {
  background: var(--gold-grad);
  border-radius: 12px;
  padding: 1.4rem 1.4rem 1.6rem;
  transition: box-shadow 0.35s, transform 0.35s;
}
.pp-support-box:hover {
  box-shadow: 0 16px 45px rgba(184, 139, 38, 0.4);
  transform: translateY(-4px);
}

.pp-support-tag {
  display: block;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.55);
  margin-bottom: 0.5rem;
}

.pp-support-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: #000;
  line-height: 1.5;
  margin-bottom: 1.1rem;
}

.pp-support-btn {
  display: block;
  text-align: center;
  background: #000;
  color: #fff !important;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 7px;
  padding: 0.7rem;
  transition: all 0.3s;
}
.pp-support-btn:hover {
  background: #1a1a1a;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  transform: scale(1.02);
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .pp-header {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .pp-header-right {
    order: -1;
  }
  .pp-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .pp-sidebar {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .pp-toc {
    flex-direction: row;
    flex-wrap: wrap;
    flex: 1;
    min-width: 280px;
  }
  .pp-toc-item {
    flex: 1 1 45%;
  }
  .pp-support-box {
    flex: 1 1 100%;
  }
}

@media (max-width: 767px) {
  .pp-img-banner {
    grid-template-columns: 1fr;
  }
  .pp-img-large,
  .pp-img-small {
    height: 180px;
  }
  .pp-info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .pp-toc-item {
    flex: 1 1 100%;
  }
  .pp-block-title {
    font-size: 1rem;
  }
}
/* ══════════════════════════════════════
   SECTION 03 — INFORMATION SECURITY CARD
══════════════════════════════════════ */
.pp-security-card {
  background: #1c1c1c;
  border: 1px solid var(--dark-border);
  border-radius: 12px;
  padding: 1.6rem 1.8rem 1.8rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.35s, box-shadow 0.35s;
}
.pp-security-card:hover {
  border-color: var(--gold-mid);
  box-shadow: 0 12px 40px rgba(184, 139, 38, 0.14);
}

.pp-security-card .pp-text {
  position: relative;
  z-index: 1;
  max-width: 75%;
}

/* Watermark icon background */
.pp-security-watermark {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 6rem;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
  transition: color 0.4s, transform 0.4s;
}
.pp-security-card:hover .pp-security-watermark {
  color: rgba(184, 139, 38, 0.1);
  transform: translateY(-50%) scale(1.08);
}

/* Grid of 3 security items */
.pp-security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 1.4rem;
  position: relative;
  z-index: 1;
}

.pp-security-item {
  transition: transform 0.3s;
}
.pp-security-item:hover {
  transform: translateY(-3px);
}

.pp-security-icon {
  font-size: 1.3rem;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
  transition: color 0.3s, transform 0.3s;
}
.pp-security-item:hover .pp-security-icon {
  color: var(--gold-mid);
  transform: scale(1.1);
}

.pp-security-title {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.35rem;
  transition: color 0.3s;
}
.pp-security-item:hover .pp-security-title {
  color: var(--gold-light);
}

.pp-security-desc {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  margin: 0;
}

/* ══════════════════════════════════════
   SECTION 04 — PILLS
══════════════════════════════════════ */
.pp-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.2rem 0;
}

.pp-pill {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: #000;
  background: var(--gold-grad);
  border-radius: 50px;
  padding: 0.4rem 1.1rem;
  transition: all 0.3s;
  cursor: default;
}
.pp-pill:hover {
  background: var(--gold-grad-h);
  box-shadow: 0 4px 16px rgba(221, 167, 46, 0.4);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════
   SECTION 05 — INFO CARDS (with icons)
══════════════════════════════════════ */
.pp-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  background: linear-gradient(
    135deg,
    rgba(119, 90, 25, 0.25),
    rgba(221, 167, 46, 0.1)
  );
  border: 1px solid rgba(184, 139, 38, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--gold-light);
  margin-bottom: 0.8rem;
  transition: all 0.35s;
}
.pp-info-card:hover .pp-info-icon {
  background: var(--gold-grad);
  color: #000;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(221, 167, 46, 0.3);
}

/* ══════════════════════════════════════
   SECTION 06 — COMPLIANCE BOX
══════════════════════════════════════ */
.pp-compliance-box {
  background: rgba(184, 139, 38, 0.06);
  border: 1px solid var(--gold-dark);
  border-radius: 10px;
  padding: 1.2rem 1.4rem;
  margin-top: 1.2rem;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}
.pp-compliance-box:hover {
  border-color: var(--gold-light);
  background: rgba(184, 139, 38, 0.1);
  box-shadow: 0 8px 28px rgba(184, 139, 38, 0.18);
}

.pp-compliance-heading {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.5rem;
}
.pp-compliance-heading i {
  font-size: 1.1rem;
  color: var(--gold-light);
}
.pp-compliance-heading h6 {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--gold-light);
  margin: 0;
}

.pp-compliance-text {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  margin: 0;
}

/* ══════════════════════════════════════
   RESPONSIVE — SECTIONS 03-06
══════════════════════════════════════ */
@media (max-width: 767px) {
  .pp-security-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .pp-security-card .pp-text {
    max-width: 100%;
  }
  .pp-security-watermark {
    display: none;
  }
  .pp-security-card {
    padding: 1.4rem 1.3rem 1.6rem;
  }
}

@media (max-width: 575px) {
  .pp-pills {
    gap: 0.5rem;
  }
  .pp-pill {
    font-size: 0.68rem;
    padding: 0.35rem 0.9rem;
  }
  .pp-compliance-box {
    padding: 1rem 1.1rem;
  }
}
/* ══════════════════════════════════════
   TERMS & CONDITIONS PAGE
══════════════════════════════════════ */
.terms-section {
  padding: 70px 0 90px;
  background: var(--dark-bg);
}

/* ── Header ── */
.tc-header {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--dark-border);
  margin-bottom: 3rem;
  align-items: start;
}

.tc-tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--gold-grad);
  color: #000;
  padding: 0.25rem 0.8rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.tc-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.1;
}
.tc-title span {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tc-intro {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.85;
  max-width: 540px;
  margin: 0;
}

/* ── Header Right (Effective Date card) ── */
.tc-header-right {
  background: #1c1c1c;
  border: 1px solid var(--dark-border);
  border-radius: 12px;
  padding: 1.4rem 1.5rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.tc-header-right:hover {
  border-color: var(--gold-mid);
  box-shadow: 0 8px 30px rgba(184, 139, 38, 0.12);
}

.tc-ref-label {
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted-c);
  margin-bottom: 0.5rem;
}
.tc-effective-title {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.2rem;
}
.tc-effective-date {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-light);
}
.tc-divider {
  height: 1px;
  background: var(--dark-border);
  margin: 0.9rem 0;
}
.tc-version {
  font-size: 0.72rem;
  color: var(--text-muted-c);
  line-height: 1.7;
  margin: 0;
}

/* ── Body ── */
.tc-body {
  display: flex;
  flex-direction: column;
  gap: 2.6rem;
}

/* ── Block ── */
.tc-block-heading {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.tc-block-num {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--gold-light);
}

.tc-block-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
}

.tc-text {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.9;
  margin-bottom: 0.9rem;
}
.tc-text:last-child {
  margin-bottom: 0;
}

/* ══════════════════════════════════════
   HIGHLIGHT CARD (Acceptance / Governing Law)
══════════════════════════════════════ */
.tc-highlight-card {
  background: #1c1c1c;
  border: 1px solid var(--dark-border);
  border-radius: 12px;
  padding: 1.8rem 2rem 2rem;
  transition: border-color 0.35s, box-shadow 0.35s, transform 0.35s;
}
.tc-highlight-card:hover {
  border-color: var(--gold-mid);
  box-shadow: 0 12px 40px rgba(184, 139, 38, 0.14);
  transform: translateY(-3px);
}

/* ── Check List ── */
.tc-check-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.tc-check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  transition: transform 0.25s;
}
.tc-check-item:hover {
  transform: translateX(4px);
}

.tc-check-item i {
  font-size: 1.1rem;
  color: var(--gold-light);
  flex-shrink: 0;
  margin-top: 0.1rem;
  transition: color 0.25s, transform 0.25s;
}
.tc-check-item:hover i {
  color: var(--gold-mid);
  transform: scale(1.15);
}

.tc-check-item span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  transition: color 0.25s;
}
.tc-check-item:hover span {
  color: rgba(255, 255, 255, 0.8);
}

/* ══════════════════════════════════════
   SPLIT BLOCK (Intellectual Property)
══════════════════════════════════════ */
.tc-block--split {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.tc-split-img {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 220px;
}

.tc-split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(1) brightness(0.65);
  transition: transform 0.5s ease, filter 0.5s ease;
}
.tc-split-img:hover img {
  transform: scale(1.05);
  filter: grayscale(0.3) brightness(0.8);
}

.tc-split-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
}

.tc-split-img-tag {
  position: absolute;
  bottom: 12px;
  left: 14px;
  z-index: 2;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s;
}
.tc-split-img:hover .tc-split-img-tag {
  color: var(--gold-light);
}

/* Gold border frame on hover */
.tc-split-img::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  border: 2px solid var(--gold-mid);
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
  z-index: 1;
}
.tc-split-img:hover::after {
  opacity: 1;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .tc-header {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .tc-header-right {
    order: -1;
  }
}

@media (max-width: 767px) {
  .tc-block--split {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .tc-split-img {
    order: -1;
    height: 200px;
  }
  .tc-highlight-card {
    padding: 1.5rem 1.4rem 1.7rem;
  }
}

@media (max-width: 480px) {
  .tc-title {
    font-size: 1.8rem;
  }
  .tc-body {
    gap: 2rem;
  }
}
/* ══════════════════════════════════════
   SECTION 04 — USER OBLIGATIONS GRID
══════════════════════════════════════ */
.tc-obligations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.tc-obligation-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-left: 3px solid var(--gold-mid);
  border-radius: 0 8px 8px 0;
  padding: 1.1rem 1.3rem;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s,
    background 0.3s;
}

.tc-obligation-card:hover {
  background: #1c1c1c;
  border-left-color: var(--gold-light);
  box-shadow: 0 8px 28px rgba(184, 139, 38, 0.15);
  transform: translateY(-4px);
}

.tc-obligation-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}
.tc-obligation-card:hover .tc-obligation-title {
  color: var(--gold-light);
}

.tc-obligation-desc {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
  margin: 0;
}

/* ══════════════════════════════════════
   GOLD DIVIDER
══════════════════════════════════════ */
.tc-gold-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    var(--gold-dark),
    var(--gold-light),
    transparent
  );
  opacity: 0.35;
}

/* ══════════════════════════════════════
   SECTION 05 — LIMITATION OF LIABILITY CARD
══════════════════════════════════════ */
.tc-liability-card {
  background: #1c1c1c;
  border: 1px solid var(--dark-border);
  border-radius: 10px;
  padding: 1.8rem 2rem;
  transition: border-color 0.35s, box-shadow 0.35s;
}
.tc-liability-card:hover {
  border-color: var(--gold-mid);
  box-shadow: 0 12px 40px rgba(184, 139, 38, 0.12);
}

.tc-liability-text {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  line-height: 2;
  margin-bottom: 1.2rem;
}

.tc-liability-subtext {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.8;
  margin: 0;
}

/* ══════════════════════════════════════
   RESPONSIVE — SECTIONS 04-06
══════════════════════════════════════ */
@media (max-width: 767px) {
  .tc-obligations-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 575px) {
  .tc-liability-card {
    padding: 1.4rem 1.3rem;
  }
  .tc-liability-text {
    font-size: 0.8rem;
    line-height: 1.85;
  }
}
