/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  /* Typography */
  h1,
  h2,
  h3 {
    font-weight: 700;
    line-height: 1.2;
  }
  
  h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
  }
  
  h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }
  
  h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  p {
    margin-bottom: 1.5rem;
  }
  
  .section-title {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  /* Animation Classes */
  .reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
  }
  
  .reveal.active {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Hero Section */
  .hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    color: white;
    overflow: hidden;
    background: url("../assets/abou1.jpg") center / cover no-repeat;
  }
  
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
  }
  
  .hero .container {
    position: relative;
    z-index: 2;
  }
  
  .hero-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.25rem;
  }
  
  .scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    animation: bounce 2s infinite;
  }
  
  .scroll-text {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
  }
  
  .scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid white;
    border-radius: 20px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
  }
  
  .scroll-dot {
    width: 6px;
    height: 10px;
    background-color: white;
    border-radius: 50%;
    margin-top: 8px;
    animation: pulse 2s infinite;
  }
  
  @keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
      transform: translateY(0) translateX(-50%);
    }
    40% {
      transform: translateY(-10px) translateX(-50%);
    }
    60% {
      transform: translateY(-5px) translateX(-50%);
    }
  }
  
  @keyframes pulse {
    0% {
      opacity: 0.5;
    }
    50% {
      opacity: 1;
    }
    100% {
      opacity: 0.5;
    }
  }
  
  /* Mission Section */
  .mission {
    padding: 100px 0;
    background: linear-gradient(to bottom, #fff, #f8f9fa);
  }
  
  .mission-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  
  .mission-text {
    font-size: 1.125rem;
  }
  
  /* Features Section */
  .features {
    padding: 100px 0;
    background-color: #f8f9fa;
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
  }
  
  .feature-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(79, 70, 229, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }
  
  .feature-icon i {
    font-size: 24px;
    color: #4f46e5;
  }
  
  /* Partnership Section */
  .partnership {
    padding: 100px 0;
    background-color: white;
  }
  
  .partnership-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .partnership-text {
    font-size: 1.125rem;
  }
  
  /* CTA Section */
  .cta {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f8f9fa, #fff);
    text-align: center;
  }
  
  .cta-content {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .cta-button {
    display: inline-block;
    background-color: #4f46e5;
    color: white;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 4px 14px rgba(79, 70, 229, 0.4);

  }
  .cta-button > a {
    color: white !important;
    text-decoration: none !important;
  }

  
  .cta-button:hover {
    background-color: #4338ca;
    transform: scale(1.05);
  }
  
  /* Media Queries */
  @media (min-width: 768px) {
    h1 {
      font-size: 4.5rem;
    }
  
    .mission-content,
    .partnership-content {
      flex-direction: row;
      align-items: center;
    }
  
    .mission-image,
    .partnership-image {
      flex: 1;
    }
  
    .mission-text,
    .partnership-text {
      flex: 1;
    }
  
    .partnership-content {
      flex-direction: row-reverse;
    }
  }
  
  @media (min-width: 1024px) {
    h1 {
      font-size: 5rem;
    }
  }
  
  