:root {
    --wayne-ivory: #f9f6f1;
    --wayne-platinum: #bfbfbf;
    --wayne-gold: #d4b46a;
    --wayne-bronze: #b8964c;
    --wayne-midnight: #1a1a1a;
    --wayne-obsidian: #0b0c10;
    --wayne-charcoal: #1f2833;
    --wayne-foreground: #e0e0e0;
    --wayne-light: #fcdba1;
  }

  /* ----------------first-section---------------- */

 
.hero-section {
    position: relative;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.5), transparent, rgba(15, 23, 42, 1));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--wayne-ivory);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-underline {
    width: 90px;
    height: 4px;
    background: var(--wayne-gold);
    margin: 0 auto 20px;
}

.hero-subtext {
    font-size: 20px;
    color: var(--wayne-light);
    line-height: 1.5;
}


@media (max-width: 768px) {
    .hero-title {
        font-size: 34px;
    }

    .hero-subtext {
        font-size: 18px;
    }
}

@media (max-width: 500px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-subtext {
        font-size: 16px;
    }
}

/* --------------------second-section----------------- */


.values-wrapper {
    padding: 80px 0;
    background: var(--wayne-midnight);
}

.values-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 25px;
    text-align: center;
}

.values-text {
    font-size: 18px;
    color: var(--wayne-light);
    line-height: 1.7;
    margin-bottom: 40px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    text-align: center;
}

.value-icon {
    width: 48px;
    height: 48px;
    color: var(--wayne-gold);
    margin-bottom: 15px;
}

.value-title {
    font-size: 18px;
    color: var(--wayne-ivory);
    font-weight: 600;
}


@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ----------------third-section-------------- */

#executive-philosophy-section {
  padding: 80px 0;
  background: var(--wayne-obsidian);
}

.executive-philosophy-container {
  max-width: 1300px;
  margin: auto;
  padding: 0 25px;
  text-align: center;
}

.executive-philosophy-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--wayne-ivory);
}

.executive-philosophy-underline {
  width: 90px;
  height: 4px;
  background: var(--wayne-gold);
  margin: 15px auto 0;
}

.executive-philosophy-description {
  margin-top: 20px;
  max-width: 700px;
  color: var(--wayne-light);
  font-size: 17px;
  line-height: 1.6;
  margin-left: auto;
  margin-right: auto;
}

.executive-philosophy-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
}

.executive-card {
  background: var(--wayne-midnight);
  padding: 25px;
  border-radius: 14px;
  border: 1px solid rgba(212, 180, 106, 0.2);
  transition: 0.3s ease;
  text-align: start;
}

.executive-card:hover {
  transform: scale(1.05);
  border-color: rgba(212, 180, 106, 0.5);
}

.executive-card-icon {
  width: 55px;
  height: 55px;
  color: var(--wayne-gold);
  margin-bottom: 20px;
}

.executive-card-title {
  font-size: 24px;
  color: var(--wayne-ivory);
  font-weight: 700;
  margin-bottom: 14px;
}

.executive-card-text {
  color: var(--wayne-light);
  line-height: 1.6;
  font-size: 15px;
}

/* --------------------------forth-section----------------- */


.chairman-msg-section {
  padding: 80px 0;
  background: var(--wayne-midnight);
}

.chairman-msg-container {
  max-width: 900px;
  margin: auto;
  padding: 0 24px;
}


.chairman-msg-title {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  color: var(--wayne-ivory);
  margin-bottom: 50px;
}


.chairman-msg-wrapper {
  position: relative;
}

.chairman-msg-quote-mark {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 110px;
  color: rgba(212, 180, 106, 0.2);
  font-family: serif;
}


.chairman-msg-content {
  padding: 40px 24px 20px 60px;
}

.chairman-msg-text {
  font-size: 18px;
  color: var(--wayne-light);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 30px;
}


.chairman-msg-profile {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 10px;
}

.chairman-msg-profile-icon {
  width: 60px;
  height: 60px;
  background: rgba(212, 180, 106, 0.2);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.chairman-msg-svg {
  width: 32px;
  height: 32px;
  stroke: var(--wayne-gold);
}

.chairman-msg-profile-info .chairman-msg-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--wayne-ivory);
  margin: 0;
}

.chairman-msg-company {
  font-size: 14px;
  color: var(--wayne-light);
}


@media (max-width: 600px) {
  .chairman-msg-content {
    padding-left: 40px;
  }
  .chairman-msg-quote-mark {
    font-size: 80px;
  }
}

/* ----------------------------accordion-sec------------------ */

.elt-section {
  padding: 80px 0;
  background: var(--wayne-obsidian);
}

.elt-container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

.elt-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  color: var(--wayne-ivory);
  margin-bottom: 10px;
}

.elt-divider {
  width: 90px;
  height: 4px;
  background: var(--wayne-gold);
  margin: 0 auto 40px;
}

.elt-accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.elt-item {
  background: var(--wayne-midnight);
  border-bottom: 1px solid #c5a25f40;
  border-radius: 10px;
  overflow: hidden;
}

.elt-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  padding: 20px;
  cursor: pointer;
  color: var(--wayne-ivory);
  text-align: left;
}

.elt-header-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.elt-icon-box {
  width: 60px;
  height: 60px;
  background: #c5a25f30;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.elt-icon {
  width: 32px;
  height: 32px;
  stroke: #c5a25f;
}

.elt-role {
  font-size: 20px;
  font-weight: 700;
  color: var(--wayne-ivory);
}

.elt-name {
  font-size: 14px;
  color: var(--wayne-light);
}

.accordion-arrow {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.elt-header.active .accordion-arrow {
  transform: rotate(180deg);
}

.elt-content {
  max-height: 0;
  overflow: hidden;
  /* background: #101214; */
  transition: max-height 0.35s ease;
  padding: 0 0 5px 80px;
  color: var(--wayne-light);
}

.elt-description {
  /* padding: 0 0 0 80px; */
  /* color: #d6d6d6; */
  font-size: 14px;
  line-height: 1.5;
}
.elt-description2{
  color: var(--wayne-gold);
}
.bx1{
   border: 1px solid rgba(197, 162, 95, 0.2);
   border-radius: 25px;
   background: var(--wayne-obsidian);
   padding: 5px 15px ;
   letter-spacing: 0.5px;
   /* margin-bottom: 20px; */

}


/* -------------------------fifth-section--------------- */

#advisorySection {
  padding: 80px 0;
  background: var(--wayne-midnight);
}

.advisory-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 25px;
}

.advisory-title {
  font-size: 40px;
  font-weight: 700;
  color: var(--wayne-ivory);
  text-align: center;
  margin-bottom: 20px;
}

.advisory-subtitle {
  text-align: center;
  color: var(--wayne-light);
  max-width: 700px;
  margin: 0 auto 50px;
}

.advisory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.advisory-card {
  background: var(--wayne-obsidian);
  padding: 15px;
  border-radius: 12px;
  border: 1px solid rgba(197, 162, 95, 0.2);
  text-align: center;
  transition: all 0.3s ease;
}

.advisory-card:hover {
  border-color: var(--wayne-gold);
  /* transform: translateY(-4px); */
}

.advisory-icon svg {
  width: 50px;
  height: 50px;
  color: var(--wayne-gold);
  margin-bottom: 15px;
}

.advisory-text {
  font-size: 16px;
  color: var(--wayne-light);
  font-weight: 500;
}

/* ----------------------sixth-section------------------- */


#leadershipImpactSection.leadership-impact-section {
  padding: 80px 0;
  background: var(--wayne-obsidian);
}


.leadership-impact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 25px;
}


.leadership-impact-title {
  font-size: 40px;
  font-weight: 700;
  color: var(--wayne-ivory);
  text-align: center;
  margin-bottom: 10px;
}


.leadership-impact-divider {
  width: 95px;
  height: 4px;
  background: var(--wayne-gold);
  margin: 0 auto 50px;
  border-radius: 4px;
}


.leadership-impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}


.leadership-impact-card {
  background: var(--wayne-midnight);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(197, 162, 95, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.leadership-impact-card:hover {
  border-color: rgba(197, 162, 95, 0.4);
  /* transform: translateY(-5px); */
}


.leadership-impact-icon svg {
  width: 52px;
  height: 52px;
  color: var(--wayne-gold);
  margin-bottom: 15px;
}


.leadership-impact-heading {
  font-size: 18px;
  font-weight: 700;
  color: var(--wayne-ivory);
  margin-bottom: 12px;
}


.leadership-impact-text {
  font-size: 14px;
  color: var(--wayne-light);
  line-height: 1.6;
}

/* ------------------seventh-section----------------- */


.leadership-wrapper {
  padding: 80px 0;
  background-color: var(--wayne-midnight); 
}
.leadership-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}


.leadership-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--wayne-ivory); 
  margin-bottom: 24px;
}

.leadership-text {
  font-size: 18px;
  color: var(--wayne-light); 
  line-height: 1.7;
}

/* -------------------last-sec---------------- */

.journey-wrapper {
  padding: 80px 0;
  background: linear-gradient(to bottom, var(--wayne-obsidian), var(--wayne-midnight)); 
}


.journey-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
}


.journey-title {
  font-size: 40px;
  font-weight: 700;
  color: var(--wayne-ivory); 
  margin-bottom: 24px;
}


.journey-text {
  font-size: 18px;
  color: var(--wayne-light); 
  margin-bottom: 32px;
  line-height: 1.7;
}

.journey-btn {
  background-color: var(--wayne-gold); 
  color: var(--wayne-midnight); 
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(212, 180, 106, 0.3);
}


.journey-btn:hover {
  background-color: var(--wayne-bronze); 
  box-shadow: 0 0 30px rgba(212, 180, 106, 0.5);
}





