@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700&family=Satisfy&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap"); 

/* Animation Keyframes */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* about.css */

/* General Styles */
body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Styling */
.about-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.about-section:nth-child(even) {
  background: linear-gradient(135deg, #f9f9f9, #f0f8ff);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  animation: slideUp 0.8s ease-out forwards;
}

.section-subtitle {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #26d0ce;
  letter-spacing: 3px;
  display: block;
  margin-bottom: 10px;
  text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
}

.section-title {
  font-family: 'Satisfy', cursive;
  font-size: 48px;
  background: linear-gradient(to right, #1a2980, #26d0ce);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 15px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, #ffaa00, #ff6a00);
  margin: 15px auto 0;
  border-radius: 3px;
}

.section-description {
  max-width: 700px;
  margin: 0 auto;
  color: #555;
  font-size: 17px;
  line-height: 1.8;
}

/* Hero Section */
.about-hero {
  position: relative;
  height: 70vh;
  min-height: 550px;
  background-image: url("https://images.unsplash.com/photo-1488646953014-85cb44e25828?w=1200&h=600&fit=crop");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
  animation: fadeIn 1.5s ease-out;
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 41, 128, 0.8), rgba(38, 208, 206, 0.7));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.about-hero-content {
  max-width: 800px;
  animation: slideUp 1s ease-out forwards;
}

.about-hero-content h1 {
  font-family: 'Satisfy', cursive;
  font-size: 70px;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.about-hero-content p {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
  color: #fff;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

/* Overview Section */
.about-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: center;
}

.about-content {
  flex: 1;
  min-width: 300px;
  animation: fadeIn 1.2s ease-out;
}

.about-image {
  flex: 1;
  min-width: 300px;
  animation: fadeIn 1.5s ease-out;
}

.about-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
  transform: rotate(-2deg);
}

.about-image:hover img {
  transform: rotate(0) scale(1.02);
  box-shadow: 0 20px 40px rgba(26, 41, 128, 0.15);
}

.lead-text {
  font-size: 22px;
  font-weight: 500;
  color: #1a2980;
  margin-bottom: 20px;
  line-height: 1.5;
}

.stats-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}

.stat-item {
  flex: 1;
  min-width: 120px;
  padding: 25px 15px;
  text-align: center;
  background: linear-gradient(145deg, #ffffff, #f0f8ff);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.stat-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(38, 208, 206, 0.2);
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #1a2980, #26d0ce);
}

.stat-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 42px;
  font-weight: 700;
  background: linear-gradient(to right, #ffaa00, #ff6a00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 15px;
  color: #555;
  font-weight: 500;
}

/* Timeline Section */
.timeline-section {
  background: linear-gradient(135deg, #f9feff, #f0f7ff);
  position: relative;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: linear-gradient(to bottom, #1a2980, #26d0ce);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 70px;
  width: 100%;
  clear: both;
}

.timeline-dot {
  position: absolute;
  top: 0;
  left: 50%;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #ffaa00, #ff6a00);
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 0 0 4px rgba(255, 170, 0, 0.2);
  animation: pulse 2s infinite;
}

.timeline-date {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #1a2980, #26d0ce);
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  margin-top: -40px;
  box-shadow: 0 5px 15px rgba(26, 41, 128, 0.2);
}

.timeline-content {
  position: relative;
  width: 45%;
  padding: 25px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(26, 41, 128, 0.15);
}

.timeline-item:nth-child(odd) .timeline-content {
  float: left;
  margin-right: 5%;
}

.timeline-item:nth-child(even) .timeline-content {
  float: right;
  margin-left: 5%;
}

.timeline-content h3 {
  color: #1a2980;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  margin-top: 0;
  margin-bottom: 10px;
}

.timeline-content p {
  margin: 0;
  color: #555;
}

/* Mission, Vision, Values */
.mission-section {
  background: linear-gradient(135deg, #f9f9f9, #f0f7ff);
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.mission-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.mission-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, #1a2980, #26d0ce);
}

.mission-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(26, 41, 128, 0.12);
}

.mission-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f0f8ff, #e0f4ff);
  border-radius: 50%;
  margin-bottom: 20px;
  animation: float 4s infinite;
}

.mission-icon i {
  font-size: 32px;
  background: linear-gradient(to right, #1a2980, #26d0ce);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mission-card h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  color: #1a2980;
  margin-bottom: 15px;
}

.mission-card p {
  color: #555;
  line-height: 1.7;
}

.values-list {
  list-style: none;
  padding: 0;
  text-align: left;
}

.values-list li {
  padding: 10px 0;
  color: #555;
  font-size: 16px;
  display: flex;
  align-items: center;
}

.values-list li i {
  width: 25px;
  height: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a2980, #26d0ce);
  color: #fff;
  border-radius: 50%;
  margin-right: 15px;
  font-size: 12px;
}

/* Team Section */
.team-section {
  background-color: #fff;
  position: relative;
}

.team-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1531366936337-7c912a4589a7?w=800&h=400&fit=crop') repeat;
  opacity: 0.03;
  pointer-events: none;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.team-member {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
  transition: all 0.4s ease;
  animation: fadeIn 0.5s ease-out forwards;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(26, 41, 128, 0.15);
}

.member-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.team-member:hover .member-image img {
  transform: scale(1.08);
}

.member-social {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  padding: 15px 0;
  background: linear-gradient(to top, rgba(26, 41, 128, 0.9), rgba(38, 208, 206, 0.85));
  display: flex;
  justify-content: center;
  gap: 15px;
  transition: all 0.4s ease;
  opacity: 0;
}

.team-member:hover .member-social {
  bottom: 0;
  opacity: 1;
}

.member-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: white;
  font-size: 16px;
  transition: all 0.3s ease;
}

.member-social a:hover {
  background: #fff;
  color: #1a2980;
  transform: translateY(-3px);
}

.member-info {
  padding: 20px;
  text-align: center;
}

.member-info h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  color: #1a2980;
  margin: 0 0 5px;
}

.member-role {
  font-size: 14px;
  color: #26d0ce;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Team Highlight */
.team-highlight {
  margin-top: 60px;
  padding: 40px;
  background: linear-gradient(135deg, rgba(26, 41, 128, 0.03), rgba(38, 208, 206, 0.05));
  border-radius: 15px;
  text-align: center;
}

.team-highlight h3 {
  font-family: 'Satisfy', cursive;
  font-size: 32px;
  color: #1a2980;
  margin-bottom: 20px;
}

.team-highlight p {
  color: #555;
  font-size: 17px;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

.btn-join {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(135deg, #1a2980, #26d0ce);
  color: #fff;
  border-radius: 30px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(26, 41, 128, 0.2);
}

.btn-join:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(26, 41, 128, 0.3);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, rgba(26, 41, 128, 0.9), rgba(38, 208, 206, 0.85)), url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1200&h=600&fit=crop');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: 'Satisfy', cursive;
  font-size: 48px;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

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

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 30px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #fff;
  color: #1a2980;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .section-title {
    font-size: 36px;
  }
  
  .about-hero-content h1 {
    font-size: 48px;
  }
  
  .timeline::before {
    left: 30px;
  }
  
  .timeline-dot {
    left: 30px;
  }
  
  .timeline-date {
    left: 30px;
    transform: translateX(0);
    top: -50px;
  }
  
  .timeline-content {
    width: calc(100% - 80px);
    float: right !important;
    margin-left: 80px !important;
    margin-right: 0 !important;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 60px 0;
  }
  
  .about-hero-content h1 {
    font-size: 36px;
  }
  
  .about-hero-content p {
    font-size: 18px;
  }
  
  .stat-item {
    min-width: 45%;
  }
  
  .mission-card {
    padding: 30px 20px;
  }
  
  .cta-content h2 {
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 30px;
  }
  
  .stat-item {
    min-width: 100%;
  }
  
  .mission-card {
    margin-bottom: 20px;
  }
}

/* Partners & Achievements */
.partners-section {
    background: linear-gradient(135deg, #f9f9f9, #f0f7ff);
    padding: 60px 0;
}

.awards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.award {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.award:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(26, 41, 128, 0.1);
}

.award-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a2980, #26d0ce);
    color: #fff;
    border-radius: 50%;
    font-size: 24px;
}

.award-info h3 {
    margin: 0 0 5px;
    color: #1a2980;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
}

.award-info p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.partners-container {
    text-align: center;
}

.partners-container h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 24px;
    color: #1a2980;
    margin-bottom: 30px;
}

.partners-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.partner-logo {
    flex: 0 0 150px;
    height: 80px;
    padding: 15px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(26, 41, 128, 0.1);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Testimonials */
.testimonials-section {
    background: #fff;
    position: relative;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 4px solid #26d0ce;
    background: linear-gradient(to bottom right, #ffffff, #f5f9ff);
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(26, 41, 128, 0.1);
}

.testimonial-rating {
    color: #ffaa00;
    margin-bottom: 15px;
}

.testimonial-content p {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    margin: 0 0 5px;
    color: #1a2980;
    font-family: 'Barlow Condensed', sans-serif;
}

.testimonial-author p {
    margin: 0;
    color: #666;
    font-size: 14px;
}
 