:root {
  --brand-color: #ffcc00;
  --brand-dark: #0a0a0a;
  --brand-black: #000000;
  --brand-gray: #111111;
  --brand-border: rgba(255, 255, 255, 0.12);
  --text-light: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.68);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--brand-black);
  color: var(--text-light);
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.text-brand {
  color: var(--brand-color);
}

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

.section-padding {
  padding: 100px 0;
}

.section-small {
  padding: 80px 0;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--brand-color);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #ffffff;
  line-height: 1.25;
}

h1,
.display-title {
  font-weight: 600;
}

h2 {
  font-size: 42px;
  font-weight: 500;
}

h3 {
  font-weight: 500;
}

h4 {
  font-weight: 500;
}

p {
  line-height: 1.8;
}

.lead {
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.8;
}

.divider {
  width: 70px;
  height: 3px;
  margin: 22px 0;
  background: var(--brand-color);
  border-radius: 20px;
}

.mini-divider {
  width: 45px;
  height: 2px;
  margin: 12px 0 22px;
  background: var(--brand-color);
  border-radius: 20px;
}

/* Buttons */
.btn {
  border-radius: 0;
  padding: 13px 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.btn-sm {
  padding: 10px 22px;
  font-size: 12px;
}

.btn-brand {
  border: 1px solid var(--brand-color);
  background: var(--brand-color);
  color: #000000;
}

.btn-brand:hover {
  border-color: #ffffff;
  background: #ffffff;
  color: #000000;
}

.btn-outline-brand {
  border: 1px solid var(--brand-color);
  background: transparent;
  color: var(--brand-color);
}

.btn-outline-brand:hover {
  background: var(--brand-color);
  color: #000000;
}

/* Navbar */
.navbar {
  padding: 22px 0;
  background: rgba(0, 0, 0, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
}

.navbar .container {
  align-items: center;
}

.logo-slot {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #ffffff;
}

.logo-slot:hover {
  color: #ffffff;
}

.logo-mark {
  width: 54px;
  height: 54px;
  display: inline-block;
  border: 2px dashed rgba(255, 204, 0, 0.75);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 204, 0, 0.12), rgba(255, 204, 0, 0.02));
}

.logo-text {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.25;
}

.logo-text small {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.4px;
}

.navbar-nav {
  gap: 18px;
}

.nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 8px 0 !important;
}

.nav-link:hover,
.nav-link.active {
  color: var(--brand-color);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--brand-color);
  transition: 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.navbar-toggler {
  border: 1px solid rgba(255, 204, 0, 0.5);
  box-shadow: none !important;
}

.navbar-toggler-icon {
  filter: invert(1);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 150px 0 100px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.72) 42%, rgba(0, 0, 0, 0.32) 100%),
    url("../images/hero-green-stage.jpg") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 50%, rgba(255, 204, 0, 0.18), transparent 35%),
    linear-gradient(to bottom, transparent 65%, #000000 100%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 720px;
}

.hero h1 {
  margin-bottom: 24px;
  font-size: clamp(48px, 7vw, 92px);
  font-weight: 600;
  letter-spacing: -2px;
  text-transform: uppercase;
}

.hero .lead {
  max-width: 650px;
  margin-bottom: 34px;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Page Hero */
.page-hero {
  position: relative;
  padding: 170px 0 90px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.76)),
    url("../images/conference-stage-1.jpg") center / cover no-repeat;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 55%, #000000 100%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.display-title {
  margin-bottom: 18px;
  font-size: clamp(44px, 6vw, 76px);
  text-transform: uppercase;
  letter-spacing: -1px;
}

.breadcrumb-custom {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
}

.breadcrumb-custom a {
  color: var(--brand-color);
}

/* Stats */
.stat-strip {
  position: relative;
  margin-top: -55px;
  z-index: 4;
}

.stat-card {
  padding: 30px;
  border: 1px solid rgba(255, 204, 0, 0.28);
  border-radius: 22px;
  background: rgba(14, 14, 14, 0.96);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 18px;
}

.stat-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 204, 0, 0.5);
  border-radius: 16px;
  color: var(--brand-color);
  background: rgba(255, 204, 0, 0.08);
  font-size: 26px;
}

.stat-number {
  color: var(--brand-color);
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
}

/* Cards */
.card-dark {
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--brand-border);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
  transition: all 0.35s ease;
}

.card-dark:hover {
  border-color: rgba(255, 204, 0, 0.7);
  transform: translateY(-8px);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.45);
}

.service-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 204, 0, 0.55);
  border-radius: 20px;
  color: var(--brand-color);
  background: rgba(255, 204, 0, 0.08);
  font-size: 34px;
}

/* Service Image Cards */
.service-image-card {
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 204, 0, 0.18);
  border-radius: 24px;
  background: #101010;
  transition: all 0.35s ease;
}

.service-image-card:hover {
  border-color: rgba(255, 204, 0, 0.75);
  transform: translateY(-8px);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.45);
}

.service-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.05), #101010 95%);
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

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

.service-card-content {
  position: relative;
  padding: 28px;
}

.service-icon-small {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 204, 0, 0.55);
  border-radius: 16px;
  color: var(--brand-color);
  background: rgba(255, 204, 0, 0.08);
  font-size: 24px;
}

.service-card-content h4 {
  margin-bottom: 14px;
  font-weight: 500;
  color: #ffffff;
}

.service-card-content p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.8;
  font-size: 15px;
}

/* Image Cards */
.image-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--brand-border);
  border-radius: 24px;
  background: #111111;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.image-card:hover img {
  transform: scale(1.06);
}

.gallery-tall {
  height: 560px;
}

.gallery-img {
  height: 265px;
}

.image-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
}

.image-overlay h4,
.image-overlay h5 {
  margin-bottom: 0;
}

/* Feature List */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  color: var(--text-muted);
  line-height: 1.8;
}

.feature-list i {
  margin-top: 4px;
  color: var(--brand-color);
  font-size: 18px;
}

/* Accent Box */
.accent-box {
  height: 100%;
  padding: 32px;
  border: 1px solid rgba(255, 204, 0, 0.22);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 204, 0, 0.06), rgba(255, 255, 255, 0.025));
}

.accent-box h3 {
  margin-bottom: 16px;
}

.accent-box p {
  color: var(--text-muted);
}

/* CTA */
.cta-band {
  padding: 56px;
  overflow: hidden;
  border: 1px solid rgba(255, 204, 0, 0.35);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 204, 0, 0.14), rgba(255, 204, 0, 0.03)),
    #101010;
}

/* Equipment */
.equipment-img {
  height: 260px;
  overflow: hidden;
}

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

/* Clients */
.client-logo {
  min-height: 110px;
  display: grid;
  place-items: center;
  padding: 24px;
  border: 1px solid var(--brand-border);
  border-radius: 20px;
  color: rgba(255, 255, 255, 0.78);
  background: #101010;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-align: center;
  transition: all 0.3s ease;
}

.client-logo:hover {
  color: var(--brand-color);
  border-color: rgba(255, 204, 0, 0.7);
  transform: translateY(-6px);
}

/* Forms */
.form-control,
.form-select {
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  box-shadow: none;
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--brand-color);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  box-shadow: none;
}

.form-select {
  color: rgba(255, 255, 255, 0.72);
}

.form-select option {
  background: #111111;
  color: #ffffff;
}

textarea.form-control {
  padding-top: 16px;
}

/* Footer */
.footer {
  padding: 80px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 204, 0, 0.08), transparent 30%),
    #050505;
}

.footer h5 {
  margin-bottom: 0;
  font-size: 17px;
  font-weight: 500;
}

.footer p {
  margin-bottom: 12px;
}

.footer a {
  color: var(--text-muted);
  transition: 0.3s ease;
}

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

.social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 204, 0, 0.35);
  border-radius: 50%;
  color: var(--brand-color);
  background: rgba(255, 204, 0, 0.05);
}

.social a:hover {
  background: var(--brand-color);
  color: #000000;
}

.copyright {
  margin-top: 55px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.52);
  font-size: 14px;
}

/* Responsive */
@media (max-width: 1199px) {
  .navbar-nav {
    gap: 12px;
  }

  .nav-link {
    font-size: 12px;
  }
}

@media (max-width: 991px) {
  .navbar-collapse {
    margin-top: 18px;
    padding: 22px;
    border: 1px solid rgba(255, 204, 0, 0.18);
    border-radius: 18px;
    background: rgba(8, 8, 8, 0.98);
  }

  .navbar-nav {
    gap: 6px;
  }

  .hero {
    min-height: auto;
    padding: 150px 0 90px;
  }

  .hero h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 34px;
  }

  .section-padding {
    padding: 80px 0;
  }

  .section-small {
    padding: 65px 0;
  }

  .gallery-tall {
    height: 430px;
  }

  .gallery-img {
    height: 260px;
  }

  .cta-band {
    padding: 38px;
  }
}

@media (max-width: 767px) {
  .navbar {
    padding: 16px 0;
  }

  .logo-mark {
    width: 46px;
    height: 46px;
  }

  .logo-text {
    font-size: 12px;
  }

  .hero {
    padding: 135px 0 80px;
  }

  .hero h1 {
    font-size: 42px;
    letter-spacing: -1px;
  }

  .hero .lead {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .page-hero {
    padding: 145px 0 70px;
  }

  .display-title {
    font-size: 42px;
  }

  .stat-strip {
    margin-top: 0;
    padding-top: 30px;
  }

  .stat-card {
    padding: 24px;
  }

  .stat-item {
    align-items: flex-start;
  }

  .stat-number {
    font-size: 28px;
  }

  h2 {
    font-size: 30px;
  }

  .section-padding {
    padding: 70px 0;
  }

  .section-small {
    padding: 60px 0;
  }

  .gallery-tall,
  .gallery-img {
    height: 320px;
  }

  .equipment-img {
    height: 230px;
  }

  .cta-band {
    padding: 30px;
    border-radius: 22px;
  }

  .copyright {
    text-align: center;
    justify-content: center !important;
  }
}

@media (max-width: 575px) {
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .service-card-img {
    height: 190px;
  }

  .service-card-content {
    padding: 24px;
  }

  .accent-box {
    padding: 26px;
  }

  .card-dark {
    border-radius: 20px;
  }

  .image-card {
    border-radius: 20px;
  }

  .gallery-tall,
  .gallery-img {
    height: 280px;
  }

  .footer {
    padding-top: 60px;
  }
}

/* Logo */
.site-logo {
  width: auto;
  height: 82px;
  object-fit: contain;
}

.footer-logo {
  width: auto;
  height: 95px;
  object-fit: contain;
}

@media (max-width: 767px) {
  .site-logo {
    height: 62px;
  }

  .footer-logo {
    height: 75px;
  }
}

/* Products Section */
.products-section {
  background:
    radial-gradient(circle at top right, rgba(255, 204, 0, 0.08), transparent 30%),
    #050505;
}

.product-card {
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: #101010;
  transition: all 0.35s ease;
}

.product-card:hover {
  border-color: rgba(255, 204, 0, 0.7);
  transform: translateY(-8px);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.45);
}

.product-img {
  height: 250px;
  overflow: hidden;
  background: #111111;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

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

.product-content {
  padding: 28px;
}

.product-tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 14px;
  border: 1px solid rgba(255, 204, 0, 0.45);
  border-radius: 50px;
  color: var(--brand-color);
  background: rgba(255, 204, 0, 0.08);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.product-content h4 {
  margin-bottom: 12px;
  font-weight: 500;
}

.product-content p {
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
}

@media (max-width: 767px) {
  .product-img {
    height: 220px;
  }

  .product-content {
    padding: 24px;
  }
}

.navbar .nav-link {
  color: rgba(255, 255, 255, 0.72) !important;
}

.navbar .nav-link:hover {
  color: #ffcc00 !important;
}

.navbar .nav-link.active {
  color: #ffcc00 !important;
  font-weight: 600;
  position: relative;
}

.navbar .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 3px;
  background: #ffcc00;
  border-radius: 50px;
}


/* Final Navbar Active Fix */
.navbar .nav-link {
  color: rgba(255, 255, 255, 0.72) !important;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--brand-color) !important;
}

.navbar .nav-link.active {
  font-weight: 600;
}

.navbar .nav-link.active::after {
  bottom: -12px;
  height: 3px;
  width: 100%;
  background: var(--brand-color);
  border-radius: 50px;
}

/* Contact Page Footer Gap Fix */
.contact-section {
  padding-bottom: 150px;
}

.contact-section .accent-box,
.contact-section .card-dark {
  position: relative;
  z-index: 1;
}

.footer {
  position: relative;
  z-index: 5;
  clear: both;
}

/* Social Icon Final Styling */
.social {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.social a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 204, 0, 0.45);
  border-radius: 50%;
  color: var(--brand-color);
  background: rgba(255, 204, 0, 0.08);
  font-size: 18px;
  transition: all 0.3s ease;
}

.social a:hover {
  color: #000000;
  background: var(--brand-color);
  border-color: var(--brand-color);
  transform: translateY(-4px);
}

@media (max-width: 767px) {
  .contact-section {
    padding-bottom: 90px;
  }

  .navbar .nav-link.active::after {
    bottom: 0;
  }
}

/* Footer Contact Alignment Fix */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-contact-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: flex-start;
  gap: 14px;
  color: var(--text-muted);
}

.footer-contact-item i {
  color: var(--brand-color);
  font-size: 24px;
  line-height: 1.2;
}

.footer-contact-item a,
.footer-contact-item span {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

.footer-contact-item a:hover {
  color: var(--brand-color);
}

.footer-contact-item .footer-email {
  white-space: nowrap;
  font-size: 14px;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: #25d366;
  font-size: 30px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  color: #ffffff;
  background: #1ebe5d;
  transform: translateY(-4px);
}

@media (max-width: 575px) {
  .footer-contact-item .footer-email {
    white-space: normal;
    word-break: break-word;
  }

  .whatsapp-float {
    right: 18px;
    bottom: 18px;
    width: 52px;
    height: 52px;
    font-size: 27px;
  }
}

/* Footer Contact Both Address Fix */
.footer-contact-list {
  max-width: 440px;
  padding-left: 18px;
}

.footer-contact-item {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: flex-start;
  gap: 16px;
}

.footer-contact-item a,
.footer-contact-item span {
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.footer-contact-item .footer-email {
  white-space: nowrap;
  font-size: 15px;
}

.footer-address-item span strong {
  display: inline-block;
  margin-bottom: 3px;
  color: var(--brand-color);
  font-weight: 600;
}

.contact-address-block p {
  color: var(--text-muted);
}

.contact-address-block strong {
  color: var(--brand-color);
  font-weight: 600;
}

@media (max-width: 991px) {
  .footer-contact-list {
    max-width: 100%;
    padding-left: 0;
  }
}

@media (max-width: 575px) {
  .footer-contact-item .footer-email {
    white-space: normal;
    overflow-wrap: anywhere;
  }
}

/* Services Slider */
.services-slider-wrap {
  position: relative;
  padding: 0 58px;
}

.services-slider {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.services-slider::-webkit-scrollbar {
  display: none;
}

.services-slider-track {
  display: flex;
  gap: 24px;
}

.services-slide {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
}

.services-slider-btn {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 204, 0, 0.45);
  border-radius: 50%;
  color: var(--brand-color);
  background: rgba(255, 204, 0, 0.08);
  font-size: 20px;
  line-height: 1;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

.services-slider-btn:hover {
  color: #000000;
  background: var(--brand-color);
  border-color: var(--brand-color);
}

.services-slider-prev {
  left: 0;
}

.services-slider-next {
  right: 0;
}

@media (max-width: 991px) {
  .services-slide {
    flex-basis: calc((100% - 24px) / 2);
  }
}

@media (max-width: 767px) {
  .services-slider-wrap {
    padding: 0 0 68px;
  }

  .services-slide {
    flex-basis: 100%;
  }

  .services-slider-btn {
    top: auto;
    bottom: 0;
    transform: none;
  }

  .services-slider-prev {
    left: calc(50% - 58px);
  }

  .services-slider-next {
    right: calc(50% - 58px);
  }
}



