a,
span {
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
}
.bgimg {
  background-image: url(../assets/impact-D5OFhSY-.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: fixed;
  height: 100%;
  width: 100%;
  z-index: -1;
}
.co {
  height: 100px;
}
.StripeElement {
  height: 50px;
  padding: 10px 12px;
  width: 100%;
  color: #32325d;
  background-color: #d2d7f5;
  border: 1px solid transparent;
  border-radius: 4px;
  margin-top: 10px;
  margin-bottom: 15px;
  box-shadow: 0 1px 3px #e6ebf1;
  -webkit-transition: box-shadow 0.15s ease;
  transition: box-shadow 0.15s ease;
}
.StripeElement--focus {
  box-shadow: 0 1px 3px #cfd7df;
}
.StripeElement--invalid {
  border-color: #fa755a;
}
.StripeElement--webkit-autofill {
  background-color: #fefde5 !important;
}
.alert-banner {
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  position: fixed;
  top: -100px;
  left: 50%;
  transform: translate(-50%);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 8px;
  z-index: 100000000;
  animation: slideDownUp 3s ease-in-out forwards;
  box-shadow: 0 4px 8px #0003;
  font-weight: 500;
}
.alert-banner.success {
  background-color: #4caf50;
}
.alert-banner.error {
  background-color: #f44336;
}
.alert-banner.info {
  background-color: #2196f3;
}
@keyframes slideDownUp {
  0% {
    top: -100px;
    opacity: 0;
  }
  10% {
    top: 20px;
    opacity: 1;
  }
  90% {
    top: 20px;
    opacity: 1;
  }
  to {
    top: -100px;
    opacity: 0;
  }
}
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background-color: #f1f1f1;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background-color: #888888a9;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background-color: #5353d7;
}
::-webkit-scrollbar-corner {
  background-color: #f1f1f1;
}
.gallery-container {
  padding: 2rem;
  padding-bottom: 0;
  text-align: center;
  background: #f5f7fa;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  margin-top: 50px;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
}
.innerteamm {
  max-width: 1200px;
  width: 100%;
  text-align: center;
  background: #f5f7fa;
  min-height: 100vh;
}
.gallery-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
}
.gallery-subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 2rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}
.gallery-card {
  position: relative;
  cursor: pointer;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 4px 15px #0000001a;
  background: #fff;
  transition: all 0.3s ease;
}
.gallery-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}
.gallery-card-title {
  padding: 0.8rem;
  font-weight: 600;
  color: #333;
  background: #ffffffe6;
  position: absolute;
  bottom: 0;
  width: 100%;
}
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0009;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal-content {
  background: #fff;
  padding: 0.5rem;
  max-width: 900px;
  width: 90%;
  text-align: center;
}
.modal-content img {
  width: 100%;
  margin-bottom: 1rem;
}
.modal-content h2 {
  margin: 0.5rem 0;
  font-size: 1.5rem;
}
.modal-content p {
  color: #666;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.header {
  background: #ffffff6b;
  box-shadow: 0 2px 5px #0000001a;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(10px);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  color: #000;
}
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
}
.logo {
  font-size: 24px;
  font-weight: 700;
}
.nav {
  display: flex;
  gap: 25px;
}
.nav a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  display: flex;
  align-items: center;
  font-size: 16px;
}
.menu-icon {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  width: 30px;
  height: 24px;
  justify-content: center;
  align-items: center;
  position: relative;
}
.menu-icon .bar {
  width: 100%;
  height: 3px;
  background-color: #333;
  transition: 0.4s ease;
  border-radius: 2px;
  position: absolute;
}
.menu-icon .bar:nth-child(1) {
  top: 0;
}
.menu-icon .bar:nth-child(2) {
  top: 10px;
}
.menu-icon .bar:nth-child(3) {
  top: 20px;
}
.menu-icon.open .bar:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
}
.menu-icon.open .bar:nth-child(2) {
  opacity: 0;
}
.menu-icon.open .bar:nth-child(3) {
  transform: rotate(-45deg);
  top: 10px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-img {
  height: 60px;
  width: 60px;
  object-fit: contain;
}
.logo-text {
  font-size: 20px;
  font-weight: 700;
  color: #333;
}
@media (max-width: 768px) {
  .nav {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: #ffffffe3;
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(10px);
    display: none;
    padding: 20px;
    box-shadow: 0 2px 10px #0000001a;
  }
  .logo-text {
    font-size: 16px;
  }
  .nav.open,
  .menu-icon {
    display: flex;
  }
}
.button {
  background-color: #6767eb;
  border: none;
  color: #fff;
  padding: 10px 20px;
  font-size: large;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px #0000001a;
  min-width: 150px;
}
.buttonn {
  background-color: #6767eb00;
  color: #6767eb;
  padding: 8px 20px;
  font-size: large;
  font-weight: 900;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px #0000001a;
  min-width: 150px;
  border-color: #6767eb;
}
.button:hover {
  background-color: #5353d7;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px #00000026;
}
.button:active {
  background-color: #3c3cc8;
  transform: translateY(1px);
  box-shadow: 0 3px 6px #0003;
}
.buttonn:hover {
  background-color: #5353d7;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px #00000026;
  color: #fff;
}
.buttonn:active {
  background-color: #3c3cc8;
  transform: translateY(1px);
  box-shadow: 0 3px 6px #0003;
}
.HerobottonCon {
  gap: 10px;
  display: flex;
  margin-top: 10px;
}
.hero {
  height: 100vh;
  background-image: url(./herobg-DihgRKDj.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #000;
}
.overlay {
  background-color: #000000b7;
  height: 100%;
  width: 100%;
  color: #fff;
}
.inneroverlay {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: column;
  padding: 50px;
  justify-content: center;
  height: 100%;
  gap: 15px;
}
.inneroverlay p {
  font-size: 19px;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
}
.inneroverlay h1 {
  font-size: 60px;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
}
@media (max-width: 768px) {
  .inneroverlay p {
    font-size: 13px;
  }
  .inneroverlay h1 {
    font-size: 40px;
  }
}
.lele {
  background-color: #ffffff69;
  width: fit-content;
  padding: 5px 15px;
  color: #000;
  border-radius: 5px;
}
.innercon {
  max-width: 1200px;
  display: flex;
  flex-direction: row;
  padding: 10px 30px;
  justify-content: center;
  height: 100%;
  gap: 25px;
}
.left p {
  color: #5353d7;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
}
@media (max-width: 768px) {
  .innercon {
    flex-direction: column;
    padding: 20px;
  }
  .left p {
    font-size: 13px;
  }
  .left h1 {
    font-size: 30px;
  }
}
.impact {
  height: 250px;
  justify-content: center;
  align-items: center;
}
.inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: column;
  padding: 50px;
  justify-content: center;
  align-items: center;
  height: 100%;
  gap: 15px;
  color: #fff;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  text-align: center;
}
.inner h1 {
  color: #6767eb;
}
span {
  font-weight: 500;
  color: #6767eb;
}
.about {
  background-color: #fff;
}
.innerabo {
  max-width: 900px;
  margin: auto;
  display: flex;
  flex-direction: column;
  padding: 50px;
  justify-content: center;
  height: 100%;
  gap: 15px;
  align-items: center;
  text-align: center;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
}
.mission {
  min-height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  margin-bottom: -2px;
}
.innerconv {
  max-width: 1200px;
  display: flex;
  flex-direction: row;
  padding: 10px 50px;
  justify-content: center;
  height: 100%;
  gap: 25px;
}
.left {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 15px;
}
.missionImg {
  width: 100%;
  object-fit: contain;
  max-height: 300px;
}
.left p {
  color: #5353d7;
  margin-left: 10px;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
}
.left h1 {
  font-size: 40px;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
}
.left h3 {
  font-size: 18px;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-weight: 100;
  line-height: 25px;
}
@media (max-width: 768px) {
  .innerconv {
    flex-direction: column-reverse;
    padding: 20px;
  }
  .left p {
    font-size: 13px;
  }
  .left h1 {
    font-size: 30px;
  }
}
.event {
  background-color: #fff;
  margin-bottom: -2px;
}
.innerevent {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: column;
  padding: 50px;
  justify-content: center;
  height: 100%;
  gap: 15px;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  align-items: center;
}
.sub {
  color: #5353d7;
}
.evtitle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.evcontent {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
.eventitem {
  height: 400px;
  width: 300px;
  position: relative;
}
.eventimg {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.itemdatecon {
  position: absolute;
  top: -10px;
  right: 10px;
  background-color: #5353d7;
  color: #fff;
  padding: 10px;
  gap: 4px;
  display: flex;
  flex-direction: column;
}
.eventitemOverlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 10;
  background-color: #0000009c;
  color: #fff;
  padding: 10px;
  gap: 10px;
  max-height: 150px;
  overflow: hidden;
}
.title {
  font-weight: 900;
  font-size: 20px;
  line-height: 20px;
  margin-bottom: 10px;
}
.subb {
  color: #9e9e9e;
}
@media (max-width: 768px) {
  .innerevent {
    padding: 20px;
  }
  .eventitem {
    height: 400px;
    width: 100%;
    position: relative;
  }
}
.Testimonia {
  background-color: #fff;
}
.innertest {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: column;
  padding: 50px;
  justify-content: center;
  height: 100%;
  gap: 15px;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  align-items: center;
}
.titletest {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
}
.titletest p {
  color: #5353d7;
  font-size: 16px;
}
.testcontent {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
.textitem {
  width: 300px;
  gap: 10px;
}
.profile {
  height: 60px;
  width: 60px;
  border-radius: 50%;
}
.testText {
  display: flex;
  background-color: #dadada;
  flex-direction: column;
  padding: 15px;
  margin-bottom: 10px;
}
.testdesign {
  background-color: #5353d7;
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  font-weight: 900;
  color: #fff;
}
.testText p {
  margin-top: 20px;
}
.testProfile {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px;
}
@media (max-width: 768px) {
  .innertest {
    padding: 20px;
  }
  .textitem {
    width: 100%;
  }
}
.footer {
  background-color: #373753;
  width: 100vw;
}
a {
  color: #bebebe;
  text-decoration: none;
  font-weight: 100;
}
.innerfoot {
  max-width: 900px;
  margin: auto;
  display: flex;
  flex-direction: row;
  padding: 50px 30px;
  justify-content: center;
  height: 100%;
  gap: 30px;
  text-align: center;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  color: #cecece;
}
.contentcon {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.contentcon img {
  height: 120px;
  width: 120px;
}
@media (max-width: 768px) {
  .innerfoot,
  .contact {
    padding: 20px;
    flex-direction: column;
  }
}
.tradmark {
  display: flex;
  justify-content: center;
  padding: 30px 10px;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  color: #929292;
  font-size: 12px;
}
.contact {
  display: flex;
  max-width: 900px;
  margin: auto;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  color: #929292;
}
.top {
  background-color: #fff;
  background-image: url(./herobg-DihgRKDj.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #000;
  position: relative;
  color: #fff;
  min-height: 300px;
  display: flex;
}
.topoverlay {
  display: flex;
  flex: 1;
  background-color: #000000b2;
  padding-top: 100px;
}
.aboutinner {
  max-width: 900px;
  margin: auto;
  display: flex;
  flex-direction: column;
  padding: 50px;
  justify-content: center;
  height: 100%;
  gap: 15px;
  align-items: start;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  z-index: 100;
  gap: 10px;
}
.aboutinner p {
  line-height: 24px;
  font-size: 17px;
  font-weight: 100;
}
.aboutinner h1 {
  color: #5353d7;
  font-size: 45px;
}
@media (max-width: 768px) {
  .aboutinner {
    padding: 20px;
  }
}
.team {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 60px 20px;
  background: #fff;
  font-family: Inter, sans-serif;
}
.innerteam {
  width: 100%;
  max-width: 1200px;
}
.evtitle {
  text-align: center;
  margin-bottom: 40px;
}
.evtitle p {
  font-size: 18px;
  color: #777;
  margin-bottom: 5px;
}
.evtitle h1 {
  font-size: 32px;
  font-weight: 800;
  color: #222;
}
.evcontent {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}
.teamitem {
  background: #fafafa;
  padding: 20px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease-out;
  border: 1px solid #eee;
}
.teamitem:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 22px #0000001a;
}
.hh {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}
.eventimgg {
  width: 120px;
  height: 120px;
  border-radius: 100%;
  object-fit: cover;
  border: 3px solid #f1f1f1;
  transition: transform 0.25s ease;
}
.teamitem:hover .eventimgg {
  transform: scale(1.05);
}
.names h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
}
.names p {
  font-size: 15px;
  color: #666;
}
@media (max-width: 600px) {
  .evtitle h1 {
    font-size: 26px;
  }
  .eventimgg {
    width: 100px;
    height: 100px;
  }
  .teamitem {
    padding: 15px;
  }
  .teamitem {
    width: 100%;
  }
}
.sponsor {
  background-color: #fff;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
}
.imageee {
  height: 100px;
  width: 150px;
  object-fit: contain;
}
.contactt {
  background-color: #fff;
  min-height: 100vh;
  width: 100vw;
  justify-content: center;
  align-items: center;
}
.innercontact {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: column;
  padding: 50px;
  justify-content: center;
  height: 100%;
  gap: 15px;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  align-items: center;
  height: 100vh;
}
.evtitle p {
  max-width: 700px;
  text-align: center;
}
.contactForm {
  display: flex;
  width: 100%;
  margin-top: 50px;
  gap: 20px;
}
.form {
  display: flex;
  flex: 2;
  flex-direction: column;
}
.namess {
  display: flex;
}
.div {
  width: 100%;
  padding: 10px;
}
input {
  background-color: #d2d7f5;
  border: none;
  width: 100%;
  height: 50px;
  padding: 10px 25px;
}
textarea {
  background-color: #d2d7f5;
  border: none;
  width: 100%;
  height: 120px;
  padding: 10px 25px;
}
.but {
  margin-left: 15px;
}
.condetail {
  display: flex;
  flex: 1.5;
  justify-content: center;
  align-items: center;
}
.contactInfo {
  background-color: #5353d7;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #fff;
}
@media (max-width: 768px) {
  .contactForm {
    flex-direction: column;
  }
  .innercontact {
    padding: 10px;
  }
  .contactForm {
    gap: 50px;
  }
}
.innervol {
  max-width: 800px;
  margin: auto;
  display: flex;
  flex-direction: column;
  padding: 50px;
  justify-content: center;
  height: 100%;
  gap: 15px;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  align-items: center;
  height: 100vh;
}
@media (max-width: 768px) {
  .innervol {
    padding: 15px;
  }
}
.eventOverlayBg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000a6;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  overflow-y: auto;
  padding: 20px;
}
.eventOverlayContent {
  background: #fff;
  width: 100%;
  max-width: 550px;
  max-height: 90vh;
  padding: 25px;
  border-radius: 15px;
  position: relative;
  overflow-y: auto;
  animation: fadeIn 0.3s ease;
  box-shadow: 0 10px 25px #0000004d;
}
.closeBtn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #ff4d4d;
  border: none;
  color: #fff;
  font-size: 20px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
}
.overlayImg {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}
.overlayTitle {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}
.overlayDate {
  font-size: 14px;
  margin-bottom: 10px;
  color: #555;
}
.overlayDesc {
  font-size: 16px;
  line-height: 1.5;
  white-space: pre-line;
}
.select {
  display: flex;
  gap: 20px;
  padding: 10px;
  flex-wrap: wrap;
}
.selectItem {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid;
  border-width: 1px;
  border-color: #5353d7;
  padding: 5px;
  color: #5353d7;
  font-size: 20px;
  cursor: pointer;
}
.selectItem:hover {
  background-color: #5353d7;
  color: #fff;
}
.member-container {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 40px 0;
  background: #fff;
  font-family: Inter, sans-serif;
  margin-top: 50px;
}
.member-content {
  width: 80%;
  max-width: 1100px;
  display: flex;
  gap: 80px;
}
.member-menu {
  width: 200px;
}
.member-menu .logo {
  font-size: 32px;
  font-weight: 700;
}
.member-menu ul {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}
.member-menu ul li {
  margin-bottom: 15px;
  font-size: 18px;
}
.member-menu ul li a {
  text-decoration: none;
  color: #555;
}
.member-menu ul li.active a {
  font-weight: 700;
  color: #000;
}
.member-details {
  flex: 1;
}
.page-title {
  font-size: 22px;
  margin-bottom: 20px;
  color: #655aff;
  text-transform: lowercase;
}
.profile-img {
  width: 170px;
  height: 170px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 25px;
}
.member-name {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 5px;
}
.member-title {
  font-size: 18px;
  color: #777;
  margin-bottom: 25px;
}
.desc {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #444;
}
.back-btn {
  margin-top: 30px;
}
.back-btn a {
  text-decoration: none;
  font-size: 16px;
  color: #333;
}
