/* Add your CSS here */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Open Sans, sans-serif;
}
.container {
  display: flex;
  flex-direction: column;
  background-color: #f6f6f6;
  width: 100%;
  

  
}

li{
  list-style-type: none;

}
a{
  text-decoration: none;
  color: black;
  font-size: 1rem;

}
a:hover{
  color: green;
}
/* Header */
Header {
  position: relative;
  padding: 0 2rem;
  
}
.nav-bar {
  width: 100%;
  height: 60px;
  
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f6f6f6;
 
  margin-bottom: -10px;
 
  padding-top: 20px;
}
.nav-bar .links {
  display: flex;
  gap: 5rem;
}
.nav-bar .toggle_btn{
  color: #134e4a;
  font-size: 1.5rem;
  cursor: pointer;
  display: none;
}
.action_btn {
  background-color: #134e4a;
  color: white;
  padding: 0.5rem 1rem;
  border: none;
  outline: none;
  border-radius: 20px;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  transition: scale 0.2s ease;
}
.action_btn:hover {
  scale: 1.05;
  color: white;
}
.action_btn:active {
  scale: 0.95;
  color: white;
}

/* Drop-down-menu */
.dropdown_menu{
display: none;
position: absolute;
right:2rem;
top: 60px;
height: 0;
background : #f6f6f6;
backdrop-filter: blur(15px);
border-radius: 10px;
overflow: hidden;
transition: height 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
z-index: 2;
}
.dropdown_menu.open{
  height: 240px;
}
.dropdown_menu li{
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;

}
.dropdown_menu .action_btn{
  width: 60%;
  display: flex;
  justify-content: center;
}
/* main containt */

.main-content {
  display: flex;
  flex-direction: row;
  justify-content: space-around;

}

.right{
  display: flex;
  /* flex: 1; */
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  margin-right: 20px;
  margin-left: 20px;
  
  /* border: 2px solid black; */
  width:50%;
  height: 75vh;
  /* padding: 20px; */
  position: relative;
  
  
 

}
.right-upper{
  display: flex;
  flex: 1;
  
  justify-content: center;
  
  width: 100%;
  height: 60%;
  padding-left:10px; 
  padding-right: 40px;
  
}
.right-upper img{
  width: 90%;
  height: 100%;
  
}
.mobile-landscape {
  width: 70%; 
  height: 100%; 
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: #000;
  box-shadow: 0px 0px 100px 20px rgba(128,128,128,0.5);
  
}

.mobile-landscape:before {
  content: "";
  position: absolute;
  top: -5px;
  bottom: -5px;
  left: -5px;
  right: -5px;
  border: 15px solid black;
  border-radius: 25px;
}
.mobile-landscape video {
  width: 100%;
  height: 100%;
 
  border-radius: 25px;
}
.right-lower{
  display: flex;
  flex: 1;
  
  overflow: hidden;
  
  white-space: nowrap;
  position: relative;
  
  width: 115%;
  height: 40%;
  left: -40%;
  margin-right: -70%
 
  
  
  
  
}
.right-lower:before, .right-lower:after{
  position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    content: "";
    z-index: 1;
}
.logos-slide {
  display: inline-block;
  animation: 30s slide infinite linear;
  
}

.logos-slide img {
  height: 180px;
  
  padding-top: 10px;
  
  margin-top: 20px;
}
@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

/* left section */
.left {
  flex: 1;
  background: url('images/banner-img.jpeg') no-repeat center center;
  background-size: cover;
  margin-top: 40px;
  margin-right: 20px;
  margin-left: 40px;
  height: 75vh;
  border-radius: 20px;
  width: 50%;
  display: flex;
  justify-content: center;
  z-index: 1;
  
  box-shadow: 0px 0px 50px 20px rgba(128,128,128,0.5);
} 
.left-text  {
  display: flex;
  flex-direction: column;
  color: white;
  font-size: 2rem;
  margin: 5px;
  justify-content: center;
  align-items: center; 
  height: 90%;
  
}



.para{
  margin-top: 10px;
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

/* donate now section */
.bottom {
  display: flex;
  justify-content: space-between;
  
  align-items: center;
  
  margin-left: 200px;
 
  width: 70vw;
 
  background-color: white;
  border-radius: 50px;
  padding: 10px; 
  margin-top: -35px;
  padding-right: 30px;
  z-index: 1;
 
  box-shadow: 0px 0px 50px 20px rgba(128,128,128,0.5);
  
  
}
.bottom p {
  text-align: left; 
  margin-right: 20px; 
  font-weight: bold; 
  font-size: 14px;
  padding-left: 20px;
  
}
.top-btn {
  display: flex;
  justify-content: space-between;
  
  align-items: center;
  
  margin-left: 300px;
  
  width: 50vw;
  
  background-color: white;
  border-radius: 50px;
  padding: 20px; 
  margin-top: -35px;
  z-index: 1;
  display:none;
  padding-right: 20px;
  
  
}
.top-btn p {
  text-align: left; 
  margin-right: 20px; 
  font-weight: bold; 
  font-size: 14px; 
  
}



.donate_btn{
  background-color: #134e4a;
  color: white;
  padding: 0.5rem 1rem;
  
  border-radius: 30px;
  font-size: 22px;
  
  cursor: pointer;
  transition: scale 0.2s ease;
  padding: 10px;
 
  display: flex;
  
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 50px;
  min-width: 200px;
}
.donate_btn:hover {
  scale: 1.05;
  color: white;
}
.donate_btn:active {
  scale: 0.95;
  color: white;
}




/* Footer */



.footer img {
  width: 100%;
  height: auto;
}
.desktop-footer {
  display: block; /* Show desktop footer on larger screens */
  padding: 10px;
  
  margin-top: 40px;
}

.mobile-footer {
  display: none; /* Hide mobile footer on larger screens */
}





/* Resposive design */
@media (max-width: 768px) {
  .nav-bar .links, 
  .nav-bar .action_btn {
      display: none;
  }
  .nav-bar .toggle_btn {
      display: block;
  }
  .main-content {
    display: flex;
    flex-direction: column;
}
  .left {
     
      display:block;
      

      width: 80%;
      
      
  }
  .right {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;  
      
      width: auto;
      
      
      
  }
  
  .right-upper{
    
    display: block;
    
    order: 2;
    
    
    width: 100%;
    margin-left: -10px;
    
    padding-top: 90px;
  }
  .mobile-landscape {
    width: 115%; 
    height: 65%; 
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background: #000;
    margin-top: 25px;
    
  
  }
  .right-lower{
   
      order: 1;
     
      padding-top: 60px;
      height: -10%;
      margin-top: -100px;
      margin-bottom: -140px;
      width: 140%;
      
  }
  .logos-slide {
    
    white-space: nowrap;
  }
  .left-text {
    
    margin-bottom: 50px;
    padding-top: 60px;
  }
  
  .left-text h1{
    font-size: 40px;
  }
  .bold-heading{
    margin: 60px;
  }
  .para{
    
    font-size: 1rem;
    padding-bottom: 60px;
  }
  
  
  
  .dropdown_menu {
      display: block;
      left: 2rem;
      width: unset;
  }
  .top-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 70%;
    margin-left: 20%;;
    
    margin-right: 20%;
    padding: 20px;
    height: 20vh;
    border-radius: 20px;
    
    margin-top: -70px;
   
    
    
    
  }
  .top-btn p {
    text-align: center;
    margin-right: 0;
    font-size: 0.7rem;
    padding: 10px;
    order: 2;
    min-height: 50px;
    
  }
  .bottom {
    display: none;
  }
  
  .footer{
    
    margin-top: -90px;
  }
  .mobile-footer {
    display: block; /* Show mobile footer on smaller screens */
    margin-top: 60px;
}
  .desktop-footer {
    display: none; /* Hide desktop footer on smaller screens */
}

  
}