@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    padding: 0;
    margin: 0;
    list-style-type: none;
    text-decoration: none;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    overflow-x: hidden;
}

main {
    position: relative;
    height: 100vh;
    color: white; 
}

/* Background Video */
.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
}

/* Navbar */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 8px 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10;
    background-color: rgba(80, 76, 76, 0.3);
}


.logo img {
    height: 70px;
    width: auto;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    display: block;
    border-radius: 2px;
}

nav ul {
    display: flex;
    gap: 30px;
    text-transform: uppercase;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li a {
    color: white;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

@media (max-width: 768px) {
  header {
    padding: 8px 20px;
    background-color: rgba(0, 0, 0, 0.95);
  }

  .menu-toggle {
    display: flex;
    z-index: 15;
  }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(0, 0, 0, 0.95);
    width: 100%;
    display: none;
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  nav.open {
    display: flex;
  }

  nav ul {
    flex-direction: column;
    gap: 20px;
  }

  nav ul li a {
    font-size: 18px;
  }
}





/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 30px;
    padding: 0 20px;
    position: relative;
    z-index: 5;
}

.hero p {
    font-size: 18px;
    font-weight: 500;
    padding: 5px 18px;
    background-color: white;
    color: rgb(12, 15, 179);
    border-bottom: 1px solid rgb(12, 15, 179);
    text-transform: uppercase;
}

.hero h2 {
    font-size: 32px;
    max-width: 600px;
    line-height: 1.4;
    font-weight: 500;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cta button {
    padding: 12px 25px;
    background-color: transparent;
    color: white;
    border: 1px solid white;
    border-radius: 2px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    text-transform: uppercase;
}

.cta button:hover {
    background-color: rgb(12, 15, 179);
    border: none;
}

@media (max-width: 768px) {
    .hero h2 {
        font-size: 24px;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .hero p {
        font-size: 14px;
        padding: 4px 14px;
    }

    .cta button {
        font-size: 14px;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        gap: 20px;
        padding: 0 10px;
    }

    .hero h2 {
        font-size: 20px;
    }

    .cta {
        flex-direction: column;
        align-items: center;
    }

    .cta button {
        width: 100%;
        max-width: 300px;
    }
}



/* Footer */
footer {
    height:40px;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: white;
  color: #002b6d;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
  font-weight: 700;
  z-index: 10;
  font-size: 12px;
}

footer .socials {
  display: flex;
  gap: 15px;
}

footer .socials a img {
  width: 10px;
  height: 10px;
}

@media (max-width: 768px) {
  footer {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    padding: 15px 20px;
  }

  footer .socials {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  footer .socials a img {
    width: 18px;
    height: 18px;
  }
}

/* Media Center */
.media-center{
  padding: 8rem 2rem 10rem;
}


.video-section {
  max-width: 960px;
  margin: 0 auto;
  margin-bottom: 30px;
}

.video-section-title {
  text-align: left;
  margin-bottom: 5px;
  font-size: 2rem;
  color: #222;
}

.main-video-container {
  max-width: 960px;
  margin: 0 auto;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  /* border-radius: 10px; */
  overflow: hidden;
  background: #000;
}

.main-video-container iframe {
  width: 100%;
  height: 400px;
  display: block;
}

.featured-container {
  display: flex;
  flex-direction: column;
  max-width: 960px;
  margin: 0 auto;
  margin-top: 30px;
}

.featured-title {
  color: #000;
  text-align: left;
  font-size: 24px;
  margin-bottom: 10px;
}

.featured-thumbnails {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.thumbnail-card {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.thumbnail-card:hover {
  transform: scale(1.03);
}

.thumbnail-card img {
  width: 100%;
  /* border-radius: 8px; */
  display: block;
}

.thumbnail-card p {
  margin: 7px 8px 0;
  text-align: left;
  color: #000;
  font-size: 14px;
  font-weight: 600;
}

.media-center a {
  display: inline-block;
  margin: 30px auto 0;
  padding: 12px 30px;
  background-color: #ca7b13;
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  transition: background-color 0.3s ease;
  text-align: center;
}

.media-center a:hover {
  background-color: transparent;
  border: 1px solid #000;
  color: black;
}

/* Contact Us */

.contact-section {
  padding: 6rem 2rem 8rem;
  background: #f9f9f9;
  color: #222;
}

.contact-wrapper {
  max-width: 600px;
  margin: 20px auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-intro h4,
.contact-intro h3 {
  color: #002b6d;
  margin-bottom: 10px;
  text-align: center;
}

.contact-intro h1 {
  color: #002b6d;
  margin-bottom: 10px;
  text-align: center;
  font-size: 34px;
}

.contact-form-input {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.contact-form-input input {
  width: 33%;
}

.contact-intro p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 10px;
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 15px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.privacy-check {
  font-size: 13px;
}

.privacy-check input {
  margin-right: 5px;
}

.contact-form button {
  background-color: #ca7b13;
  color: white;
  border: none;
  padding: 12px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: transparent;
  color: black;
  border: 1px solid #000;
}

.contact-info h4 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #002b6d;
  font-weight: 600;
  text-align: center;
}

.contact-info p {
  font-size: 14px;
  margin-bottom: 8px;
}

.contact-info .address {
  display: grid;
  grid-template-columns: 250px 2fr;
  gap: 20px;
  justify-content: space-between;
}

/* Give */
.give-page {
  /*padding: 8rem 2rem 10rem;*/
}

.give-card {
    /* background-color: #f5f5f5; */
    padding: 70px;
    text-align: center;
}

.give-card h2 {
    margin-bottom: 0.5rem;
    color: #333;
    font-size: 40px;
    font-weight: 600;
}

.give-card p {
    margin-bottom: 1.2rem;
    color: #666;
}

.buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    padding-top: 10px;
}

.btn {
    text-decoration: none;
    background-color: #ca7b13;
    color: #fff;
    padding: 0.8rem 1rem;
    border-radius: 5px;
    /* font-weight: bold; */
    transition: background 0.3s;
}

.btn:hover {
    background-color: transparent;
    border: 1px solid black;
    color: black;
}

@media (max-width: 992px) {
  .give-card {
    padding: 60px;
  }

  .give-card h2 {
    font-size: 32px;
  }

  .give-card p {
    font-size: 15px;
  }
}

@media (max-width: 600px) {
  .give-card {
    padding: 40px 20px;
  }

  .give-card h2 {
    font-size: 26px;
  }

  .give-card p {
    font-size: 14px;
  }

  .buttons {
    flex-direction: column;
    gap: 12px;
  }

  .btn {
    width: 100%;
    max-width: 250px;
  }
}

/* Event  */
.events-section {
  padding: 8rem 2rem 10rem;
}

.section-title {
  font-size: 25px;
  text-align: left;
  margin-bottom: 10px;
  color: black;
}

.events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

.event-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 15px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.3s ease;
}

.event-card:hover {
  transform: translateY(-5px);
  border: 1px solid rgba(241, 236, 236, 0.3);
  background-color: rgba(241, 236, 236, 0.3);
}

.event-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.event-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.event-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  color: #444;
}

.event-info h3 {
  font-size: 16px;
}

.event-info p {
  color: #444;
  font-size: 14px;
  display: flex;
  justify-content: start;
  gap: 10px;
  align-items: center;
  font-weight: 500;
}

.event-info i {
  color: #888;
}

@media (max-width: 992px) {
  .events-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .events-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 22px;
    text-align: center;
  }

  .event-card {
    padding: 10px;
  }

  .event-info h3 {
    font-size: 15px;
  }

  .event-info p {
    font-size: 13px;
  }

  .event-img {
    height: 180px;
  }
}