.p1{
    font-family: "Ubuntu", serif;
  font-weight: 400;
  font-style: normal !important;
}

/*nonsense for commit*/
.p2{
    font-family: "Ubuntu", serif;
  font-weight: 400;
  font-style: normal;
}

.p3{
    font-family: "Ubuntu", serif;
  font-weight: 400;
  font-style: normal;
}

.p4{
    font-family: "Ubuntu", serif;
  font-weight: 400;
  font-style: normal;
}
.p5{
  font-family: "Ubuntu", serif;
  font-weight: 400;
  font-style: normal;
}
.p6{
  font-family: "Ubuntu", serif;
  font-weight: 400;
  font-style: normal;
}
.p7{
  font-family: "Ubuntu", serif;
  font-weight: 400;
  font-style: normal;
}
.p8{
  font-family: "Ubuntu", serif;
  font-weight: 400;
  font-style: normal;
}
.p9{
  font-family: "Ubuntu", serif;
  font-weight: 400;
  font-style: normal;
}
.p10{
  font-family: "Ubuntu", serif;
  font-weight: 400;
  font-style: normal;
}
.p11{
  font-family: "Ubuntu", serif;
  font-weight: 400;
  font-style: normal;
}
.p12{
  font-family: "Ubuntu", serif;
  font-weight: 400;
  font-style: normal;
}

.p{
  font-family: "Ubuntu", serif;
  font-weight: 400;
  font-style: normal;
}
.p13{
  font-family: "Ubuntu", serif;
  font-weight: 400;
  font-style: normal;
}

.p14{
  font-family: "Ubuntu", serif;
  font-weight: 400;
  font-style: normal;
}

.p15{
  font-family: "Ubuntu", serif;
  font-weight: 400;
  font-style: normal;
}

.p16{
  font-family: "Ubuntu", serif;
  font-weight: 400;
  font-style: normal;
}

.p17{
  font-family: "Ubuntu", serif;
  font-weight: 400;
  font-style: normal;
}
.p18{
  font-family: "Ubuntu", serif;
  font-weight: 400;
  font-style: normal;
}
.p19{
  font-family: "Ubuntu", serif;
  font-weight: 400;
  font-style: normal;
}
.p20{
  font-family: "Ubuntu", serif;
  font-weight: 400;
  font-style: normal;
}
.p21{
  font-family: "Ubuntu", serif;
  font-weight: 400;
  font-style: normal;
}
.p22{
  font-family: "Ubuntu", serif;
  font-weight: 400;
  font-style: normal;
}
.p23{
  font-family: "Ubuntu", serif;
  font-weight: 400;
  font-style: normal;
}
.p24{
  font-family: "Ubuntu", serif;
  font-weight: 400;
  font-style: normal;
}

.p25{
  font-family: "Ubuntu", serif;
  font-weight: 400;
  font-style: normal;
}
.p26{
  font-family: "Ubuntu", serif;
  font-weight: 400;
  font-style: normal;
}

.p27{
  font-family: "Ubuntu", serif;
  font-weight: 400;
  font-style: normal;
}

.p28{
  font-family: "Ubuntu", serif;
  font-weight: 400;
  font-style: normal;
}

.p29{
  font-family: "Ubuntu", serif;
  font-weight: 400;
  font-style: normal;
}

.p30{
  font-family: "Ubuntu", serif;
  font-weight: 400;
  font-style: normal;
}
.p31{
  font-family: "Ubuntu", serif;
  font-weight: 400;
  font-style: normal;
}
.p32{
  font-family: "Ubuntu", serif;
  font-weight: 400;
  font-style: normal;
}
.wwd{
    font-family: "Ubuntu", serif;
  font-weight: 400 !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'El Messiri', sans-serif;
  }

  body {
      font-family: 'El Messiri', sans-serif;
      margin: 0;
      padding: 0;
      background-color: #2c2c54;
      color: #2c2c54;
      text-align: center;
  }

  header {
      background-color: #2c2c54;
      padding: 20px;
      color: #ffffff;
      font-size: 24px;
  }

  nav ul {
      list-style: none;
      display: flex;
      justify-content: flex-start;
      padding: 0;
      margin: 0;
  }

  nav ul li {
      margin-right: 15px;
  }

  nav ul li a {
      color: #2c2c54;
      text-decoration: none;
      font-weight: bold;
  }

  nav ul li.dropdown {
  position: relative;
}

nav ul li a.dropdown-toggle {
  color: #2c2c54;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
}

nav ul li .dropdown-menu {
display: none;
position: absolute;
left: 0;
top: 100%;
background-color: #ffffff;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
border-radius: 5px;
padding: 0;
list-style: none;
width: 300px;
z-index: 10; /* Ensure the dropdown appears above hero section */
}

nav ul li .dropdown-menu li a {
  display: block;
  color: #2c2c54;
  padding: 10px 15px;
  text-decoration: none;
}

nav ul li .dropdown-menu li a:hover {
  background-color: #2c2c54;
  color: white;
}

/* Display Dropdown on Hover */
nav ul li:hover .dropdown-menu {
  display: block;
}

/* Mobile hamburger menu */
.hamburger {
    display: none;
    font-size: 30px;
    cursor: pointer;
  }

  /* Side Navigation */
  .side-nav {
    height: 100%;
    width: 0;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #2c2c54;
    overflow-x: hidden;
    transition: 0.3s;
    z-index: 1000;
  }

  .side-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    text-align: left;
  }

  .side-nav ul li {
    padding: 15px 25px;
  }

  .side-nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
  }

  .side-nav .close-btn {
    font-size: 36px;
    position: absolute;
    top: 10px;
    right: 25px;
    color: white;
    cursor: pointer;
  }

  /* Breadcrumb Styles */
  .breadcrumb {
      display: flex;
      list-style: none;
      padding: 12px;
      background-color: #ffffff;
      justify-content: center;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  .breadcrumb li {
      display: inline;
      font-size: 18px;
  }
  .breadcrumb li + li:before {
      /* content: "\203A"; */
      padding: 0 10px;
      color: #2c2c54;
      font-weight: bold;
  }
  .breadcrumb a {
      color: #2c2c54;
      text-decoration: none;
      padding: 8px 15px;
      border-radius: 5px;
      transition: background 0.3s ease;
  }
  .breadcrumb a:hover {
      background: #2c2c54;
      color: white;
  }

  @media (max-width: 768px) {
    /* Hide default navigation */
    nav ul {
      display: none;
    }

    header {
  display: flex;
  justify-content: space-between; /* Ensures space between the logo and hamburger */
  align-items: center; /* Vertically aligns them */
  padding: 20px;
}

.hamburger {
  display: block; /* Make sure the hamburger icon is visible */
  font-size: 30px;
  cursor: pointer;
}

    /* Hide breadcrumb on mobile */
    .breadcrumb {
      display: none;
    }

    /* Side nav appearance */
    .side-nav {
      width: 0;
    }

    .side-nav.open {
      width: 100%;
    }
  }

/* Hero Section */ 
.hero {
  position: relative;
  height: 83vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  background-image: url("https://i.ibb.co/KTtXtgT/PHOTO-2025-06-20-17-16-43-1.jpg"  );
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* for dark overlay */
  z-index: 0;
}

.hero h1,
.hero p {
  position: relative;
  z-index: 1;
}


.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 35px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

.hero a {
  text-decoration: none;
  background-color: #2c2c54;
  color: white;
  font-size: 1.2rem;
  padding: 10px 20px;
  cursor: pointer;
  transition: background 0.3s;
}

.hero a:hover {
  background-color: #5e72a9;
}
/* Base Hero Section */
.hero {
  position: relative;
  height: 83vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  background-image: url("https://i.ibb.co/4RFvmZHh/PHOTO-2025-06-20-17-11-22.jpg" );
  background-size: cover;
  background-position: center;
  overflow: hidden;
  padding: 20px;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); 
  z-index: 0;
}

.hero h1,
.hero p {
  position: relative;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 35px 20px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

.hero a {
  text-decoration: none;
  background-color: #2c2c54;
  color: white;
  font-size: 1.2rem;
  padding: 10px 20px;
  cursor: pointer;
  transition: background 0.3s;
}

.hero a:hover {
  background-color: #5e72a9;
}


/* Responsive: Mobile Screens */
@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 60px 20px 40px;
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 1.3;
  }

  .hero p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero a {
    font-size: 1rem;
    padding: 8px 16px;
  }

  .hero-content {
    padding: 20px 10px;
  }
}

@media (max-width: 400px) {
  .hero h1 {
    font-size: 1.6rem;
  }

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

  .hero a {
    font-size: 0.95rem;
    padding: 8px 14px;
  }
}

  .missions-section-title {
    text-align: center;
    padding: 1em 0;
    font-size: 2.5rem;
      font-weight: 700;
    color: #2c2c54;
  }
  .section-title {
    text-align: center;
    padding: 1em 0;
    font-size: 2.5rem;
      font-weight: 700;
    color: #fff;
  }
  
@media (max-width: 375px) {
  .intro-text {
    padding: 60px 15px 80px;  /* Top & bottom padding added */
    margin: 0 auto;
    max-width: 100%;
    box-sizing: border-box;
    border-radius: 10px;
  }

  .intro-text h2 {
    font-size: 1.4rem !important;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 10px;
    word-break: break-word;
  }

  .intro-text p {
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
    word-break: break-word;
  }
}

/* Add this if you're using a background image or fixed height */
.slider, .slide, .swiper-slide {
  min-height: 100vh;
  overflow-y: auto;
  display: flex;
  align-items: center;
}


  .intro-text {
    background-color: #2c2c54;
    padding: 50px 20px;
    /* margin: 20px 0; */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
  }

  .intro-text h2 {
    font-size: 2.5rem;
    color: #fff;
  }

  .intro-text p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.8;
    font-family: "Ubuntu", "serif";
    font-weight: 400;
  }

  .read-more-btn {
    background-color: #fff;
    color: #2c2c54;
    border: none;
    padding: 12px 30px;
    
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .read-more-btn:hover {
    background-color: #5e72a9;
  }

  .expand-content {
    display: none;
    margin-top: 20px;
  }

  .expand-content ul {
    list-style-type: none;
    padding: 0;
    font-size: 1.1rem;
    color: #ffffff;
  }

  .expand-content li {
    padding: 5px 0;
  }

  .expand-content li::before {
    content: "✓ ";
    color: #ffffff;
  }

  .what-we-do {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 40px;
    padding: 0 10px;
  }

  .what-we-do div {
    background-color: #ffffff;
    padding: 30px;
    margin: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: center;
    max-width: 250px;
    flex: 1 1 200px;
  }

  .what-we-do div h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #2c2c54;
  }

  .what-we-do div p {
    font-size: 1.1rem;
    color: #777;
  }

  .active-missions {
    padding: 10px 40px;
    background-color: #ffffff;
    color: #2c2c54;
    padding-bottom: 40px;
    text-align: center;
  }
  
  .missions-section-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }
  
  .mission-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  
  .mission-card {
    position: relative;
    width: 100%;
    max-width: 350px;
    height: 350px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
  }
  
  .mission-card:hover {
    transform: scale(1.05);
  }
  
  .mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
  }
  
  .mission-card .text {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 20px;
    font-family: 'Arial', sans-serif;
  }
  
  .mission-card h3,
  .mthatha {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px;
  }
  
  .mission-card p {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    opacity: 0.9;
    line-height: 1.5;
  }
  
  /* Responsive Styling */
  
  /* Tablets & Below */
  @media (max-width: 1024px) {
    .missions-section-title {
      font-size: 2rem;
    }
  
    .mission-card {
      height: 320px;
    }
  }
  
  /* Mobile Devices */
  @media (max-width: 768px) {
    .mission-cards {
      flex-direction: column;
      align-items: center;
    }
  
    .mission-card {
      width: 100%;
      max-width: 90%;
      height: 300px;
    }
  
    .mission-card h3,
    .mthatha {
      font-size: 1.3rem;
    }
  
    .mission-card p {
      font-size: 0.95rem;
    }
  }
  
  /* Small Phones */
  @media (max-width: 480px) {
    .active-missions {
      padding: 10px 20px;
    }
  
    .mission-card {
      max-width: 100%;
      height: 260px;
    }
  
    .mission-card h3,
    .mthatha {
      font-size: 1.1rem;
    }
  
    .mission-card p {
      font-size: 0.9rem;
    }
  }
  
  /* Tiny screens (320px) */
  @media (max-width: 360px) {
    .mission-card {
      height: 230px;
    }
  
    .mission-card p {
      font-size: 0.85rem;
    }
  }
  


  /* General Section Styling */
  .programs {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 50px 20px;
    background-color: #ffffff;
    /* border-radius: 10px; */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-top: 50px;
}

/* Left Text Styling */
.program-text {
  flex: 1;
  max-width: 500px;
  margin-left: 6rem; /* shifts text to the right */
  text-align: left;
}

.program-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c2c54;
    margin-bottom: 20px;
}

.program-text p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.program-text strong {
    font-weight: bold;
    font-size: 1.3rem;
    color: #2c2c54;
}

.program-text a {
  text-decoration: none;
    background-color: #2c2c54;
    color: white;
    border: none;
    padding: 12px 32px;
    /* border-radius: 50px; */
    cursor: pointer;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    font-weight: bold;
}

.program-text a:hover {
    background-color: #2c2c54;
}

/* Right Image Styling */
.program-image img {
    margin-right: 5rem; /* shifts text to the right */
    width: 600px;
    height: 400px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

  /* Responsive Design for Smaller Screens */
  @media (max-width: 768px) {
    .programs {
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 30px 10px;
    }
  
    .program-text {
      margin-left: 0;
      margin-right: 0;
      max-width: 90%;
    }
  
    .program-text h2 {
      font-size: 2rem;
    }
  
    .program-text p {
      font-size: 1rem;
    }
  
    .program-text a {
      padding: 10px 24px;
      font-size: 1rem;
    }
  
    .program-image img {
      width: 90%;
      height: auto;
      margin: 0 auto;
      margin-top: 20px;
    }
  }
  
  /* .carousel-wrapper {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    margin: auto;
  }
   */

   .carousel-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: auto;
}

.carousel-track-wrapper {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
   display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 32px;
}
  
  .impact-cards {
    flex-wrap: nowrap; /* Override existing wrap */
    transition: transform 0.4s ease-in-out;
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
  }
  
  .carousel-wrapper {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    margin: auto;
    padding: 0 40px; /* give space for arrows */
  }
  
  /* .carousel-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
  } */
  
 
  
  .impact-card {
    min-width: 100%;
    max-width: 100%;
    width: 100rem;
    margin: 0 auto;
    padding: 30px;
    box-sizing: border-box;
    background-color: #fff;
    border-color: #2c2c54;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
  }
  
  .impact-card h3 {
    font-size: 1.8rem;
    color: #2c2c54;
    margin-bottom: 10px;
  }
  
  .impact-card p {
    font-size: 1.2rem;
    color: #555;
  }
  
  .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff;
    border: none;
    color: #2c2c54;
    font-size: 2rem;
    padding: 10px 14px;
    cursor: pointer;
    z-index: 2;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
  background-color: transparent;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  z-index: 2;
  }
  
  .carousel-btn.prev {
    left: 0;
  }
  
  .carousel-btn.next {
    right: 0;
  }
  
  
  .impact {
    padding: 50px 20px;
    background-color: #2c2c54;
  }

  /* .impact-cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
  } */

  /* .impact-card {
    background-color: #fff;
    padding: 20px;
    border-color: #2c2c54;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 300px;
    margin: 10px;
    transition: transform 0.3s ease;
  } */

  /* .impact-card:hover {
    transform: scale(1.05);} /* Hover effect for card */

  /* .impact-card h3 {
    font-size: 1.5rem;
    color: #2c2c54;
    margin-bottom: 15px;
  } */

  /* .impact-card p {
    font-size: 1.1rem;
    color: #555;
  } */



/* Responsive Design for Smaller Screens */
@media (max-width: 768px) {
  .impact-cards {
    flex-direction: column;
    align-items: center;
  }
}

footer {
  background-color: #2c2c54;
  color: white;
  padding: 40px 10%;
  text-align: center;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.footer-left {
  flex: 1;
  text-align: center;
}

.footer-logo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.social-icons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.social-icons a {
  color: white;
  font-size: 24px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #5e72a9;
}

.footer-right {
  display: flex;
  flex: 2;
  justify-content: space-between;
  gap: 40px;
}

.footer-column h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #5e72a9;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #5e72a9;
}

.footer-bottom {
  margin-top: 30px;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-right {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .footer-column {
    width: 100%;
  }
}

  .logo {
      height: 50px;
      margin-right: 15px;
  }

  .nav-container {
      display: flex;
      align-items: center;
  }

  .program-description{
    font-family: "Ubuntu", serif;
  font-weight: 400;
  font-style: normal;

  }

  .logo {
    height: 50px;
    margin-right: 15px;
}

.nav-container {
    display: flex;
    align-items: center;
}
.sponsor-section {
  padding: 2rem;
  background-color: #f9f9f9;
  text-align: center;
  overflow: hidden;
}

.sponsor-section-title {
  margin-bottom: 1.5rem;
  font-size: 2rem;
  padding: 1em 0;
  font-weight: 700;
  color: #2c2c54;
}

.sponsor-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-track1 {
  display: flex;
  gap: 20px;
  animation: scroll 40s linear infinite;
  width: max-content;
}

.carousel-track1 img {
  width: 150px;
  height: 120px;
  object-fit: contain;
  border: 2px solid #2c2c54;
  padding: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: white;
}

.carousel-track1 img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px #2c2c54;
}

/* Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive Image Sizes */
@media (max-width: 768px) {
  .carousel-track1 img {
    width: 120px;
    height: 100px;
  }
}

@media (max-width: 480px) {
  .carousel-track1 img {
    width: 100px;
    height: 80px;
  }
}
  /*END OF HOME PAGE CODE*/

  /*START OF JOURNEY CODE - TRY NOT TO KILL HAANIM FOR HER BULLSHIT LAYOUT*/
  /* Content Section */
.content-section {
  padding: 3rem ;
  max-width: 1100px;
  margin: 40px auto;
  text-align: left;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.content-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #2c2c54;
}

.content-section p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #333;
}

.content-section strong {
  font-weight: bold;
  color: #2c2c54;
}

/* Active Missions Section */
.missions {
  background-color: #f4f6fa;
  padding: 40px 20px;
  text-align: center;
}

.missions h3 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #2c2c54;
}

.missions-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.mission {
  margin: 20px;
  text-align: center;
}

.mission img {
  width: 100%;
  max-width: 300px;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
}

.missions a {
  display: block;
  font-size: 16px;
  text-decoration: none;
  padding: 10px 15px;
  background-color: #2c2c54;
  color: white;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

.missions a:hover {
  background-color: #ffffff;
  color: #2c2c54;
}

/* Typewriter Effect */
.typewriter h3 {
  font-size: 36px;
  padding: 2rem;
  margin: 0 auto;
  color: white;
  white-space: nowrap;
  overflow: hidden;
  width: 0;
  animation: typing 5s steps(40) 1s 1 normal both;
}

@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .typewriter h3 {
    font-size: 15px; /* Reduce font size for smaller screens */
    width: 80%; /* Set the width to fit better on smaller screens */
    animation: typing 5s steps(25) 1s 1 normal both; /* Adjust animation steps for mobile */
  }
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/*

/* END OF JOURNEY PAGE*/
/* START OF VISIONARIES*/
 