body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  color: #333;
  background: #fff;
}

/* HERO */
.about-hero {
    
  position: relative;
  height: 70vh;
  display: flex;
  padding-top: 96px;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background: linear-gradient(120deg, #0A84FF 0%, #4fc3ff 50%, #e0f2ff 100%);
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
  animation: fadeInUp 1.2s ease forwards;
}

.hero-content h1 {
  font-size: 50px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 20px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 40px;
}

/* animation */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}


/* STORY */
.our-story {
    
  padding: 100px 20px;
}

.our-story .container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.story-text h2 {
  color: #0A84FF;
  font-size: 32px;
  margin-bottom: 20px;
}

.story-text p {
  font-size: 17px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 15px;
}

.story-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* MISSION */
.mission {
    
  position: relative;
  background-size: 300% 300%;
  animation: missionLight 25s ease infinite;
  text-align: center;
  padding: 120px 20px;
  overflow: hidden;
}

.mission-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.mission h2 {
  font-size: 40px;
  font-weight: 800;
  color: #0A84FF;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
  position: relative;
}

.mission h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #007bff, #0A84FF);
  margin: 16px auto 0;
  border-radius: 3px;
}

.mission p {
  font-size: 18px;
  color: #555;
  max-width: 700px;
  margin: 0 auto 0px;
  line-height: 1.7;
}

.mission-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.mission-card {
  background: #fff;
  border: 1px solid rgba(10,132,255,0.15);
  border-radius: 16px;
  width: 320px;
  padding: 50px 30px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: all 0.4s ease;
  position: relative;
}

.mission-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(10,132,255,0.15);
}

.icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #007bff, #0A84FF);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #0A84FF;
  font-size: 32px;
  box-shadow: 0 6px 20px rgba(10,132,255,0.25);
  transition: transform 0.3s ease;
}

.mission-card:hover .icon-circle {
  transform: rotate(10deg) scale(1.05);
}

.mission-card h3 {
  font-size: 20px;
  color: #0A84FF;
  margin-bottom: 10px;
}

.mission-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .mission h2 { font-size: 32px; }
  .mission-grid { gap: 24px; }
  .mission-card { width: 100%; max-width: 340px; }
}


/* === CORE TEAM SECTION === */
.core-team {
  
  text-align: center;
  padding: 120px 20px;
}

.core-team h2 {
  font-size: 38px;
  font-weight: 800;
  color: #0A84FF;
}

.core-team .subtitle {
  color: #555;
  font-size: 18px;
  margin-top: 8px;
  margin-bottom: 60px;
}

.core-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.core-member {
  background: #ffffff;
  border-radius: 22px;
  padding: 30px 25px 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  max-width: 320px;
  position: relative;
  overflow: hidden;
}

.core-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(10,132,255,0.15);
}

.core-member-photo{
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 20px;
}

.core-member-photo img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.core-member:hover .core-member-photo img {
  transform: scale(1.07);
  filter: brightness(1.1)
}

.core-member h3 {
  font-size: 20px;
  font-weight: 700;
  color: #222;
  margin-bottom: 6px;
}

.core-member .role {
  font-size: 15px;
  font-weight: 600;
  color: #0A84FF;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.core-member .desc {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  padding: 0 10px;
}

/* === OUR TEAM SECTION === */
.our-team {
  
  padding: 120px 20px;
  text-align: center;
}

.our-team h2 {
  color: #0A84FF;
  font-size: 36px;
  font-weight: 800;
}

.our-team .subtitle {
  color: #555;
  font-size: 18px;
  margin: 10px 0 60px;
}

.team-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.team-item {
  background: #fff;
  border-radius: 16px;
  padding: 40px 25px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  border: 1px solid rgba(10,132,255,0.1);
  transition: 0.3s ease;
}

.team-item:hover {
  transform: scale(1.07) rotate(1deg);
  box-shadow: 0 12px 25px rgba(10,132,255,0.1);
}

.team-item i {
  font-size: 34px;
  color: #0A84FF;
  margin-bottom: 16px;
  transition: 0.3s ease;
}

.team-item h3 {
  font-size: 18px;
  color: #111;
  margin-bottom: 10px;
}

.team-item p {
  color: #555;
  font-size: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .core-member {
    width: 100%;
    max-width: 340px;
  }
}

.team-item:nth-child(odd) {
  background: rgba(255,255,255,0.85);
}
.team-item:nth-child(even) {
  background: rgba(245,250,255,0.95);
}

/* Accent gradient glow behind hover */
.member-card::before {
  content: "";
  position: absolute;
  top: -60%;
  left: -60%;
  width: 220%;
  height: 220%;
  background: radial-gradient(circle, rgba(10,132,255,0.08), transparent 70%);
  transform: scale(0);
  opacity: 0;
  transition: all 0.6s ease;
  z-index: 0;
}

.member-card:hover::before {
  transform: scale(1);
  opacity: 1;
}

/* Ensure content is above the glow */
.member-info, .member-photo {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .team h2 {
    font-size: 30px;
  }
  .team-intro {
    font-size: 16px;
    margin-bottom: 50px;
  }
  .member-card {
    max-width: 90%;
  }
}

/* === SPECIAL THANKS SECTION === */
.special-thanks {
  text-align: center;
  padding: 120px 20px;
  background: linear-gradient(135deg, #f7faff 0%, #eef6ff 100%);
  position: relative;
  overflow: hidden;
}

.special-thanks h2 {
  font-size: 36px;
  font-weight: 800;
  color: #0A84FF;
  margin-bottom: 10px;
}

.special-thanks .subtitle {
  color: #555;
  font-size: 18px;
  margin-bottom: 60px;
}

.thanks-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(10,132,255,0.15);
  border-radius: 20px;
  padding: 50px 40px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  backdrop-filter: blur(14px);
  transition: 0.4s ease;
}

.thanks-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(10,132,255,0.15);
}

.thanks-card img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(0,0,0,0.1);
  flex-shrink: 0;
  transition: 0.4s ease;
}

.thanks-card:hover img{
  transform: scale(1.03);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(10,132,255,0.15);
}

.thanks-text {
  max-width: 500px;
  text-align: left;
}

.thanks-text h3 {
  color: #0A84FF;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.thanks-text p {
  color: #444;
  font-size: 16px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .thanks-card {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .thanks-text {
    text-align: center;
  }

  .thanks-card img {
    width: 140px;
    height: 140px;
  }
}


/* CTA */
.cta {
    
  background: linear-gradient(120deg, #0A84FF 0%, #4fc3ff 50%, #e0f2ff 100%);
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.cta h2 {
  font-size: 34px;
  margin-bottom: 10px;
}

.cta p {
  font-size: 18px;
  margin-bottom: 40px;
}

.cta .btn-primary {
  background: #fff;
  color: #0A84FF;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s;
  text-decoration: none;
}

/* FOUNDER SECTION */
.founder {
    
  background: #fff;
  padding: 120px 20px;
}

.founder-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
  flex-wrap: wrap;
}

.founder-image img {
  width: 320px;
  height: 426px;
  object-fit: cover;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.4s ease;
}

.founder-image img:hover {
  transform: scale(1.05);
}

.founder-text {
  flex: 1;
}

.founder-text h2 {
  color: #0A84FF;
  font-size: 34px;
  margin-bottom: 10px;
}

.founder-text h3 {
  font-size: 26px;
  margin-bottom: 5px;
  color: #222;
}

.founder-text .title {
  color: #777;
  font-weight: 500;
  margin-bottom: 20px;
}

.founder-text p {
  font-size: 17px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 20px;
}

.founder-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

.founder-socials a {
  font-size: 24px;
  color: #0A84FF;
  transition: 0.3s ease;
}

.founder-socials a:hover {
  color: #007bff;
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 900px) {
  .founder-container {
    flex-direction: column;
    text-align: center;
  }

  .founder-image img {
    width: 250px;
    height: 333px;
  }

  .founder-text {
    margin-top: 30px;
  }
}

/* === MOBILE RESPONSIVENESS FIXES === */
@media (max-width: 768px) {

  /* HERO */
  .about-hero {
    height: 60vh;
    padding-top: 120px;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .hero-content p {
    font-size: 16px;
    padding: 0 10px;
  }

  /* STORY */
  .our-story .container {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .story-text h2 {
    font-size: 26px;
  }

  .story-text p {
    font-size: 15px;
  }

  .story-image img {
    width: 90%;
    margin: auto;
  }

  /* MISSION */
  .mission {
    padding: 80px 20px;
  }

  .mission h2 {
    font-size: 28px;
  }

  .mission p {
    font-size: 16px;
  }

  .mission-grid {
    flex-direction: column;
    align-items: center;
  }

  .mission-card {
    width: 90%;
    max-width: 360px;
  }

  /* TEAM */
  .team {
    padding: 80px 20px;
  }

  .team-grid {
    flex-direction: column;
    gap: 40px;
  }

  .member {
    width: 80%;
    max-width: 300px;
    margin: 0 auto;
  }

  /* CTA */
  .cta {
    padding: 80px 20px;
  }

  .cta h2 {
    font-size: 26px;
  }

  .cta p {
    font-size: 16px;
  }

  .cta .btn-primary {
    padding: 12px 22px;
    font-size: 15px;
  }

  /* FOUNDER */
  .founder {
    padding: 80px 20px;
  }

  .founder-container {
    gap: 30px;
  }

  .founder-image img {
    width: 220px;
    height: 293px;
  }

  .founder-text h2 {
    font-size: 28px;
  }

  .founder-text h3 {
    font-size: 22px;
  }

  .founder-text p {
    font-size: 15px;
  }

  .founder-socials a {
    font-size: 22px;
  }
}
