body{
    margin: 0%;
    padding: 0%;
    font-family: 'Canva Sans', sans-serif;

}

/* Section reveal animation */
.animate-section {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 2.4s ease, transform 2.4s ease;
}

.animate-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}


.about-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-image: url("/assets/aboutushero.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


/* Canvas takes full hero size */
.about-hero canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Hero content above canvas */
.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 40px;
  text-align: left;
  align-self: flex-start;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.5s;
}

.about-hero-content h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  font-family: "Garet", sans-serif;
  font-weight: 400;
  color: #fff; 
}

.section-eyebrow {
  color: #ecaf27;
  font-weight: 500;
  letter-spacing: 0.25em;
  font-size: 1.85rem;
  font-family: "Garet", sans-serif;
  margin-bottom: 20px;
  display: inline-block;
  text-shadow: 2px 2px 6px rgba(234, 194, 49, 0.6);
}
.about-hero-content p {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #072a54;
  font-family: garet, sans-serif;
  font-weight: 400;
}

.about-hero h1,

.about-hero p {
  color: #fff; 
  text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
}


.about-hero .hero-cta {
  background-color: #ecaf27; /* gold */
  color: #072a54;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-hero .hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* Fade-in animation */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-intro {
  background-color: #ffffff;
  color: #072a54;
  text-align: center;
  padding: 80px 20px;
  
  
}

.about-intro h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
}

.about-intro h1::before {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: #ecaf27; /* gold accent */
  margin: 0 auto 20px;
}

.about-intro p {
  font-size: 1.5rem;
  line-height: 1.8;
  max-width: 1000px;
  margin: 0 auto;
}

/* =========================
   ABOUT FEATURE SECTION
========================= */
.about-feature {
  background-color: #f2f2f2;
  padding: 6rem 0;
}

.about-feature-container {
  display: grid;
  grid-template-columns: 45% 55%;
  min-height: 600px;
}

/* =========================
   LEFT: CARDS
========================= */
.about-cards {
  display: flex;
  flex-direction: column;
}

.about-card {
  background-color: #f7f7f7;
  border: 1.5px solid #c69733;
  padding: 2.2rem 2.5rem;
  transition: transform 0.35s ease, background-color 0.35s ease;
  cursor: pointer;
}

.about-card:not(:last-child) {
  border-bottom: none;
}

.about-card h3 {
  font-size: 1.4rem;
  color: #072a54;
  margin-bottom: 0.8rem;
}

.about-card p {
  font-size: 1.17rem;
  line-height: 1.65;
  color: #333;
  margin-bottom: 0.8rem;
}

/* Hover & Active State */
.about-card:hover,
.about-card.active {
  background-color: #ffffff;
  transform: scale(1.02);
}

/* =========================
   RIGHT: IMAGE PANEL
========================= */
.about-images {
  position: relative;
  overflow: hidden;
}

.about-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}

/* Default visible image */
.about-image.active {
  opacity: 1;
}

/* Image Sources */
.image-who {
  background-image: url("/assets/about-who.png");
}

.image-mission {
  background-image: url("/assets/about-mission.jpg");
}

.image-vision {
  background-image: url("/assets/about-vision.jpg");
}

/* =========================
   HOVER IMAGE SWITCHING
========================= */
.about-card[data-image="who"]:hover ~ .about-images .image-who,
.about-card[data-image="mission"]:hover ~ .about-images .image-mission,
.about-card[data-image="vision"]:hover ~ .about-images .image-vision {
  opacity: 1;
}

.about-card[data-image="mission"]:hover ~ .about-images .image-who,
.about-card[data-image="vision"]:hover ~ .about-images .image-who {
  opacity: 0;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .about-feature-container {
    grid-template-columns: 1fr;
  }

  .about-images {
    height: 360px;
  }

  .about-card {
    border-bottom: 1.5px solid #c69733;
  }
}

/* =========================
   VALUES SECTION
========================= */

.about-values {
  background-color: #ffffff;
  padding: 6rem 2rem;
}

.about-values-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.about-values h2 {
  font-family: 'Garet', sans-serif;
  font-size: 2.4rem;
  color: #072a54;
  margin-bottom: 4rem;
  font-weight: 400;
}

/* Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem 3rem;
  text-align: left;
}

/* Individual value */
.value-item {
  transition: transform 0.3s ease;
}

.value-item:hover {
  transform: translateY(-4px);
}

/* Icon */
.value-block img {
  width: 66px;  
  height: 66px;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.value-block:hover img {
  transform: scale(1.08);  /* optional hover effect like before */
}



/* Text */
.value-item h4 {
  font-size: 1.15rem;
  color: #072a54;
  margin-bottom: 0.5rem;
}

.value-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
  max-width: 340px;
}

/* Responsive */
@media (max-width: 992px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .values-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .value-item p {
    margin: 0 auto;
  }
}
/* =========================
   COMMITMENT SECTION
========================= */
.about-commitment {
  background-color: #f9f9f9; /* light grey */
  padding: 6rem 2rem;
  text-align: center;
}

.about-commitment-container {
  max-width: 900px;
  margin: 0 auto;
}

.about-commitment h2 {
  font-family: 'Garet', sans-serif;
  font-size: 2.2rem;
  color: #072a54;
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
  font-weight: 400;
}

/* Thin gold line above heading */
.about-commitment h2::before {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #ecaf27;
  margin-bottom: 0.5rem;
  margin-left: auto;
  margin-right: auto;
}

.about-commitment p {
  font-size: 1.3rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 2rem;
}

.commitment-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.commitment-list li {
  position: relative;
  font-size: 1.3rem;
  color: #072a54;
  margin-bottom: 1.2rem;
  padding-left: 2rem;
  text-align: left;
}

/* Gold checkmark using pseudo-element */
.commitment-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #ecaf27;
  font-weight: bold;
}

.closing-line {
  font-size: 1.1rem;
  font-weight: 600;
  color: #072a54;
  margin-top: 2rem;
  font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
  .commitment-list li {
    font-size: 0.95rem;
  }

  .about-commitment h2 {
    font-size: 1.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .animate-section {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Mobile Touch Support */
@media (hover: none) and (pointer: coarse) {
  .about-card:active,
  .about-card.active {
    background-color: #ffffff;
    transform: scale(1.02);
  }
  
  .value-item:active {
    transform: translateY(-4px);
  }
  
  .about-cta .cta-button:active {
    background-color: #d9a81f;
    transform: translateY(-2px);
  }
  
  .hero-cta:active {
    background-color: #d9a81f;
    transform: translateY(-3px);
  }
  
  /* Make cards tappable on mobile */
  .about-card {
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(236, 175, 39, 0.1);
  }
}

.about-cta {
  background-color: #ffffff;
  padding: 4rem 2rem;
  text-align: center;
  
}

.cta-line {
  height: 4px;
  width: 80px;
  background-color: #072a54; 
  margin: 0 auto 1.5rem auto;
  border-radius: 2px;
}

.about-cta h3 {
  color: #072a54; /* navy text */
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.about-cta .cta-button {
  background-color: #ecaf27; /* gold button */
  color: #072a54;
  padding: 0.85rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-cta .cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(236, 175, 39, 0.35);
}