*{
  @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
  *{
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "POPPINS","sans-serif";
  }
}
.header{
  width: 100%;
  height: 100px;
  background: url(assets/golden-line-font.png);
  background-size: 250px ;
  
  
}
.logo{
  margin: 10px;
  height: auto;
  width: 300px;
}
.lang{
  float: right;
  text-align: right;
}
.lang ul li{
  list-style: none;
  display: inline-block;
  margin-top: 45px;
  margin-right: 40px;
}
.lang ul li a{
  text-decoration: none;
  color: darkgreen;
  display: inline-block;
  position: relative;
  margin-left: 30px;
  font-weight: 300;
  font-size: 14px;
}
.lang a::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 0;
  height: 2px;
  background: darkgreen;
  transition: .3s;
}
.lang a:hover::before {
  width: 100%;
}
.backcolor{
  background: #FAF0E6;;
}


*{
  margin: 0;
  padding: 0;
}
body{
  min-height: 100vh;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
nav{
  background-color: white;
  box-shadow: 3px 3px 5px rgba(0,0,0,0.1);
}
nav ul{
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: center;

}
nav li{
  height: 50px;
  align-items: center;
  text-align: center;
  place-items: center;
}
nav a{
  height: 100%;
  padding: 0 30px;
  text-decoration: none;
  display: flex;
  align-items: center;
  color: black;
}
nav a:hover{
  background-color: #f0f0f0;
}
nav li:last-child{
  margin-left: auto;
}
.sidebar{
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 250px;
  z-index: 999;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  box-shadow: -10px 0 10px rgba(0,0,0, 0.1);
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.sidebar li{
  width: 100%;
}
.sidebar a{
  width: 100%;
}
.menu-button{
  display: none;
}


.lang {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 20px;
  height: 100%;
}

.lang ul {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  justify-content: flex-end;
  align-items: center;
}

.lang ul li {
  margin: 0;
  padding: 0;
  flex-shrink: 0;
  order: 1;
}

.lang ul li:nth-child(1) {
  order: 1;
}

.lang ul li:nth-child(2) {
  order: 2;
}

.lang ul li:nth-child(3) {
  order: 3;
}

.lang ul li a {
  font-size: 1vw; /* scales with screen size */
  white-space: nowrap;
  margin: 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
}

/* Default: show full text, hide short */
.lang a .full {
  display: inline;
}
.lang a .short {
  display: none;
}

/* On small screens: show short text only but maintain order */
@media (max-width: 600px) {
  .lang ul {
    gap: 5px;
  }
  
  .lang ul li a {
    font-size: 14px;
    min-width: 40px;
  }
  
  .lang a .full {
      display: none;
  }
  .lang a .short {
      display: inline;
      font-size: 14px;
  }
}





/*THE BRANDNEW SLIDER*/
.slider-container{
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.slider-wrapper .slider-item{
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
}
.slider-wrapper .slider-item::before{
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  filter: grayscale(20%);
  background-image: url("images/img-1.png");
  background-size: cover;
  background-position: center;
}

.slider-wrapper .slider-item:nth-child(2):before{
  background-image: url("images/img-2.png");
}
.slider-wrapper .slider-item:nth-child(3):before{
  background-image: url("images/img-3.png");
}
.slider-wrapper .slider-item:nth-child(4):before{
  background-image: url("images/img-4.png");
}
.slider-wrapper .slider-item:nth-child(5):before{
  background-image: url("pexels1.jpg");
}

.slider-wrapper .slider-item .slide-content{
  opacity: 0;
  color: #fff;
  z-index: 20;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px 10px;
  max-width: 1400px;
  position: relative;
}

.slider-item.swiper-slide-active .slide-content{
  animation: animate_opacity 0.8s 0.6s linear forwards;
}

@keyframes animate_opacity {
  100%{
      opacity: 1;
  }
}

.slider-wrapper .slider-item .slide-content > *{
  max-width: 35%;
}
.slider-item .slide-content .slide-subtitle{
  font-size: 1rem;
  font-weight: normal;
  opacity: 0;
  transform: translateY(60%);
}
.slider-item .slide-content .slide-title{
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 5px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(60%);
}

.slider-item.swiper-slide-active :where(.slide-subtitle, .slide-title) {
  animation: animate_text 0.6s 0.6s linear forwards;
}

@keyframes animate_text {
  100%{
      opacity: 1;
      transform: translateY(0%);
  }
}

.slider-item .slide-content .slide-description{
  margin-top: 25px;
  line-height: 25px;
  opacity: 0;
  transform: translateY(60%);
}

.slider-item.swiper-slide-active .slide-description {
  animation: animate_text 0.6s 1s linear forwards;
}


.slider-item .slide-content .slide-button{
  color: #fff;
  opacity: 0;
  width: 0px;
  padding: 13px 0;
  display: block;
  margin-top: 45px;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 1px;
  white-space: nowrap;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid #fff;
  transition: 0.5s ease;
}

.slider-item .slide-content .slide-button span{
  opacity: 0;
}

.slider-item.swiper-slide-active .slide-button span{
  animation: animate_opacity 0.6s 1.5s linear forwards;
}

.slider-item.swiper-slide-active .slide-button {
  animation: animate_button 0.6s 1.3s linear forwards;
}

@keyframes animate_button {
  100%{
      opacity: 1;
      width: 250px;
  }
}

.slider-item .slide-content .slide-button:hover{
  color: #000;
  background: #fff;
}
.slider-container .slider-controls{
  position: absolute;
  bottom: 45px;
  z-index: 20;
  width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
}

.slider-controls .slider-pagination{
  position: relative;
  display: flex;
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1400px;
  list-style: none;
  justify-content: space-between;
}

.slider-pagination .slider-indicator{
  position: absolute;
  bottom: 0;
  
  border-bottom: 2px solid #fff;
  transition: 0.4s ease-in-out;
}

.slider-pagination .slider-tab{
  color: #fff;
  text-align: center;
  cursor: pointer;
  font-size: 0.85rem;
  padding: 20px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.slider-navigations button{
  position: absolute;
  top: 50%;
  height: 40px;
  width: 40px;
  cursor: pointer;
  z-index: 20;
  color: #fff;
  border: none;
  background: #202022;
  transform: translateY(-50%);
  transition: 0.4s ease;
}

.slider-navigations button.swiper-button-disabled{
  display: none;
}

.slider-navigations button:hover{
  background: #323235;
}

.slider-navigations button#slide-prev{
  left: 20px;
}
.slider-navigations button#slide-next{
  right: 20px;
}

@media (max-width: 1536px){
  .slider-wrapper .slider-item .slide-content,
  .slider-controls .slider-pagination{
      width: 85%;
  }
}

@media (max-width: 1024px){
  .slider-wrapper .slider-item .slide-content,
  .slider-controls .slider-pagination{
      width: 100%;
  }

  .slider-wrapper .slider-item .slide-content > *{
      max-width: 66%;
  }

  .slider-navigations button{
      top: unset;
      bottom: -15px;
      background: none;
  }
  .slider-navigations button:hover{
      background: none;
  }
}

@media(max-width: 768px){
  .slider-wrapper .slider-item .slide-content > *{
      max-width: 100%;
  }
}






/*FOOTER SECTION*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body{
  line-height: 1,5;
  font-family: 'poppins', sans-serif;
}
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.container{
  max-width: 1170px;
  margin: auto;
}
.row{
  display: flex;
  flex-wrap: wrap;
}
ul{
  list-style: none;
}
.footer{
  background-color: #296ca6;
  padding: 70px 0;
}
.footer-col{
  width: 25%;
  padding: 0 15px;
}
.footer-col h4{
  font-size: 18px;
  color: #ffffff;
  text-transform: capitalize;
  margin-bottom: 35px;
  font-weight: 500px;
  position: relative;
}
.footer-col h4::before{
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  background-color: #24a652;/*e91e63*/
  height: 2px;
  box-sizing: border-box;
  width: 50px;
}
.footer-col ul li:not(:last-child){
  margin-bottom: 10px;
}
.footer-col ul li a{
  font-size: 16px;
  text-transform: capitalize;
  color: #ffffff;
  text-decoration: none;
  font-weight: 300;
  color: #bbbbbb;
  display: block;
  transition: all 0.3s ease;
}
.footer-col ul li a:hover{
  color:#ffffff;
  padding-left: 8px;
}
.footer-col .social-links a{
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: rgba(255,255,255,0.2);
  margin: 0 10px 10px 0;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.5s ease;
}
.footer-col .social-links a:hover{
  color: #24a652;
  background-color: #ffffff;
}
/*Footer Responsiveness*/
@media(max-width: 767px){
.footer-col{
  width: 50%;
  margin-bottom: 30px;
}
}
@media(max-width: 574px){
  .footer-col{
      width: 100%;
      margin-bottom: 30px;
  }
  }
/*MEDIA QUERIES SECTION*/
@media(max-width: 800px){
  .hideOnMobile{
    display: none;
  }
  .menu-button{
    display: block;
  }
}
@media(max-width: 400px){
  .sidebar{
    width: 100%;
  }
}

/* WIMcameroon Section Styles */
.wimcameroon-section {
    background: #f4f5f7;
    padding: 80px 0 0 0;
    margin: 0;
}

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

.wimcameroon-content h2 {
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.wimcameroon-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #4169E1 0%, #1E90FF 100%);
    border-radius: 2px;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    text-align: center;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.mission-section {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin: 40px 0;
}

.mission-section h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
}

.mission-list {
    list-style: none;
    padding: 0;
}

.mission-list li {
    position: relative;
    padding: 15px 0 15px 40px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

.mission-list li:last-child {
    border-bottom: none;
}

.mission-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 15px;
    width: 25px;
    height: 25px;
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.mission-list li:first-child::before,
.mission-list li:nth-child(2)::before,
.mission-list li:nth-child(3)::before {
    background: linear-gradient(135deg, #90EE90 0%, #32CD32 100%);
}

.network-section {
    background:linear-gradient(135deg, #001f3f, #004080, #0077b6);/*linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);*/
    color: white;
    padding: 50px 40px;
    border-radius: 20px;
    margin: 50px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.1);
}

.network-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1) 0%, rgba(184, 134, 11, 0.1) 100%);
    pointer-events: none;
}



.network-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.network-text {
    flex: 1;
    text-align: left;
    position: relative;
}

.network-text::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    border-radius: 2px;
}

.network-image {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}



.country-logo {
    max-width: 140px;
    height: auto;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.country-logo:hover {
    transform: translateY(-5px) scale(1.05);
}

.network-section p {
    font-size: 1.2rem;
    line-height: 1.9;
    margin: 0;
    font-weight: 400;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
}

.invitation-section {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    border-left: 5px solid #D4AF37;
}

.invitation-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .wimcameroon-content h2 {
        font-size: 2rem;
    }
    
    .intro-text {
        font-size: 1.1rem;
    }
    
    .mission-section,
    .network-section,
    .invitation-section {
        padding: 40px 25px;
        margin: 40px 0;
    }
    
    .network-content {
        gap: 25px;
    }
    
    .country-logo {
        max-width: 120px;
    }
    
    .mission-list li {
        font-size: 1rem;
        padding: 12px 0 12px 35px;
    }
    
    .network-section p,
    .invitation-section p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .wimcameroon-section {
        padding: 60px 0;
        margin: 40px 0;
    }
    
    .wimcameroon-content h2 {
        font-size: 1.8rem;
    }
    
    .intro-text {
        font-size: 1rem;
    }
    
            .mission-section h3 {
            font-size: 1.3rem;
        }
        
        .country-logo {
            max-width: 100px;
        }
        
        .network-content {
            flex-direction: column;
            gap: 25px;
            text-align: center;
        }
        
        .network-text {
            text-align: center;
        }
        
        .network-text::before {
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            top: -15px;
        }
    }

/* Welcome Section Styles */
.welcome-section {
    padding: 60px 0;
    background: #f4f5f7;
}

.welcome-rectangle {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border: 3px solid darkgreen;
    border-radius: 0;
    padding: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
}



.welcome-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.welcome-content p {
    color: darkgreen;
    font-size: 1.3rem;
    line-height: 1.8;
    margin: 0;
    font-weight: 500;
}

/* Responsive Design for Welcome Section */
@media (max-width: 768px) {
    .welcome-rectangle {
        padding: 40px 30px;
        margin: 0 20px;
    }
    
    .welcome-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .welcome-section {
        padding: 40px 0;
    }
    
    .welcome-rectangle {
        padding: 30px 20px;
    }
    
    .welcome-content p {
        font-size: 1rem;
    }
}

/* Activities Carousel Styles */
.activities-carousel-container {
    margin: 40px 0 0 0;
    padding: 0 20px;
}

.activities-carousel {
    position: relative;
    overflow: hidden;
}

.activities-carousel .swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
}

.activities-carousel .activity-block {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.activities-carousel .swiper-button-next,
.activities-carousel .swiper-button-prev {
    color: #D4AF37;
    background: rgba(255, 255, 255, 0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.activities-carousel .swiper-button-next:hover,
.activities-carousel .swiper-button-prev:hover {
    background: rgba(255, 255, 255, 1);
    color: #B8860B;
}

.activities-carousel .swiper-pagination {
    position: relative;
    margin-top: 20px;
}

.activities-carousel .swiper-pagination-bullet {
    background: #D4AF37;
    opacity: 0.5;
}

.activities-carousel .swiper-pagination-bullet-active {
    opacity: 1;
    background: #B8860B;
}

/* Activities Grid Styles (keeping for reference) */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 40px 0 0 0;
}

.activity-block {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.activity-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.activity-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.activity-block:hover .activity-image img {
    transform: scale(1.05);
}

.activity-content {
    padding: 25px;
}

.activity-content h4 {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.activity-content p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
    margin: 0;
}

/* Responsive Design for Activities Grid */
@media (max-width: 768px) {
    .activities-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
        margin: 30px 0 0 0;
    }
    
    .activity-content {
        padding: 20px;
    }
    
    .activity-content h4 {
        font-size: 1.2rem;
    }
    
    .activity-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .activities-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin: 20px 0 0 0;
    }
    
    .activity-image {
        height: 180px;
    }
    
    .activity-content {
        padding: 15px;
    }
    
    .activity-content h4 {
        font-size: 1.1rem;
    }
    
    .activity-content p {
        font-size: 0.9rem;
    }
}

.mission-image-wrapper {
    width: 100%;
    overflow: visible;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.mission-image {
    width: 180%;
    max-width: none;
    height: auto;
    display: block;
    position: relative;
    left: 0;
}

/* Contact us*/
/* Section Styling */
.contact-section {
  text-align: center;
 
  background-color: #f4f5f7;
  padding: 60px 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
}

.contact-section h1 {
  font-size: 48px;
  margin-bottom: 40px;
  color: #222;
}

/* Grid Layout */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* Card Style */
.contact-card {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Icon Styling */
.contact-card i {
  font-size: 50px;
  color: #296ca6;
  margin-bottom: 20px;
}

/* Text Styling */
.contact-card h2 {
  font-size: 24px;
  margin-bottom: 12px;
  color: #222;
}

.contact-card p {
  font-size: 18px;
  color: #666;
}

/* Responsive Design */
@media (max-width: 600px) {
  .contact-section h1 {
    font-size: 36px;
  }

  .contact-card {
    padding: 30px 20px;
  }

  .contact-card i {
    font-size: 48px;
  }

  .contact-card h2 {
    font-size: 22px;
  }

  .contact-card p {
    font-size: 16px;
  }
}