:root {
    --primary-color: #e67e22;
    --secondary-color: #d35400;
    --background-color: #f4f4f4;
    --text-color: #333;
    --light-gray: #f4f4f4;
    --white: #ffffff;
    --transition: all 0.3s ease;
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    background-color: var
    font-family: "Arial", sans-serif;
    line-height: 1.6;
    color: var(--text-color);
  }

  a{
    text-decoration: none;
    color:var(--primary-color);
  }

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

  /* Navigation */
  nav {
    background-color: var(--white);
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
  }

  .nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
  }

  .nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border-radius: 5px;
  }

  .nav-links a:hover,
  .nav-links a.active {
    background-color: var(--primary-color);
    color: var(--white);
  }

/* Hero Section with Slider */
.hero {
    height: 80vh;
    margin-top: 74px;
    position: relative;
    overflow: hidden;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slider {
    display: flex;
    height: 100%;
    width: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    flex: 1 0 100%;
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 2;
    width: 100%;
    padding: 0 20px;
}

.text-overlay h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
}

.text-overlay p {
    font-size: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 0.3s;
}

/* Add overlay to make text more readable */
.slider-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

  .hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
  }

  .hero p {
    font-size: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 0.3s;
  }

  /* Sections */
  section {
    padding: 5rem 0;
  }

  .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
  }

  /* Mission Section */
  .mission-content {
    display: flex;
    align-items: center;
    gap: 4rem;
  }

  .mission-text {
    font-size: 1.2rem;
    line-height: 1.8;
  }

  .mission-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }

  .stat {
    text-align: center;
  }

  .counter {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
  }

  /* Values Section */
  .values-section {
    background-color: var(--light-gray);
  }

  .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }

  .value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  }

  .value-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
  }

  /* Team Section */
  .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
  }

  .team-member {
    text-align: center;
  }

  .member-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--primary-color);
  }

  .member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
  }

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

  .team-member h3 {
    margin: 1rem 0 0.5rem;
  }

  .social-links {
    margin-top: 1rem;
  }

  .social-links a {
    color: var(--text-color);
    margin: 0 0.5rem;
    font-size: 1.2rem;
    transition: var(--transition);
  }

  .social-links a:hover {
    color: var(--primary-color);
  }

  /* Timeline Section */
  .timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
  }

  .timeline::after {
    content: "";
    position: absolute;
    width: 2px;
    background: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
  }

  .timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
  }

  .timeline-item:nth-child(odd) {
    left: 0;
  }

  .timeline-item:nth-child(even) {
    left: 50%;
  }

  .timeline-content {
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
  }

  /* CTA Section */
  .cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    padding: 5rem 0;
  }

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

  .cta-buttons {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
  }

  .btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: var(--transition);
  }

  .primary-btn {
    background: var(--primary-color);
    color: var(--white);
  }

  .secondary-btn {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
  }

  .primary-btn:hover,
  .secondary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }

  /* Footer */
  footer {
    background: #333;
    color: var(--white);
    padding: 4rem 0 2rem;
  }

  .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .footer-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
  }

  .footer-section ul {
    list-style: none;
  }

  .footer-section ul li {
    margin-bottom: 0.5rem;
  }

  .footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
  }

  .footer-section a:hover {
    color: var(--primary-color);
  }

  .footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

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

  .scroll-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s ease;
  }

  .scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .hero h1 {
      font-size: 2.5rem;
    }

    .hero p {
      font-size: 1.2rem;
    }

    .timeline::after {
      left: 31px;
    }

    .timeline-item {
      width: 100%;
      padding-left: 70px;
      padding-right: 25px;
    }

    .timeline-item:nth-child(even) {
      left: 0;
    }
    nav {
      padding: 1rem;
    }
    .nav-links {
      display: none;
    }
  }

  @media (max-width: 480px) {
    .section-title {
      font-size: 2rem;
    }
    .cta-buttons {
      flex-direction: column;
    }
    .btn {
      width: 100%;
    }
  }
