:root {
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 20px rgba(0, 0, 0, 0.06);
  --shadow-xl: 0 15px 35px rgba(0, 0, 0, 0.12);
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --border-radius-sm: 6px;
  --border-radius-md: 8px;
  --border-radius-lg: 12px;
  --border-radius-xl: 15px;
  --border-radius-full: 50px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.cta-primary,
.hero,
.stat-card {
  overflow: hidden;
}
.hero::before,
.stat-card::before,
.value-card::before {
  position: absolute;
}
.container,
.hero,
.stat-card,
.timeline,
.timeline-item {
  position: relative;
}
.award-item,
.community-intro,
.cta-primary,
.cta-section,
.hero,
.partners-list,
.partners-title,
.section-header,
.stat-card,
.stat-item,
.story-intro,
.timeline-year,
.value-card {
  text-align: center;
}

.award-item,
.cta-primary,
.stat-card,
.stat-item,
.team-member,
.value-card {
  transition: all var(--transition-normal);
}

.hero {
  background: linear-gradient(
        135deg,
        rgba(12, 34, 103, 0.85),
        rgba(59, 130, 246, 0.8)
      )
      no-repeat fixed,
    url("../../images/house5.webp") center/cover no-repeat fixed;
  color: #fff;
  padding: clamp(60px, 12vh, 120px) 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
}
.hero::before {
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at center,
    transparent 0,
    rgba(0, 0, 0, 0.3) 100%
  );
  z-index: 1;
}
.stat-card::before,
.team-member::before,
.value-card::before {
  content: "";
  top: 0;
  left: -100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left var(--transition-slow);
  width: 100%;
}
.container {
  max-width: min(1200px, 95vw);
  margin: 0 auto;
  padding: 0 clamp(15px, 3vw, 20px);
  z-index: 2;
}
.hero h1 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  line-height: 1.2;
  margin: 0 auto var(--spacing-md);
  max-width: 900px;
  font-weight: 800;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
  animation: 1s fadeInUp;
}
.hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  margin-bottom: var(--spacing-md);
  font-weight: 500;
  opacity: 0.95;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 400;
  opacity: 0.9;
  letter-spacing: 0.5px;
  max-width: 800px;
  margin: 0 auto;
}
.tagline-item {
  display: inline-block;
  margin: var(--spacing-xs) clamp(5px, 2vw, 10px);
  padding: clamp(6px, 1.5vw, 8px) clamp(12px, 3vw, 16px);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.section {
  padding: clamp(40px, 8vh, 80px) 0;
}
.stat-card,
.timeline-content {
  padding: clamp(20px, 4vh, 30px);
  border-radius: var(--border-radius-xl);
}
.section-header {
  margin-bottom: clamp(30px, 6vh, 60px);
}
.section h2,
.section-header h2 {
  font-size: clamp(2rem, 5vw, 2.5rem);
  margin-bottom: clamp(15px, 3vh, 30px);
  text-align: center;
  color: #1e40af;
  font-weight: 700;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.team-member-info h3,
.value-card h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
  gap: clamp(15px, 4vw, 30px);
  margin: clamp(30px, 6vh, 60px) 0;
}
.stat-card {
  background: #fff;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  min-height: clamp(140px, 20vh, 180px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.stat-card:hover,
.team-member:hover,
.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}
.award-item:hover,
.cta-primary:hover {
  transform: translateY(-3px);
}
.award-item:hover,
.intro-text,
.timeline-content {
  box-shadow: var(--shadow-md);
}
.stat-card:hover::before,
.team-member:hover::before,
.value-card:hover::before {
  left: 100%;
}
.award-item:focus,
.cta-primary:focus,
.stat-card:focus,
.stat-item:focus,
.team-member:focus,
.testimonial-card:focus,
.value-card:focus {
  outline: #3b82f6 solid 3px;
  outline-offset: 2px;
}
.stat-number {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #dc2626;
  display: block;
  margin-bottom: var(--spacing-xs);
  line-height: 1;
}
.stat-label {
  color: #1e40af;
  font-weight: 700;
  margin-top: var(--spacing-sm);
  font-size: clamp(0.9rem, 2vw, 1rem);
}
.story-section {
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  padding: clamp(40px, 8vh, 80px) 0;
}
.story-intro {
  max-width: 900px;
  margin: 0 auto clamp(40px, 8vh, 80px);
}
.intro-text {
  font-size: clamp(1.1rem, 2.5vw, 1.2rem);
  line-height: 1.7;
  color: #374151;
  background: #fff;
  padding: clamp(25px, 5vh, 40px);
  border-radius: var(--border-radius-lg);
  margin-bottom: var(--spacing-lg);
  max-width: 100%;
}
.timeline {
  padding: clamp(30px, 6vh, 60px) 0;
  max-width: 1000px;
  margin: 0 auto;
}
.timeline-item {
  display: flex;
  flex-flow: column wrap;
  gap: var(--spacing-md);
  margin-bottom: clamp(25px, 5vh, 45px);
  align-items: center;
}
.team-grid,
.values-grid {
  margin: clamp(30px, 6vh, 60px) 0;
  gap: clamp(20px, 4vw, 30px);
}
.timeline-year {
  background: #1e40af;
  position: absolute;
  top: -14.5%;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  padding: clamp(2px, 1vh, 5px) clamp(10px, 2vw, 15px);
  border-radius: var(--border-radius-full);
  font-weight: 700;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  min-width: clamp(80px, 15vw, 120px);
  z-index: 3;
}
.timeline-content {
  flex: 1;
  background: #fff;
  width: 100%;
  max-width: 900px;
  padding-top: clamp(25px, 5vh, 35px);
}
.team-member,
.value-card {
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
}
.team-member {
  background: #fff;
  min-height: clamp(320px, 50vh, 400px);
}
.team-member::before {
  position: absolute;
  z-index: 1;
}
.team-member-image {
  height: clamp(200px, 30vh, 280px);
  background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(3rem, 8vw, 5rem);
  color: #6366f1;
  position: relative;
}
.team-member-info {
  padding: clamp(20px, 4vh, 30px);
}
.team-member-info h3 {
  color: #1e40af;
  margin-bottom: 5px;
}
.team-member-info .role,
.value-card h3,
.value-icon {
  margin-bottom: var(--spacing-md);
}
.team-member-info .role {
  color: #6b7280;
  font-size: clamp(0.9rem, 2vw, 1rem);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
}
.value-card {
  background: #fff;
  padding: clamp(25px, 4vh, 35px);
  min-height: clamp(200px, 30vh, 250px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.value-icon {
  font-size: clamp(2.5rem, 6vw, 3rem);
  color: #3b82f6;
}
.cta-link,
.value-card h3 {
  color: #1e40af;
}
.bg-gray {
  background: linear-gradient(135deg, #f8fafc 0, #e2e8f0 100%);
}
.awards-section {
  background: #fff;
  padding: clamp(40px, 8vh, 80px) 0;
}
.awards-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(20px, 4vw, 30px);
  flex-wrap: wrap;
  margin: clamp(30px, 6vh, 60px) 0;
}
.award-item {
  padding: clamp(12px, 3vh, 18px);
  border: 1px solid #eee;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  min-width: clamp(120px, 20vw, 160px);
}
.award-icon {
  width: 100%;
  max-width: clamp(120px, 20vw, 160px);
  height: clamp(80px, 15vh, 120px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-md);
  font-size: clamp(2.5rem, 5vw, 3rem);
  color: #fff;
}
.testimonial-showcase {
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  color: #fff;
  padding: clamp(40px, 8vh, 80px) 0;
  position: relative;
}
.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: clamp(25px, 4vh, 35px);
  border-radius: var(--border-radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin: var(--spacing-md) 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.cta-primary {
  display: inline-block;
  background: linear-gradient(135deg, #dc2626, #ef4444);
  color: #fff;
  padding: clamp(16px, 3vh, 22px) clamp(30px, 6vw, 45px);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 700;
  text-decoration: none;
  border-radius: 60px;
  margin: 0 var(--spacing-md) var(--spacing-sm);
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
  position: relative;
  cursor: pointer;
  border: none;
  font-family: inherit;
  min-width: clamp(200px, 30vw, 280px);
}
.cta-primary:hover {
  box-shadow: 0 15px 40px rgba(220, 38, 38, 0.5);
}
.cta-primary:active {
  transform: translateY(-1px);
}
.cta-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.community-section {
  background: #fff;
  padding: clamp(60px, 10vh, 120px) 0;
}
.stats-wrapper {
  display: flex;
  flex-flow: column wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-around;
  flex: 1 1 100%;
  width: 100%;
}
.stats-card-layout {
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  flex: 1 1 100%;
  max-width: 200px;
}
.story-intro-wrapper {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
}
.story-intro-text {
  font-size: 1.2rem;
}
.timeline-title {
  color: #1e40af;
  margin-bottom: 10px;
}
.team-description {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.1rem;
}
.award-image,
.team-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.awards-section-header {
  color: #1e40af;
  font-weight: 700;
}
.testimonial-header {
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
}
.testimonials-wrapper {
  max-width: 900px;
  margin: 0 auto;
}
.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 15px;
}
.partners-container {
  display: flex;
  gap: 20px;
  flex-flow: column;
}
.partners-group {
  gap: 20px;
}
.cta-description {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 40px;
}
.cta-links {
  margin-top: 30px;
}
@media (max-width: 768px) {
  .community-section {
    padding: clamp(30px, 6vh, 60px) 0;
  }
  .hero {
    padding: clamp(50px, 10vh, 80px) 0;
    min-height: 50vh;
  }
  .tagline-item {
    display: block;
    margin: 5px auto;
    text-align: center;
    max-width: 200px;
  }
  .timeline-item {
    flex-direction: column;
  }
  .timeline-content {
    margin-left: 0;
    margin-top: var(--spacing-md);
  }
  .cta-primary {
    display: block;
    margin: var(--spacing-sm) auto;
    width: 90%;
    max-width: 320px;
  }
  .team-grid,
  .values-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  .awards-grid {
    justify-content: center;
    gap: var(--spacing-md);
  }
}
.community-intro {
  max-width: 900px;
  margin: 0 auto;
  margin-bottom: clamp(40px, 8vh, 80px);
}
.community-description {
  font-size: clamp(1.1rem, 2.5vw, 1.2rem);
  color: #374151;
  line-height: 1.7;
  margin-bottom: clamp(25px, 5vh, 35px);
}
.community-mission {
  background: #f0f9ff;
  border: 1px solid #e0f2fe;
  border-left: 4px solid #1e40af;
  padding: clamp(20px, 4vh, 30px);
  border-radius: var(--border-radius-md);
  font-style: italic;
  color: #1e40af;
  font-size: clamp(1rem, 2vw, 1.05rem);
}
.stats-container {
  margin: clamp(40px, 8vh, 80px) 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
  gap: clamp(15px, 3vw, 25px);
  margin-bottom: clamp(40px, 8vh, 60px);
}
.stat-item {
  background: #fff;
  padding: clamp(20px, 4vh, 35px) clamp(15px, 3vw, 25px);
  border-radius: var(--border-radius-md);
  border: 1px solid #e5e7eb;
  box-shadow: var(--shadow-sm);
  min-height: clamp(120px, 18vh, 160px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.stat-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.stat-item .stat-number {
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  font-weight: 700;
  color: #dc2626;
  display: block;
  margin-bottom: var(--spacing-xs);
}
.stat-item .stat-label {
  color: #374151;
  font-weight: 500;
  font-size: clamp(0.85rem, 2vw, 0.95rem);
}
.partners-section {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--border-radius-lg);
  padding: clamp(30px, 6vh, 50px);
  max-width: 900px;
  margin: 0 auto;
}
.partners-title {
  color: #1e40af;
  font-size: clamp(1.2rem, 2.5vw, 1.4rem);
  font-weight: 600;
  margin-bottom: clamp(20px, 4vh, 30px);
}
.partners-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(180px, 100%), 1fr));
  gap: clamp(8px, 2vw, 12px);
}
.partner-name {
  color: #4b5563;
  font-size: clamp(0.8rem, 2vw, 0.9rem);
  padding: clamp(6px, 1.5vh, 10px) clamp(10px, 2vw, 15px);
  background: #fff;
  border-radius: var(--border-radius-sm);
  border: 1px solid #d1d5db;
  text-align: center;
  display: flex;
  flex-flow: row wrap;
  place-content: center;
  align-items: center;
}
@media (max-width: 1024px) {
  .hero {
    background-attachment: scroll;
  }
}
.award-item,
.stats-row {
  width: 100%;
  display: flex;
}
@media (max-width: 480px) {
  .community-section {
    padding: clamp(15px, 4vh, 40px) 0;
  }
  .hero {
    padding: clamp(40px, 8vh, 60px) 0;
    min-height: 45vh;
  }
  .container {
    padding: 0 clamp(10px, 2vw, 15px);
  }
  .stats-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  .timeline {
    padding: var(--spacing-lg) 0;
  }
  .partners-list {
    grid-template-columns: 1fr;
    max-width: 250px;
    margin: 0 auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0s !important;
  }
  .hero::before,
  .stat-card::before,
  .team-member::before,
  .value-card::before {
    display: none;
  }
}
@media print {
  .hero {
    background: #1e40af !important;
    color: #fff !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  .stat-card,
  .team-member,
  .value-card {
    -moz-column-break-inside: avoid;
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ccc;
  }
}
.stats-row {
  flex-flow: row wrap;
  gap: 1rem;
  align-items: center;
  flex: 1 1 100%;
  justify-content: space-between;
  max-width: 700px;
}
@media (max-width: 768px) {
  .stats-row {
    flex-direction: column;
  }
}
.awards-grid {
  display: flex;
  flex-flow: row wrap;
  align-items: stretch;
  gap: 1rem;
}
.award-item {
  flex: 1 1 100%;
  max-width: 175px;
  flex-direction: column;
  justify-content: space-between;
}
