*{
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
    font-family: 'popins','sans-sarif';
}


/* ===== Basic Reset ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== Fixed Header Styling ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #333;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  z-index: 1000;
}

/* ===== Logo ===== */
.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

/* ===== Navigation Menu ===== */
.nav {
  display: flex;
  gap: 1.5rem;
}

.nav a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: #f0a500;
}

/* ===== Donate Button ===== */
.donate-btn {
  background-color: #f0a500;
  color: black;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.donate-btn:hover {
  background-color: #c97f00;
}

/* ===== Hamburger Menu Toggle ===== */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: white;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: #333;
    flex-direction: column;
    padding: 1rem 2rem;
  }

  .nav.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

/* ===== Push content below fixed header ===== */
body {
  padding-top: 80px;
}


 
  

  
  
  
.ct-bg{
    width: auto;
    height: 400px;
     background-repeat: no-repeat;
     background-size: cover;
     background-position: center;
    background-image: url("images/contacts-min.jpg");
    background-attachment: fixed;
    text-align: center;
    color:black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
   
 
} 
.contact-info{
    display: flex;
    justify-content:space-around;
    margin-top: 60px;
    text-align: center;

}
.contact-info span{
    display: block;
}
.contact-info div{
    margin: 0.8rem 0;
    padding: 1rem;
}
.contact-info span i{
    font-size: 2rem;
    padding-bottom: 0.9rem;
    color:#f7327a;
}

@media (max-width: 768px) {
  .ct-bg {
      height: auto; /* allow height to adjust based on content */
      padding: 2rem 1rem; /* add some padding for spacing */
      background-attachment: scroll; /* avoid potential issues with fixed backgrounds on mobile */
  }

  .contact-info {
      flex-direction: column;
      align-items: center;
      margin-top: 30px;
  }

  .contact-info div {
      width: 90%;
      margin-bottom: 1.5rem;
  }

  .contact-info span i {
      font-size: 1.5rem;
  }
}





.line div :nth-child(1),
.line div :nth-child(3){
    height: 3px;
    width:70px;
    background: #f7327a;
    border-radius: 5px;
}
.line{
    display: flex;
    align-items: center;
}
.contact-body{
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1rem;
}

.ct-bg h3{
    font-size: 6.3rem;
    font-weight: 400;
    

}
.ct-bg h2{
    font-size: 3rem;
    text-transform: uppercase;
    padding: 0.4rem 0;
    letter-spacing: 4px;
}
.image img{
    height: 500px;
    width:600px;
    display: flex;
    margin-top: 60px;
    padding: 2vw 4vw;
    border-radius: 70px;
    margin-bottom: 60px;
    
   
    
}

form{
    background:rgb(222, 236, 249);
    display: flex;
    flex-direction: column;
    padding: 2vw 4vw;
    width:90%;
    max-width: 400px;
    border-radius: 10px;
    height: 400px;
   margin-top: -515px;
    margin-left: 770px;
    margin-bottom: 60px;
    

}
form h3{
    color:#555;
    font-weight: 800;
    margin-bottom:20px
}
form input, form textarea{
    border: 0;
    margin: 7px 0;
    padding:15px;
    outline: none;
    background-color: #f5f5f5;
    font-size: 12px;
}
form button{
    padding: 15px;
    background-color: #ff5361;
    color:#fff;
    font-size: 18px;
    border:0;
    outline: none;
    cursor: pointer;
    width: 150px;
    margin:20px auto 0;
    border-radius: 30px;
    
}
@media (max-width: 768px) {
  .line {
      flex-direction: column;
  }

  .line div:nth-child(1),
  .line div:nth-child(3) {
      width: 40px;
  }

  .ct-bg h3 {
      font-size: 3rem;
  }

  .ct-bg h2 {
      font-size: 1.8rem;
      letter-spacing: 2px;
  }

  .image img {
      height: auto;
      width: 100%;
      padding: 1rem;
  }
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 36px;
    background-color: #333;
    color: #fff;
   
  }
  
  .logo {
    font-size: 24px;
    font-weight: bold;
  }
  
  .nav {
    display: flex;
    gap: 30px;
  
    margin-top: 10PX;
  }
  
  .nav a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
   
  }
  
  .nav a:hover {
    color: #00bcd4;
  }
  
  .menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
  }
  
  /* Media Query for Mobile */
  @media (max-width: 768px) {
    .nav {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #333;
        flex-direction: column;
        display: none;
        padding: 10px 0;
        z-index: 1000; /* ✅ Add this line */
      }
  
    .nav a {
      padding: 10px 20px;
      border-top: 1px solid #444;
    }
  
    .menu-toggle {
      display: flex;
    }
  
    .nav.show {
      display: flex;
    }
  }
/* Donate Button Style */
.donate-btn {
    background-color: #00bcd4;
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: bold;
    transition: background-color 0.3s;
    
  
  }
  
  .donate-btn:hover {
    background-color: #0097a7;
  }
  
  /* Mobile adjustments for donate button */
  @media (max-width: 768px) {
    .donate-btn {
      margin-top: 10px;
      text-align: center;
    }
  } 





/* Responsive Design for Image, Form, and Map */
@media screen and (max-width: 1024px) {
    .image img {
        height: 400px;
        width: 500px;
        padding: 2vw;
    }
    form {
        margin-top: 20px;
        margin-left: auto;
        margin-right: auto;
        width: 80%;
    }
    .map-container {
        width: 90%;
        margin: auto;
    }
}

@media screen and (max-width: 768px) {
    .image img {
        height: 350px;
        width: 450px;
    }
    form {
        width: 90%;
        margin-top: 20px;
    }
    .map-container {
        width: 100%;
        padding-top: 75%; /* Adjust for aspect ratio */
    }
}

@media screen and (max-width: 480px) {
    .image img {
        height: 300px;
        width: 100%;
        padding: 1vw;
    }
    form {
        width: 100%;
        padding: 5vw;
        margin-top: 20px;
    }
    .map-container {
        width: 100%;
        padding-top: 100%; /* Square ratio for smaller screens */
    }
}

.footer {
  background-color: #1a1a1a;
  color: #f2f2f2;
  padding: 2rem 1rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: auto;
}

.footer-logo h2 {
  font-size: 1.5rem;
  color: #fff;
}

.footer-logo p {
  font-size: 0.9rem;
  color: #ccc;
  margin-top: 0.5rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: #888;
}

/* === Responsive Media Query === */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
    margin-top: 1rem;
  }
}


.fg {
  width: 100%;
  max-width: 100%;
  position: relative;
  overflow: hidden;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.fg iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media screen and (max-width: 600px) {
  .fg {
    padding-top: 75%; /* Adjust aspect ratio for smaller screens */
  }
}


