
/* 🌐 Base Setup */
body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #000;
}

/* 🌟 Hero Section */
.hero-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 5%;
  background-color: #000;
  color: white;
  flex-wrap: wrap;
  gap: 40px;
}

.hero-left {
  flex: 1;
  min-width: 320px;
}

.tag {
  display: inline-block;
  font-size: 13px;
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 12px;
  border-radius: 20px;
  color: #f9d784;
  margin-bottom: 12px;
}

.hero-left h1 {
  font-size: 42px;
  line-height: 1.3;
  margin-bottom: 20px;
}

.hero-left h1 span {
  color: #d9a94a;
}

.hero-left ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.hero-left li {
  font-size: 14px;
  color: #eee;
}

.hero-left i {
  color: #d9a94a;
  margin-right: 8px;
}

.hero-left p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #ddd;
}

.cta-button {
  display: inline-block;
  background-color: #d9a94a;
  color: #000;
  padding: 12px 22px;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s;
}

.cta-button i {
  margin-left: 8px;
}

.cta-button:hover {
  background-color: #c08f2a;
}

/* 🖼️ Slider */
.hero-right {
  flex: 1;
  min-width: 320px;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 70vh;
  border-radius: 20px;
  overflow: hidden;
}

.slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: none;
  border-radius: 20px;
}

.slide.active {
  display: block;
}

/* 🧠 About Section */
.about-section {
  padding: 80px 20px;
  background-color: #fff;
}

.about-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

/* About Left */
.about-left {
  flex: 1;
  min-width: 280px;
}

.about-left .label {
  color: #b79545;
  font-weight: bold;
  margin-bottom: 10px;
}

.about-left h2 {
  font-size: 38px;
  color: #2c2c2c;
  margin-bottom: 20px;
}

.about-left .desc {
  color: #666;
  margin-bottom: 20px;
  max-width: 400px;
}

.about-left .qualities {
  list-style: none;
  padding-left: 0;
}

.about-left .qualities li {
  font-weight: 500;
  margin-bottom: 10px;
  color: #4b4b4b;
  font-size: 15px;
  position: relative;
  padding-left: 24px;
}

.about-left .qualities li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 14px;
  background-color: #b79545;
  color: #fff;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Center Image Circle */
.about-image-circle {
  flex: 1;
  min-width: 280px;
  aspect-ratio: 1 / 1;
  border: 2px solid #e3c992;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  overflow: hidden;
  padding: 20px;
}

.about-image-circle img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Right Accordion */
.about-right {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion-item {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header h3 {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.accordion-header .number {
  font-size: 15px;
  font-weight: 700;
  color: #c5a365;
  min-width: 35px;
  text-align: right;
}

.accordion-header .title {
  font-size: 16px;
  font-weight: 600;
  color: #000;
}

.accordion-item p {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.accordion-item.active {
  background: #fffdf5;
}

.accordion-item.active p {
  display: block;
  opacity: 1;
}

.accordion-item button {
  background: none;
  border: 1px solid #c5a365;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  font-size: 18px;
  font-weight: bold;
  color: #c5a365;
  cursor: pointer;
  line-height: 1;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.accordion-item.active button {
  transform: rotate(45deg);
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .hero-section {
    flex-direction: column;
    padding: 40px 20px;
    text-align: center;
  }

  .hero-left h1 {
    font-size: 28px;
  }

  .hero-left ul {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .cta-button {
    margin-top: 15px;
  }

  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-left h2 {
    font-size: 28px;
  }

  .about-image-circle {
    margin: 30px 0;
  }

  .about-right {
    width: 100%;
  }

  .accordion-header h3 {
    justify-content: center;
  }
}

/* 📍 Latest Project Section */
.project-section {
  background-color: #000;
  padding: 60px 8vw;
}

.project-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.project-container .image-box {
  flex: 1;
  max-width: 500px;
  position: relative;
}

.project-container .image-box img {
  width: 100%;
  border-radius: 16px;
  height: auto;
  cursor: pointer;
  display: none;
}

.project-container .image-box img.active {
  display: block;
}

.project-container .project-content {
  flex: 1;
  max-width: 600px;
  color: #fff;
}

.project-content h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.project-content ul {
  list-style: none;
  padding: 0;
  font-size: 16px;
  line-height: 1.8;
}

.project-content li::before {
  content: "✅ ";
  color: #00ff00;
}

/* Fullscreen image preview */
#fullscreen {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#fullscreen img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .project-container {
    flex-direction: column;
    text-align: center;
  }

  .project-container .project-content {
    max-width: 100%;
  }

  .project-container .image-box {
    max-width: 100%;
  }
}