:root {
  --primary-black: #121212;
  --dark-black: #1a1a1a;
  --gold: #D4AF37;
  --light-gold: #F1E5AC;
  --yellow: #FFD700;
  --white: #FFFFFF;
  --light-gray: #f8f9fa;
}

body {
  font-family: 'Roboto', sans-serif;
  color: var(--white);
  background-color: var(--primary-black);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

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

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

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

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

.navbar {
  padding: 10px 0;
  transition: all 0.3s ease;
  background-color: var(--primary-black);
}

.navbar-scrolled {
  padding: 10px 0;
  background-color: rgba(18, 18, 18, 0.95) !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
  font-weight: 800;
  font-size: 28px;
}

.nav-link {
  color: var(--white) !important;
  font-weight: 500;
  margin: 0 10px;
  transition: all 0.3s;
}

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

.dropdown-menu {
  background-color: var(--dark-black);
  border: 1px solid var(--gold);
}

.dropdown-item {
  color: var(--white);
  transition: all 0.3s;
}

.dropdown-item:hover {
  background-color: var(--gold);
  color: var(--primary-black);
}

.hero-section {
  position: relative;
  padding: 180px 0 120px;
  color: white;
  overflow: hidden;
   background-image: linear-gradient(rgba(18, 18, 18, 0.1), rgba(18, 18, 18, 0.1));
}

.hero-background-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.hero-slide:first-child {
  opacity: 1;
}
.hero-slide.active {
  opacity: 1;
}

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

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(transparent, var(--primary-black));
  z-index: 0;
}

/* Keep all your existing button styles unchanged */
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--yellow));
  border: none;
  color: var(--primary-black);
  padding: 14px 35px;
  border-radius: 30px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.5);
  color: var(--primary-black);
}

.btn-outline {
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
  padding: 12px 33px;
  border-radius: 30px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
}

.btn-outline:hover {
  background-color: var(--gold);
  color: var(--primary-black);
}

.section-title {
  position: relative;
  margin-bottom: 50px;
  padding-bottom: 15px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--yellow));
}

.section-title.center::after {
  left: 50%;
  transform: translateX(-50%);
}

.feature-card {
  background-color: var(--dark-black);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
  height: 100%;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

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

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.category-card img {
  transition: all 0.5s ease;
  height: 300px;
  object-fit: cover;
}

.category-card:hover img {
  transform: scale(1.1);
}

.category-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(18, 18, 18, 0.95));
  padding: 25px;
  color: white;
}

.testimonial-card {
  background: linear-gradient(145deg, var(--dark-black), var(--primary-black));
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  margin-top: 20px;
  border: 1px solid rgba(212, 175, 55, 0.1);
  height: 100%;
}

.testimonial-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 3px solid var(--gold);
}

.quote-form {
  background: linear-gradient(145deg, var(--dark-black), var(--primary-black));
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.form-control {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 8px;
}

.form-control:focus {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: var(--gold);
  color: var(--white);
  box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
}

footer {
  background-color: var(--dark-black);
  color: white;
  padding: 80px 0 30px;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--yellow));
}

.social-icons a {
  width: 45px;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--dark-black), var(--primary-black));
  border-radius: 50%;
  margin-right: 15px;
  color: var(--gold);
  transition: all 0.3s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-icons a:hover {
  background: linear-gradient(145deg, var(--gold), var(--yellow));
  color: var(--primary-black);
  transform: translateY(-3px);
}

.divider {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 50px 0;
  border: none;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--light-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.logo-text {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
