
html {
  scroll-behavior: smooth;
}
   .about-hero {
    position: relative;
    color: #ffffff;
    padding: 140px 0 100px;
    overflow: hidden;
  }
  
  /* Background image with dark overlay */
  .about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
      linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), /* Dark overlay */
      url('../images/ABOUT-MAIN.png') no-repeat center center;
    background-size: cover;
    background-attachment: fixed; /* Parallax effect */
    z-index: -1;
  }
  
  /* Optional: Add a subtle color gradient over the image */
  .about-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(12, 36, 97, 0.3) 0%, rgba(16, 76, 2, 0.3) 100%);
    z-index: -1;
  }
  
  .about-hero .container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
  }
  

  .about-hero .hero-tag {
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: #9be15d;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 10px 25px;
    background: rgba(155, 225, 93, 0.1);
    border: 1px solid rgba(155, 225, 93, 0.3);
    border-radius: 30px;
    backdrop-filter: blur(5px);
  }
  
  .about-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
  }
  
  .about-hero p {
    max-width: 700px;
    font-size: 1.2rem;
    opacity: 0.95;
    line-height: 1.6;
    margin: 0 auto;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
  }
  
  /* Animation for text */
  .about-hero .hero-tag,
  .about-hero h1,
  .about-hero p {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
  }
  
  .about-hero h1 {
    animation-delay: 0.2s;
  }
  
  .about-hero p {
    animation-delay: 0.4s;
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Optional: Add a subtle shine effect at the bottom */
  .about-hero .container::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #0b4922, transparent);
    border-radius: 3px;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .about-hero {
      padding: 100px 0 70px;
    }
    
    .about-hero::before {
      background-attachment: scroll; /* Remove parallax on mobile */
    }
    
    .about-hero h1 {
      font-size: clamp(2rem, 4vw, 2.8rem);
    }
    
    .about-hero p {
      font-size: 1.1rem;
      padding: 0 20px;
    }
    
    .about-hero .hero-tag {
      font-size: 0.75rem;
      letter-spacing: 2px;
      padding: 8px 20px;
    }
  }
  
  /* SECTIONS */
  .about-section {
    padding: 90px 0;
  }
  
  .about-section.muted {
    background: #f4f6f5;
  }
  
  .about-section h2 {
    font-size: 2rem;
    color: #0f3d2e;
    margin-bottom: 25px;
  }
  
  .about-section p {
    color: #555;
    line-height: 1.7;
  }
  /* Primary Button Styling */
.btn.primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--secondary-green), var(--primary-green));
  color: white;
  padding: 16px 36px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

.btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(46, 125, 50, 0.4);
}

.btn.primary:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

/* Optional: Add a subtle shine effect on hover */
.btn.primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.7s ease;
}

.btn.primary:hover::after {
  left: 100%;
}

/* If you want it to be centered below the paragraph in your hero */
.about-hero .btn.primary {
  margin-top: 40px;
  display: inline-block;
}

/* Optional: Add an icon next to the button text */
.btn.primary i {
  margin-left: 8px;
  font-size: 0.9em;
  transition: transform 0.3s ease;
}

.btn.primary:hover i {
  transform: translateX(3px);
}
  
  /* SPLIT LAYOUT */
  .split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
  }
  
  .image-placeholder {
    height: 320px;
    background: linear-gradient(135deg, #9be15d, #3bb78f);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f3d2e;
    font-weight: 700;
  }
  
  /* VALUES */
  .about-values {
    background: #0f3d2e;
    padding: 90px 0;
  }
  
  .grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  
  .value-card {
    background: #ffffff;
    padding: 45px;
    border-radius: 18px;
  }
  
  .value-card .icon {
    font-size: 1.8rem;
    color: #3bb78f;
    margin-bottom: 20px;
  }
  
  .value-card h3 {
    margin-bottom: 15px;
    color: #0f3d2e;
  }
  
  /* WHY WESTRAFO */
  .center {
    text-align: center;
  }
  
  .reasons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
  }
  
  .reason {
    background: #ffffff;
    padding: 30px;
    border-radius: 14px;
  }
  
  .reason i {
    color: #3bb78f;
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
  
  .reason h4 {
    margin-bottom: 10px;
    color: #0f3d2e;
  }
  
  /* CTA */
  .about-cta {
    background: linear-gradient(135deg, #1f6b4f, #0e3d2d);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
  }
  
  .about-cta p {
    max-width: 600px;
    margin: 15px auto 30px;
    opacity: 0.95;
  }
  
  /* ====== WHO WE ARE SECTION SPECIFIC STYLING ====== */
.about-section {
  padding: 100px 0;
}

.about-section .container.split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Text styling */
.about-section .container.split .text {
  padding-right: 40px;
}

.about-section .container.split .text h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.8rem;
  color: #0c2461;
  margin-bottom: 30px;
  font-weight: 700;
  position: relative;
  line-height: 1.1;
}

.about-section .container.split .text h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-green), var(--secondary-green));
  border-radius: 2px;
}

.about-section .container.split .text p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 25px;
}

.about-section .container.split .text p:last-child {
  margin-bottom: 0;
}

/* Visual/Image styling */
.about-section .container.split .visual {
  position: relative;
}

.about-section .container.split .image-placeholder {
  position: relative;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(12, 36, 97, 0.15);
  background: #f8fafc;
  border: 1px solid rgba(76, 175, 80, 0.1);
  transition: all 0.4s ease;
}

.about-section .container.split .image-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(12, 36, 97, 0.1), rgba(46, 125, 50, 0.1));
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.about-section .container.split .image-placeholder:hover::before {
  opacity: 1;
}

.about-section .container.split .image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-section .container.split .image-placeholder:hover img {
  transform: scale(1.08);
}

/* Decorative corner accents */
.about-section .container.split .image-placeholder::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  width: 40px;
  height: 40px;
  border-top: 3px solid var(--secondary-green);
  border-left: 3px solid var(--secondary-green);
  z-index: 2;
  opacity: 0.7;
  transition: all 0.4s ease;
}

.about-section .container.split .image-placeholder::before {
  content: '';
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-bottom: 3px solid var(--secondary-green);
  border-right: 3px solid var(--secondary-green);
  z-index: 2;
  opacity: 0.7;
  transition: all 0.4s ease;
}

.about-section .container.split .image-placeholder:hover::after,
.about-section .container.split .image-placeholder:hover::before {
  opacity: 1;
  width: 50px;
  height: 50px;
}

/* Floating effect */
.about-section .container.split .visual {
  perspective: 1000px;
}

.about-section .container.split .image-placeholder {
  transform: perspective(1000px) rotateY(-10deg) rotateX(2deg);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.about-section .container.split .image-placeholder:hover {
  transform: perspective(1000px) rotateY(0) rotateX(0);
  box-shadow: 0 35px 80px rgba(12, 36, 97, 0.25);
}

/* ====== RESPONSIVE DESIGN ====== */
@media (max-width: 1024px) {
  .about-section .container.split {
      gap: 60px;
  }
  
  .about-section .container.split .image-placeholder {
      height: 350px;
  }
  
  .about-section .container.split .text h2 {
      font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .about-section {
      padding: 70px 0;
  }
  
  .about-section .container.split {
      grid-template-columns: 1fr;
      gap: 50px;
  }
  
  .about-section .container.split .text {
      text-align: center;
      padding-right: 0;
  }
  
  .about-section .container.split .text h2::after {
      left: 50%;
      transform: translateX(-50%);
  }
  
  .about-section .container.split .image-placeholder {
      height: 320px;
      max-width: 600px;
      margin: 0 auto;
      transform: none;
  }
  
  .about-section .container.split .image-placeholder:hover {
      transform: scale(1.02);
  }

}

@media (max-width: 480px) {
  .about-section .container.split .text h2 {
      font-size: 2.2rem;
  }
  
  .about-section .container.split .text p {
      font-size: 1.05rem;
  }
  
  .about-section .container.split .image-placeholder {
      height: 280px;
      border-radius: 15px;
  }
  
}
  
  /* RESPONSIVE */
  @media (max-width: 900px) {
    .split,
    .grid-2,
    .reasons-grid {
      grid-template-columns: 1fr;
    }
  
    .about-hero {
      text-align: center;
    }
  
    .about-hero p {
      margin: auto;
    }
  }
  