 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, sans-serif;
    }

    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 20px;
      background-color: #F8C574;
      color: #fff;
    }

    .logo {
      font-size: 24px;
      font-weight: bold;
    }

    nav {
      display: flex;
      gap: 15px;
    }

    nav a {
      text-decoration: none;
      color: #fff;
      font-size: 16px;
      transition: color 0.3s;
    }

    nav a:hover {
      color: #f39c12;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
    }

    .hamburger span {
      width: 25px;
      height: 3px;
      background-color: #fff;
      margin: 4px 0;
    }

    @media (max-width: 768px) {
      nav {
        display: none;
        flex-direction: column;
        background-color: #333;
        position: absolute;
        top: 60px;
        right: 20px;
        width: 150px;
        padding: 10px;
        border-radius: 5px;
      }

      nav.active {
        display: flex;
      }

      .hamburger {
        display: flex;
      }
    }


    
  .hero {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* height: 100vh; */
    background: #F8C574;
    color: #fff;
  }

  .hero-content {
    max-width: 700px;
    padding: 20px;
  }

  .hero h1 {
    font-size: 5rem;
    margin-bottom: 20px;
    text-transform:uppercase;
    color: #ff5757;
  }

  .hero p {
    font-size: 1.2rem;
    margin: 20px 0;
    text-transform: uppercase;
    letter-spacing: 10px;
    line-height: 1.8rem;
    color: #ff5757;
  }

  hr {
    border: none;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    #f39c12,
    #f39c12 10px,
    #e74c3c 10px,
    #e74c3c 20px
  );
  margin: 20px 0;
}



.logos {
    display: flex;
    justify-content: center;
    gap: 20px; /* Space between logos */
    margin-top: 20px;
  }

  .logos img {
    width: 150px;
    height: 100px;
    border-radius: 5px;
    background-color: #fff;
    object-fit: fill;
  }

  .logos img:hover {
    transform: scale(1.1); /* Slight zoom on hover */
    transition: transform 0.3s ease;
  }
  
  /* Media Queries for Mobile Responsiveness */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem; /* Further reduce font size for smaller screens */
  }

  .hero p {
    font-size: 0.9rem; /* Reduce font size */
    letter-spacing: 3px; /* Adjust letter spacing */
  }

  .logos img {
    width: 80px; /* Smaller logos for small screens */
    height: 60px;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 10px; /* Reduce padding */
  }

  .hero h1 {
    font-size: 2rem; /* Adjust font size for very small screens */
  }

  .hero p {
    font-size: 0.8rem;
    letter-spacing: 2px;
  }

  .logos img {
    width: 70px;
    height: 50px;
  }
}




  .about {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background-color: #fff; /* White background */
    color: #333; /* Dark text */
  }

  .about-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    gap: 30px;
  }

  .about-text {
    flex: 1;
    min-width: 300px;
    padding: 20px;
  }

  .about-text h2 {
    font-size: 2.5rem;
    color: #ff5757;
    margin-bottom: 20px;
  }
  
  .about-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #555;
  }

  
  .about-text h3 {
    font-size: 1.5rem;
    color: #ff5757;
    margin: 20px 0; 
  }

  .about-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .about-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }


  .why-leaders {
    padding: 40px 20px;
    background-color: #f8f8f8;
    color: #333;
  }

  .why-container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .why-leaders h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #ff5757;
    margin-bottom: 20px;
  }

  .why-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    flex-direction: row-reverse; 
  }

  .why-text {
    flex: 1;
    min-width: 300px;
    font-size: 1.2rem;
    line-height: 1.6;
  }

  .why-text ul {
    margin-top: 15px;
    list-style: disc;
    margin-left: 20px;
  }

  .why-text ul li {
    margin-bottom: 10px;
  }

  .why-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
  }

  .why-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }



  .growth-strategy {
        font-family: Arial, sans-serif;
        margin: 5rem;
    }

    .growth-strategy h2 {
      text-align: center;
      font-size: 2.5rem;
      color: #ff5757;
      margin-bottom: 20px;
    }
    
    .growth-strategy-text{
      text-align: left;
      font-size: 1rem;
      margin-bottom: 20px;
    }

    .plan {
        margin-bottom: 20px;
    }

    .plan h3 {
        font-size: 22px;
        color: #F8C574;
    }

    .plan p {
        font-size: 16px;
        line-height: 1.6;
        color: #333;
    }


    /* Main container styles */
  .benefits-section {
    background-color: #f4f4f4;
    padding: 40px 20px;
    text-align: center;
  }

  /* Heading style */
  .benefits-heading {
    font-size: 2.5em;
    color: #ff5757;
    margin-bottom: 20px;
  }

  /* Grid layout for benefits */
  .benefit-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: left;
  }

  /* Individual benefit card style */
  .benefit-item {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
  }

  /* Image styling */
  .benefit-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
    object-fit: cover;
    max-height: 200px;
  }

  /* Title styling */
  .benefit-title {
    font-size: 1.6em;
    color: #1c1c1c;
    margin-bottom: 10px;
  }

  /* Description text styling */
  .benefit-description {
    font-size: 1.1em;
    color: #555;
  }



  /* Main container styling */
  .grid-section {
    background-color: #f4f4f4;
    padding: 40px 20px;
    text-align: center;
  }

  /* Section heading styling */
  .section-heading {
    font-size: 2.5em;
    color: #ff5757;
    margin-bottom: 30px;
  }

  /* Table header styling */
  .table-header {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background-color: #F8C574;
    color: white;
    padding: 10px;
    font-weight: bold;
    border-radius: 8px 8px 0 0;
  }

  .header-item {
    text-align: center;
    padding: 15px;
    font-size: 1.1em;
  }

  /* Grid container styling */
  .grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    max-width: 100%;
    margin: 0 auto;
  }

  /* Grid item styling */
  .grid-item {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-size: 1.2em;
    color: #333;
    text-align: center;
  }

  
  .grid-container .grid-item:nth-child(3n + 1) {
    font-weight: 700;
  }

  /* Hover effect on grid items */
  .grid-item:hover {
    background-color: #f1f1f1;
    cursor: pointer;
  }

  /* Responsive design for smaller screens */
  @media screen and (max-width: 768px) {
    .grid-container {
      grid-template-columns: 1fr;
    }
  }


  /* General Section Styling */
  .future-vision-section {
    background-color: #f8f9fa;
    padding: 60px 20px;
    text-align: center;
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
  }


  /* Vision Description */
  .vision-description {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 50px;
    line-height: 1.6;
    text-align: center;
  }

  /* Vision Goals Layout */
  .vision-goals {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
  }

  .goal {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: left;
  }

  .goal h3 {
    font-size: 1.6em;
    color: #F8C574;
    margin-bottom: 20px;
  }

  .goal p {
    font-size: 1.1em;
    color: #555;
  }


  /* Responsive Design */
  @media screen and (max-width: 768px) {
    .vision-goals {
      grid-template-columns: 1fr;
    }

    .section-heading {
      font-size: 2.2em;
    }

    .vision-description {
      font-size: 1.1em;
    }

    .goal h3 {
      font-size: 1.4em;
    }

    .goal p {
      font-size: 1em;
    }
  }

  
  /* General Section Styling */
  .calendar-events-section {
    background-color: #f8f9fa;
    padding: 60px 20px;
    text-align: center;
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
  }

  /* Events Grid Layout */
  .events-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }

  .event-item {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .event-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }

  .event-img {
    /* width: 100%; */
    height: 200px;
    object-fit: cover;
    padding: 20px;
  }

  .event-details {
    padding: 20px;
    text-align: left;
  }

  .event-title {
    font-size: 1.6em;
    color: #F8C574;
    margin-bottom: 10px;
  }

  .event-date, .event-location {
    font-size: 1.1em;
    color: #555;
  }

  /* Responsive Design */
  @media screen and (max-width: 768px) {
    .events-grid {
      grid-template-columns: 1fr;
    }

    .section-heading {
      font-size: 2.2em;
    }

    .event-title {
      font-size: 1.4em;
    }

    .event-date, .event-location {
      font-size: 1em;
    }
  }


  
/* General Footer Styling */
.footer-section {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 40px 20px; /* Reduced padding for smaller screens */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Footer Top */
.footer-top {
  margin-bottom: 30px;
}

.footer-top-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.footer-title h2 {
  font-size: 2em; /* Reduced font size */
  color: #F8C574;
  margin-bottom: 10px;
}

.footer-description {
  font-size: 1em; /* Adjusted font size */
  line-height: 1.5;
  margin-bottom: 20px;
}

/* Footer Middle */
.footer-middle {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Three columns on desktop */
  gap: 20px;
  margin-bottom: 40px;
}
.footer-column {
  text-align: left;
}

.footer-column h3 {
  font-size: 1.2em; /* Adjusted font size */
  color: #F8C574;
  margin-bottom: 10px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #ecf0f1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #3498db;
}

.footer-column p a {
  color: #ecf0f1;
  text-decoration: none;
}

.footer-column p a:hover {
  color: #3498db;
}

.social-links a {
  display: inline-block;
  margin: 0 10px 10px 0; /* Adjusted spacing for smaller screens */
  transition: transform 0.3s ease;
  color: #fff;
}

.social-links a img {
  width: 30px;
  height: 30px;
}

.social-links a:hover {
  transform: scale(1.1);
}

/* Footer Copyright */
.footer-copyright {
  margin-top: 20px;
  font-size: 0.8em; /* Reduced font size */
  color: #bdc3c7;
  text-align: center; /* Center align for smaller screens */
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .footer-top-head {
    flex-direction: column; /* Stack logo and title vertically */
    text-align: center;
  }
  
  .footer-middle {
    grid-template-columns: 1fr; /* One column per row on mobile */
    gap: 15px; /* Adjust gap for mobile */
  }

  .footer-column {
    text-align: center; /* Center-align content for better mobile readability */
  }

  .social-links a {
    margin: 0 8px; /* Reduce margin between icons */
  }
}

@media screen and (max-width: 480px) {
  .footer-title h2 {
    font-size: 1.8em; /* Further reduced font size for mobile */
  }

  .footer-description {
    font-size: 0.9em;
  }

  .footer-column h3 {
    font-size: 1em; /* Smaller headings for mobile */
  }

  .footer-column ul li {
    margin-bottom: 5px; /* Tighter spacing for mobile */
  }

  .footer-column ul li a {
    font-size: 0.9em; /* Smaller text for links */
  }

  .social-links a img {
    width: 25px; /* Smaller icons for mobile */
    height: 25px;
  }

  .footer-copyright {
    font-size: 0.7em; /* Smaller font for copyright text */
  }
}
