@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap');

/* Reset and general styles */
body {
    margin: 0;
    font-family:'Montserrat' , sans-serif;
    background-color: #fdfeff;
    color: white;
}
/* Navbar styles */
/* Reset default margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

/* Navbar styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color:  #063568;
    padding:10px 20px;
    color: white;
    width: 100%;
    position: fixed; /* Makes the navbar fixed */
    top: 0; /* Positions it at the top */
    left: 0;
    z-index: 999; /* Ensures it stays above other content */
}

/* Pushes the content down so it doesn't get hidden under the navbar */


.social-icons a {
    color: white;
    margin: 0 10px;
    font-size: 1.2em;
    text-decoration: none;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    font-size: 1em;
    transition: .3s ease-in-out;
}

.nav-links li a:hover {
   color: #0056b3;
   
}

.search-box {
    padding: 5px;
    border-radius: 5px;
    border: none;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5em;
    color: white;
    cursor: pointer;
}
@media (max-width: 768px) {
    .nav-links {
        list-style: none;
        display: none;
        gap: 30px;
        align-items: center;
    }
    .menu-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 1.5em;
        color: white;
        cursor: pointer;
    }
}


 /*Mobile Nav Styles */
 .navbar-mobile {
    display: flex;
    gap: 6em;
    align-items: center;
    background: #fff;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    padding: 0 20px;
    color: #444;
}

.logo-mobile {
    height: 80px;
    width: 80px;
    margin-left: 1em;
}

.logo-mobile img {
    height: 100%;
    width: 100%;
}

/* Mobile Styles */
.nav-mobile-cont{
    height: 15vh;
    position: fixed;
    top: 2.5em;
    width: 100%;
    z-index:111;
}
.navbar-mobile {
   height: 15vh;
}

.mobile-nav-links {
    display: none;
    flex-direction: column;
    background-color:  #063568;
    position: fixed;
    top: 18vh;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 222;
    padding-top: 20px;
    padding-right: 50px;
}

.mobile-nav-links li {
    padding: 5px 20px;
    list-style: none;
}

.mobile-nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    display: block;
    
}

.mobile-nav-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: #063568;
}

@media (max-width: 768px) {
    .navbar-mobile {
        justify-content: space-between;
        gap: 0;
    }

    .nav-links, .cta-h {
        display: none;
    }

    .mobile-nav-toggle {
        display: block;
        color: #063568;
        margin-right: 1em;
    }

    .mobile-nav {
        display: block;
    }

    .mobile-nav-links.show {
        display: flex;
    }

    .dropdown-mobile {
      position: static;
      display: none;
      width: 100%;
      height:auto;
      background-color: rgba(0,0,0,0.2);
    }
    .dropdown-mobile li a{
        transition: .4s ease-in-out;
    }
    .dropdown-mobile li a:hover{
        color:#063568;
    }
  
    .mobile-nav-links .dropdown-mobile.show{
      display: block;
      transition: .4s ease-in-out;
    }
    .mobile-nav-links .dropdown-mobile.show:hover{
        color: #063568;
    }
    
}
@media (min-width:768px) {
    .nav-mobile-cont{
        display: none;
    }
}




/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('assets/hero1.jpg') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
   transform: translateY(0);
}

.taglines{
    position: relative;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  transform: translateY(5em);
}
.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 22em;
    transform: translateY(-10em);
}

.logo {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    align-items: center;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);

}

.logo-img {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-right: 10px;
}

.hero-links {
    list-style: none;
    display: flex;
    gap: 40px;
    padding: 0;
   
}

.hero-links li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    position: relative;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    align-items: center;
}

.hero-links a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: white;
    transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
}

.hero-links a:hover::after {
    width: 100%;
    left: 0;
}

.join-btn {
    background: #f87e2d;
    padding: 13px 35px;
    border-radius: 8px;
    color: #fff;
    transition: 0.3s;
    align-items: center;
}

.join-btn:hover {
    background: #ff5733;
}
/* Call to Action Button */
.cta-btn {
    margin-top: 20px;
    display: inline-block;
    padding: 12px 30px;
    background: #063568;
    color: white;
    font-size: 18px;
    border-radius: 3px;
    text-decoration: none;
    transition: 0.3s;
}

.cta-btn:hover {
    background: #0088cc;
}
@media(max-width:768px){
    .logo{
        display :none;
    }
    .hero {
    position: relative;
    width: 100%;
    height: 80vh;
    background: url('assets/hawks3.jpg') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
   transform: translateY(7em);
}
}
/*Sidebar Styles*/
.maindiv {
    display: none;
    justify-content: center;
    align-items: center;
    background-color: white;
    width: 100%;
   height: 60vh;
    margin: 10vh auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transform: translateY(-26em);
}
.get-involved {
    text-align: left;
    padding: 20px;
}
.get-involved h2 {
    color: blue;
    margin-bottom: 15px;
    font-size: 28px;
}
.get-involved ul {
    padding-left: 0;
}
.get-involved ul li {
    list-style-type: none;
    font-size: 18px;
    padding: 10px 0;
}
.get-involved ul li a {
    text-decoration: none;
    color: black;
    transition: 0.8s ease-in-out;
}
.get-involved ul li a:hover {
    color: darkblue;
    text-decoration: underline;
}

/* 📱 Responsive Design */
@media (max-width: 768px) {
    .maindiv {
        width: 95%;
        padding: 20px;
    }
    .get-involved ul li {
        font-size: 16px;
    }
    .hero-links {
        list-style: none;
        display: none;
        gap: 40px;
        padding: 0;
       
    }
}
/* About Section */
        .about-section {
            width:90%;
            margin: 30px auto;
            padding: 30px;
            background: #fff;
            text-align: center;
            border-radius: 8px;
            transform:translatey(0);
        }

        .about-section h2 {
            color: #333;
            font-size: 28px;
            margin-bottom: 15px;
        }

        .about-section p {
            font-size: 18px;
            color: #555;
            line-height: 1.5em;
            margin-bottom: 20px;
            text-align:start;
        }

        .cta-button {
            display: inline-block;
            padding: 12px 24px;
            background-color: #007bff;
            color: white;
            font-size: 16px;
            text-decoration: none;
            border-radius: 5px;
            transition: 0.3s ease-in-out;
        }

        .cta-button:hover {
            background-color: #0056b3;
        }

        /* Responsive Design */
        @media (max-width: 600px) {
            .about-section {
                width: 90%;
                padding: 10px;
                height: 80vh;
            }

            .about-section h2 {
                font-size: 24px;
            }

            .about-section p {
                font-size: 18px;
            }
        }
/*What we do sidebar*/
#sidebar4{
    display: none;
   

}
#sidebar4 .what-we-do-container{
    padding: 30px 90px;
}
.do-cont{
    display:none;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-19em);
    height: 50vh;
}
.what-we-do-container {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    padding:30px 10px;
    justify-content: space-between;
    background-color: #fff;
   
   
}
.what-we-do-content {
    max-width: 500px;
    text-align: left;
    flex-grow: 1;
    justify-content: start;
    flex-direction: column;
    display: flex;
}
.what-we-do-content h2 {
    font-size: 24px;
    margin-bottom: 20px;
    padding: 0;
    color: #054488da;
}
.what-we-do-content ul {
    list-style: none;
    padding: 0;
    flex-grow: 1;
    margin-top: 0px;
}
.what-we-do-content ul li {
    font-size: 18px;
    margin-bottom: 10px;
    display: block;
}
.what-we-do-content ul li a{
    text-decoration: none;
    color: #333;
    display: block;
    padding: 5px;
    line-height: 20px;
    transition: 2s ease-in-out;
}
.what-we-do-content ul li a:hover{
    text-decoration:underline #007bff;
}
/*Impact Styles*/
.container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 90px 20px;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 90%;
    margin: 1em 5%;
    transform: translateY(-5em);
}
.card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 220px;
    text-align: center;
}
.icon {
    font-size: 40px;
    margin-bottom: 10px;
    color: #007bff;
}
.count {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}
.label {
    font-size: 14px;
    color: #555;
}
@media(max-width:768px){
    .container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 90px 20px;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 90%;
    height:auto;
    margin: 1em 5%;
    transform: translateY(0);
}
.impact{
    display:none;
}
}
/*News Section*/
.news-container {
    width: 90%;
    margin: auto;
    text-align: center;
    position: relative;
    margin: 0 5%;
    transform: translateY(0);
    overflow-y: hidden;
}

.news-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #007bff;
}

.news-slider-container {
    overflow: hidden;
    height: 100vh;
    width: 100%;
    padding-bottom: 20px;
}

.news-slider {
    display: flex;
    scroll-behavior: smooth;
    overflow: hidden;
    gap: 3%;
}

.news-item {
    width: 31.33%; /* Three items per row */
    height: 110vh;
    flex-shrink: 0;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 2px;
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.news-item img {
    width: 100%;
    height: 300px;
    display: block;
    margin-bottom: 10px;
    background-position:center;
    background-size:cover;
}

.news-item h3 {
    margin-top: 1em;
    margin-bottom:0.5em;
    font-size: 1.2em;
    color: #063568;
    text-align: start;
}

.news-item p {
    font-size: 18px;
    color: #666;
    line-height: 1.2em;
    text-align: start;
    
}
.news-item h4{
    margin-top: 1em;
    margin-bottom:0.5em;
    font-size: 12px;
    text-align: start;
    color: #063568;
}

/* Responsive adjustments (example) */
@media (max-width: 768px) {
    
    .news-item {
    width: 100%; /* Three items per row */
    height:90vh;
    flex-shrink: 0;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 2px;
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
}

@media (max-width: 500px) {
    .news-item {
        width: 100%; /* One item per row on very small screens */
    }
    .news-container{
        transform: translateY(10em);
        height: 95vh;
        background-color: #007bff;
    }
    .news-slider-container {
        overflow: hidden;
        height: auto;
        width: 95%;
        padding-bottom: 20px;
        margin-left: 2.5%;
    }
}


/*What We Do*/

.parent{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    height: 125vh;
    gap: 20px;
    padding: 60px 20px;
    width: 100%;
    margin: 0;
}
.desc{
    background-color: transparent;
    padding: 20px 0;
    width: 80%;
    height: 350px;
    position: relative;
    transform: translateY(0);
    margin: 0;
}
.desc p{
    padding:0 10px;
}
.desc h4{
    padding: 0 10px;
}
.desc a{
    margin-left: 1em;
}
.main-parent{
    height: 130vh;
}

@media(max-width:768px){
    .desc{
    box-shadow:none; /* Subtle shadow */   
    padding: 20px 0;
    width: 100%;
    height: 350px;
    position: relative;
    transform: translateY(0);
    margin: 0;
    
}
.desc p{
    font-size:14px;
}
.parent{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 0;
    width: 95%;
    margin:0 2.5%;
    height: auto;
 
}
.main-parent{
    transform:translatey(5em);
    height: auto;
}
}
/*Categories Section*/
.where-we-work {
    display: flex;
    justify-content: space-between;
    padding: 30px;
    max-width: 90%;
    margin: 0 5%;
    height: 60vh;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-top: 3em;
}

.regions {
    width: 30%;
}

.regions h2 {
    font-size: 24px;
    color: #063568;
    margin-bottom: 15px;
}

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

.regions li {
    font-size: 18px;
    line-height: 2em;
    color: #00aaff;
    margin: 10px 0;
    cursor: pointer;
    transition: color 0.3s ease;
}

.regions li:hover,
.regions li.active {
    color: #04547c;
}

.region-content {
    width: 50%;
    text-align: left;
    position: relative;
}

#region-title {
    font-size: 28px;
    color: #063568;
}

#region-description {
    font-size: 16px;
    color: #444;
    line-height: 1.5em;
    margin-top: 3px;
}

#globe {
    display: none;
    width: 300px;
    position: absolute;
    right: 10px;
    top: 50px;
    transition: transform 0.5s ease;
}

#discover-btn {
    display: inline-block;
    padding: 10px 25px;
    background-color: #063568;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
}

#discover-btn:hover {
    background-color: darkcyan;
}

@media (max-width:768px){
    .where-we-work {
    display: flex;
    flex-direction:column;
    justify-content: space-between;
    padding: 30px;
    max-width: 90%;
    margin: 0 5%;
    height: auto;
    background:#fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-top: 3em;
}
.regions {
    width: 100%;
    display :flex;
    flex-direction:column;
}
.regions ul {
    list-style: none;
    padding: 0;
    display : flex ;
    gap:5px;
}
.region-content {
    width: 100%;
    text-align: left;
    position: relative;
}

}


/*Donate Section*/
.donate-container{
    display: flex;
    height: 50vh;
    width: 100%;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    align-items: center;
  
}
.donate-content{
    width: 50%;
    font-size: 24px;
    color: #333;
    font-weight: 500;
    margin-left: 10%;
}
.donate-button{
    width: 30%;
    margin-left: 20%;
   
}
.donate-button a{
    text-decoration: none;
    background: #333;
    color: white;
    border-radius: 20px;
    padding: 10px 20px;
    justify-content: center;
    text-align: center;
   
}
/*Footer Section*/
footer {
    background-color: #063568;
    color: white;
    padding: 20px;
    width: 100%;
    height: 55vh;
    overflow-x: hidden;
    position: relative;
}

.footer-container {
    width: 90%;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-around;
    flex-wrap: nowrap;
    margin: 0 5%;
}

.footer-section {
    position: relative;
    margin-bottom: 10px;
    margin-right: 20px;
    width: 30%;
    justify-items: center;
}

.footer-section h4 {
    position: relative;
   margin-bottom: 10px;
   text-align: start;
   color: #2fcfe4;
   font-weight: bolder;
}

.footer-section p{
    padding: 10px;
    line-height: 1.5em;
}
.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    line-height: 1.8em;
}

.donate-btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    color: #4B0082;
    text-decoration: none;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    width: 90%;
    margin: 0 2.5%;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-left: 4em;
}

.footer-logo img {
    height: 80px;
    width: 80px;
    border-radius: 50%;
    margin-right: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
}

.footer-social{
    margin-right: 20px;
}
.footer-social a {
    color: white;
    margin-left: 5px;
    font-size: 1.0rem;
    margin-right: 5px;
    
}
@media (max-width:768px) {
    .container {
    max-width: 90%;
    margin:1em 2.5%;
    padding:0;
    background: #ffffff;
    box-shadow:none;
    border-radius: 3px;
    line-height: 2em;
    transform: translatey(8em);
}
.footer-container {
    width: 90%;
    display: flex;
    flex-direction:column;
    justify-content: space-around;
    flex-wrap: nowrap;
    margin: 0 5%;
}
footer {
    background-color: #063568;
    color: white;
    padding: 20px;
    width: 100%;
    height:auto;
    overflow-x: hidden;
    position: relative;
}
.footer-section {
    position: relative;
    margin-bottom: 10px;
    margin-right: 20px;
    width: 100%;
    justify-items: center;
}
.footer-bottom {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    width: 90%;
    margin: 0 2.5%;
}

}