*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  
}

/* Ensure that body and html take full width */
html, body {
  width: 100%;
  margin: 0; /* Reset margin */
  padding: 0; /* Reset padding */
  overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Ensure that body and html take full width */
html, body {
  width: 100%;
  margin: 0; /* Reset margin */
  padding: 0; /* Reset padding */
  overflow-x: hidden; /* Prevent horizontal scroll */
}

/* ===== Reset Styles ===== */
html, body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
}

* {
  box-sizing: inherit;
}

/* ===== Reset Styles ===== */
html, body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
}

* {
  box-sizing: inherit;
}

/* ===== Header Styling ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color:#c5c5c5;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between; /* Left (logo), center (menu), right (donate button) */
  padding: 1rem 2rem;
  z-index: 1000;
}

/* ===== Logo Styling ===== */
.logo {
  font-size: 17px;
  font-weight: bold;
  color:black;
  margin-top: 12  px;
}

/* ===== Navigation Menu ===== */
.nav {
  display: flex;
  justify-content: center; /* Center the nav items */
  gap: 2rem;
  flex: 1; /* Make the nav take up available space */
}

.nav a {
  color:black;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: #f0a500;
}

/* ===== Donate Button ===== */
.donate-btn {
  background-color: #f0a500;
  color: black;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
   /* Space between donate button and menu button */
}

.donate-btn:hover {
  background-color: #c97f00;
}

/* ===== Menu Toggle Button (Mobile Only) ===== */
.menu-toggle {
  display: none;
  font-size: 2rem;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
}

/* ===== Media Query for Phones ===== */
@media (max-width: 768px) {
  /* Adjust header for mobile */
  .header {
    padding: 1rem; /* Reduce padding for mobile */
    justify-content: space-between; /* Ensure logo and menu button are at ends */
  }

  .nav {
    display: none; /* Hide nav by default on mobile */
    position: absolute;
    top: 60px; /* Position below header */
    left: 0;
    width: 100%;
    background-color: #333;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    z-index: 999;
  }

  .nav.show {
    display: flex; /* Show nav when toggle button is clicked */
  }

  .menu-toggle {
    display: block; /* Show menu button on mobile */
  }

  .nav a {
    font-size: 1.2rem;
    text-align: center;
    margin-top: 35px;
  }

  .donate-btn {
    margin-top: 1rem; /* Adjust button on mobile */
    width: 100%;
    padding: 0.6rem;
    text-align: center;
    width:70px;
  }
}







/* ===== Push content below fixed header ===== */

.section {
    position: relative;
    width: 100%;
   
    display: flex;
    align-items: center;
    overflow: hidden;
   
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
.image-container {
    flex: 1;
    animation: zoomIn 2s ease-in-out;
}
.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    animation: floatImage 3s infinite ease-in-out;
    margin-top: 40px;
}
.text-content {
    position: absolute;
    left: 25%;
    top: 370px;
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 8px;
    animation: fadeIn 3s ease-in-out;
}
.text-content h2 {
    font-size: 28px;
    margin: 0 0 10px;
}
.text-content p {
    font-size: 16px;
    margin: 0;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes zoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
@keyframes floatImage {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}


@media (max-width: 768px) {
  .section {
    flex-direction: column;
    align-items: center;
    padding-top: 5rem; /* Space below fixed header */
    padding-bottom: 2rem;
  }

  .image-container {
    width: 100%;
  }

  .image-container img {
    width: 100%;
    height: auto;
    margin-top: 20px;
  }

  .text-content {
    position: static; /* No absolute positioning on mobile */
    width: 100%;
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px;
    text-align: center;
  }

  .text-content h2 {
    font-size: 22px;
  }

  .text-content p {
    font-size: 14px;
  }
}

  
  @media (max-width: 480px) {
    .text-content {
      padding: 15px;
      margin: 15px;
    }
  
    .text-content h2 {
      font-size: 20px;
    }
  
    .text-content p {
      font-size: 13px;
    }
  }
  

.container2{
   
    width: 100%;
    background-color:#fff;
}

.who-we-are {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    animation: fadeInSlide 1.2s ease-in-out;
    margin-top: 50px;
  }
  
  @keyframes fadeInSlide {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .content {
    flex: 1;
    min-width: 300px;
    padding-right: 30px;
  }
  
  .content h3 {
    color: #ff6a00;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .content h1 {
    font-size: 38px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.3;
  }
  
  .content p {
    font-size: 18px;
    color: #444;
    line-height: 1.6;
  }
  
  .image-box {
    flex: 1;
    min-width: 300px;
    overflow: hidden;
    border-radius: 20px;
  }
  
  .image-box img {
    width: 100%;
    border-radius: 20px;
    transition: transform 0.5s ease;
  }
  
  .image-box img:hover {
    transform: scale(1.05);
  }
  
  /* Media Query */
  @media (max-width: 768px) {
    .who-we-are {
      flex-direction: column-reverse;
      text-align: center;
      padding: 20px;
    }
  
    .content {
      padding-right: 0;
      margin-top: 20px;
    }
  
    .content h1 {
      font-size: 30px;
    }
  
    .content p {
      font-size: 16px;
    }
  }


.checkbtn{
    font-size: 30px;
    color:white;
    float:right;
    line-height: 80px;
    margin-right:40px;
    cursor: pointer;
    display: none;
}
.card{
    border: 1px solid #f4A261;
    height: 290px;
    width: 250px;
    border-radius:2rem;
    transition: 0.3s;
    margin-top: 30px;
            
}
.card:hover{
    box-shadow:5px 5px 20px  #f4A261;;

}
.yemw {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.yemw.animate {
  opacity: 1;
  transform: translateY(0);
}




.card img{
    height:40px;
    width:30px;
    margin-left: 110px;
    margin-top: -20px;
}
.card h1{
    text-align: center;
   
}
.card p{
    text-align: center;
    margin-top: 20px;

}
.card button{
   margin-left: 50px;
   font-size: 18px;
   border: none;
   font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
   background-color: #fff;
   margin-top: 20px;
}
.cards{
    display: flex;
   justify-content: center;
    align-items: center;
    gap:80px;
}

.cards3{
    display: flex;
    justify-content: center;
    gap: 70px;
    
}
.card1 img{
    height:40px;
    width:30px;
    margin-left: 110px;
    margin-top: -20px;
}
.card1 h1{
    text-align: center;
   
}
.card1 p{
    text-align: center;
    margin-top: 20px;

}
.card1 button{
   margin-left: 50px;
   font-size: 18px;
   border: none;
   font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
   background-color: #fff;
   margin-top: 20px;
}
.card1{
    border: 1px solid #f4A261;
    height: 290px;
    width: 250px;
    border-radius:2rem;
    transition: 0.3s;
    margin-top: 30px;
            
}
.card1:hover{
    box-shadow:5px 5px 20px  #f4A261;;

}
@media (max-width: 768px) {
    .cards,
    .cards3 {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .card,
    .card1 {
        width: 90%;
        height: auto;
    }

    .card img,
    .card1 img {
        margin-left: auto;
        margin-right: auto;
        display: block;
        margin-top: 10px;
    }

    .card button,
    .card1 button {
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
}



.main h3{
   
    color:#f4A261;
   text-align: center;
   margin-top: 60px;
    font-size:58px;
}
.main h2{
    font-size: 18px;
    color:#111D15;
    text-align: center ;
    font-size: 32px;
    
    
   
}
.main span{
    text-align: center;
    font-size: 32px;
}
.brights{
    height: 490px;
    width: 380px;
   border: 2px solid orange;
    border-radius: 20px;
    margin-top: 30px;
   
}
.brights p{
   
    color:#164472;
    margin-top: 10px;
    font-size: 19px;
    margin-left: 12px;
}
.brights img{
    width:310px;
    margin-left: 30px;
   border-radius: 15px;
   margin-top: 10px;

}
.bright img {
    transition: transform .5s; /* Animation */
  }
  
  .bright img:hover {
    transform: scale(1.1); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
  }

.bright h1 {
    margin-left: 18px;
    margin-top: 15px;
    font-weight: bold;
    text-transform: capitalize;
    font-size: 18px;
}
.bright button{
    margin-left: 90px;
    background-color:rgba(232, 157, 19, 0.829);
    margin-top: 10px;
    border-radius: 15px;
    font-size: 20px;
    width:140px;
    height:50px;
    color:white;
    border: none;
}
.bright button:hover{
    border:3px solid palegreen;
    background-color: transparent;
    color:#2E8B57;


}
.bright{
    display: flex;
    justify-content: space-evenly;
}


@media (max-width: 768px) {
    .bright {
      flex-direction: column;
      align-items: center;
    }
  
    .brights {
      width: 90%;
     
      margin-bottom: 20px;
    }
  
    .bright button {
      margin-left: 100px;
      margin-top: 20px;
      
    }
  
    .main h3 {
      font-size: 36px;
      margin-top: 40px;
    }
  
    .main h2,
    .main span {
      font-size: 24px;
    }
  
    .brights img {
      width: 90%;
     height: 200px  ;
      margin-left: auto;
      margin-right: auto;
      display: block;
    }
  
    .bright h1 {
      text-align: center;
      margin-left: 0;
    }
  
    .brights p {
      margin-left: 0;
      padding: 0 10px;
      text-align: center;
    }
  }
  

   /*      program section*/
   .programs{
        background-color:white;
        margin-top: 40px;
        margin-bottom: 30px;
   }
   .programs .crend{
    display: flex;
    justify-content: space-evenly;
    gap: 40px;
   

   }
   .programs .crend .box{
    background-color: #fff;
    text-align: center;
    padding-bottom: 25px;
    border-radius: 5px;
    box-shadow: 0 0 3px 0 #c5c5c5;
    position: relative;
    margin-bottom: 15px;
  

   }
   .programs .crend .box .cardImage{
    width:330px;
    height:320px;
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden;
    border-radius: 5px 5px 0 0;
   }
   .programs .crend .box .cardImage:after{
    width:100%;
    height:100%;
    background-position: center;
    background-size: cover;
    content: "";
    position: absolute;
    left:0;
    top:0;
    filter: grayscale(100%);
    transition: 0.4s;
   }
   .sectiontitle{
   
   color: orange;
    text-align: center;
    font-size: 5rem;
    text-transform: capitalize;
    margin-top: 20px;
   
   
   }
 
   .programs .crend .box:nth-child(1) .cardImage,
   .programs .crend .box:nth-child(1) .cardImage:after{
    background-image: url(images/wmn\ \(1\).jpg);
   }

   .programs .crend .box:nth-child(2) .cardImage,
   .programs .crend .box:nth-child(2) .cardImage:after{
    background-image: url(images/wmn\ \(2\).jpg);
   }

   .programs .crend .box:nth-child(3) .cardImage,
   .programs .crend .box:nth-child(3) .cardImage:after{
    background-image: url(images/wmn\ \(3\).jpg);
   } 

     .programs .crend .box:nth-child(4) .cardImage,
   .programs .crend .box:nth-child(4) .cardImage:after{
    background-image: url(images/pr4-min\ -\ Copy.jpeg);
   }
   .programs .crend .box:hover .cardImage:after{
    left:100%;
    
   }
   .programs .crend .box .programTitle{
    font-size: 16px;
    margin-top: 15px;
    font-weight: 600;
    color: #444;
   


   }
   .programs.crend .box .donationcount{
    font-size: 13px;
    font-weight: 600;
    color: #444;
    margin-top:10px;
}
.programs .crend .box .donationcount span{
    color:rgba(212, 29, 29, 0.813);


}
.programs .crend .box button{
    position: absolute;
    left: 50%;
    background-color: orange;
    color:#fff;
    transform: translate(-50%);
    bottom: -15px;
    padding: 7px 5px;
    border: 0;
    outline: none;
    border-radius: 10px;
}
@media (max-width: 768px) {
    .programs .crend {
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
    }
  
    .programs .crend .box {
      width: 45%;
    }
  
    .programs .crend .box .cardImage {
      width: 100%;
      height: 290px;
    }
  }
  
  @media (max-width: 768px) {
    .sectiontitle {
      font-size: 3rem;
    }
  
    .programs .crend .box {
      width: 100%;
      margin: 0 auto;
    }
  
    .programs .crend .box .cardImage {
      width: 100%;
      height: 240px;
    }
  }
  
  @media (max-width: 480px) {
    .sectiontitle {
      font-size: 2rem;
    }
  
    .programs .crend {
      flex-direction: column;
      align-items: center;
    }
  
    .programs .crend .box {
      width: 90%;
    }
  
    .programs .crend .box .cardImage {
      height: 350px;
    }
  
    .programs .crend .box button {
      padding: 6px 9px;
      font-size: 14px;
      margin-bottom: 10px;
    
      
    }
  }
  
   

 
   .container{
    margin: auto;
   }
   ul{
    list-style: none;
   }
  
   /* === Footer Styles === */
.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;
    }
  }



  .hero {
    background: url('images/tttsr\ -\ Copy\ -\ Copy\ \(2\).jpg') no-repeat center center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    position: relative;
   
  }
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
  }
  .hero-content {
    z-index: 1;
    max-width: 800px;
  }
  .hero h3 {
    font-size: 1.8rem;
    color: orange;
    margin-bottom: 0.5rem;
    opacity: 0;
  }
  .hero h1 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 4px black;
    opacity: 0;
  }
  .hero p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #eee;
    opacity: 0;
  }
  .btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: orange;
    color: #fff;
    font-size: 1.1rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 8px 16px rgba(255, 165, 0, 0.3);
    transition: all 0.3s ease-in-out;
    opacity: 0;
  }
  .btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px orange;
  }
  
  /* ANIMATIONS */
  @keyframes slideFromRight {
    0% { transform: translateX(100%); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
  }
  @keyframes slideFromLeft {
    0% { transform: translateX(-100%); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
  }
  @keyframes fadeUp {
    0% { transform: translateY(20px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
  }
  @keyframes popUp {
    0% { transform: scale(0.8) translateY(20px); opacity: 0; }
    100% { transform: scale(1) translateY(0); opacity: 1; }
  }
  
  .slide-right {
    animation: slideFromRight 1s ease-out forwards;
  }
  .slide-left {
    animation: slideFromLeft 1s ease-out forwards;
    animation-delay: 0.3s;
  }
  .fade-up {
    animation: fadeUp 1s ease-out forwards;
    animation-delay: 0.6s;
  }
  .pop-up {
    animation: popUp 1s ease-out forwards;
    animation-delay: 0.9s;
  }
  
  /* RESPONSIVE */
  @media (max-width: 768px) {
    .hero h1 {
      font-size: 2rem;
    }
  
    .hero h3 {
      font-size: 1.3rem;
    }
    .hero p {
      font-size: 1rem;
    }
    .btn {
      font-size: 1rem;
      padding: 0.7rem 1.5rem;
    }
  }
  
 
   .slides {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 500px;
    width: 100%;
}

.containers {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
}

.frame {
    height: 500px;
    width: 1260px;
    overflow: hidden;
    position: relative;
}

.slider {
    display: flex;
    transition: transform 0.6s ease-in-out;
    width: 300%; /* Kyunki 3 images hain */
}

.slide {
    width: 33.33%; /* 3 images ka equal width */
    
}

.image {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.left, .right {
    height: 40px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.left {
    left: 10px;
}

.right {
    right: 10px;
}



 /*---------------------*/


 /* Heading alignment */
.heads {
    text-align: center;
    margin-top: 40px;
    color: #bbbbbb;
    font-size: 32px;
}

/* Parent container for width management */
.container {
    max-width: 1200px; /* Adjust width for responsiveness */
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    overflow: hidden;
}

/* Section styling */
.healthy, .healths {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Individual item */
.yemw {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 280px; /* Prevent overflow on small screens */
    max-width: 350px;
}

/* Image sizing */
.yemw img {
    width: 100px; /* Standardized image sizes */
    height: 100px;
}

/* Text container */
.yemw2 {
    padding: 10px;
    font-size: 14px;
    color: #333;
}

/* Vertical separator */


/* Body fix for width overflow */
body {
    overflow-x: hidden;
}
.team-nt{
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #efefef;
}
.cardn-image{
    position: relative;
    height:150px;
    width: 150px;
    border-radius: 150px;
    background: #fff;
    padding: 3px;

}
.imag-cnts,
.car5-cnt{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 14px;
}
.crdw{
    border-radius: 25px;
    background-color: #fff;
   
}
.sld-cnt{
    margin: 0 40px;
}
.sld-cntt{
    max-width: 1120px;
    width: 100%;
    background-color: grey;
    padding: 40px 0;
}
.cardn-image .crdn-image{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #4070f4;
}
.nam{
    font-size: 18px;
    font-weight: 500;
    color:#333;
    text-align: center;
}
.dsrpp{
    font-size: 14px;
    color:#707070;
    text-align: center;
}
.imag-cnts{
    row-gap: 5px;
    position: relative;
    padding: 25px 0;
}
.overlay{
    position: absolute;
    left: 0;
    top:0;
    height: 100%;
    width:100%;
    background-color: #4070f4;
    border-radius: 25px 25px 0px 25px;
}
.overlay::before
.overlay::after{
    content: '';
    position:absolute;
    right:0;
    bottom: -40px;
    height: 40px;
    width:40px;
    background-color: #4070f4;
}
.overlay::after{
    border-radius: 0 25px 0  0;
    background-color: #265df2;
}


















