body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f7f7f7;
}

a {
  text-decoration: none;
}

/* ========== Topbar ========== */
.topbar {
  background-color: #000;
  color: gold;
  font-size: 14px;
  padding: 6px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.topbar a {
  color: gold;
  text-decoration: none;
  margin-right: 15px;
}

.topbar i {
  margin-right: 6px;
}

/* ========== Header ========== */
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background-color: #fff;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  height: 45px;
}

.site-name {
  font-weight: bold;
  color: #333;
}

.nav-links a {
  margin-left: 25px;
  color: #333;
  font-weight: 500;
}

.nav-links a:hover {
  color: #e6b800;
}

/* ========== Hero Section ========== */
.hero-section {
  background: url("images/hero.jpg") center/cover no-repeat;
  height: 90vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-overlay {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  color: #fff;
  animation: fadeIn 2s ease-in-out;
}

.hero-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
}

.hero-subtitle {
  font-size: 16px;
  font-style: italic;
}

/* ========== About Section ========== */
.about-section {
  background-color: #111;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.about-section h2 {
  color: gold;
}

.divider {
  width: 80px;
  height: 3px;
  background-color: gold;
  border: none;
  margin: 30px auto;
}

/* ========== Services ========== */
.services-section {
  padding: 60px 20px;
}

.services-section h2 {
  text-align: center;
  color: #111;
  margin-bottom: 30px;
}

.accordion {
  max-width: 800px;
  margin: auto;
}

.accordion-item {
  margin-bottom: 10px;
}

.accordion-button {
  width: 100%;
  background-color: #111;
  color: gold;
  border: 2px solid gold;
  padding: 15px;
  cursor: pointer;
  font-size: 16px;
  text-align: left;
  transition: background 0.3s;
}

.accordion-button:hover {
  background-color: #222;
}

.accordion-content {
  display: none;
  background-color: #333;
  color: #fff;
  padding: 15px;
  animation: fadeIn 0.5s ease-in-out;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.before-after-section {
  background-color: #f5f5f5;
  padding: 60px 20px;
  text-align: center;
}
.before-after-section h2 {
  color: #ffc107;
  font-size: 2rem;
  margin-bottom: 40px;
}
.ba-container {
  max-width: 1000px;
  margin: auto;
  position: relative;
}
.ba-wrapper {
  position: relative;
  overflow: hidden;
  cursor: ew-resize;
}
.ba-img {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
  pointer-events: none;
}
.carousel-section {
  text-align: center;
  padding: 60px 0;
  background-color: #111;
  color: #ffc107;
}

.carousel-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.carousel-container {
  width: 100%;
  overflow: hidden;
  max-width: 1000px;
  margin: auto;
}

.carousel-slide {
  display: flex;
  transition: transform 0.5s ease;
  width: max-content;
}

.carousel-item {
  flex: 0 0 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 20px;
}

.carousel-item img {
  max-width: 45%;
  border-radius: 8px;
  box-shadow: 0 0 10px #000;
}

@keyframes slide {
  0%    { transform: translateX(0%); }
  14.28% { transform: translateX(0%); }

  14.29% { transform: translateX(-100%); }
  28.57% { transform: translateX(-100%); }

  28.58% { transform: translateX(-200%); }
  42.85% { transform: translateX(-200%); }

  42.86% { transform: translateX(-300%); }
  57.14% { transform: translateX(-300%); }

  57.15% { transform: translateX(-400%); }
  71.42% { transform: translateX(-400%); }

  71.43% { transform: translateX(-500%); }
  85.71% { transform: translateX(-500%); }

  85.72% { transform: translateX(-600%); }
  100%  { transform: translateX(-600%); }
}
.carousel-section {
  padding: 60px 20px;
  background-color: #111;
  color: white;
  text-align: center;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1000px;
  margin: auto;
}

.carousel-slide {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
}

.carousel-item {
  width: 100%;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  box-sizing: border-box;
  padding: 20px 0;
}

.carousel-item img {
  width: 48%;
  border-radius: 8px;
  box-shadow: 0 0 10px #000;
  object-fit: cover;
}


.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.6);
  color: #ffc107;
  border: none;
  padding: 10px 15px;
  font-size: 30px;
  cursor: pointer;
  z-index: 10;
}

.carousel-btn:hover {
  background-color: rgba(0, 0, 0, 0.9);
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Lightbox Style */
#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(0,0,0,0.5);
}

#lightbox.hidden {
  display: none;
}

#closeBtn {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 3rem;
  cursor: pointer;
}
