* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', 'Times New Roman', serif, sans-serif;
  background-color: #06090e;
  color: #ffffff;
}

/* Hero Main Section Container */
.about-hero-section {
  position: relative;
  width: 100%;
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 80px 20px 60px 20px;
  /*background-color: #040609;*/
  overflow: hidden;
}

/* Background Image & Mask Container */
.hero-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.35; /* Adjust image visibility */
}

/* Dark gradient overlay to blend top, center, and bottom */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: linear-gradient(180deg, rgba(4, 6, 9, 0.85) 0%, rgba(4, 6, 9, 0.4) 50%, rgb(15 23 34 / 95%) 100%);*/
}

/* Center Heading Content */
.hero-content {
  text-align: center;
  margin-top: auto;
  margin-bottom: auto;
  z-index: 2;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards 0.2s;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 500;
  letter-spacing: 4px;
  color: #ffffff;
  margin-bottom: 15px;
  /*padding-top: 50px;*/
}

.accent-line {
  width: 45px;
  height: 3px;
  background-color: #d4a359;
  margin: 0 auto;
}

/* Bottom Features Row */
.features-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  z-index: 2;
  margin-top: 50px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  padding: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

/* Sequential Feature Entry Animations */
.feature-item:nth-child(1) { animation: fadeInUp 0.8s ease forwards 0.4s; }
.feature-item:nth-child(3) { animation: fadeInUp 0.8s ease forwards 0.6s; }
.feature-item:nth-child(5) { animation: fadeInUp 0.8s ease forwards 0.8s; }
.feature-item:nth-child(7) { animation: fadeInUp 0.8s ease forwards 1.0s; }
.feature-item:nth-child(9) { animation: fadeInUp 0.8s ease forwards 1.2s; }

.feature-item:hover {
  transform: translateY(-8px);
}

.feature-item:hover .icon-box svg {
  stroke: #ffffff;
  filter: drop-shadow(0 0 8px rgba(212, 163, 89, 0.8));
}

.icon-box {
  width: 48px;
  height: 48px;
  margin-bottom: 15px;
}

.icon-box svg {
  width: 100%;
  height: 100%;
  stroke: #d4a359;
  transition: all 0.3s ease;
}

.feature-item h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  line-height: 1.4;
  color: #e0e0e0;
}

.feature-divider {
  width: 1px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.15);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile & Tablet Responsiveness */
@media (max-width: 900px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .features-grid {
    flex-wrap: wrap;
    gap: 30px 20px;
  }

  .feature-divider {
    display: none;
  }

  .feature-item {
    flex: 0 0 45%;
  }
}

@media (max-width: 550px) {
  .about-hero-section {
    padding: 60px 15px 40px 15px;
  }

  .hero-title {
    font-size: 2rem;
    letter-spacing: 2px;
  }

  .feature-item {
    flex: 0 0 100%;
  }
}

/* Section Layout */
.who-we-are-section {
  padding: 100px 20px;
  background-color: #ffffff;
  overflow: hidden;
}

.container-about {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* Columns Base */
.content-col, .image-col {
  flex: 1;
}

/* Left Column Styling */
.sub-heading {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #d18a24;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.main-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
  margin-bottom: 15px;
}

.heading-underline {
  width: 40px;
  height: 3px;
  background-color: #d4a359;
  margin-bottom: 30px;
}

.description-text {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* CTA Button Styling */
.cta-button-about {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #011123 0%, #c49242 100%);
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-decoration: none;
    border-radius: 6px;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(212, 163, 89, 0.25);
    transition: all 0.3s ease;
}

.cta-button-about:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 163, 89, 0.4);
  background: linear-gradient(135deg, #ebd08d 0%, #d4a359 100%);
  color: #011123;
}

.cta-button .arrow {
  font-size: 1.2rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.cta-button:hover .arrow {
  transform: translateX(4px);
}

/* Right Column Image Container */
.image-card {
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}

.image-card:hover {
  transform: scale(1.05);
}

.image-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Scroll Animations */
.content-col {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s ease-out;
}

.image-col {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s ease-out;
}

.who-we-are-section.animate .content-col,
.who-we-are-section.animate .image-col {
  opacity: 1;
  transform: translateX(0);
}

/* Mobile & Tablet Responsiveness */
@media (max-width: 992px) {
  .container {
    flex-direction: column;
    gap: 40px;
  }

  .main-heading {
    font-size: 2.1rem;
  }

  .main-heading br {
    display: none; /* Flow text naturally on tablet */
  }

  .content-col, .image-col {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .who-we-are-section {
    padding: 60px 20px;
  }

  .main-heading {
    font-size: 1.75rem;
  }

  .cta-button {
    width: 100%; /* Full-width button on small mobile screens */
    text-align: center;
  }
}

/* Container Section Styling */
.stats-counter-section {
  padding: 20px 0px;
  background-color: #f8fafc;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
}

/* Dark Outer Card Container */
.stats-card {
  background-color: #0c131d;
  width: 100%;
  max-width: 1200px;
  border-radius: 12px;
  padding: 35px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.stats-counter-section.animate .stats-card {
  opacity: 1;
  transform: translateY(0);
}

/* Individual Stat Block */
.stat-item {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  justify-content: center;
  padding: 0 15px;
}

/* Gold Outline Circle Icon */
.icon-circle {
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 50%;
  border: 1px solid rgba(212, 163, 89, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.stat-item:hover .icon-circle {
  border-color: #d4a359;
  transform: scale(1.08);
}

.icon-circle svg {
  width: 28px;
  height: 28px;
  stroke: #d4a359;
}

/* Stats Typography */
.stat-details {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: #d4a359;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.stat-label {
  font-size: 0.68rem;
  font-weight: 700;
  color: #d1d5db;
  letter-spacing: 1.2px;
  line-height: 1.35;
}

/* Thin Vertical Dividers */
.stat-divider {
  width: 1px;
  height: 55px;
  background-color: rgba(255, 255, 255, 0.12);
}

/* Mobile & Responsive Layout */
@media (max-width: 992px) {
  .stats-card {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
    padding: 30px 20px;
  }

  .stat-divider {
    display: none;
  }

  .stat-item {
    justify-content: flex-start;
  }
}

@media (max-width: 576px) {
  .stats-card {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .stat-number {
    font-size: 1.9rem;
  }

  .icon-circle {
    width: 50px;
    height: 50px;
    min-width: 50px;
  }

  .icon-circle svg {
    width: 22px;
    height: 22px;
  }
}
/* Section Container */
.about-section {
  padding: 80px 20px;
  background-color: #f7f9fa;
  font-family: 'Montserrat', sans-serif;
  overflow: hidden;
}

.about-container {
  max-width: 1250px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  gap: 40px;
}

/* Left Column Header */
.about-header {
  flex: 0 0 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.sub-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #d18a24;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.main-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.1rem;
  font-weight: 800;
  color: #0d1520;
  line-height: 1.3;
  margin-bottom: 18px;
}

.title-underline {
  width: 45px;
  height: 3px;
  background-color: #c59b27;
}

/* Right Grid Column */
.about-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Individual Card (about-card) */
.about-card {
  background-color: #ffffff;
  border-radius: 12px;
  border: 1px solid #eaeeef;
  padding: 35px 20px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  cursor: pointer;
  will-change: transform, box-shadow, border-color;
  
  /* Initial state for Scroll Entry */
  opacity: 0;
  transform: translateY(30px);
  
  /* Transitions handling both entrance and active hover */
  transition: opacity 0.8s ease, 
              transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), 
              box-shadow 0.35s ease, 
              border-color 0.35s ease;
}

/* Circle Icon Wrapper (about-icon) */
.about-icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background-color: #eaf3f0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: background-color 0.35s ease, transform 0.35s ease;
}

.about-icon svg {
  width: 30px;
  height: 30px;
  stroke: #c89f34;
  transition: stroke 0.35s ease;
}

/* Card Content Typography */
.about-card-title {
  font-size: 17px;
  font-weight: 700;
  color: #0d1520;
  margin-bottom: 12px;
}

.about-card-text {
    font-size: 14px;
    color: #5d6a78;
    line-height: 1.6;
    font-weight: 500;
}

/* ========================================= */
/* HOVER ANIMATIONS                          */
/* ========================================= */

.about-card:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: #d0e0d8;
}

.about-card:hover .about-icon {
  background-color: #c89f34;
  transform: scale(1.08);
}

.about-card:hover .about-icon svg {
  stroke: #ffffff;
}

/* ========================================= */
/* SCROLL ANIMATION STATES                   */
/* ========================================= */

.about-section.animate .about-header {
  opacity: 1;
  transform: translateX(0);
}

.about-section.animate .about-card {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered Delay for Cards Entry */
.about-section.animate .about-card:nth-child(1) { transition-delay: 0.1s; }
.about-section.animate .about-card:nth-child(2) { transition-delay: 0.25s; }
.about-section.animate .about-card:nth-child(3) { transition-delay: 0.4s; }
.about-section.animate .about-card:nth-child(4) { transition-delay: 0.55s; }

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .about-container {
    flex-direction: column;
    gap: 30px;
  }

  .about-header {
    flex: none;
    text-align: center;
    align-items: center;
  }

  .about-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .about-section {
    padding: 50px 15px;
  }

  .main-title {
    font-size: 1.7rem;
  }

  .main-title br {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .about-card {
    padding: 25px 20px;
  }
}

/* Section Base Styling */
.leadership-section {
  background-color: #080d14;
  color: #ffffff;
  padding: 80px 20px;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  overflow: hidden;
}

.leadership-container {
  max-width: 1250px;
  margin: 0 auto;
}

/* Header Styling */
.leadership-header {
  margin-bottom: 45px;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.sub-title {
  color: #d4a359;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.main-title-about {
  font-size: 2.3rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 15px 0;
}

.title-underline {
  width: 45px;
  height: 3px;
  background-color: #d4a359;
}

/* Main Layout Grid */
.leadership-content {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 30px;
  align-items: stretch;
}

/* Left Profile Card */
.profile-card {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.profile-image-wrapper {
  flex: 0 0 240px;
  border-radius: 12px;
  border: 1px solid rgba(212, 163, 89, 0.4);
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.profile-card:hover .profile-image-wrapper {
  border-color: #d4a359;
  transform: translateY(-4px);
}

.profile-img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  display: block;
}

.profile-info {
  flex: 1;
}

.profile-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: #d4a359;
  margin: 0 0 4px 0;
  letter-spacing: 0.5px;
}

.profile-role {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: #d4a359;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.profile-desc {
  font-size: 0.92rem;
  color: #a0aec0;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Icons Grid inside Profile */
.competencies-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 30px;
  padding-top: 20px;
}

.competency-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.comp-icon {
  width: 35px;
  height: 35px;
  min-width: 26px;
  stroke: #d4a359;
  transition: transform 0.3s ease;
}

.competency-item:hover .comp-icon {
  transform: scale(1.15) rotate(5deg);
}

.competency-item span {
  font-size: 14px;
  font-weight: 600;
  color: #e2e8f0;
  line-height: 1.25;
}

/* Right Expertise Box */
.expertise-box {
  background-color: rgba(15, 23, 36, 0.6);
  border: 1px solid rgba(212, 163, 89, 0.25);
  border-radius: 12px;
  padding: 35px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s ease, transform 0.8s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.expertise-box:hover {
  border-color: rgba(212, 163, 89, 0.5);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.expertise-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #d4a359;
  margin: 0 0 25px 0;
}

.expertise-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.expertise-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: #e2e8f0;
  font-weight: 500;
  transition: transform 0.25s ease, color 0.25s ease;
}

.expertise-item:hover {
  transform: translateX(6px);
  color: #ffffff;
}

.check-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.check-icon svg {
  stroke: #d4a359;
}

/* Animations State Triggered by JS */
.leadership-section.animate .leadership-header {
  opacity: 1;
  transform: translateY(0);
}

.leadership-section.animate .profile-card {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.2s;
}

.leadership-section.animate .expertise-box {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.4s;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .leadership-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .profile-card {
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .profile-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .profile-image-wrapper {
    width: 220px;
    flex: none;
  }

  .competencies-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 15px;
  }

  .competency-item {
    justify-content: center;
    text-align: left;
  }

  .title-underline {
    margin: 0 auto;
  }

  .leadership-header {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .leadership-section {
    padding: 50px 15px;
  }

  .main-title {
    font-size: 1.7rem;
  }

  .competencies-grid {
    grid-template-columns: 1fr;
  }

  .expertise-box {
    padding: 25px 20px;
  }
}
/* ==========================================
   OUR STORY SECTION CSS ONLY
   ========================================== */

/* Section Container & Grid */
.story-section {
  padding: 40px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
}

.story-container {
  max-width: 1240px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 50px;
  align-items: center;
}

/* Left Content Column */
.story-content {
  display: flex;
  flex-direction: column;
}

.sub-heading {
  font-size: 13px;
  font-weight: 800;
  color: #d0972b;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.main-heading {
  font-size: 32px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
  margin-bottom: 20px;
}

.accent-line {
  width: 48px;
  height: 3px;
  background-color: #d0972b;
  margin-bottom: 28px;
  border-radius: 2px;
}

.description {
  font-size: 15px;
  color: #475569;
  margin-bottom: 18px;
  font-weight: 500;
  line-height: 1.6;
}

/* Right Timeline Card */
.timeline-card {
  background: #ffffff;
  padding: 50px 36px;
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.04);
}

.timeline-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* Timeline Connecting Line */
.timeline-line {
  position: absolute;
  top: 30px;
  left: 10%;
  right: 10%;
  height: 1.5px;
  background-color: #cbd5e1;
  z-index: 1;
}

/* Timeline Nodes & Content */
.timeline-item {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease;
}

.timeline-item:hover {
  transform: translateY(-4px);
}

.icon-box-about {
  width: 60px;
  height: 60px;
  background-color: #064e3b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  box-shadow: 0 4px 12px rgba(6, 78, 59, 0.2);
  transition: background-color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.icon-box-about svg {
  width: 26px;
  height: 26px;
  stroke: #ffffff;
}

.timeline-item:hover .icon-box {
  background-color: #047857;
  transform: scale(1.08);
}

.diamond-marker {
  color: #d0972b;
  font-size: 10px;
  margin: 6px 0;
  user-select: none;
}

.item-title {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
  line-height: 1.3;
}

.item-desc {
    font-size: 13px;
    color: #64748b;
    line-height: 1.45;
    margin-bottom: 8px;
    font-weight: 500;
}

.year {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  margin-top: 2px;
}

/* Entrance Animations */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.2s;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .story-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .story-section {
    padding: 50px 16px;
  }

  .timeline-card {
    padding: 36px 20px;
  }

  /* Vertical timeline transformation on mobile */
  .timeline-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .timeline-line {
    top: 30px;
    bottom: 30px;
    left: 30px;
    width: 2px;
    height: auto;
    right: auto;
  }

  .timeline-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    grid-template-areas: 
      "icon title"
      "icon desc"
      "icon year";
    column-gap: 20px;
    text-align: left;
    align-items: center;
  }

  .icon-box {
    grid-area: icon;
    margin-bottom: 0;
  }

  .diamond-marker {
    display: none;
  }

  .item-title {
    grid-area: title;
    margin-bottom: 2px;
  }

  .item-desc {
    grid-area: desc;
    margin-bottom: 4px;
  }

  .year {
    grid-area: year;
    font-size: 16px;
  }
}
@media (max-width:768px){

  .container-about{
    display:flex;
    flex-direction:column-reverse;
    align-items:stretch;
    gap:35px;
    width:100%;
  }

  .content-col,
  .image-col{
    flex:0 0 100%;
    width:100%;
    max-width:100%;
  }

  .image-card{
    width:100%;
    max-width:100%;
    border-radius:20px;
  }

  .image-card img{
    display:block;
    width:100%;
    max-width:100%;
    height:auto;
  }

}
/* Section Base Styling (duplicate for leadership-section1) */
.leadership-section1 {
  background-color: #080d14;
  color: #ffffff;
  padding: 80px 20px;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  overflow: hidden;
}

/* Reveal animation for leadership-section1 (was missing) */
.leadership-section1.animate .leadership-header {
  opacity: 1;
  transform: translateY(0);
}

.leadership-section1.animate .profile-card {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.2s;
}

.leadership-section1.animate .expertise-box {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.4s;
}


/* Section Base Styling (duplicate for leadership-section1) */
.leadership-section2 {
  background-color: #080d14;
  color: #ffffff;
  padding: 80px 20px;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  overflow: hidden;
}

/* Reveal animation for leadership-section1 (was missing) */
.leadership-section2.animate .leadership-header {
  opacity: 1;
  transform: translateY(0);
}

.leadership-section2.animate .profile-card {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.2s;
}

.leadership-section2.animate .expertise-box {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.4s;
}