* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  width: 100vw;
  height: 100vh;
  overflow-x: hidden;
  font-family: "Assistant", sans-serif;
}
body::-webkit-scrollbar {
  display: none;
}
/* Floating Button */
.donate-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ff5a5f;
  color: white;
  border: none;
  padding: 15px 20px;
  border-radius: 50px;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out;
}

.donate-btn:hover {
  transform: scale(1.1);
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 10;
}

/* Popup Menu */
.popup {
  position: fixed;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 350px;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: bottom 0.4s ease-in-out;
  z-index: 1111;
}

.popup h2 {
  margin: 0;
  color: #333;
}

.popup p {
  color: #555;
  margin: 10px 0;
}

.pay-btn {
  display: inline-block;
  background: #ff5a5f;
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 16px;
  transition: background 0.3s ease-in-out;
}

.pay-btn:hover {
  background: #e0484d;
}

.close-btn {
  margin-top: 10px;
  background: none;
  border: none;
  color: #ff5a5f;
  font-size: 14px;
  cursor: pointer;
}

/* Active class for popup */
.popup.active {
  bottom: 20px;
}

.overlay.active {
  display: block;
}

.headerdivv {
  display: none;
}
.topnav {
  display: none;
}
/* WhatsApp Floating Button */
.whatsapp-container {
  position: fixed;
  bottom: 100px;
  right: 20px;
  z-index: 1000;
}

.whatsapp-button {
  width: 60px;
  height: 60px;
  background-color: white;
  border-radius: 50%;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px,
    rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-button img {
  object-fit: contain;
  width: 40px;
  height: 40px;
}

/* Hover Effects */
.whatsapp-button:hover {
  transform: scale(1.1);
  /* box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); */
}

/* Chat Popup */
.chat-popup {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 250px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: none;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.3s ease-out, opacity 0.3s ease-in-out, visibility 0.3s;
  visibility: hidden;
}

.chat-popup.active {
  display: block;
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

/* Chat Header */
.chat-header {
  background: #25d366;
  padding: 10px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.chat-header img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.chat-header p {
  flex: 1;
  font-weight: bold;
}

.close-btn {
  font-size: 20px;
  cursor: pointer;
  transition: color 0.3s;
}

.close-btn:hover {
  color: #04611e;
}

/* Chat Body */
.chat-body {
  padding: 15px;
  text-align: center;
}

.chat-body p {
  margin-bottom: 10px;
}

.chat-now {
  display: inline-block;
  padding: 8px 15px;
  background: #25d366;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.chat-now:hover {
  background: #1da851;
}

.headerdiv {
  height: 35px;
  width: 100%;
  /* background-color: red; */
  padding: 0px;
  background-color: rgb(25, 57, 109);
}
.subheaderdiv {
  height: 100%;
  width: 100%;
  /* background-color: aqua; */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.conte {
  height: 100%;
  width: 25%;
  /* background-color: blue; */
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding-left: 20px;
}
.conte i {
  font-size: 12px;
  color: #ffffffff;
}
.conte p {
  font-size: 12px;
  color: #ffffffff;
}
.nextconte {
  height: 100%;
  width: 13%;
  /* background-color: green; */
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  /* padding-right: 20px; */
  background-color: rgb(22, 50, 95);
}
.nextconte i {
  padding: 5px;
  border-radius: 5px;
  margin: 5px;
  font-size: 14px;
  color: #ffffffff;
}
.nextconte i:hover {
  background: linear-gradient(90deg, #f9ce34, #ee2a7b, #6228d7);
  font-size: 18px;
}
.tophead {
  height: 150px;
  width: 100%;
  /* background-color: blueviolet; */
  padding: 10px;
}
.subtophead {
  height: 100%;
  width: 100%;
  /* background-color: red; */
  display: flex;
  align-items: center;
  justify-content: center;
}
.heading {
  height: 100%;
  width: 50%;
  /* background-color: darkcyan; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 34px;
}
.heading h1 {
  font-size: 32px;
  color: rgb(25, 57, 109);
  font-style: normal;
  font-weight: 800;
}
.heading p {
  font-size: 18px;
  color: rgb(25, 57, 109);
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.logo {
  height: 100%;
  width: 30%;
  /* background-color: aquamarine; */
}
.logo img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.navbar {
  height: 80px;
  width: 100%;
  background-color: rgb(22, 50, 95);
  padding: 14px;
  overflow: hidden;
}
.subnavbar {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background-color: saddlebrown;*/
}
.subnav {
  height: 100%;
  width: 40%;
  /* background-color: aqua; */
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.subnav a {
  font-family: "Poppins", sans-serif;
  position: relative;
  font-weight: 500;
  padding: 10px 15px;
  border-radius: 10px 10px 0px 0px;
  transition: color 0.3s ease-in-out;
  font-style: normal;
  font-size: 16px;
  color: #ffffffff;
  text-decoration: none;
}
.subnav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #ec124f;
  /* background-color: rgb(248, 53, 85); */
  transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
}
.subnav a:hover {
  background-color: #ec124f;
  color: #efeeed; /* Optional: Changes text color on hover */
}

.subnav a:hover::after {
  width: 100%;
  left: 0;
}
.donate {
  height: 100%;
  width: 20%;
  /* background-color: darkseagreen; */
  display: flex;
  align-items: center;
  justify-content: center;
}
.donate a {
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  color: #ffffffff;
  background-color: #ec124f;
  padding: 10px 30px 10px 30px;
  border-radius: 10px;
}
.donate i {
  font-size: 16px;
  color: #ffffffff;
}
.donate a:hover {
  background-color: #97052e;
}
.donate i:hover {
  background-color: #97052e;
}

.headd {
  height: 200px;
  width: 100%;
  /* background-color: darkblue;   */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.headd h1 {
  /* padding-top: 50px; */
  font-size: 48px;
  font-family: "Raleway", sans-serif;

  color: rgb(25, 57, 109);
}
.headd h2 {
  /* height: 4px; */
  /* width: 10%; */
  font-family: "Open Sans", sans-serif;
  /* font-family:  "Raleway", sans-serif; */
  color: #222222;
}
.imagegal {
  height: auto;
  width: 100%;
  /* background-color: saddlebrown; */
  overflow: hidden;
  padding: 20px;
}
.subimagegal {
  height: 100%;
  width: 100%;
  /* background-color: pink; */
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 20px;
}
.img1 {
  height: 560px;
  width: 300px;
  background-color: #f9ce34;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.img1 img {
  height: 100%;
  width: 100%;
  object-fit: fill;
  border-radius: 5px;
  transition: ease-in-out 0.3s;
}
.img1 img:hover {
  cursor: pointer;
  transform: scale(1.1);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}
.img1:hover {
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px,
    rgba(0, 0, 0, 0.22) 0px 15px 12px;
}
.summa {
  width: 100%;
  height: 100px;
  background-color: white;
}

.topp {
  height: 10px;
  width: 100%;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  background-color: rgba(105, 105, 105, 0.907);
}
.summma {
  height: 20px;
  width: 100%;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: left;
  padding-left: 10px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.summma p {
  height: 50%;
  width: 0.6%;
  border-radius: 100%;
  background-color: rgb(240, 59, 59);
}
#np1 {
  height: 50%;
  width: 0.6%;
  border-radius: 100%;
  background-color: rgb(236, 190, 52);
  /* padding-left: 5px; */
  margin-left: 3px;
}
#np2 {
  height: 50%;
  width: 0.6%;
  border-radius: 100%;
  background-color: rgb(10, 141, 28);
  margin-left: 3px;
}
.footerdiv {
  height: 500px;
  width: 100%;
  /* background-color: rgb(25,57,109); */
  background-color: #0d2345;
  /* background-color:#081730; */
  /* background-color: red; */
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.sf1 {
  height: 100%;
  width: 90%;
  /* background-color: #97052e; */
  padding: 10px;
}
.sf2 {
  height: 100%;
  width: 32%;
  /* background-color: #f9ce34; */
  padding: 10px;
}
.sf3 {
  height: 100%;
  width: 32%;
  /* background-color: #ee2a7b; */
  padding: 10px;
}
.sshead {
  height: 10%;
  width: 100%;
  /* background-color: palevioletred; */
  display: flex;
  align-items: center;
}
.sshead h2 {
  font-size: 18px;
  color: #ffffffff;
}
.sshead p {
  height: 2px;
  width: 15px;
  background-color: #ec124f;
}
.ssbody {
  height: 30%;
  width: 100%;
  /* background-color: salmon; */
  display: flex;
  align-items: center;
  justify-content: center;
}
.ssbody p {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.415);
  font-weight: normal;
  text-align: justify;
  line-height: 20px;
}
.ssicon {
  height: 20%;
  width: 100%;
  /* background-color: darkseagreen; */
  display: flex;
  align-items: left;
  justify-content: space-evenly;
  flex-direction: column;
}
.ssicon i {
  padding-right: 10px;
  font-size: 18px;
  color: #ec124f;
}
.ssicon h2 {
  font-family: "Poppins", sans-serif;
  /* font-size: 18px; */
  font-size: 14px;
  color: rgba(255, 255, 255, 0.415);
  font-weight: normal;
  /* color: aqua; */
}
.ssmailing {
  height: 30%;
  width: 100%;
  display: flex;
  align-items: center;
}
.ssmailing input[type="text"] {
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: 18px 0 0 18px;
  outline: none;
}
.ssmailing button {
  padding: 15px 20px;
  border: none;
  background-color: #ec124f;
  color: white;
  border-radius: 0 18px 18px 0;
  cursor: pointer;
}
.ssmailing button:hover {
  background-color: #86052a;
}

.sshead h2 {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #ffffffff;
}
.ssnewsbody {
  height: 90%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  justify-content: space-evenly;
}
.ssnews {
  height: 32%;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: space-evenly;
  /* align-items: center; */
  /* justify-content: center; */
  /* background-color: darkseagreen; */
}
.ssnews i {
  font-size: 16px;
  margin-right: 10px;
  color: #ec124f;
}
.ssnews h2 {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: white;
  font-weight: normal;
}
.ssnews p {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.415);
  text-align: justify;
  line-height: 20px;
}
.ssimage {
  height: 80%;
  width: 100%;
  /* background-color: #6228d7; */
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  justify-items: center;
  gap: 10px; /* Add some spacing between images */
}

.ssimg1 {
  height: 120px; /* Adjust as needed */
  width: 120px; /* Adjust as needed */
  display: flex;
  align-items: center;
  justify-content: center;
}

.ssimg1 img {
  height: 100%;
  width: 100%;
  overflow: hidden;
  object-fit: cover; /* Ensure images cover their container */
  border-radius: 8px; /* Optional: Add some border radius for a better look */
}
.ssimg1 img:hover {
  cursor: pointer;
  transform: scale(1.1);
}

.subfooterdiv {
  height: 100%;
  width: 90%;
  /* background-color: aqua; */
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}
.subfooterdiv1 {
  height: 20%;
  width: 90%;
  /* background-color: blue; */
  border-top: #ffffff19 2px solid;
  padding: 10px;
}

.subfooterdiv2 {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* background-color: darkseagreen; */
}
.links {
  height: 100%;
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  /* background-color: darkseagreen; */
}
.links a {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 450;
  color: #ffffffff;
  text-decoration: none;
  padding: 10px;
  border-radius: 0px 0px 10px 10px;
}
.links a:hover {
  color: white;
  background-color: #ec124f;
}
.titlename {
  height: 100%;
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  /* background-color: darkseagreen; */
}
.titlename p {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 450;
  color: rgba(255, 255, 255, 0.511);
}

@media screen and (max-width: 600px) {
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    width: 100vw;
    height: 100vh;
    overflow-x: hidden;
    box-sizing: border-box;
  }
  body::-webkit-scrollbar {
    display: none;
  }
  /* WhatsApp Floating Button */
  .whatsapp-container {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 1000;
  }

  .whatsapp-button {
    width: 60px;
    height: 60px;
    background-color: white;
    border-radius: 50%;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
      rgba(0, 0, 0, 0.3) 0px 30px 60px -30px,
      rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .whatsapp-button img {
    object-fit: contain;
    width: 40px;
    height: 40px;
  }

  /* Hover Effects */
  .whatsapp-button:hover {
    transform: scale(1.1);
    /* box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); */
  }

  /* Chat Popup */
  .chat-popup {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 250px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: none;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.3s ease-out, opacity 0.3s ease-in-out,
      visibility 0.3s;
    visibility: hidden;
  }

  .chat-popup.active {
    bottom: 180px;
    display: block;
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  /* Chat Header */
  .chat-header {
    background: #25d366;
    padding: 10px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }

  .chat-header img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
  }

  .chat-header p {
    flex: 1;
    font-weight: bold;
  }

  .close-btn {
    font-size: 20px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .close-btn:hover {
    color: #04611e;
  }

  /* Chat Body */
  .chat-body {
    padding: 15px;
    text-align: center;
  }

  .chat-body p {
    margin-bottom: 10px;
  }

  .chat-now {
    display: inline-block;
    padding: 8px 15px;
    background: #25d366;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
  }

  .chat-now:hover {
    background: #1da851;
  }

  .headerdivv {
    overflow: hidden;
    height: 30px;
    display: flex;
    width: 100%;
    /* background-color: red; */
    padding: 0px;
    background-color: rgb(22, 50, 95);
  }
  .subheaderdivv {
    height: 100%;
    width: 100%;
    /* background-color: aqua; */
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    overflow: hidden;
  }
  .contee {
    overflow: hidden;
    height: 100%;
    width: 60%;
    /* background-color: blue; */
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 0px;
  }
  .contee i {
    font-size: 12px;
    color: #ffffffff;
  }
  .contee p {
    margin-left: 10px;
    font-size: 12px;
    color: #ffffffff;
  }
  .nextcontee {
    height: 100%;
    width: 40%;
    /* background-color: green; */
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    /* padding-right: 20px; */
    background-color: rgb(22, 50, 95);
  }
  .nextcontee i {
    padding: 1px;
    border-radius: 5px;
    margin: 0px;
    font-size: 14px;
    color: #ffffffff;
  }
  .nextcontee i:hover {
    background: linear-gradient(90deg, #f9ce34, #ee2a7b, #6228d7);
    font-size: 18px;
  }

  .headerdiv {
    display: none;
    height: 35px;
    width: 100%;
    /* background-color: red; */
    padding: 0px;
    background-color: rgb(25, 57, 109);
  }
  .subheaderdiv {
    height: 100%;
    width: 100%;
    /* background-color: aqua; */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .conte {
    height: 100%;
    width: 25%;
    /* background-color: blue; */
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding-left: 20px;
  }
  .conte i {
    font-size: 12px;
    color: #ffffffff;
  }
  .conte p {
    font-size: 12px;
    color: #ffffffff;
  }
  .nextconte {
    height: 100%;
    width: 13%;
    /* background-color: green; */
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    /* padding-right: 20px; */
    background-color: rgb(22, 50, 95);
  }
  .nextconte i {
    padding: 5px;
    border-radius: 5px;
    margin: 5px;
    font-size: 14px;
    color: #ffffffff;
  }
  .nextconte i:hover {
    background: linear-gradient(90deg, #f9ce34, #ee2a7b, #6228d7);
    font-size: 18px;
  }
  .tophead {
    /* display: none; */
    height: 100px;
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px,
      rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
    /* box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px; */
    /* background-color: blueviolet; */
    padding: 10px;
  }
  .subtophead {
    height: 100%;
    width: 100%;
    /* background-color: red; */
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .heading {
    height: 100%;
    width: 100%;
    /* background-color: darkcyan; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 24px;
  }
  .heading h1 {
    font-size: 18.2px;
    text-align: center;
    color: rgb(25, 57, 109);
    font-style: normal;
    font-weight: 800;
    letter-spacing: -1px;
  }
  .heading p {
    font-size: 16px;
    color: rgb(25, 57, 109);
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
  }
  .logo {
    height: 100%;
    width: 18%;
    /* background-color: aquamarine; */
  }
  .logo img {
    height: 100%;
    width: 100%;
    object-fit: contain;
  }
  .navbar {
    display: none;
    height: 80px;
    width: 100%;
    background-color: rgb(22, 50, 95);
    padding: 14px;
    overflow: hidden;
  }
  .subnavbar {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: saddlebrown;*/
  }
  .subnav {
    height: 100%;
    width: 40%;
    /* background-color: aqua; */
    display: flex;
    align-items: center;
    justify-content: space-around;
  }
  .subnav a {
    font-family: "Poppins", sans-serif;
    position: relative;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 10px 10px 0px 0px;
    transition: color 0.3s ease-in-out;
    font-style: normal;
    font-size: 16px;
    color: #ffffffff;
    text-decoration: none;
  }
  .subnav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #ec124f;
    /* background-color: rgb(248, 53, 85); */
    transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
  }
  .subnav a:hover {
    background-color: #ec124f;
    color: #efeeed; /* Optional: Changes text color on hover */
  }

  .subnav a:hover::after {
    width: 100%;
    left: 0;
  }
  .donate {
    height: 100%;
    width: 20%;
    /* background-color: darkseagreen; */
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .donate a {
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    color: #ffffffff;
    background-color: #ec124f;
    padding: 10px 30px 10px 30px;
    border-radius: 10px;
  }
  .donate i {
    font-size: 16px;
    color: #ffffffff;
  }
  .donate a:hover {
    background-color: #97052e;
  }
  .donate i:hover {
    background-color: #97052e;
  }

  .headd {
    height: 200px;
    width: 100%;
    /* background-color: darkblue;   */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }
  .headd h1 {
    /* padding-top: 50px; */
    font-size: 40px;
    font-family: "Raleway", sans-serif;

    color: rgb(25, 57, 109);
  }
  .headd h2 {
    /* height: 4px; */
    /* width: 10%; */
    font-size: 22px;
    font-family: "Open Sans", sans-serif;
    /* font-family:  "Raleway", sans-serif; */
    color: #222222;
  }
  .imagegal {
    height: auto;
    width: 100%;
    /* background-color: saddlebrown; */
    overflow: hidden;
    padding: 20px;
    margin-bottom: 100px;
  }
  .subimagegal {
    height: 100%;
    width: 100%;
    /* background-color: pink; */
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  .img1 {
    height: auto;
    width: 100%;
    background-color: #f9ce34;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .img1 img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
    transition: ease-in-out 0.3s;
  }
  .img1 img:hover {
    cursor: pointer;
    transform: scale(1.1);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
      rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  }
  .img1:hover {
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px,
      rgba(0, 0, 0, 0.22) 0px 15px 12px;
  }

  .summma {
    height: 15px;
    width: 100%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: left;
    padding-left: 10px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  }
  .summma p {
    height: 40%;
    width: 1.7%;
    border-radius: 100%;
    background-color: rgb(240, 59, 59);
  }
  #np1 {
    height: 40%;
    width: 1.7%;
    border-radius: 100%;
    background-color: rgb(236, 190, 52);
    /* padding-left: 5px; */
    margin-left: 3px;
  }
  #np2 {
    height: 40%;
    width: 1.7%;
    border-radius: 100%;
    background-color: rgb(10, 141, 28);
    margin-left: 3px;
  }
  .footerdiv {
    height: auto;
    width: 100%;
    /* background-color: rgb(25,57,109); */
    background-color: #0d2345;
    /* background-color:#081730; */
    /* background-color: red; */
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .sf1 {
    height: 100%;
    width: 100%;
    /* background-color: #97052e; */
    padding: 0px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .sf2 {
    height: 100%;
    width: 100%;
    /* background-color: #f9ce34; */
    padding: 0px;
    margin-bottom: 20px;
    margin-bottom: 20px;
  }
  .sf3 {
    height: 100%;
    width: 100%;
    /* background-color: #ee2a7b; */
    padding: 0px;
    margin-bottom: 20px;
  }
  .sshead {
    height: 100%;
    width: 100%;
    /* background-color: palevioletred; */
    display: flex;
    align-items: center;
  }
  .sshead h2 {
    font-size: 18px;
    color: #ffffffff;
  }
  .sshead p {
    height: 2px;
    width: 15px;
    background-color: #ec124f;
  }
  .ssbody {
    height: 100%;
    width: 100%;
    /* background-color: salmon; */
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .ssbody p {
    margin-top: 20px;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.415);
    font-weight: normal;
    text-align: justify;
    line-height: 20px;
  }
  .ssicon {
    margin-top: 20px;
    height: 100%;
    width: 100%;
    /* background-color: darkseagreen; */
    display: flex;
    line-height: 0px;
    align-items: left;
    justify-content: space-evenly;
    flex-direction: column;
  }
  .ssicon i {
    padding-right: 10px;
    font-size: 18px;
    color: #ec124f;
  }
  .ssicon h2 {
    font-family: "Poppins", sans-serif;
    /* font-size: 18px; */
    font-size: 14px;
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.415);
    font-weight: normal;
    /* color: aqua; */
  }
  .ssmailing {
    margin-top: 20px;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
  }
  .ssmailing input[type="text"] {
    padding: 14px;
    border: 1px solid #ccc;
    border-radius: 18px 0 0 18px;
    outline: none;
  }
  .ssmailing button {
    padding: 15px 20px;
    border: none;
    background-color: #ec124f;
    color: white;
    border-radius: 0 18px 18px 0;
    cursor: pointer;
  }
  .ssmailing button:hover {
    background-color: #86052a;
  }

  .sshead h2 {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #ffffffff;
  }
  .ssnewsbody {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    justify-content: space-evenly;
  }
  .ssnews {
    height: 100%;
    width: 100%;
    margin-top: 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: space-evenly;
    /* align-items: center; */
    /* justify-content: center; */
    /* background-color: darkseagreen; */
  }
  .ssnews i {
    font-size: 16px;
    margin-right: 10px;
    color: #ec124f;
  }
  .ssnews h2 {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: white;
    font-weight: normal;
  }
  .ssnews p {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.415);
    text-align: justify;
    line-height: 20px;
  }
  .ssimage {
    margin-top: 20px;
    height: 100%;
    width: 100%;
    /* background-color: #6228d7; */
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    justify-items: center;
    gap: 10px; /* Add some spacing between images */
  }
  .summa {
    display: none;
  }
  .ssimg1 {
    height: 120px; /* Adjust as needed */
    width: 120px; /* Adjust as needed */
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .ssimg1 img {
    height: 100%;
    width: 100%;
    overflow: hidden;
    object-fit: cover; /* Ensure images cover their container */
    border-radius: 8px; /* Optional: Add some border radius for a better look */
  }
  .ssimg1 img:hover {
    cursor: pointer;
    transform: scale(1.1);
  }

  .subfooterdiv {
    height: 100%;
    width: 100%;
    /* background-color: aqua; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
  }
  .subfooterdiv1 {
    margin-top: 20px;
    overflow: hidden;
    height: 100%;
    width: 100%;
    /* background-color: blue; */
    border-top: #ffffff19 2px solid;
    padding: 0px;
  }

  .subfooterdiv2 {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    /* background-color: darkseagreen; */
  }
  .links {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    /* background-color: darkseagreen; */
  }
  .links a {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 450;
    color: #ffffffff;
    text-decoration: none;
    padding: 10px;
    border-radius: 0px 0px 10px 10px;
  }
  .links a:hover {
    color: white;
    background-color: #ec124f;
  }
  .titlename {
    margin-top: 10px;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: darkseagreen; */
  }
  .titlename p {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 450;
    color: rgba(255, 255, 255, 0.511);
  }
}
