/* General Reset and Box Sizing */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Kumbh Sans", sans-serif;
  scroll-behavior: smooth;
}

/* Navigation Bar Styles */
.navbar {
  background: #131313;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar_container {
  display: flex;
  justify-content: space-between;
  height: 80px;
  z-index: 1;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 50px;
  font-weight: 700;
}

/* Navbar Gradient Effect - These are presets for gradients in case of need to add gradients */
#navbar_logo {
  background: #2980b9; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    #ffffff,
    #6dd5fa,
    #2980b9
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to right,
    #ffffff,
    #6dd5fa,
    #2980b9
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  display: flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  font-size: 2rem;
}

.navbar_menu {
  display: flex;
  align-items: center;
  list-style: none;
}

.navbar_item {
  height: 80px;
}

.navbar_links {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 125px;
  text-decoration: none;
  height: 100%;
  transition: all 0.3s ease;
}

.navbar_button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
  width: 100%;
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  padding: 10px 20px;
  height: 100%;
  width: 100%;
  border: none;
  outline: none;
  border-radius: 4px;
  background: #883ab4;
  background: #2980b9; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    #ffffff,
    #ffffff,
    #ffffff
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to right,
    #ffffff,
    #ffffff,
    #ffffff
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

  color: black;
  transition: all 0.3s ease;
}

.navbar_links:hover {
  color: #38b6ff;
  transition: all 0.3s ease;
}

/* Mobile Menu Styles */
@media screen and (max-width: 960px) {
  .navbar_container {
    display: flex;
    justify-content: space-between;
    height: 80px;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    padding: 0;
  }

  .navbar_menu {
    display: grid;
    grid-template-columns: auto;
    margin: 0;
    width: 100%;
    position: absolute;
    top: -1000px;
    opacity: 1;
    transition: all 0.5s ease;
    z-index: -1;
  }

  .navbar_menu.active {
    background: #131313;
    top: 100%;
    opacity: 1;
    transition: all 0.5s ease;
    z-index: 99;
    height: 60vh;
    font-size: 1.6rem;
  }

  #navbar_logo {
    padding-left: 25px;
  }

  .navbar_toggle .bar {
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background: #fff;
  }
  .navbar_item {
    width: 100%;
  }

  .navbar_links {
    text-align: center;
    padding: 2rem;
    width: 100%;
    display: table;
  }

  .navbar_button {
    padding-bottom: 2rem;
  }

  .button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    height: 80px;
    margin: 0;
  }

  #mobile-menu {
    position: absolute;
    top: 20%;
    right: 5%;
    transform: translate(5%, 20%);
  }

  .navbar_toggle .bar {
    display: block;
    cursor: pointer;
  }

  #mobile-menu.is-active .bar:nth-child(2) {
    opacity: 0;
  }

  #mobile-menu.is-active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  #mobile-menu.is-active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* Hero Section */
.hero {
  background-image: url("img/pic218.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

.hero_container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  height: 90%;
  text-align: center;
  padding: 30px;
  font-weight: 500;
}

.hero_heading {
  font-size: 80px;
  margin-bottom: 24px;
  color: #fff;
}

/* Hero Section Gradient - These are presets for gradients in case of need to add gradients */
.hero_heading span {
  background: #2980b9; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    #38b6ff,
    #38b6ff,
    #38b6ff
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to right,
    #38b6ff,
    #38b6ff,
    #38b6ff
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
}

.hero_description {
  font-size: 60px;
  font-weight: 700;
  background: #2980b9; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    #ffffff,
    #ffffff,
    #ffffff
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to right,
    #ffffff,
    #ffffff,
    #ffffff
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
}

.highlight {
  border-bottom: 4px solid rgb(0, 225, 255);
}

@media screen and (max-width: 768px) {
  .hero_heading {
    font-size: 60px;
  }

  .hero_description {
    font-size: 40px;
  }
}

/* About Us */
.main {
  background-color: #131313;
  padding: 10rem 0;
}

.main_container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  height: 90%;
  z-index: 1;
  width: 100%;
  max-width: 1300px;
  padding: 0 50px;
}

.main_content {
  color: #ffffff;
  width: 100%;
}

.main_content h1 {
  font-size: 2rem;
  background-color: #ffffff;
  background-image: linear-gradient(to top, #ffffff 0%, #ffffff 100%);
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  text-transform: uppercase;
  margin-bottom: 32px;
}

/* About us Section Gradient - These are presets for gradients in case of need to add gradients */
.main_content h2 {
  font-size: 4rem;
  background: #2980b9; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    #38b6ff,
    #38b6ff,
    #38b6ff
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to right,
    #38b6ff,
    #38b6ff,
    #38b6ff
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
}

.main_content p {
  margin-top: 1rem;
  font-size: 2rem;
  font-weight: 700;
}

/* About us Section Gradient - for future*/
.main_button {
  font-size: 1.8rem;
  font-weight: 700;
  background: #2980b9; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    #ffffff,
    #ffffff,
    #ffffff
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to right,
    #ffffff,
    #ffffff,
    #ffffff
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

  padding: 20px 60px;
  border: none;
  border-radius: 4px;
  color: #fff;
  margin-top: 2rem;
  cursor: pointer;
  position: relative;
  transition: all 0.35s;
  outline: none;
}

.main_button a {
  position: relative;
  z-index: 2;
  color: #000000;
  text-decoration: none;
}

.main_button:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #38b6ff;
  transition: all 0.35s;
  border-radius: 4px;
}

.main_button:hover {
  color: #fff;
}

.main_button:hover:after {
  width: 100%;
}

.main_image--container {
  text-align: center;
}

.main_image--card {
  margin: 10px;
  height: 500px;
  width: 500px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  background-image: url("img/pic1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Mobile Responsive */
@media screen and (max-width: 1100px) {
  .main_container {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    height: 90%;
  }

  .main_image--container {
    display: flex;
    justify-content: center;
  }

  .main_image--card {
    height: 425px;
    width: 425px;
  }

  .main_content {
    text-align: center;
    margin-bottom: 4rem;
  }

  .main_content h1 {
    font-size: 2rem;
    margin-top: 2rem;
  }

  .main_content h2 {
    font-size: 3rem;
  }

  .main_content p {
    margin-top: 1rem;
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 480px) {
  .main_image--card {
    width: 250px;
    height: 250px;
  }

  .main_container h1 {
    font-size: 2rem;
    margin-top: 3rem;
  }

  .main_content h2 {
    font-size: 2rem;
  }

  .main_content p {
    margin-top: 2rem;
  }

  .main_button {
    padding: 12px 36px;
    margin: 2.5rem 0;
  }
}

/* Events */

.events {
  background-image: url("img/pic216.jpg"); /* Set background image for events section */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10rem 0;
}

.events h1 {
  color: white; /* Ensure the heading remains visible */
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
}

.events_wrapper {
  display: grid;
  grid-template-columns: 1fr; /*Allows for multi columns remeber to switch when adding more events */
  grid-template-rows: 1fr;
}

.events_card {
  margin: 10px;
  height: 425px;
  width: 300px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative; /* Allows positioning of the overlay */
  color: rgb(255, 255, 255);
  font-weight: 500;
  background-image: linear-gradient(to right, #00dbde 0%, #fc00ff 100%);
  transition: 0.3s ease-in;
}

/* Depends on HTML how many events we have

/* .events_card:nth-child(1) {
  background-image: url("img/pic5.jpg");
  background-size: cover; 
  background-position: center; 
  background-repeat: no-repeat;
} */

.events_card:nth-child(1) {
  background-image: url("img/pic6.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* .events_card:nth-child(3) {
  background-image: url("img/pic10.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.events_card:nth-child(4) {
  background-image: url("img/pic11.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
} */

.events_card h2 {
  text-align: center;
}

.events_card p {
  text-align: center;
  margin-top: 24px;
  font-size: 20px;
}

.events_button {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.events_card button {
  color: #fff;
  padding: 14px 24px;
  border: none;
  outline: none;
  border-radius: 4px;
  background: #131313;
  font-size: 1rem;
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.events_card button:hover {
  cursor: pointer;
}

.events_card:hover {
  transform: scale(1.075);
  transition: 0.3s ease-in;
  cursor: pointer;
}

@media screen and (max-width: 1300px) {
  .events_wrapper {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 768px) {
  .events_wrapper {
    grid-template-columns: 1fr;
  }
}

/* Sign */
.sign {
  background-color: #131313;
  padding: 10rem 0;
}

.sign_container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  height: 90%;
  z-index: 1;
  width: 100%;
  max-width: 1300px;
  padding: 0 50px;
}

.sign_content {
  color: #ffffff;
  width: 100%;
}

.sign_content h1 {
  font-size: 2rem;
  background-color: #ffffff;
  background-image: linear-gradient(to top, #ffffff 0%, #ffffff 100%);
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  text-transform: uppercase;
  margin-bottom: 32px;
}

/* Charity Section Gradient - for future*/
.sign_content h2 {
  font-size: 4rem;
  background: #2980b9; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    #38b6ff,
    #38b6ff,
    #38b6ff
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to right,
    #38b6ff,
    #38b6ff,
    #38b6ff
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
}

.sign_content p {
  margin-top: 1rem;
  font-size: 2rem;
  font-weight: 700;
}

.sign_button {
  font-size: 1.8rem;
  font-weight: 700;
  background: #2980b9; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    #ffffff,
    #fafafa,
    #2980b9
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to right,
    #ffffff,
    #ffffff,
    #ffffff
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

  padding: 20px 60px;
  border: none;
  border-radius: 4px;
  color: #fff;
  margin-top: 2rem;
  cursor: pointer;
  position: relative;
  transition: all 0.35s;
  outline: none;
}

.sign_button a {
  position: relative;
  z-index: 2;
  color: #000000;
  text-decoration: none;
}

.sign_button:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #38b6ff;
  transition: all 0.35s;
  border-radius: 4px;
}

.sign_button:hover {
  color: #fff;
}

.sign_button:hover:after {
  width: 100%;
}

.sign_image--container {
  text-align: center;
}

.sign_image--card {
  margin: 10px;
  height: 500px;
  width: 500px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  background-image: url("img/pic4.png"); /* Path to the image */
  background-size: cover; /* Ensures the image covers the container */
  background-position: center; /* Centers the image */
  background-repeat: no-repeat; /* Prevents tiling */
}

/* Mobile Responsive */
@media screen and (max-width: 1100px) {
  .sign_container {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    height: 90%;
  }

  .sign_image--container {
    display: flex;
    justify-content: center;
  }

  .sign_image--card {
    height: 425px;
    width: 425px;
  }

  .sign_content {
    text-align: center;
    margin-bottom: 4rem;
  }

  .sign_content h1 {
    font-size: 2rem;
    margin-top: 2rem;
  }

  .sign_content h2 {
    font-size: 3rem;
  }

  .sign_content p {
    margin-top: 1rem;
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 480px) {
  .sign_image--card {
    width: 250px;
    height: 250px;
  }

  .sign_container h1 {
    font-size: 2rem;
    margin-top: 3rem;
  }

  .sign_content h2 {
    font-size: 2rem;
  }

  .sign_content p {
    margin-top: 2rem;
  }

  .sign_button {
    padding: 12px 36px;
    margin: 2.5rem 0;
  }
}

/* Impact */
.impact {
  background: #131313;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 10rem 0;
}

.impact h1 {
  background-color: #ffffff;
  background-image: linear-gradient(to right, #ffffff 0%, #ffffff 100%);
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  margin-bottom: 5rem;
  font-size: 2.5rem;
  text-align: center; /* Ensure the title is centered by default */
}

/* Impact Wrapper (Grid Layout) */
.impact_wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr;
}

/* Impact Card */
.impact_card {
  margin: 10px;
  height: 425px;
  width: 300px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  color: white;
  transition: 0.3s ease-in;
}

.impact_card:nth-child(1) {
  background-image: url("img/pic7.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.impact_card:nth-child(2) {
  background-image: url("img/pic8.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.impact_card:nth-child(3) {
  background-image: url("img/pic9.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Impact Section Section preset - for future*/
.impact_card:nth-child(4) {
  background: #1fa2ff;
  background: -webkit-linear-gradient(to right, #a6ffcb, #12d8fa, #1fa2ff);
  background: linear-gradient(to right, #a6ffcb, #12d8fa, #1fa2ff);
}

.impact_card h2 {
  text-align: center;
}

.impact_card p {
  text-align: center;
  margin-top: 24px;
  font-size: 20px;
}

.impact_button {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.impact_card button {
  color: #fff;
  padding: 14px 24px;
  border: none;
  outline: none;
  border-radius: 4px;
  background: #131313;
  font-size: 1rem;
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.impact_card button:hover {
  cursor: pointer;
}

.impact_card:hover {
  transform: scale(1.075);
  transition: 0.3s ease-in;
  cursor: pointer;
}

/* Mobile responsiveness */
@media screen and (max-width: 1300px) {
  .impact_wrapper {
    grid-template-columns: 1fr;
  }

  /* Center title text on smaller screens */
  .impact h1 {
    font-size: 2rem; /* Adjust the font size for smaller screens */
    margin-bottom: 3rem; /* Adjust spacing for small screens */
    text-align: center; /* Ensure the title is centered */
  }
}

@media screen and (max-width: 768px) {
  .impact_wrapper {
    grid-template-columns: 1fr;
  }

  .impact h1 {
    font-size: 1.8rem; /* Adjust the font size even smaller for phones */
    margin-bottom: 2rem; /* Adjust margin for a more compact layout */
    text-align: center; /* Ensure the title is centered */
  }
}

/* Contact us */
.contact {
  background-color: #ffffff;
  padding: 10rem 0;
}

.contact_container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  height: 90%;
  z-index: 1;
  width: 100%;
  max-width: 1300px;
  padding: 0 50px;
}

.contact_content {
  color: #000000;
  width: 100%;
}

.contact_content h1 {
  font-size: 2rem;
  background-color: #fe3b6f;
  background-image: linear-gradient(to top, #38b6ff 0%, #38b6ff 100%);
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  text-transform: uppercase;
  margin-bottom: 32px;
}

/* Contact Form Styles */
.contact-form {
  width: 100%;
  max-width: 500px;
  margin-top: 30px;
}

.contact-form .form-group {
  margin-bottom: 15px;
}

.contact-form label {
  font-weight: bold;
  margin-bottom: 5px;
  display: block;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .submit-button {
  background: #000000;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease-in-out;
}

.contact-form .submit-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #38b6ff;
  transition: left 0.3s ease-in-out;
  z-index: -1;
}

.contact-form .submit-button:hover::before {
  left: 0;
}

.contact-form .submit-button:hover {
  color: white;
}

.success-message {
  display: none;
  font-size: 1.2rem;
  color: rgb(0, 187, 255);
  margin-top: 20px;
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .contact_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .contact_content {
    text-align: center;
  }
}

/* Scrollable Image Gallery */
.contact_image--container {
  text-align: center;
}

.gallery-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  max-width: 500px; /* Fixed width for gallery */
  overflow: hidden;
}

.gallery {
  display: flex;
  transition: transform 0.3s ease-in-out;
}

.gallery-image-container {
  min-width: 100%; /* Each image takes up the full width of the gallery */
  height: 300px; /* Fixed height for images */
  display: flex;
  justify-content: center;
}

.gallery-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

/* Scroll Button Styles */
.scroll-btn {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.scroll-btn.prev {
  left: 10px;
}

.scroll-btn.next {
  right: 10px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .gallery-wrapper {
    width: 100%;
  }

  .gallery-image-container {
    height: 250px;
  }

  .gallery-image {
    height: auto;
    object-fit: contain;
  }
}

@media screen and (max-width: 480px) {
  .gallery-image-container {
    height: 200px;
  }
}

/* Social Links Section */
.socials-link {
  text-align: center;
  margin-top: 30px;
}

.socials-link p {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px; /* Spacing between icons */
  flex-wrap: wrap; /* Allow icons to wrap onto new lines */
}

.social-icon {
  font-size: 40px; /* Icon size */
  color: #38b6ff; /* Default color */
  transition: transform 0.3s ease-in-out; /* Smooth scaling effect */
}

.social-icon:hover {
  transform: scale(1.2); /* Slightly increase size on hover */
}

/* Different Colors for Social Media Platforms */
.social-icon:nth-child(1):hover {
  color: #e4405f;
} /* Instagram color */
.social-icon:nth-child(2):hover {
  color: #ff0000;
} /* YouTube color */
.social-icon:nth-child(3):hover {
  color: #25d366;
} /* WhatsApp color */
.social-icon:nth-child(4):hover {
  color: #0a66c2;
} /* LinkedIn color */
.social-icon:nth-child(5):hover {
  color: #1877f2;
} /* Facebook color */
.social-icon:nth-child(6):hover {
  color: #000000;
} /* Email color */

/* Responsive Design */
@media screen and (max-width: 768px) {
  .socials-link p {
    font-size: 1.2rem; /* Adjust font size for smaller screens */
  }

  .social-icons {
    gap: 15px; /* Reduce spacing between icons */
    flex-wrap: wrap; /* Ensure icons wrap onto new lines if needed */
  }

  .social-icon {
    font-size: 35px; /* Smaller icon size for mobile */
  }
}

@media screen and (max-width: 480px) {
  .social-icons {
    gap: 10px; /* Reduce gap further for smaller screens */
  }

  .social-icon {
    font-size: 30px; /* Adjust size further for compact screens */
  }

  .socials-link p {
    font-size: 1rem; /* Adjust font size for very small screens */
  }
}

/* Footer Innit */
.footer_container {
  background-color: #131313;
  padding: 5rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#footer_logo {
  color: #fff;
  display: flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  font-size: 2rem;
}

.footer_link {
  width: 100%;
  max-width: 1000px;
  display: flex;
  justify-content: center;
}

.footer_link--wrapper {
  display: flex;
}

.footer_link--items {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 16px;
  text-align: left;
  width: 160px;
  box-sizing: border-box;
}

.footer_link--items h2 {
  margin-bottom: 16px;
  color: #fff;
}

.footer_link--items a {
  color: white;
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: 0.3 ease-out;
}

.footer_link--items a:hover {
  color: #e9e9e9;
  transition: 0.3 ease-out;
}

.social_icon--link {
  color: #fff;
  font-size: 24px;
}

.social_media {
  max-width: 1000px;
  width: 100%;
}

.social_media--wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1000px;
  margin: 40px auto 0 auto;
}

.social_icons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 240px;
}

.website_rights {
  color: #fff;
}

@media screen and (max-width: 820px) {
  .footer_link {
    padding-top: 2rem;
  }

  #footer_logo {
    margin-bottom: 2rem;
  }

  .website_rights {
    margin-bottom: 2rem;
  }

  .footer_link--wrapper {
    flex-direction: column;
  }

  .social_media--wrap {
    flex-direction: column;
  }
}

@media screen and (max-width: 480px) {
  .footer_links--items {
    margin: 0;
    padding: 10px;
    width: 100%;
  }
}
