body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    padding: 0%;
    overflow-x: hidden;
}

*{
    box-sizing: border-box;
}

 /* <uniquifier>: Use a unique and descriptive class name
 <weight>: Use a value from 100 to 900 */

.roboto-condensed {
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
}

.corben-regular {
    font-family: "Corben", serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .corben-bold {
    font-family: "Corben", serif;
    font-weight: 700;
    font-style: normal;
  }
  

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; /* Ensure the navbar stays on top of other elements */
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 10px 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nav-social {
   display: flex;
   align-items: center;
   gap: 10px;
   margin-left: 100px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo img {
    height: 50px;
    border-radius: 70%;
}

nav .logo h2{
    font-size: 18px;
    font-weight: 600;
    color: #000;
    flex: 1;
    text-align: center;
    font-family: "Poppins", sans-serif;
    /* text-transform: uppercase; */
    /* color: #0417c0; */
}
nav .logo h2 span {
    color: #ff0000;
    font-size: 1.3em;
    
    
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 15px;
}

nav ul li a{
    font-size: 18px;
}
nav ul li a.active {
    color: #001aff; /* Change to your preferred active color */
    font-weight: 700; /* Optionally make it bold */
    text-decoration: underline; /* Optionally underline */
}


.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
    padding: 8px;
    list-style: none;
}

.nav-links a:hover {
    color: #001aff;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 140px;
    box-shadow: 0 8px 6px rgba(0, 0, 0, 0.1);
    z-index: 1;
    list-style: none;
    border-radius: 5px;
}

.dropdown .dropdown-content li a {
    text-decoration: none;
}

.dropdown-content a {
    color: #000;
    padding: 12px 6px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: block;
}
 
/* CREATING FRAME */

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    height: 3px;
    width: 25px;
    background: #000;
    margin-bottom: 4px;
    border-radius: 5px;
}

/* BUTTONS */

.inquiry-btn {
    background-color: #fff;
    border: 2px solid #001aff;
    border-radius: 20px;
    padding: 5px 10px;
    color: #001aff;
    font-weight: 700;
    cursor: pointer;
    margin-right: 20px;
    /* font-family: "Corben" serif; */
    /* font-family: "Roboto Condensed", sans-serif; */
    font-family: "Poppins", sans-serif;
    font-optical-sizing: auto;
}

.inquiry-btn:hover {
    background-color: #001aff;
    color: #fff;
}

.slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 1s ease-in-out;
    width: 300%;
}

.slide {
    width: 100%;
    flex-shrink: 0;
    height: 500px;
    position: relative;
}

.slide img {
    width: 40%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s;
}

.slide img:hover {
    transform: scale(1.1);
}


/* text overlay */

/* .text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 34px;
    text-align: center;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: fadeIn 2s ease forwards;
}

.text-overlay span {
    display: block;
    opacity: 0;
    animation: fadeInText 2s ease forwards;
}

.text-overlay span:nth-child(1) {
    animation-delay: 0.5s;
}

.text-overlay span:nth-child(2) {
    animation-delay: 1s;
}

.text-overlay span:nth-child(3) {
    animation-delay: 1.5s;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeInText {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
} */

/* ABOUT US SECTION */
.about-us {
    padding: 50px 20px;
    text-align: center;
    background-color: #f9f9f9;
    font-family: "Poppins", sans-serif;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
    height: 60vh; /* or any height you prefer */
    width: 100%;
}

.fade-out {
    opacity: 0;
  }
  
  .fade-in {
    opacity: 1;
  }

.about-us h2 {
    font-size: 36px;
    color: #000;
    margin-bottom: 20px;
    /* font-family: "Corben" serif; */
    /* font-family: "Roboto Condensed", sans-serif; */
    font-family: "Poppins", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
}

.about-us h2 span {
    color: #001aff;
    font-family: "Poppins", sans-serif;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
    flex-wrap: wrap;
    padding: 20px;
    font-family: "Poppins", sans-serif;
    /* font-family: "Corben" serif; */
    /* font-family: "Roboto Condensed", sans-serif; */
    font-optical-sizing: auto;
    font-weight: 540;
}

.about-content img {
    max-width: 300px;
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px; /* Add margin bottom for better spacing on smaller screens */
}


/* MEDIA REPONSIVE */

/* .responsive-media {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; 
    height: 0;
    overflow: hidden;
} */

/* .responsive-media iframe,
.responsive-media img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
} */

.about-text {
    flex: 1;
    text-align: justify;
    padding: 20px;
    line-height: 1.6;
    font-family: "Poppins", sans-serif;
}

.about-us p {
    font-size: 16px;
    color: #111111;
    line-height: 1.6;
}



.view-more-btn {
    background-color: #fff;
    border: 2px solid #001aff;
    border-radius: 20px;
    padding: 10px 20px;
    color: #001aff;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
}

.view-more-btn:hover {
    background-color: #001aff;
    color: #fff;
}

/* SOCIAL */

.social-icons {
    position: fixed;
    top: 50%;
    left: 0px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 1000;
    /* background: #ebe7e7; */
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 10px;
    background-color: rgba(56, 54, 54, 0.5); 
}

.social-icons a img {
    width: 20px;
    height: 20px;
}

.social-icons a img:hover {
    transform: scale(1.2); /* Zoom-in effect */
}

/* PROJECT SECTION */

.projects {
    padding: 50px 20px;
    text-align: center;
    background-color: #f9f9f9;
    /* font-family: "Corben" serif; */
    font-family: "Poppins", sans-serif;
    /* font-family: "Open Sans", sans-serif; */
    opacity: 1;
  transition: opacity 0.5s ease-in-out;
  height: 100vh; /* or any height you prefer */
  width: 100%;
}

.projects h2 {
    font-size: 36px;
    color: #000;
    margin-bottom: 20px;
    /* font-family: "Open Sans", sans-serif; */
    /* font-family: "Corben" serif; */
    font-family: "Poppins", sans-serif;
}

.projects-container {
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 20px;
    position: relative;
}

.projects-inner {
    display:flex;
    transition: transform 0.5s ease;
}

.project {
    min-width: 33.33%; /* Show three images at a time */
    box-sizing: border-box;
    padding: 20px;
    transition: transform 0.5s ease;
}

.project a {
    display: block;
    text-decoration: none;
}

.project img {
    width: 90%;
    border-radius: 10px;
    transition: transform 0.5s ease;
}

.project-info {
    font-size: 16px;
    color: #000000;
    margin-top: 10px;
    font-family: "Open Sans", sans-serif;
    font-weight: bold;
}

.project:hover img{
    transform: scale(1.1);
}


/* EVENT SECTION NEWS */

.events-news {
    padding: 50px 20px;
    text-align: center;
    background-color: #ffffff;
}

.events-news h2 {
    font-size: 20px;
    color: #000;
    margin-bottom: 40px;
    /* font-family: "Open Sans", sans-serif; */
    /* font-family: "Corben" serif; */
    font-family: "Poppins", sans-serif;
}

.events-news h2 span {
    color: #001aff; /* Red color */
}

.events-news-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.event-news {
    width: calc(25% - 20px);
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.event-news:hover {
    transform: translateY(-10px);
}

.event-news a {
    text-decoration: none;
    color: inherit;
}

.event-news img {
    width: 100%;
    height: auto;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.event-news-info {
    padding: 20px;
}

.event-news-info h3 {
    font-size: 18px;
    color: #031bf1d8;
    margin-bottom: 10px;
    /* font-family: "Open Sans", sans-serif; */
    font-family: "Poppins", sans-serif;
}

.event-news-info p {
    font-size: 14px;
    color: #000000;
    margin-bottom: 10px;
    /* font-family: "Open Sans", sans-serif; */
    font-family: "Poppins", sans-serif;
}

.read-more {
    background-color: transparent;
    border: 1px solid  #001aff;
    color: #001aff;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    /* font-family: "Open Sans", sans-serif; */
    font-family: "Poppins", sans-serif;
    font-weight: bold;
}

.read-more:hover {
    background-color: #001aff;
    color: #fff;
}


/* STACKHOLDERS */

.stakeholders {
    padding: 40px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.stakeholders h2 {
    font-size: 36px;
    color: #000;
    margin-bottom: 20px;
    /* font-family: "Open Sans", sans-serif; */

    font-family: "Poppins", sans-serif;
}

.stakeholders h2 span {
    color: #001aff; /* Red color */
}

.stakeholder-slider {
    position: relative;
    width: 100%;
    height: 100px; 
}

.stakeholder-track {
    display: flex;
    /* width: calc(100% * 0);  */
}

.stakeholder-track img {
    /* width: 60px;  */
    /* height: auto; */
    /* margin: 0 10px; */
    /* padding: 40px; */
    /* border-radius: 50%; */
    gap: 0px;
}

/* @keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
} */


/* FOOTER */

footer {
    background-color: #333;
    color: #fff;
    padding: 20px 20px;
    margin: 0 auto;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1220px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.footer-logo {
    text-align: left;
    max-width: 180px;
}

.footer-logo img.logo {
    width: 80px;
    border-radius: 50%;
}

.tagline {
    margin: 5px;
    font-size: 18px;
}

.social-media a {
    margin-top: 20px;
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    padding: 8px;
   
}

.footer-links {
    display: flex;
    justify-content: space-between;
    width: 70%;
    font-family: "Poppins", sans-serif;
}

.footer-links div {
    margin: 0 20px;
}

.footer-links h3 {
    margin-bottom: 15px;
    /* font-family: "Open Sans", sans-serif; */
    font-family: "Poppins", sans-serif;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    font-size: 18px;
}

.footer-links li {
    margin: 10px 5px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-family: "Open Sans", sans-serif;
}

.footer-links a:hover {
    text-decoration: none;
    color: #001aff;
}

.head-office p,
.head-office a {
    margin: 20px 10px;
}

.get-direction {
    display: inline-block;
    margin-top: 10px;
    padding: 5px 10px;
    background-color: #4CAF50;
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
}

.get-direction:hover {
    background-color: #45a049;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 10px 20px;
    border-top: 3px solid #7e7b7b;
    font-size: 14px;
    text-align: center;
    font-family: "Poppins", sans-serif;
}

.footer-bottom p {
    margin: 5px 0;
    /* font-family: "Open Sans", sans-serif; */
    font-family: "Poppins", sans-serif;
}

.footer-bottom a {
    color: #4CAF50;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.fa-x-logo {
    width: 24px;
    height: 24px;
    fill: currentColor;
}
.chat {
    position: fixed;
    display: flex;
    align-items: center;
    bottom: 20px;
    right: 20px;
    background-color: #25D366; /* whatsapp green background*/
    padding: 10px 15px;
    border-radius: 30px; /* Round chat Box*/
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    
}

.chat-link {
    margin-right: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.chat img {
    width: 30px;
    border-radius: 50%;
}

.chat:hover {
    background-color: #128C7E;
    color: #fff;
}

/* MEDIA FRAME */

@media (max-width: 768px) {

    nav {
        padding-right: 10px 20px;
    }

    nav .logo h2 {
        font-size: 18px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        gap: 1;
        width: 100%;
        background-color: #ffffff;
        position: absolute;
        top: 64px;
        left: 0;
        padding-top: 30px;
        padding-bottom: 50px;
        border-bottom-left-radius: 0;
        z-index: 1000;
    }

    .nav-links.open {
        display: flex;
    }

    .hamburger {
        display: flex;
        padding-right: 40px;
        flex-direction: column;
        cursor: pointer;

    }

    .about-content {
        flex-direction: column;
        width: 80%;
        align-items: center;
    }

    .projects {
        min-width: 90%;
        flex-direction: column;
        align-items: center;
        margin-top: 70px;
    }

    .projects .project{
        min-width: 100%;
        
    }

    .event-news {
        flex-direction: column;
        width: 100%;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-links {
        flex-direction: column;
        width: 100%;
    }

    .footer-links div {
        margin: 20px 0;
    }

    .stakeholders{
        padding: 20px 10px;
    }

    /* .stakeholder-slider{
        height: 120px;
    } */

    .stakeholders h2 span {
        align-items: center;
        padding-left: 0%;
        margin: 30px 0px;
    }

    .stakeholder-track {
        width: calc(100% * 1); 
        /* animation: slide 30s linear infinite;  */
    }

    .stakeholder-track img {
        width: 50px; 
        margin: 20px 20px; 
        padding: 30px; 
    }
/* 
    @keyframes slide {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-100%);
        }
    } */
}

@media (min-width: 1024px) {
    .about-content {
        max-width: 1200px;
    }

    .projects-container {
        padding-bottom: 40px;
    }

    .events-news-container {
        justify-content: space-around;
    }

    .event-news {
        width: calc(20% - 20px);
    }

    .footer-links {
        width: 70%;
    }

    .footer-container {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-links div {
        margin: 0 10px;
    }

    .stakeholders{
        padding: 20px 0px;
        overflow: hidden;
        align-items: center;
    }

    .stakeholder-slider{
        height: 120px;
    }

    .stakeholders h2 span {
        align-items: center;
        padding-left: 2%;
        margin: 20px 20px;
    }

    .stakeholder-track {
        width: calc(100% * 1);
        display: inline-flex;
        justify-content: space-evenly;
    }

    .stakeholder-track img {
        width: 50px; /* Adjust image size for smaller screens */
        margin: 20px 20px; /* Adjust margin for better spacing */
        padding: 30px; /* Adjust padding for smaller screens */
    }

}