* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

body {
  background: linear-gradient(135deg, #f0f5ff 0%, #f8fbff 100%);
  color: #1a2332;
  line-height: 1.6;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header & Navigation */
header {
  background: white;
  box-shadow: 0 4px 15px rgba(0, 30, 84, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #1a2980 0%, #26d0ce 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  font-weight: bold;
}

/* 
.logo-text {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(90deg, #1a2980 0%, #26d0ce 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
} */

.logo-text {
  font-size: 1.8rem;
  font-weight: 800;
  color: unset;
  color: rgb(99, 185, 255);
  cursor: pointer;
}

.logo-text span{
  color: rgba(185, 185, 247, 1);
}

.nav-links {
  display: flex;
  gap: 35px;
}

.nav-links a {
  text-decoration: none;
  color: #4a5568;
  font-weight: 600;
  font-size: 1.05rem;
  transition: color 0.3s;
  position: relative;
}

.nav-links a:hover {
  color: #1a2980;
}

.nav-links a.active {
  color: #1a2980;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #1a2980 0%, #26d0ce 100%);
  border-radius: 2px;
}

/* Hero Section */
.hero {
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 41, 128, 0.05) 0%, rgba(38, 208, 206, 0.05) 100%);
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  z-index: -1;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #1a2980 0%, #26d0ce 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.4rem;
  color: #4a5568;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(90deg, #1a2980 0%, #26d0ce 100%);
  color: white;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 20px;
}

/* Content Sections */
.section {
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a2980;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #1a2980 0%, #26d0ce 100%);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #4a5568;
  margin-bottom: 50px;
  max-width: 800px;
}

/* Mission Section */
.mission-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.mission-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #4a5568;
}

.mission-text p {
  margin-bottom: 25px;
}

.mission-image {
  background: linear-gradient(135deg, #1a2980 0%, #26d0ce 100%);
  border-radius: 20px;
  padding: 40px;
  color: white;
  box-shadow: 0 20px 40px rgba(26, 41, 128, 0.15);
}

.mission-image h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mission-image ul {
  list-style: none;
  margin-top: 20px;
}

.mission-image li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.mission-image li i {
  margin-top: 3px;
  color: #a5f3eb;
}

/* Philosophy Section */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.philosophy-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #1a2980;
}

.philosophy-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.philosophy-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #1a2980 0%, #26d0ce 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: white;
  font-size: 1.8rem;
}

.philosophy-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #1a2980;
}

/* Team/Founder Section */
.founder-section {
  background: linear-gradient(135deg, #f8fafc 0%, #f0f7ff 100%);
  border-radius: 20px;
  padding: 60px;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

.founder-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(26, 41, 128, 0.05) 0%, rgba(38, 208, 206, 0.05) 100%);
  border-radius: 50%;
  transform: translate(30%, -30%);
}

.founder-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.founder-text h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #1a2980;
}

.founder-quote {
  font-style: italic;
  color: #4a5568;
  border-left: 4px solid #26d0ce;
  padding-left: 20px;
  margin: 30px 0;
  font-size: 1.2rem;
}

.founder-image {
  display: flex;
  justify-content: center;
}

.founder-avatar {
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, #1a2980 0%, #26d0ce 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 4rem;
  box-shadow: 0 20px 40px rgba(26, 41, 128, 0.2);
}

/* Impact Stats
.stats-section {
  background: linear-gradient(135deg, #1a2980 0%, #26d0ce 100%);
  border-radius: 20px;
  padding: 60px 40px;
  color: white;
  text-align: center;
  margin-top: 80px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.stat-item h3 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.stat-item p {
  font-size: 1.1rem;
  opacity: 0.9;
} */

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 80px 0;
}

.cta-box {
  background: white;
  padding: 60px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #1a2980;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

.btn {
  padding: 16px 35px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(90deg, #1a2980 0%, #26d0ce 100%);
  color: white;
  box-shadow: 0 8px 20px rgba(26, 41, 128, 0.25);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(26, 41, 128, 0.35);
}

.btn-secondary {
  background: white;
  color: #1a2980;
  border: 2px solid #1a2980;
}

.btn-secondary:hover {
  background: #1a2980;
  color: white;
  transform: translateY(-3px);
}

/* Footer */
footer {
  background: #1a2332;
  color: #a0aec0;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h3 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 25px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #a0aec0;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #26d0ce;
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #2d3748;
  color: #718096;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
  .mission-content,
  .founder-content {
      grid-template-columns: 1fr;
      gap: 40px;
  }
  
  .hero h1 {
      font-size: 2.8rem;
  }
  
  .section-title {
      font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .nav-container {
      flex-direction: column;
      gap: 20px;
  }
  
  .nav-links {
      gap: 20px;
      flex-wrap: wrap;
      justify-content: center;
  }
  
  .hero {
      padding: 60px 0 40px;
  }
  
  .hero h1 {
      font-size: 2.3rem;
  }
  
  .hero-subtitle {
      font-size: 1.2rem;
  }
  
  .section {
      padding: 60px 0;
  }
  
  .founder-section,
  .cta-box {
      padding: 40px 25px;
  }
  
  .stats-grid {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .hero h1 {
      font-size: 2rem;
  }
  
  .tagline {
      font-size: 1rem;
      padding: 10px 20px;
  }
  
  .btn {
      width: 100%;
      justify-content: center;
  }
  
  .cta-buttons {
      flex-direction: column;
  }
  
  .stats-grid {
      grid-template-columns: 1fr;
  }
}