* {
  margin: 0;
  padding: 0;
}
/* NAVBAR */

.navbar {
  width: 100%;
  /* background: #0f0f0f; */
  padding: 20px 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}

.nav-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo a img {
  width: 140px;
}

/* MENU */
.nav-menu ul {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-menu ul li a {
  text-decoration: none;
  color: #ddd;
  font-size: 16px;
  transition: 0.3s;
}

.nav-menu ul li a:hover {
  color: #c9a74e;
}

/* BUTTON */
.btn-primary {
  background: #c9a74e;
  padding: 10px 25px;
  border-radius: 5px;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #ffffff;
}

/* MOBILE MENU */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .nav-menu {
    position: absolute;
    top: 80px;
    left: -100%;
    width: 100%;
    background: #141414;
    text-align: center;
    transition: 0.4s;
    padding: 30px 0;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 20px;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-button {
    display: none;
  }

  .menu-toggle {
    display: block;
  }
}

/* HERO SECTION */

.hero-section {
  height: 100vh;
  width: 100%;
  background: url("https://images.unsplash.com/photo-1492724441997-5dc865305da7?auto=format&fit=crop&w=1600&q=80")
    center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  top: 0;
  left: 0;
}

.hero-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

/* LEFT SIDE */
.hero-left {
  flex: 1;
}

/* RIGHT SIDE */
.hero-right {
  flex: 1;
  color: #fff;
}

.hero-subtitle {
  color: #c9a74e;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.hero-title {
  font-size: 55px;
  margin-bottom: 20px;
}

.hero-description {
  font-size: 17px;
  color: #ddd;
  margin-bottom: 35px;
  line-height: 1.7;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-gold {
  background: #c9a74e;
  color: #000;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-gold:hover {
  background: #fff;
}

.btn-outline {
  border: 2px solid #c9a74e;
  color: #c9a74e;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #c9a74e;
  color: #000;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-right {
    margin-top: 40px;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-buttons {
    justify-content: center;
  }
}

/* ABOUT PERSON SECTION */

.about-person {
  padding: 120px 0;
  background: #111;
}

.about-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

/* IMAGE */
.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
}

/* CONTENT */
.about-content {
  flex: 1;
  color: #fff;
}

.about-content h2 {
  font-size: 42px;
  margin-bottom: 25px;
  font-family: "Playfair Display", serif;
}

.about-content p {
  color: #ccc;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* BUTTON */
.about-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  background: #c9a74e;
  color: #000;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}

.about-btn:hover {
  background: #fff;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-content h2 {
    font-size: 32px;
  }
}

/* VENTURES SECTION */

.ventures-section {
  padding: 120px 0;
  background: #0f0f0f;
  color: #fff;
}

.ventures-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.section-heading {
  text-align: center;
  margin-bottom: 70px;
}

.section-heading h2 {
  font-size: 42px;
  margin-bottom: 15px;
  font-family: "Playfair Display", serif;
}

.section-heading p {
  color: #aaa;
  font-size: 17px;
}

/* GRID */

.ventures-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px;
  text-align: center;
}

/* CARD */

.venture-card {
  background: #181818;
  padding: 50px;
  border-radius: 15px;
  transition: 0.4s ease;
  position: relative;
}

.venture-card:hover {
  transform: translateY(-10px);
  border: 1px solid #c9a74e;
}

/* TEXT */

.venture-card h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.venture-role {
  display: inline-block;
  margin-bottom: 20px;
  color: #c9a74e;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.venture-card p {
  color: #ccc;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* BUTTON */

.venture-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #c9a74e;
  color: #000;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}

.venture-btn:hover {
  background: #fff;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .ventures-grid {
    grid-template-columns: 1fr;
  }

  .section-heading h2 {
    font-size: 32px;
  }
}

/* FULL SCREEN VIDEO */
.video-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
@media (max-width: 992px) {
  .video-section {
    height: 25vh;
  }
}

/* Full Width Video */
.video-section iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  transform: translate(-50%, -50%);
  object-fit: cover;
  pointer-events: none;
}

/* Black Overlay */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.234); /* adjust 0.6 for more/less darkness */
}

.impact {
  background: #0a0a0a;
  padding: 120px 8%;
  text-align: center;
  color: white;
}

.impact-title {
  font-size: 40px;
  margin-bottom: 70px;
  font-weight: 600;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.impact-box {
  background: #141414;
  padding: 40px;
  border-radius: 15px;
  transition: 0.4s;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.impact-box:hover {
  transform: translateY(-10px);
  border-color: #d4af37;
}

.impact-box h3 {
  font-size: 40px;
  color: #d4af37;
  margin-bottom: 10px;
}

.impact-box p {
  font-size: 16px;
  opacity: 0.8;
}

@media (max-width: 900px) {
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .impact-grid {
    grid-template-columns: 1fr;
  }

  .impact-title {
    font-size: 28px;
  }
}

.quote-section {
  padding: 50px 2%;
  background: #0a0a0a;
}

.quote-container {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 80px;
}

.quote-image img {
  width: 600px;
  border-radius: 15px;
}

.quote-content {
  flex: 1;
  position: relative;
}

.quote {
  display: none;
  font-size: 28px;
  line-height: 1.6;
  color: white;
  font-style: italic;
}

.quote.active {
  display: block;
}

.quote p {
  margin: 0 10px;
  border-left: 4px solid #d4af37;
  padding-left: 25px;
}

@media (max-width: 900px) {
  .quote-container {
    flex-direction: column;
    text-align: center;
  }

  .quote-image img {
    width: 100%;
    max-width: 400px;
  }

  .quote {
    font-size: 22px;
  }
}

.quote-dots {
  margin-top: 40px;
  margin-left: 10px;
  display: flex;
  gap: 12px;
}

.dot {
  width: 12px;
  height: 12px;
  background: #555;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.dot.active {
  background: #d4af37;
  transform: scale(1.2);
}

.dot:hover {
  background: #d4af37;
}

.contact-section {
  padding: 80px 10%;
  background: #f7f7f7;
}

.container {
  display: flex;
  gap: 50px;
  align-items: center;
}

.contact-left {
  flex: 1;
}

.contact-left h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.contact-left p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.contact-right {
  flex: 1;
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-right form {
  display: flex;
  flex-direction: column;
}

.contact-right input,
.contact-right textarea {
  margin-bottom: 15px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 15px;
}

.contact-right textarea {
  height: 120px;
  resize: none;
}

.contact-right button {
  padding: 12px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

.contact-right button:hover {
  background: #444;
}
@media (max-width: 900px) {
  .container {
    flex-direction: column;
  }
  .contact-right {
    padding: 20px;
  }
}

.modern-footer {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #fff;
  text-align: center;
  padding: 50px 20px 30px 20px;
  font-family: "Poppins", sans-serif;
}

.modern-footer h2 {
  font-size: 28px;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.modern-footer p {
  font-size: 16px;
  color: #cfd8dc;
  margin-bottom: 25px;
}

.modern-footer .social-icons a {
  display: inline-block;
  margin: 0 12px;
  transition: transform 0.3s ease;
}

.modern-footer .social-icons a:hover {
  transform: scale(1.2);
}

.modern-footer .social-icons img {
  width: 28px;
  height: 28px;
  /* filter: brightness(0) invert(1);  */
}

.modern-footer .footer-bottom {
  margin-top: 25px;
  font-size: 14px;
  color: #b0bec5;
}
