@import url("main.css");
@import url("testmonial.css");

/* Smooth Scrolling for Navigation Links */
html {
  scroll-behavior: smooth;
}

/* Scroll Offset for Fixed Header */
section[id] {
  scroll-margin-top: 100px;
}
.hero-section {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)),
    url("https://images.unsplash.com/photo-1559827260-dc66d52bef19?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2340&q=80");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 93, 54, 0.3),
    rgba(8, 74, 46, 0.4)
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 800px;
  padding: 0 20px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 30px;
  font-size: 1rem;
  opacity: 0.9;
}

.breadcrumb a {
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition);
  font-weight: 500;
}

.breadcrumb a:hover {
  opacity: 0.8;
  transform: translateY(-1px);
}

.breadcrumb-separator {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.breadcrumb-current {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 40px;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: -1px;
  animation: fadeInUp 1.5s ease-out;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 30px;
  font-size: 1rem;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.3s forwards;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.5s forwards;
}

.about-content {
  background: var(--gray-light);
  padding: 100px 0;
  position: relative;
}

.about-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #f0f8f4 0%, #e8f5ee 50%, #f0f8f4 100%);
  opacity: 0.7;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  position: relative;
}

.section-label::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.section-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 30px;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.1);
  letter-spacing: -1px;
}

.section-description {
  font-size: 1.3rem;
  color: var(--gray-medium);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 400;
}

/* Floating elements for visual interest */
.floating-shape {
  position: absolute;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}

.floating-shape-1 {
  top: 10%;
  left: 5%;
  width: 100px;
  height: 100px;
  background: var(--primary);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.floating-shape-2 {
  top: 60%;
  right: 10%;
  width: 80px;
  height: 80px;
  background: var(--primary);
  border-radius: var(--border-radius);
  animation: float 8s ease-in-out infinite reverse;
}

.floating-shape-3 {
  bottom: 20%;
  left: 15%;
  width: 60px;
  height: 60px;
  background: var(--primary);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  animation: float 7s ease-in-out infinite;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(10deg);
  }
}

/* Responsive Design */
/* Responsive Design */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 1.6rem;
  }
  .section-title {
    font-size: 1.3rem;
  }
  .section-description {
    font-size: 0.8rem;
  }
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 1.5rem;
  }
  .section-title {
    font-size: 1.25rem;
  }
  .section-description {
    font-size: 0.75rem;
  }
  .about-content {
    padding: 80px 0;
  }
}

@media (max-width: 768px) {
  .hero-section {
    height: 40vh;
  }
  .hero-title {
    font-size: 1.4rem;
  }
  .section-title {
    font-size: 1.2rem;
  }
  .section-description {
    font-size: 0.8rem;
  }
  .about-content {
    padding: 60px 0;
  }
  .breadcrumb {
    font-size: 0.85rem;
  }
  .section-label {
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  .hero-section {
    height: 35vh;
  }
  .hero-title {
    font-size: 1.3rem;
    margin-bottom: 25px;
  }
  .section-title {
    font-size: 1.1rem;
  }
  .section-description {
    font-size: 0.75rem;
  }
  .container {
    padding: 0 15px;
  }
  .breadcrumb {
    font-size: 0.8rem;
    margin-bottom: 20px;
  }
  .about-content {
    padding: 50px 0;
  }
  .section-label {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    height: 35vh;
  }
  .hero-title {
    font-size: 1.4rem;
    margin-bottom: 30px;
  }
  .section-title {
    font-size: 1.2rem;
  }
  .section-description {
    font-size: 0.8rem;
  }
  .container {
    padding: 0 15px;
  }
  .breadcrumb {
    font-size: 0.8rem;
    margin-bottom: 20px;
  }
  .about-content {
    padding: 50px 0;
  }
  .floating-shape {
    display: none;
  }
  .section-label {
    font-size: 0.8rem;
  }
}

@media (max-width: 375px) {
  .hero-section {
    height: 30vh;
  }
  .hero-title {
    font-size: 1.2rem;
  }
  .section-title {
    font-size: 1rem;
  }
  .section-description {
    font-size: 0.7rem;
  }
  .breadcrumb {
    font-size: 0.75rem;
  }
  .section-label {
    font-size: 0.7rem;
  }
}

@media (max-width: 320px) {
  .hero-section {
    height: 28vh;
  }
  .hero-title {
    font-size: 1.1rem;
  }
  .section-title {
    font-size: 0.95rem;
  }
  .section-description {
    font-size: 0.65rem;
  }
  .breadcrumb {
    font-size: 0.7rem;
  }
  .section-label {
    font-size: 0.65rem;
  }
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Accessibility improvements */
.breadcrumb a:focus,
.breadcrumb a:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 4px;
  border-radius: 4px;
}

.empowering-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.empowering-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(10, 93, 54, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Main Content Layout: Image Left, Content Right */
.main-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.hero-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  height: 450px;
  transition: transform 0.3s ease;
}

.hero-image:hover {
  transform: translateY(-5px);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.hero-image:hover img {
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(10, 93, 54, 0.9),
    rgba(10, 93, 54, 0.6),
    transparent
  );
  padding: 40px 30px 30px;
  color: var(--white);
}

.hero-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.1rem;
  opacity: 0.95;
  line-height: 1.5;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.content-area {
  padding-left: 20px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 24px;
  line-height: 1.2;
}

.highlight-text {
  color: var(--primary);
  position: relative;
}

.highlight-text::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  opacity: 0.3;
}

.section-description {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--gray-medium);
  margin-bottom: 0;
}

/* Features Section */
.features-section {
  margin-top: 60px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  width: 100%;
}

.feature-card {
  text-align: center;
  padding: 40px 30px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(10, 93, 54, 0.1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(10, 93, 54, 0.15);
  border-color: var(--primary);
}

.feature-card-full-width {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 15px;
  background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
  border: 2px solid rgba(10, 93, 54, 0.1);
}

.feature-card-full-width:hover {
  background: linear-gradient(135deg, #f8f9fa 0%, var(--white) 100%);
  border-color: var(--primary);
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.8rem;
  box-shadow: 0 8px 20px rgba(10, 93, 54, 0.3);
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 25px rgba(10, 93, 54, 0.4);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 16px;
  transition: color 0.3s ease;
}

.feature-card:hover .feature-title {
  color: var(--primary);
}

.feature-description {
  font-size: 1rem;
  color: var(--gray-medium);
  line-height: 1.6;
}





/* Tablet Design */
@media (max-width: 1024px) and (min-width: 769px) {
  .empowering-section {
    padding: 70px 20px;
  }

  .main-content {
    gap: 50px;
    margin-bottom: 70px;
  }

  .hero-image {
    height: 400px;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .features-grid {
    gap: 25px;
  }

  .feature-card {
    padding: 35px 25px;
  }

  .feature-card-full-width {
    margin-top: 12px;
  }
}

/* Mobile Design */
@media (max-width: 768px) {
  .empowering-section {
    padding: 60px 20px;
  }

  .main-content {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
  }

  .hero-image {
    height: 350px;
    order: 1;
  }

  .content-area {
    padding-left: 0;
    order: 2;
    text-align: center;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .section-description {
    font-size: 1rem;
    margin-bottom: 0;
  }

  .features-section {
    margin-top: 40px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    width: 100%;
  }

  .feature-card {
    padding: 30px 25px;
  }

  .feature-card-full-width {
    grid-column: 1;
    width: 100%;
    margin-top: 10px;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .feature-title {
    font-size: 1.1rem;
  }

  .feature-description {
    font-size: 0.95rem;
  }

  .hero-title {
    font-size: 1.6rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }
}

/* Extra Small Devices */
@media (max-width: 480px) {
  .empowering-section {
    padding: 40px 15px;
  }

  .main-content {
    gap: 30px;
    margin-bottom: 40px;
  }

  .hero-image {
    height: 300px;
    border-radius: 12px;
  }

  .section-title {
    font-size: 1.75rem;
    margin-bottom: 16px;
  }

  .section-description {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .features-section {
    margin-top: 30px;
  }

  .features-grid {
    gap: 20px;
  }

  .feature-card {
    padding: 25px 20px;
    border-radius: 12px;
  }

  .feature-icon {
    width: 55px;
    height: 55px;
    font-size: 1.3rem;
    margin-bottom: 20px;
  }

  .feature-title {
    font-size: 1rem;
    margin-bottom: 12px;
  }

  .feature-description {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .hero-title {
    font-size: 1.4rem;
    margin-bottom: 8px;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .hero-overlay {
    padding: 30px 20px 20px;
  }
}


}

@media (max-width: 480px) {
  .empowering-section {
    padding: 40px 15px;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .hero-image {
    height: 350px;
  }

  .hero-overlay {
    padding: 30px 20px 20px;
  }

  .hero-title {
    font-size: 1.3rem;
  }

  .feature-card {
    padding: 25px 15px;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
}

.mission-section {
  padding: 80px 20px;
  background-color: var(--gray-light);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.mission-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.mission-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 40px;
  text-align: left;
}

.image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  height: 500px;
}

.image-item {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.image-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.image-item:hover img {
  transform: scale(1.05);
}

.image-item:first-child {
  grid-row: 1 / 2;
}

.image-item:nth-child(2) {
  grid-row: 1 / 2;
}

.image-item:nth-child(3) {
  grid-row: 2 / 3;
  grid-column: 1 / 3;
}

.content-area {
  padding-left: 20px;
}

.mission-description {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--gray-medium);
  margin-bottom: 40px;
  text-align: justify;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: var(--primary);
  color: var(--white);
  padding: 16px 32px;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.cta-button:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.cta-button i {
  font-size: 1rem;
  transition: var(--transition);
}

.cta-button:hover i {
  transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .mission-section {
    padding: 60px 20px;
  }

  .mission-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mission-title {
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
  }

  .image-grid {
    height: 400px;
    order: 2;
  }

  .content-area {
    padding-left: 0;
    text-align: center;
    order: 1;
  }

  .mission-description {
    font-size: 1rem;
    margin-bottom: 30px;
    text-align: center;
  }

  .cta-button {
    padding: 14px 28px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .mission-section {
    padding: 40px 15px;
  }

  .mission-title {
    font-size: 1.75rem;
  }

  .image-grid {
    height: 350px;
    gap: 10px;
  }

  .mission-description {
    font-size: 0.95rem;
  }

  .cta-button {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}