*{
    margin: 0;
    padding: 0;
    color: #1E1E1E;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    font-family: 'Montserrat', sans-serif;

}
.with-bullets ul li{
    list-style: disc;
}
p{
    font-size: 18px;
}
:root{
    /* --color-primary: #1743e3; */
    --color-primary: #272262;
    --color-secondary: #FFAB07;
    --color-lightyellow:rgba(255, 171, 7, 0.2);
    --color-white: #FFFFFF; 
    --color-dark: #333; 
    --color-black: #222; 
}
.flex-column{
    display: flex;
    flex-direction: column;
}
.lightyellow{
    background-color: var(--color-lightyellow);
}
.no-back{
    background-color: var(--color-white);
}
.blue{
    color: var(--color-primary);
}
nav{
    width: 100%; 
    height: 4.5rem;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px 10px 40px;
    background-color: var(--color-white);
}
.nav-links{
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* gap: 30px; */
}
.nav-links ul{
    display: flex;
    gap:4.5vw;
    
}
.nav-links ul li{
    font-size: 1.3rem;
    font-weight: 500;
}
.nav-links li a:hover{
    color: var(--color-primary);
}
.nav-links li .active{
    color: var(--color-primary);
}
.logo img{
    /* position: absolute; */
    height: 5rem;
    padding: 10px 10px;
}
.search{
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 30px;
}
/* Hamburger menu */
.hamburger {
    display: none;
    /* display: flex; */
    flex-direction: column;
    cursor: pointer;
  }
  
  .hamburger span {
    height: 3px;
    width: 30px;
    background-color: var(--color-primary);
    margin: 4px;
    transition: all 0.3s;
  }
  

.container{
    max-width: 1620px;
    width: 100%;
    /* margin: 0 auto; */
    /* justify-content: center; */
}
.search i{
    font-size: 20px;
    padding:6px 5px 0px 5px;
}
.hero-section{
    height: 650px;
    width: 100%;
    overflow: hidden;
    align-items: center;
    position: relative;
}
.hero-section img{
    width: 100%;
}
.text_section{
    position: absolute;
    top:50%;
    border: #C62E2E;
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-left: 40px;
    color: aqua;
}
.text_section h1{
    color: whitesmoke;
}
.hero-section .btn{
    background-color: var(--color-primary);
    border: 2px solid var(--color-primary);
}
.btn{
    display: inline-block;
    width: fit-content;
    padding: 12px 28px;
    background: var(--color-primary);
    border: 2px solid var(--color-primary);
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    color: var(--color-white);
    letter-spacing: .4px;
    font-weight: 600;
    transition: .4s ease;
    /* opacity: 0; */
    animation: logoAni 1s ease forwards; 
    animation-delay: 1.3s;
    z-index: 80;
}
.btn:hover{
    background: whitesmoke;
    color: var(--color-primary);
}


.know-about-container{
    display: flex;
    width: 100%;
    height: 100vh;
    margin-top: 30px;
    padding-right: 2vw;
}
.header-right{
    width: 45%;
    overflow: hidden;
    /* padding-right: 2vw; */
    border-radius: 15px;
}
.header-right .sq-box{
    width: 100%;
    height: 700px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    /* border-radius: 100px; */
}

.header-left{
    width: 55%;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    padding: 10px 40px;
    justify-content: center;
    gap: 50px;
}
.header-left h3{
    align-items: left;
}
.header-right .sq-box img{

    width: 100%;
    height: 650px;
    border-radius: 10px;
    scale: 0.8;
    object-fit: cover;
    object-position: center;   /* Center the image focus */

}
.project-done{
    position: relative;
    /* margin-top: 30px; */
    display: flex;
    /* background-color: var(--color-lightyellow); */
    padding: 30px 20px 20px 20px;
    flex-direction: column;
    /* justify-content: center; */
    align-items: left;
    gap: 50px;
    padding: 30px 40px;
}
.project-done .image-container{
    background-color: #333;
    position: relative;
}
.project-done .card-container .card .image-container .description{
    position: absolute;

    left: 20px;
    
}
.project-done .card-container .card .image-container .description>*{
    color: #eaeaea;
}
.fade-image {
    opacity: 0.5; /* Initially hidden */
    transition: opacity 2s ease-in; /* Smooth fade-in over 2 seconds */
}
.blog{
    position: relative;
    /* margin-top: 30px; */
    display: flex;
    /* background-color: var(--color-lightyellow); */
    padding: 30px 20px 20px 20px;
    flex-direction: column;
    /* justify-content: center; */
    align-items: left;
    gap: 50px;
    padding: 30px 40px;
    margin-bottom: 20px;
}
.blog .card-container .card{
    height: 400px;
    width: 300px;
    justify-content: space-between;
}
.blog .card-container .card .image-container{
    background-color: #333;
    position: relative;
    height: 300px;
    border-radius: 0%;
}
.blog .card-container .card .title{
    /* height: 80px; */
    width: 300px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 15px;
    
}
.blog .card-container .card .title button {
background-color: var(--color-primary); /* Primary blue background */
  color: #ffffff; /* White text color */
  border: none; /* No border */
  width: 150px;
  border-radius: 5px; /* Rounded corners */
  padding: 10px 20px; /* Padding inside the button */
  font-size: 16px; /* Font size */
  font-weight: bold; /* Bold text */
  cursor: pointer; /* Pointer cursor on hover */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  transition: all 0.3s ease; /* Smooth transition for hover effects */
    
}
button a{
    color:white;
}
.see-more button{
    font-size: 16px;
    position: absolute;
    right: 5%;
    
}
.top-news-container{
    position: relative;
    display: flex;
    padding: 20px 20px;
    margin-top: 40px;
    height: 500px;
}
.top-news-container .header-right{
    position: absolute;
    top:20px;
    right: 0;
    /* width: 55%; */
    padding: 20px 40px;
}
.top-news-container .header-right .sq-box{
    height: 100px;
    display: flex;
    gap: 20px;
    /* width: 40px; */
}
.top-news-container .header-right .sq-box .image{
    height: 80px;
    width: 100px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 18px;
}
.image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.containerall{
    display:flex;
}
.serve{
    position: relative;
    margin-top: 30px;
    /* background-color: var(--color-lightyellow); */
    padding: 30px 20px 20px 20px;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    gap: 10px;
}
.serve span{
    /* position: absolute; */
    width: 220px;
}
.with-bullets {
    list-style-type: disc;
  }
.card-container{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Allows wrapping of items in rows */
  grid-auto-flow: row; /* Ensures items are aligned in a row-first direction */
    width: 100%;
    gap:20px;
    max-width: 1400px;
padding-top: 10px;
    

}


.card{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.image-container{
    height: 300px;
    width: 300px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}
.card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: ease 0.5s;
}
.card img:hover{
    scale: 1.1;
}
/* Donate Container */
.donate{
    width: 100%;
   
    display: flex;
    align-items: center;
    justify-content: center;
}
.donate .container{
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: #C62E2E;
    /* width: 100%; */
   align-items: center;
   justify-items: center;
    gap: 30px;
    border-radius: 10px;
    padding: 60px 20px 20px 20px;
    margin: 0px 40px;
}
.donate .container .button-group{
    display: flex;
    gap: 20px;
}
.button-group .btn1{
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
}

  
 
/* -------------about us page */
  
 
.about-container{
    position: relative;
    display: flex;
    height: 500px;
    margin-top: 30px;
}
.about-container .header-right{
    position: relative;
    top:50px;
    right: 0;
    /* width: 55%; */
    padding: 20px 20px;
}
.about-container .header-right .sq-box{
    height: 400px;
    display: flex;
    gap: 20px;
    /* width: 40px; */
}
.about-container p{
    font-size: 18px;
}
  /* ---------our vison ------ */
 .our_vision{
    position: relative;
  
  
   
}
.our_vision .title{
    padding: 20px 40px;
}
.our_vision .content{
    display: flex;
    
}
.our_vision .header-left{
    width: 40%;
}
.our_vision .header-left .sq-box{
    height: 300px;
   
    display: flex;
    gap: 20px;
    /* width: 40px; */
}
.our_vision .header-left .sq-box img{
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.our_vision .header-right{
    padding: 20px 0px;
    width: 55%;
}
.our_vision .header-right .title{
    padding: 20px 0px;

}
.our_vision p{
    font-size: 18px;
    text-align: justify;
    align-items: center;
    justify-items: center;
}
.reverse{
    flex-direction: row-reverse;
    justify-content: flex-start;
}
.our_team{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
  
.our_team .image-container{
    width: 250px;
    
}
.our_team .description{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.our_team .username{
    font-weight: bold;
}

.blank{
    height: 30px;
}


/* ----------------------- Footer Css-------------------------  */
footer{
    /* background-color: antiquewhite; */
    margin-top: 20px;
    position: relative;
    align-items: center;
    box-shadow: 0px -4px 10px rgba(0, 0, 0, 0.3); /* Shadow added */

    /* box-shadow: #C62E2E; */

}
.footer_container{
    display: flex;
    padding-top: 2rem;
    flex-direction: column;
   justify-content: center;
  
}
.footer-upper .logo img{
    height: 150px;
    width: 150px;
}
.footer_container span{
    /* position: absolute; */
    height: 1px;
    background-color: #272262;
    width: 100%;
}
.footer-upper{
    display: flex;
    justify-content: space-between;
    gap: 9vw;
    padding: 10px 100px 10px 50px;
    padding-bottom: 10px;
}
.footer-upper span{
    height: 3px;
    background-color: var(--color-primary);
}
span{
    height: 3px;
    background-color: var(--color-primary);
    margin-bottom: 5px;

}
.social-link{
    display: flex;
    justify-content: space-evenly;
}
.copyright{
    display: flex;
    align-items: center;
    justify-content: center;
    /* border-top:3px solid red; */
    padding: 10px 20px;
}
.copyright p{
    justify-content: center;
}
.explore-more{
    position: relative;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    /* align-items: center; */
    line-height: 20px;
    /* gap: 1rem; */
}
.about{
    position: relative;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    /* align-items: center; */
    line-height: 20px;

}
.newsletter{
    position: relative;
    display: flex;
    flex-direction: column;
    gap:8px;
    /* justify-content: center; */
    /* align-items: center; */
    /* line-height: 30px; */
    /* gap: 0.5rem; */

}

.confirmation{
    align-items: center;
    padding: 100px 100px 200px 100px;
}
.confirmation p{
    padding: 10px 10px;
}
/* --------------------------our work---------------- */

.work-container{
    display: flex;
    padding-top: 60px;
    /* padding-bottom: 20px; */
    /* height: 100vh; */
    
}
/* .work-container .header-left{
    height:80vh ;
    
}
    */
.work-container .header-right{
    height: 80vh;
    padding: 30px 0px;
} 
.our-services{
    background-color: var(--color-lightyellow);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    padding: 10px 0px;
}
.our-services .card-container{
    display: grid;
    grid-template-columns: repeat(3,400px);
    padding: 0px 20px;
    gap: 30px;
}
.our-services .image-container{
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 400px;
    width: 400px;
    background-color: whitesmoke;
    padding: 10px 10px;
}
.our-services .image-container img{
    width: 100%;
    height: 80%;
    border-radius: 10px;
}

/* -------------event of our work */
.our-event{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    gap: 20px;
    padding: 20px 35px;

}

.our-event .event-container1{
    display: flex;
    /* flex-direction: column; */
    justify-content: space-between;
    flex-wrap: wrap;

}
.our-event .left, .right{
    display: flex;
    background-color: #FFAB07;
    /* width: 500px; */
    height: 100px;
    border-radius: 10px;
    align-items: center;justify-content: space-between;
    margin-bottom: 10px;
}


.event-container{
    width: 100%;
    padding: 0px 15px;
    /* border: 2px solid red; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    
}
.arrow{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #eaeaea;
    border-radius: 50%;
    width: 50px;
    height: 50px;
}
.event-container  .content{
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-bottom: 10px;
}
/* -------------event of our work */



/* -----------ourwork end  */
/* ------------------Footer CSS-------------*/












/* Mobile Navigation Responsiveness */
@media screen and (max-width: 480px) {
    .nav-links ul {
        display: none;
       
      }
      .navbar.hidden {
        transform: translateY(-100%); /* Moves navbar out of view */
      }
    .nav-active{
        display: flex;
    }
   
    .social-link{
        display: none;    
    }
    .social-link li a:hover{
        border-color: var(--color-white);
    }
    .social-link li a i{
        transform: rotate(-45deg);
        font-size: 20px;
        color: var(--color-white);
    }
    .hamburger{
        display: flex;
    }
    .know-about-container{
        display: flex;
        width: 100%;
        height: 350px;
        margin-top: 30px;
        padding-right: 2vw;
    }
    .text_section{
        top:50%;
    }
    .header-left{
        gap:30px;
    }
    h1{
        font-size: 1.5em;
    }
    .header-left{
        width: 100%;
        justify-content:left;
    }
    .header-right {
        display: none;
    
    }
    .header-right .sq-box{
    padding-top: 10px;
    }
    .donate .container{
        padding-top: 35px;
    }
    .our-event .event-container1{
        flex-wrap: nowrap;
        flex-direction: column;
        gap: 15px;
    }
    .explore-more{
        display: none;
    }
    .project-done{
        gap: 20px;
    }
    .top-news-container{
        padding-top: 40px;
        height: fit-content;
    }
    
        .nav-links ul.show {
            margin-top: 350px;
            position: absolute;
            display: flex;
            flex-direction: column;
            background-color:var(--color-white);
            flex-wrap: wrap;
            height: 50vh;
            width: 100%;
            padding-left: 25px;padding-top: 15px;
        }
    /* Change Hamburger to Cross */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px,8px) ;
    
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0; /* Hide the middle line */
  }
  
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px,-8px);
    
  }
  img{
    object-fit: cover;
    object-position: center;
    height: 100%;
    width: 100%;
  }
  .about-container{
    margin-top: 75px;
    flex-direction: column;
    height: 850px;
  }
  .about-container .header-right{
    display: flex;
    width: 100%;
  }
  .our_vision .content{
    flex-direction: column;
  }
  .our_vision .content .header-left{
    width: 100%;
  }
  .our_vision .content .header-right{
    display: flex;
    width: 100%;
    padding: 20px 40px;
  }
  .footer-upper .logo img{
    height: 5rem;
    width: 80px;
  }
  .search i{
    display: none;
  }
  
}
/* .with-bullets{
    padding-left: 20px;
} */


