:root {
    --gold: #c7921e;
    --dark: #111;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}


.info {
    height: 220px;
    margin: 0 10px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

/* background */
.info-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;     /* vertical center */
    justify-content: center; /* horizontal center */
}

/* dark overlay */
.info-img .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

/* content */
.info-content {
    position: relative; /* stay above overlay */
    text-align: center;
    color: #fff;
    max-width: 700px;
    padding: 0 20px;
}

.info-content h1 {
    font-size: 22px;
    font-weight: 600;
}

.underline {
    width: 120px;
    height: 5px;
    background: var(--gold);
    border-radius: 20px;
    margin: 14px auto 0; /* center underline */
}

/* ================= INFO RESPONSIVE ================= */

@media (max-width: 1024px) {
  .info {
    height: 200px;
    margin: 0 12px;
  }

  .info-content {
    max-width: 600px;
  }

  .info-content h1 {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .info {
    height: 180px;
    margin: 0 8px;
    border-radius: 12px;
  }

  .info-content {
    max-width: 100%;
    padding: 0 16px;
  }

  .info-content h1 {
    font-size: 18px;
    line-height: 1.3;
  }

  .underline {
    width: 90px;
    height: 4px;
  }
}

@media (max-width: 480px) {
  .info {
    height: 160px;
    margin: 0 6px;
  }

  .info-content h1 {
    font-size: 16px;
  }

  .underline {
    width: 70px;
  }
}


/* ================= ABOUT SECTION ================= */

.about-section {
    padding: 100px 40px;
    background: #fff;
  }
  
  .about-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 30% 70%;
    align-items: center;
    gap: 80px;
  }  
  
  .about-image img {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
  }
  
  
  .about-image img {
    width: 420px;
    height: 420px;
    object-fit: cover;
    border-radius: 50%;
  }
  
  .about-content h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 24px;
  }
  
  .about-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #333;
    margin-bottom: 32px;
  }
  
  .about-btn {
    display: inline-block;
    background: var(--gold);
    color: #000;
    padding: 12px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
  }
  
  /* ================= RESPONSIVE ================= */
  
  @media (max-width: 800px) {
    .about-container {
      grid-template-columns: 1fr;
      text-align: center;
    }
  
    .about-image img {
      width: 300px;
      height: 300px;
    }
  
    .about-content h2 {
      font-size: 28px;
    }
  }
  





  .who-we-are {
    background: #fff;
  }
  
  /* TITLE */
  .wwa-title {
    text-align: center;
    margin-bottom: 10px;
  }
  
  .wwa-title h2 {
    font-size: 26px;
    font-weight: 600;
  }
  
  .wwa-title span {
    display: inline-block;
    width: 140px;
    height: 6px;
    background: var(--gold);
    border-radius: 20px;
    margin-top: 10px;
  }
  
  /* GRID */
  .wwa-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 20px;
    padding: 50px;
    align-items: start;
  }
  
  /* LEFT */
  .wwa-intro {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
  }
  
  .wwa-card {
    display: flex;
    gap: 18px;
    background: #1e1e1e;
    color: #fff;
    padding: 10px 10px;
    border-radius: 14px;
    margin-bottom: 18px;
  }
  
  .wwa-card h4 {
    font-size: 18px;
    margin-bottom: 8px;
  }
  
  .wwa-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #ddd;
  }
  
  .wwa-icon {
    width: 36px;
    height: 23px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* RIGHT VIDEO */
  .wwa-right video {
    width: 100%;
    height: 100%;
    border-radius: 18px;
    border: 6px solid var(--gold);
    background: #000;
  }
  


/* ================= CTA ================= */
.wwa-cta {
    margin-top: 10px;
    padding: 80px 0; /* outer container padding */
    color: #fff;
  
    background:
      linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
      url("../assets/diamant.jpg") center / cover no-repeat fixed;
  
      display: flex;
      align-items: center;      /* vertical center */
      justify-content: center;  /* horizontal center */
      text-align: center;
      flex-direction: column;
  }
  
  /* CONTENT WRAPPER */
  .cta-content {
    text-align: center;
    margin: 0;
  }
  
  /* TITLE */
  .cta-content h3 {
    font-size: 30px;
    font-weight: 700;
    line-height: 1rem;
  }
  
  /* LINE */
  .cta-line {
    display: block;
    width: 660px;
    max-width: 100%;
    height: 6px;
    background: #f1c232;
    border-radius: 10px;
    margin: 18px auto 24px;
  }
  
  /* TEXT */
  .cta-content p {
    color: #e0e0e0;
    line-height: 1.7;
    margin-bottom: 34px;
    font-size: 16px;
  }
  
  /* BUTTON */
  .cta-btn {
    display: inline-block;
    padding: 14px 36px;
    background: #c58a16;
    color: #000;
    font-weight: 600;
    border-radius: 14px;
    transition: 0.3s ease;
  }
  
  .cta-btn:hover {
    background: #b07a10;
    transform: translateY(-2px);
  }




  @media (max-width: 992px) {
    .wwa-grid {
      grid-template-columns: 1fr;
    }
  
    .wwa-right {
      margin-top: 30px;
    }
  }
  






  .mission-section {
    padding: 80px 60px;
    background: #fff;
  }
  
  /* HEADER */
  .mission-header {
    text-align: center;
    max-width: 900px;
    margin: auto;
  }
  
  .mission-header h2 {
    font-size: 36px;
    font-weight: 700;
  }
  
  .mission-header p {
    margin-top: 12px;
    font-size: 12px;
    color: #555;
  }
  
  .section-line {
    display: block;
    width: 140px;
    height: 6px;
    background: var(--gold);
    border-radius: 8px;
    margin: 18px auto 0;
  }
  
  /* CONTENT GRID */
  .mission-content {
    display: grid;
    grid-template-columns: .30fr .70fr;
    gap: 20px;
    margin-top: 60px;
    align-items: center;
  }
  
  /* IMAGE */
  .mission-image img {
    width: 100%;
    border-radius: 14px;
  }
  
  /* TEXT */
  .mission-text p {
    margin-bottom: 18px;
    line-height: 1.7;
    color: #333;
  }
  
  /* PILLARS TITLE */
  .pillars-title {
    margin-top: 60px;
    font-weight: 500;
  }
  
  /* PILLARS GRID */
  .mission-pillars {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
  }
  
  /* CARD */
  .pillar-card {
    background: #fff;
    border-radius: 16px;
    padding: 26px 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s ease;
  }
  
  .pillar-card:hover {
    transform: translateY(-6px);
  }
  
  /* ICON */
  .pillar-icon {
    width: 90px;
    height: 90px;
    background: #000;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    border: 4px solid var(--gold);
  }
  
  .pillar-icon i {
    font-size: 36px;
    color: #fff;
  }
  
  /* TEXT */
  .pillar-card h4 {
    margin-top: 16px;
    font-size: 15px;
    font-weight: 600;
  }
  
  /* GOLD LINE */
  .pillar-card span {
    display: block;
    width: 26px;
    height: 6px;
    background: var(--gold);
    border-radius: 6px;
    margin: 12px auto 0;
  }
  
  /* RESPONSIVE */
  @media (max-width: 1024px) {
    .mission-content {
      grid-template-columns: 1fr;
    }
  
    .mission-pillars {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 600px) {
    .mission-pillars {
      grid-template-columns: 1fr;
    }
  }

  


  .why-choose-section {
    padding: 0px 70px;
    align-items: center;
    background: #fff;
  }
  
  /* TOP BANNER */
  .why-top-banner {
    background: #b5811e;
    color: #fff;
    padding: 26px 40px;
    border-radius: 10px;
    text-align: center;
    font-size: 16px;
    max-width: 1200px;
    margin-top: auto;
  }
  
  /* HEADER */
  .why-header {
    text-align: center;
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .why-header h2 {
    font-size: 38px;
    font-weight: 700;
  }
  
  .why-line {
    display: block;
    width: 140px;
    height: 6px;
    background: var(--gold);
    border-radius: 8px;
    margin: 16px auto;
  }
  
  .why-header p {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
  }
  
  /* CARDS GRID */
  .why-cards {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  
  /* CARD */
  .why-card {
    background: #fff;
    padding: 40px 24px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 12px 35px rgba(0,0,0,0.05);
    transition: 0.3s ease;
  }
  
  .why-card:hover {
    transform: translateY(-8px);
  }
  
  /* ICON */
  .why-icon {
    width: 110px;
    height: 110px;
    background: #000;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    border: 4px solid var(--gold);
  }
  
  .why-icon i {
    font-size: 44px;
    color: #fff;
  }
  
  /* CARD TEXT */
  .why-card h4 {
    margin-top: 22px;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
  }
  
  /* GOLD LINE */
  .why-card span {
    display: block;
    width: 28px;
    height: 6px;
    background: var(--gold);
    border-radius: 6px;
    margin: 16px auto 0;
  }
  
  /* FOOTER TEXT */
  .why-footer-text {
    margin-top: 40px;
    text-align: center;
    font-size: 16px;
    color: #222;
    font-weight: 500;
  }
  
  /* RESPONSIVE */
  @media (max-width: 1024px) {
    .why-cards {
      grid-template-columns: 1fr;
    }
  
    .why-top-banner {
      padding: 22px;
    }
  }

  