* {
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  background-image: url("/Components/Home/newbg.jpg");
  background-color: black;
  color: white;

  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  /* This ensures no gaps */

  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

.navbar {
  background-color: #111;
  opacity: 0.95;
  padding: 0 1rem;
  height: 4.5rem;
  display: flex;
  align-items: center;
  width: 100%;
  left: 0;
  top: 0;
  right: 0;
  box-sizing: border-box;
  /* overflow-x: hidden;   */
  z-index: 10000;
  position: fixed;
  transition: top 0.3s ease-in-out;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  display: flex;
  gap: 5px;
  justify-content: center;
  align-items: center;
  font-weight: 1000;
  font-size: 2.2rem;
  font-weight: bold;
  background: #ff6a00;
  /* background: linear-gradient(to left, #ff0000, #ff8c00, #ffd700, #ffffff); */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logoImg {
  width: 150px;       
  height: auto;        
  margin-right: 10px;
  margin-left: 5px;
  object-fit: contain; 
  
  /* Styling effects */
  filter: drop-shadow(0 0 8px rgba(255, 162, 99, 0.6)); /* glowing shadow */
  transition: transform 0.3s ease, filter 0.3s ease;     /* smooth hover */
}

.logoImg:hover {
  transform: scale(1.01);  /* zoom effect */
  filter: drop-shadow(0 0 12px rgba(255, 162, 99, 0.8));
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-link-join {
  color: white;
  border-radius: 6px;
  background: #ff6a00;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease-in-out;
}

.nav-link-join:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(255, 106, 0, 0.5);
  background: #ffd700;
  color: #111827;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding: 0.5rem;
}

.nav-link.active,
.nav-link:hover {
  color: cyan;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: white;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.menu-icon {
  height: 24px;
  width: 24px;
  stroke: white;
}

.nav-links.mobile {
  display: none;
  flex-direction: column;
  background-color: #111;
  padding: 1rem;
  gap: 1rem;
  position: absolute;
  top: 4rem;
  left: 0;
  right: 0;
  z-index: 999;
}

@media (max-width: 800px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #111;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 1rem;
    gap: 1rem;
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
    color: cyan;
  }

  .desktop {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .close-icon {
    display: none;
  }

  .logo {
    font-size: 1.8rem;
  }
}

.social-bar {
  position: fixed;
  top: 40%;
  left: 0;
  display: flex;
  flex-direction: column;
  background: #111827;
  backdrop-filter: blur(8px);
  padding: 10px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  z-index: 999;
}

.social-bar a {
  color: #ffffff;
  text-align: center;
  padding: 12px;
  font-size: 20px;
  transition: color 0.3s ease;
}

.social-bar a:hover {
  color: yellow;
}

@media (max-width: 1485px) {
  .social-bar {
    display: none;
  }
}

.hero-area {
  padding-top: 1rem;
  position: relative;
  height: 100%;
  min-height: 100vh;
  /* entire hero area fills screen */
}

.banner {
  position: absolute;
  inset: 0;
  /* fill hero area */
  z-index: 0;
  /* width: 100vw;
  height: 100vh; */
  overflow: hidden;
  box-shadow: 0 10px 25px -10px rgba(255, 140, 0, 0.5);
}

.banner-img {
  position: absolute;
  width: 100%;
  height: 100%;
  background: no-repeat 50% 50%;
  background-size: cover;
  animation: animate 15s linear infinite;
  opacity: 1;
  filter: blur(2px);
  filter: brightness(25%);
  transform: scale(1.1);
}

.banner-img:nth-child(1) {
  animation-name: animate-1;
  z-index: 3;
}

.banner-img:nth-child(2) {
  animation-name: animate-2;
  z-index: 2;
}

.banner-img:nth-child(3) {
  animation-name: animate-3;
  z-index: 1;
}

.banner-img:nth-child(4) {
  animation-name: animate-4;
  z-index: 0;
}

@keyframes animate-1 {
  0% {
    opacity: 1;
    transform: scale(1.1);
  }

  1.5% {
    opacity: 1;
  }

  23% {
    opacity: 1;
  }

  26% {
    opacity: 0;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(1.1);
  }

  98% {
    opacity: 0;
    transform: scale(1.11);
  }

  100% {
    opacity: 1;
  }
}

@keyframes animate-2 {
  23% {
    opacity: 1;
    transform: scale(1.1);
  }

  26% {
    opacity: 1;
  }

  48% {
    opacity: 1;
  }

  51% {
    opacity: 0;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(1.1);
  }
}

@keyframes animate-3 {
  48% {
    opacity: 1;
    transform: scale(1.1);
  }

  51% {
    opacity: 1;
  }

  73% {
    opacity: 1;
  }

  76% {
    opacity: 0;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(1.1);
  }
}

@keyframes animate-4 {
  73% {
    opacity: 1;
    transform: scale(1.1);
  }

  76% {
    opacity: 1;
  }

  98% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: scale(1);
  }
}

.hero-section {
  position: relative;
  z-index: 10;
  height: 100%;

}

.hero-section {
  padding: 6rem 1rem;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.champs-btn {
  background-color: #ff6a00;
  color: black;
  border: none;
  padding: 0.75rem 1.2rem;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  margin-top: 70px;
}

.champs-btn:hover {
  transform: translateY(-4px) scale(1.02);
  background-color: rgb(203, 203, 0);
  color: black;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .hero-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.text-block {
  padding: 4rem 0;
  flex: 1;
}

.title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
}

.gradient-text {
  display: block;
  margin-top: 0.5rem;
  background: #ff6a00;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  font-size: 1.25rem;
  color: #ccc;
  margin: 1rem 0;
}

.highlight {
  color: #fff700;
  font-weight: 700;
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .buttons {
    flex-direction: row;
  }
}

.primary-btn {
  /* background: linear-gradient(270deg, #ff0000, #ff6a00, #ffd700); */
  background-color: #ff6a00;
  color: white;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 9999px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.primary-btn:hover {
  transform: translateY(-2px) scale(1.02);
  background-color: #ffd700;
  color: black;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}


.secondary-btn {
  background: transparent;
  border: 2px solid white;
  color: white;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.secondary-btn:hover {
  background: white;
  transform: translateY(-2px) scale(1.02);
  color: #111827;
}


.icon {
  width: 1.25rem;
  height: 1.25rem;
  color: yellow;
}

.about-section {
  margin-top: 100px;
  position: relative;
  z-index: 1000;
  background: transparent;
  padding: 4rem 1rem;
  text-align: center;
}

.about-section h2 {
  font-size: 2.5rem;
  color: yellow;
  margin-bottom: 1rem;
}

.about-section p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  color: #ddd;
  line-height: 1.6;
}

.highlights-section {
  background: transparent;
  padding: 4rem 1rem;
  text-align: center;
  z-index: 0;
}

.highlights-section h2 {
  font-size: 2.5rem;
  color: yellow;
  margin-bottom: 2rem;
}

.highlights-cards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  cursor: pointer;
}

.highlight-card {
  background: #111;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #333;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.3s, box-shadow 0.3s;
}

.highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px orange;
}

.highlight-card i {
  font-size: 2rem;
  color: yellow;
  margin-bottom: 1rem;
}

.highlight-card h3 {
  font-size: 1.5rem;
  color: white;
}

.highlight-card p {
  color: #ccc;
}

@media (min-width: 768px) {
  .highlights-cards {
    flex-direction: row;
    justify-content: center;
  }

  .highlight-card {
    width: 250px;
  }
}

.arrow-container {
  /* position: absolute; */
  display: flex;
  justify-content: space-around;
}

.arrow {
  position: absolute;
  top: 50%;
  font-size: 3rem;
  background-color: transparent;
  border: none;
  color: white;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

.arrow:hover {
  transform: scale(1.2);
}

.left-arrow {
  left: 10%;
}

.right-arrow {
  right: 10%;
}

@media(max-width: 1230px) {
  .arrow {
    top: 50%;
  }

  .left-arrow {
    left: 4%;
  }

  .right-arrow {
    right: 4%;
  }
}

@media(max-width: 500px) {
  .arrow {
    top: 25%;
  }

  .left-arrow {
    left: 2%;
  }

  .right-arrow {
    right: 2%;
  }
}

.winners-section {
  background: transparent;
  padding: 4rem 1rem;
  text-align: center;
  position: relative;
}

.winners-section h2 {
  font-size: 2.5rem;
  color: yellow;
  margin-bottom: 2rem;
}

.winners-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.winner {
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid #333;
  width: 250px;
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  transition: transform 0.3s, box-shadow 0.3s;
}

.winner:hover {
  transform: translateY(-5px);
  box-shadow: 0 7px 30px rgba(255, 100, 0, 0.5);
}

.winner img {
  width: 100%;
  height: auto;
  flex-grow: 1;
  object-fit: cover;
  margin: 0.5rem 0;
  border-radius: 12px;
  filter: brightness(100%);
}

.h-upper {
  font-size: 1.5rem;
  font-weight: 1000;
  margin: 0.5rem 0;
}

.h-lower {
  color: white;
  font-size: 1.3rem;
  font-weight: 750;
  margin: 0.5rem 0;
}

.position-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-weight: bold;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.first .position-badge {
  background: linear-gradient(270deg, gold, orange, gold);
  background-size: 400% 400%;
  color: #111;
  animation: shine 3s ease infinite;
}

.second .position-badge {
  background: linear-gradient(270deg, silver, rgb(236, 236, 236), silver);
  background-size: 400% 400%;
  color: #111;
  animation: shine 3s ease infinite;
}

.third .position-badge {
  background: linear-gradient(270deg, #cd7f32, #9a6738, #cd7f32);
  background-size: 400% 400%;
  color: #111;
  animation: shine 3s ease infinite;
}

@keyframes shine {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 5px silver;
  }

  50% {
    box-shadow: 0 0 20px #aaa;
  }

  100% {
    box-shadow: 0 0 5px silver;
  }
}

.winners-gallery {
  display: none;
}

.winners-gallery.gallery-active {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.winner.flip {
  animation: flipIn 0.6s forwards;
}

@keyframes flipIn {
  from {
    transform: rotateY(90deg);
    opacity: 0;
  }

  to {
    transform: rotateY(0);
    opacity: 1;
  }
}

.gallery-title {
  font-size: 2rem;
  color: orangered;
  margin: 2rem 0 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: bold;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.mentor-section {
  background: transparent;
  padding: 2rem 1rem;
  text-align: center;
}

.mentor-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}

.mentor-container img {
  border-radius: 50%;
  width: 250px;
  height: 250px;
  object-fit: cover;
  /*   border: 4px solid cyan; */
}

.mentor-text h2 {
  font-size: 2.5rem;
  color: yellow;
}

.mentor-text h3 {
  font-size: 2rem;
  color: yellow;
}

.mentor-text p {
  max-width: 800px;
  color: #ccc;
  margin-top: 1rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .mentor-container {
    flex-direction: row;
    justify-content: center;
  }

  .mentor-text {
    text-align: left;
  }
}

.gallery-title {
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  text-align: center;
  font-size: 1.75rem;
  margin-top: 20px;
  margin-bottom: 20px;
  color: white;

}

footer {
  background: rgba(0, 0, 0, 0.8);
  text-align: center;
  padding: 1rem;
  display: flex;
  flex-direction: column;
}

footer p {
  margin: 0.6rem 0;
}

.footer-link {
  color: cyan;
  text-decoration: none;
  margin: 0 0.5rem;
}

.footer-link:hover {
  text-decoration: underline;
}

footer .connections {
  display: flex;
  gap: 20px;
  justify-content: center;
}

footer .connections a {
  color: rgb(255, 255, 255);
  font-size: 1.2rem;
}

footer .connections a:hover {
  color: yellow;
}

.footer-people {
  margin-top: 10px;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

.footer-people .developers {
  color: rgba(255, 255, 255, 0.7);
  display: grid;
  grid-template-columns: repeat(7, auto);
  gap: 5px 5px;
  margin-bottom: 0.5rem;
  justify-content: center;
  margin-top: 5px;
  font-size: 0.95rem;
}

.developedby {
  font-size: 1rem;
}

.footer-people a {
  text-decoration: none;
  color: inherit;
  display: inline-flex;
  align-items: center;
}

.developers :hover {
  color: rgb(255, 255, 0, 1);
}

.rights {
  font-size: smaller;
  margin-bottom: 0.75rem;
}

.footer-people .developers a::after {
  content: "·";
  margin: 0 8px;
  opacity: 0.6;
  display: inline-block;
  vertical-align: middle;
  /* ensures alignment */
  font-size: 1.1em;
  /* adjust size if needed */
  line-height: 1;
}

.footer-people .developers a:last-child::after {
  content: "";
  /* No separator after last name */
}

@media (max-width: 600px) {
  .footer-people .developers a::after {
    content: " ·";
    margin: 0 6px;
    opacity: 0.6;
  }

  .footer-people .developers a:nth-child(2)::after {
    content: "";
    /* removes separator after 2nd child */
  }

  .footer-people .developers a:last-child::after {
    content: "";
    /* No separator after last name */
  }

  .footer-people .developers {
    display: grid;
    grid-template-columns: repeat(2, auto);
    /* stack vertically */
    gap: 6px;
  }
}

.shiny-text {
  color: #b5b5b5a4;
  background: linear-gradient(120deg,
      rgba(255, 255, 255, 0) 40%,
      rgba(255, 243, 175, 0.8) 50%,
      rgba(255, 255, 255, 0) 60%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  display: inline-block;
  animation: shine 2.5s linear infinite;
}

@keyframes shine {
  0% {
    background-position: 100%;
  }

  100% {
    background-position: -100%;
  }
}

.shiny-text.disabled {
  animation: none;
}


/* --- gallery Section Styling --- */

.section {
  padding: 6rem 2rem;
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-family: "Montserrat", sans-serif;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 700;
  position: relative;
  color: yellow;
}

.section-subtitle {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
  color: white;
  font-size: 1.1rem;
  line-height: 1.7;
}

.section-title::after {
  content: "";
  display: block;
  width: 6px;
  height: 3px;
  /* background-color: #ff6a00; */
  margin: 10px auto 0;
  border-radius: 2px;
}

.slider-wrapper {
  position: relative;
  transform: scale(0.9);
}

.slider-container {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  gap: 10px;
  padding-bottom: rem;
  /* for scrollbar */
  scrollbar-color: #ff6a00 #0d1117;
}

.slider-container::-webkit-scrollbar {
  height: 6px;
}

.slider-container::-webkit-scrollbar-track {
  background: var(--color-card-bg);
  border-radius: 4px;
}

.slider-container::-webkit-scrollbar-thumb {
  background: #ff6a00;
  border-radius: 4px;
}

.slide {
  flex: 0 0 80%;
  max-width: 80%;
  scroll-snap-align: center;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s;
  cursor: pointer;
}

.slide:hover {
  transform: scale(1.02);
}

.slide img {
  width: 95%;
  height: 95%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.slide img:hover {
  filter: brightness(0.8);
}

@media (min-width: 768px) {
  .slide {
    flex-basis: 40%;
    max-width: 40%;
  }
}

.gallery-link-container {
  text-align: center;
  /* margin-top: 3rem; */
}

/* lightbox styling  */
/* Fullscreen Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Centered container for image */
.lightbox-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Image styling - small opening */
.lightbox-content {
  max-width: 60%;
  /* Smaller image width */
  max-height: 60%;
  /* Smaller image height */
  display: block;
  border-radius: 6px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);

}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 20px;
  background: black;
  color: white;
  font-size: 26px;
  font-weight: bold;
  padding: 6px 12px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
  z-index: 10000;
}

.lightbox-close:hover {
  background: #333;
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: black;
  color: white;
  padding: 10px 14px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  transition: background 0.3s;
  user-select: none;
  z-index: 10000;
}

.lightbox-nav:hover {
  background: #333;
}

#prev-btn {
  left: 30px;
}

#next-btn {
  right: 30px;
}

.lightbox-caption {
  display: none;
}

@media (max-width: 768px) {
  .lightbox-content {
    max-width: 90%;
    max-height: 80%;
  }

  .lightbox-nav {
    position: absolute;
    background: rgba(0, 0, 0, 0.6);
  }

  #prev-btn {
    left: 10px;
  }

  #next-btn {
    right: 10px;
  }

  .lightbox-close {
    top: 180px;
  }
}



/* scrollbar styling  */

/* ===== Chrome, Edge, Safari ===== */
::-webkit-scrollbar {
  width: 14px;
  /* Wider for more realistic look */
}

::-webkit-scrollbar-track {
  background: #0d1117;
  border-left: 1px solid #1a1f27;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ff6a00, #cc5500);
  border-radius: 6px;
  border: 2px solid #0d1117;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #ff7f26, #e65c00);
}

/* ===== Scrollbar Buttons (Arrows) ===== */

::-webkit-scrollbar-button {
  background-color: #0d1117;
  border: none;
  height: 16px;
}

::-webkit-scrollbar-button:single-button:vertical:decrement {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #ff6a00;
}

::-webkit-scrollbar-button:single-button:vertical:increment {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #ff6a00;
}

::-webkit-scrollbar-button:single-button:vertical:decrement:hover,
::-webkit-scrollbar-button:single-button:vertical:increment:hover {
  border-bottom-color: #ff7f26;
  border-top-color: #ff7f26;
}

/* ===== Firefox ===== */
html {
  scrollbar-width: thin;
  scrollbar-color: #ff6a00 #0d1117;
}



/* contact section styles  */


.contact-section {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 1rem;
  /* padding-top: 1rem; */
}

.lead-contact a {
  color: cyan;
  text-decoration: none;
}

.lead-contact a:hover {
  text-decoration: underline;
}

.spark {
  color: #ff6a00;
}

.contact-box {
  background: rgba(20, 20, 20, 0.8);
  padding: 2rem;
  border-radius: 12px;
  width: 100%;
  max-width: 500px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}

.contact-box h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
}

.contact-box p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #ccc;
}

#contactForm {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0.4rem;
}

.contact-box input,
.contact-box textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  margin: 0.5rem 0;
  border: none;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: background 0.3s ease;
}

textarea {
  resize: none;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.contact-box input:focus,
.contact-box textarea:focus {
  background: rgba(255, 255, 255, 0.2);
  outline: none;
}

.contact-box button {
  background: orange;
  color: #000;
  border: none;
  padding: 0.8rem;
  width: 100%;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 1rem;
  transition: background 0.3s ease, transform 0.2s;
}

.contact-box button:hover {
  background: #ff9900;
  transform: translateY(-2px);
}

#animated-text {
  font-size: 2rem;
  font-weight: 780;
}

@media (max-width: 600px) {
  .contact-box {
    padding: 1.5rem;
  }

  .contact-box h2 {
    font-size: 1.5rem;
  }

  .contact-box p {
    font-size: 0.95rem;
  }

  .gallery-title {
    font-size: 1.4rem;
  }

}

.cursor {
  display: inline-block;
  margin-left: 2px;
  animation: blink 1s infinite;
}

@keyframes blink {

  0%,
  50% {
    opacity: 1;
  }

  25%,
  75%,
  100% {
    opacity: 0;
  }
}

.thank-you-message {
  text-align: center;
  background-color: #2c2c3a;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.thank-you-message h3 {
  color: #00ffcc;
  margin-bottom: 0.5rem;
}

.thank-you-message p {
  margin-bottom: 1rem;
}

#returnBtn {
  background-color: orange;
  color: black;
  border: none;
  padding: 0.75rem 1.2rem;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

#returnBtn:hover {
  background-color: #ff9900;
}