.about-hero-section {
  width: 100%;
  background-color: #1c4425;
  padding: 150px 20px 80px 20px;
  text-align: center;
}
.about-hero-section .about-hero-container {
  max-width: 1200px;
  margin: 0 auto;
}
.about-hero-section .section-subtitle {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #f9f9f9;
}
.about-hero-section h1 {
  font-size: 4.5rem;
  font-weight: 800;
  color: #f9f9f9;
  line-height: 1.1;
  letter-spacing: -2px;
  margin: 0 auto;
}
.about-hero-section .hero-gallery {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 80px;
  width: 100%;
  flex-wrap: nowrap;
}
.about-hero-section .hero-gallery .gallery-card {
  width: 22%;
  aspect-ratio: 3/4;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  border: 4px solid #f9f9f9;
  box-shadow: -10px 15px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s ease, z-index 0s;
}
.about-hero-section .hero-gallery .gallery-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.about-hero-section .hero-gallery .gallery-card:not(:first-child) {
  margin-left: -8%;
}
.about-hero-section .hero-gallery .gallery-card.card-1 {
  z-index: 1;
  transform: translateY(-20px);
}
.about-hero-section .hero-gallery .gallery-card.card-2 {
  z-index: 2;
  transform: translateY(30px);
}
.about-hero-section .hero-gallery .gallery-card.card-3 {
  z-index: 3;
  transform: translateY(-40px);
}
.about-hero-section .hero-gallery .gallery-card.card-4 {
  z-index: 4;
  transform: translateY(15px);
}
.about-hero-section .hero-gallery .gallery-card.card-5 {
  z-index: 5;
  transform: translateY(-10px);
}
.about-hero-section .hero-gallery .gallery-card:hover {
  z-index: 10 !important;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
}
.about-hero-section .hero-gallery .gallery-card:hover.card-1 {
  transform: translateY(-30px);
}
.about-hero-section .hero-gallery .gallery-card:hover.card-2 {
  transform: translateY(20px);
}
.about-hero-section .hero-gallery .gallery-card:hover.card-3 {
  transform: translateY(-50px);
}
.about-hero-section .hero-gallery .gallery-card:hover.card-4 {
  transform: translateY(5px);
}
.about-hero-section .hero-gallery .gallery-card:hover.card-5 {
  transform: translateY(-20px);
}
.about-hero-section .hero-gallery .gallery-card:hover img {
  transform: scale(1.15);
}
.about-hero-section .story-layout {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 15px;
  margin-top: 150px;
  text-align: left;
}
.about-hero-section .story-layout .story-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  margin-top: 7px;
}
.about-hero-section .story-layout .story-label span {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #f1f8e7;
  white-space: nowrap;
}
.about-hero-section .story-layout .story-heading h2 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  color: #f9f9f9;
  max-width: 950px;
}
.about-hero-section .stats-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1000px;
  margin: 100px auto 0 auto;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.about-hero-section .stats-layout .stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.about-hero-section .stats-layout .stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 60%;
  width: 1px;
  background-color: rgba(0, 0, 0, 0.1);
}
.about-hero-section .stats-layout .stat-image-col .stat-image-wrapper {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.about-hero-section .stats-layout .stat-image-col .stat-image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.about-hero-section .stats-layout .stat-image-col .stat-image-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.about-hero-section .stats-layout .stat-image-col .stat-image-wrapper:hover img {
  transform: scale(1.1);
}
.about-hero-section .stats-layout .stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: #f9f9f9;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -2px;
}
.about-hero-section .stats-layout .stat-text {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #f1f8e7;
  text-align: center;
}
@media screen and (max-width: 992px) {
  .about-hero-section {
    padding: 100px 20px 60px 20px;
  }
  .about-hero-section h1 {
    font-size: 3rem;
  }
  .about-hero-section .gallery-card {
    border-radius: 16px;
    border-width: 3px;
  }
  .about-hero-section .story-layout {
    gap: 30px;
    margin-top: 100px;
  }
  .about-hero-section .story-layout .story-heading h2 {
    font-size: 2.4rem;
  }
  .about-hero-section .stats-layout {
    flex-wrap: wrap;
    gap: 50px 0;
  }
  .about-hero-section .stats-layout .stat-item {
    flex: 1 1 50%;
  }
  .about-hero-section .stats-layout .stat-item:nth-child(even)::after {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .about-hero-section {
    padding: 80px 20px 40px 20px;
  }
  .about-hero-section h1 {
    font-size: 2.2rem;
  }
  .about-hero-section h1 br {
    display: none;
  }
  .about-hero-section .hero-gallery {
    margin-top: 50px;
  }
  .about-hero-section .gallery-card {
    border-radius: 12px;
    border-width: 2px;
    box-shadow: -5px 10px 15px rgba(0, 0, 0, 0.08);
  }
  .about-hero-section .gallery-card.card-1 {
    transform: translateY(-10px);
  }
  .about-hero-section .gallery-card.card-2 {
    transform: translateY(15px);
  }
  .about-hero-section .gallery-card.card-3 {
    transform: translateY(-20px);
  }
  .about-hero-section .gallery-card.card-4 {
    transform: translateY(10px);
  }
  .about-hero-section .gallery-card.card-5 {
    transform: translateY(-5px);
  }
  .about-hero-section .story-layout {
    flex-direction: column;
    gap: 20px;
    margin-top: 80px;
  }
  .about-hero-section .story-layout .story-label {
    writing-mode: horizontal-tb;
    transform: none;
  }
  .about-hero-section .story-layout .story-heading h2 {
    font-size: 1.5rem;
    letter-spacing: -0.5px;
  }
  .about-hero-section .stats-layout {
    flex-direction: column;
    gap: 40px;
    margin-top: 60px;
    padding-top: 0px;
  }
  .about-hero-section .stats-layout .stat-item {
    flex: 1 1 100%;
    width: 100%;
  }
  .about-hero-section .stats-layout .stat-item::after {
    display: none !important;
  }
  .about-hero-section .stats-layout .stat-number {
    font-size: 2.8rem;
  }
  .about-hero-section .stats-layout .stat-image-col .stat-image-wrapper {
    width: 120px;
    height: 120px;
  }
}

.mission-section {
  width: 100%;
  background-color: #f1f8e7;
  padding: 120px 20px;
}
.mission-section .mission-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}
.mission-section .mission-left .section-subtitle {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #1c4425;
  margin-bottom: 20px;
}
.mission-section .mission-left h2 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: #1c4425;
  margin-bottom: 50px;
}
.mission-section .mission-left .mission-sub-layout {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}
.mission-section .mission-left .mission-sub-layout .sub-image {
  width: 220px;
  height: 280px;
  flex-shrink: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.mission-section .mission-left .mission-sub-layout .sub-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.mission-section .mission-left .mission-sub-layout .sub-image:hover img {
  transform: scale(1.1);
}
.mission-section .mission-left .mission-sub-layout .sub-content p {
  font-size: 1.1rem;
  color: #46664e;
  line-height: 1.7;
  margin-bottom: 30px;
}
.mission-section .mission-left .mission-sub-layout .sub-content .feature-list {
  list-style: none;
  padding: 0;
}
.mission-section .mission-left .mission-sub-layout .sub-content .feature-list li {
  font-size: 1.05rem;
  font-weight: 600;
  color: #1c4425;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}
.mission-section .mission-left .mission-sub-layout .sub-content .feature-list li::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 2px;
  background-color: #1c4425;
  margin-right: 15px;
}
.mission-section .mission-right .large-image-wrapper {
  width: 100%;
  height: 600px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: -15px 20px 40px rgba(0, 0, 0, 0.05);
}
.mission-section .mission-right .large-image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.mission-section .mission-right .large-image-wrapper:hover img {
  transform: scale(1.05);
}
@media screen and (max-width: 992px) {
  .mission-section {
    padding: 100px 20px;
  }
  .mission-section .mission-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .mission-section .mission-left h2 {
    font-size: 2.8rem;
  }
  .mission-section .mission-right .large-image-wrapper {
    height: 450px;
  }
}
@media screen and (max-width: 600px) {
  .mission-section {
    padding: 80px 20px;
  }
  .mission-section .mission-left h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }
  .mission-section .mission-left .mission-sub-layout {
    flex-direction: column;
    gap: 25px;
  }
  .mission-section .mission-left .mission-sub-layout .sub-image {
    width: 100%;
    height: 300px;
    aspect-ratio: auto;
  }
  .mission-section .mission-right .large-image-wrapper {
    height: 350px;
  }
}

.life-section {
  width: 100%;
  background-color: #e5f0d5;
  padding: 120px 20px;
}
.life-section .life-container {
  max-width: 1200px;
  margin: 0 auto;
}
.life-section .life-header-layout {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
  margin-bottom: 80px;
}
.life-section .life-header-layout .life-header-left {
  flex: 1.2;
}
.life-section .life-header-layout .life-header-left .section-subtitle {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #1c4425;
  margin-bottom: 20px;
}
.life-section .life-header-layout .life-header-left h2 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: #1c4425;
  margin: 0;
  max-width: 600px;
}
.life-section .life-header-layout .life-header-right {
  flex: 1;
}
.life-section .life-header-layout .life-header-right p {
  font-size: 1.15rem;
  color: #46664e;
  line-height: 1.7;
  margin: 0;
  max-width: 500px;
}
.life-section .life-video-layout {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding-bottom: 50px;
}
.life-section .life-video-layout .video-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 200px;
  opacity: 0.4;
  transform: scale(0.95);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.life-section .life-video-layout .video-row.active {
  opacity: 1;
  transform: scale(1);
}
.life-section .life-video-layout .video-row.active .video-number {
  color: #1c4425;
  -webkit-text-stroke: 0px transparent;
}
.life-section .life-video-layout .video-number {
  font-size: 8rem;
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px #1c4425;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 150px;
  text-align: right;
}
.life-section .life-video-layout .video-card {
  width: 100%;
  max-width: 650px;
  aspect-ratio: 16/9;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}
.life-section .life-video-layout .video-card video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.life-section .life-video-layout .video-card .video-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 60px 30px 25px 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  z-index: 5;
  pointer-events: none;
}
.life-section .life-video-layout .video-card .video-title h3 {
  color: #f9f9f9;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.5px;
}
.life-section .life-video-layout .video-card .play-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease;
  z-index: 10;
}
.life-section .life-video-layout .video-card .play-overlay .play-text {
  background-color: #fff;
  color: #1c4425;
  padding: 15px 30px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1.1rem;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.life-section .life-video-layout .video-card:hover .play-overlay {
  background-color: rgba(0, 0, 0, 0.05);
}
.life-section .life-video-layout .video-card:hover .play-text {
  transform: translateY(0);
}
.life-section .life-video-layout .video-card.is-playing .play-overlay {
  opacity: 0;
  pointer-events: none;
}
@media screen and (max-width: 992px) {
  .life-section {
    padding: 100px 20px;
  }
  .life-section .life-header-layout {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  .life-section .life-header-layout h2 {
    font-size: 2.8rem !important;
    max-width: 100%;
  }
  .life-section .life-header-layout .life-header-right p {
    max-width: 100%;
  }
  .life-section .life-video-layout {
    gap: 80px;
  }
  .life-section .life-video-layout .video-row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .life-section .life-video-layout .video-number {
    display: none;
  }
  .life-section .life-video-layout .video-card {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .life-section {
    padding: 80px 20px;
  }
  .life-section .life-header-layout {
    margin-bottom: 50px;
  }
  .life-section .life-header-layout h2 {
    font-size: 2.2rem !important;
  }
  .life-section .life-header-layout .life-header-right p {
    font-size: 1.05rem;
  }
  .life-section .life-video-layout {
    gap: 60px;
  }
  .life-section .life-video-layout .video-row {
    opacity: 0.6;
    transform: scale(0.98);
  }
  .life-section .life-video-layout .video-card {
    border-radius: 20px;
  }
  .life-section .life-video-layout .video-card .play-overlay .play-text {
    font-size: 0.9rem;
    padding: 10px 20px;
  }
}

.team-section {
  width: 100%;
  background-color: #1c4425;
  padding: 120px 20px;
  text-align: center;
}
.team-section .team-container {
  max-width: 1200px;
  margin: 0 auto;
}
.team-section .team-header {
  margin-bottom: 50px;
}
.team-section .team-header .section-subtitle {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #f9f9f9;
  margin-bottom: 10px;
}
.team-section .team-header h2 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1.5px;
  color: #f9f9f9;
  margin: 0 auto;
  max-width: 700px;
}
.team-section .team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.team-section .team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.team-section .team-member .member-image {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 25px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s ease;
  cursor: pointer;
}
.team-section .team-member .member-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.team-section .team-member .member-image:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.12);
}
.team-section .team-member .member-image:hover img {
  transform: scale(1.1);
}
.team-section .team-member h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #f9f9f9;
  margin: 0 0 8px 0;
  letter-spacing: -0.5px;
}
.team-section .team-member .member-role {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #e5f0d5;
}
@media screen and (max-width: 992px) {
  .team-section {
    padding: 100px 20px;
  }
  .team-section .team-header {
    margin-bottom: 60px;
  }
  .team-section .team-header h2 {
    font-size: 2.8rem;
  }
  .team-section .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
  }
}
@media screen and (max-width: 600px) {
  .team-section {
    padding: 80px 20px;
  }
  .team-section .team-header {
    margin-bottom: 50px;
  }
  .team-section .team-header h2 {
    font-size: 2.2rem;
  }
  .team-section .team-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .team-section .team-member .member-image {
    width: 150px;
    height: 150px;
  }
}

.packages-section {
  width: 100%;
  background-color: #f1f8e7;
  padding: 100px 20px;
}
.packages-section .packages-container {
  max-width: 1200px;
  margin: 0 auto;
}
.packages-section .packages-header {
  text-align: center;
  margin-bottom: 60px;
}
.packages-section .packages-header .section-subtitle {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #1c4425;
  margin-bottom: 15px;
}
.packages-section .packages-header h2 {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -1.5px;
}
.packages-section .packages-grid {
  display: flex;
  gap: 40px;
  justify-content: center;
}
.packages-section .package-card {
  flex: 1;
  background-color: #1c4425;
  border-radius: 40px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.packages-section .package-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}
.packages-section .package-card .card-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
}
.packages-section .package-card .card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.packages-section .package-card:hover .card-image img {
  transform: scale(1.05);
}
.packages-section .package-card .card-body {
  padding: 40px;
}
.packages-section .package-card .card-body .package-badge {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #f9f9f9;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}
.packages-section .package-card .card-body h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #f9f9f9;
  margin-bottom: 15px;
  line-height: 1.2;
}
.packages-section .package-card .card-body p {
  font-size: 1.05rem;
  color: #f1f8e7;
  line-height: 1.6;
  margin-bottom: 30px;
}
.packages-section .package-card .card-body .btn-outline {
  display: inline-block;
  padding: 14px 28px;
  border: 2px solid #f9f9f9;
  color: #f9f9f9;
  text-decoration: none;
  font-weight: 700;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.packages-section .package-card .card-body .btn-outline:hover {
  background-color: #f9f9f9;
  color: #1c4425;
}
@media screen and (max-width: 992px) {
  .packages-section .packages-grid {
    flex-direction: column;
    gap: 30px;
  }
  .packages-section .package-card {
    max-width: 500px;
    margin: 0 auto;
  }
  .packages-section .packages-header h2 {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 600px) {
  .packages-section {
    padding: 60px 20px;
  }
  .packages-section .card-body {
    padding: 30px;
  }
  .packages-section .card-body h3 {
    font-size: 1.5rem;
  }
}/*# sourceMappingURL=about.css.map */