/*
Photography Awards Website
Black ,White, Red Color

 */
:root {
  --primary-color: #6e9580;
  --secondary-color: #69902e;
  --white-color: #ffffff;
  --black-color: #000000;
  --font-color: #000;
  --font-dark-color: #101616;
  --footer-bg: #2a2c38;
  --section-color: #f5f5f5;
  --primary-font: "Rubik", sans-serif;
  --secondary-font: "Quicksand", sans-serif;
}

:hover {
  transition: 0.3s ease-in-out;
}

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #000000;
  color: #ffffff;
  overflow-x: hidden;
  line-height: 1.6;
}
h1,
h2,
h3,
h4,
h5,
p {
  color: #fff;
}

section {
  background: #000;
}
img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
a,
a:hover,
a:focus,
input:focus,
button:focus,
a:active {
  text-decoration: none;
  outline: none;
  outline-offset: 0px;
  box-shadow: none;
  color: #e51818;
}
/*
Scrollbar
*/

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #111;
}

::-webkit-scrollbar-thumb {
  background: #8b8383;

  border-radius: 10px;
}

/*
Container
*/

.container {
  width: 90%;

  max-width: 1300px;

  margin: auto;
}

/*
Navigation
*/

nav {
  width: 100%;

  position: fixed;

  top: 0;

  left: 0;

  z-index: 999;

  display: flex;

  justify-content: space-between;

  align-items: center;

  padding: 20px 7%;
}

.logo {
  font-size: 34px;

  font-weight: 800;

  color: white;

  letter-spacing: 2px;
}

.logo span {
  color: #d60000;
}

nav ul {
  display: flex;

  list-style: none;

  gap: 40px;
}

nav ul li a {
  color: white;

  text-decoration: none;

  font-weight: 500;

  transition: 0.3s;
}

nav ul li a:hover {
  color: #d60000;
}

/*
Button
*/

.btn {
  background: #d60000;

  color: white;

  text-decoration: none;

  padding: 14px 34px;

  border-radius: 40px;

  transition: 0.4s;

  display: inline-block;

  font-weight: 600;
}

.btn:hover {
  background: #ff2020;

  transform: translateY(-4px);
}

/*
Hero /Curscoel
*/

.hero {
  position: relative;

  height: 80vh;

  overflow: hidden;
}

.slider {
  width: 100%;

  height: 100%;

  position: absolute;
}

.slide {
  position: absolute;

  width: 100%;

  height: 100%;

  object-fit: cover;

  opacity: 0;

  transition: opacity 1s;
}

.slide.active {
  opacity: 1;
}

.overlay {
  position: absolute;

  width: 100%;

  height: 100%;

  background: rgba(0, 0, 0, 0.45);
}

.content {
  position: absolute;

  top: 50%;

  left: 50%;

  transform: translate(-50%, -50%);

  text-align: center;

  width: 90%;

  z-index: 10;
}

.badge {
  display: inline-block;

  padding: 10px 28px;

  border-radius: 30px;

  background: rgba(120, 70, 150, 0.4);

  color: #ffc400;

  margin-bottom: 25px;
}

h1 {
  font-size: 55px;

  margin-bottom: 20px;
}

.content p {
  font-size: 28px;

  margin-bottom: 40px;
}

.stats {
  display: flex;

  justify-content: center;

  gap: 20px;
}

.box {
  background: rgba(40, 40, 40, 0.6);

  padding: 18px 40px;

  border-radius: 15px;

  backdrop-filter: blur(8px);
}

.box h3 {
  font-size: 36px;
}

.prev,
.next {
  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  width: 60px;

  height: 60px;

  border: none;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.15);

  color: white;

  font-size: 28px;

  cursor: pointer;

  z-index: 100;
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

/*
CTA
*/

.cta {
  display: flex;

  justify-content: space-between;

  align-items: center;

  padding: 20px 70px;

  background: linear-gradient(90deg, #000000, #240f0f, #d31515d4);
}

.cta h2 {
  font-size: 40px;
}

.cta p {
  font-size: 20px;
}

.cta a {
  padding: 15px 15px;
  border: 2px solid #fefffe;
  border-radius: 12px;
  color: white;
  text-decoration: none;
  font-size: 20px;
}
.cta a:hover {
  text-decoration: none;
  color: white;
  background: #e11515;
  cursor: pointer;
  border: 2px solid #e11515;
}
/*
Sections
*/

.section {
  padding: 30px 0;
}

.section h2 {
    text-align: center;
    font-size: 44px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: 1px;
    position: static;
    display: inline-block;
    transform: none;
   }

    .section h2::after {
      content: "";
      display: block;
      width: 60px;
      height: 4px;
      background: #d60000;
      border-radius: 4px;
      margin: 10px auto 0;
    }

/*
Grid
*/

.grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

  gap: 30px;
}

/*
Cards
*/

.card {
  position: relative;
  background: #101010;
  border-radius: 18px;
  overflow: hidden;
  margin: 20px 0px;
  padding: 0;
  transition:
    transform 300ms ease,
    box-shadow 300ms ease;
  border: none !important;
  box-shadow: none !important;
}

#categories .card {
  height: 380px;
}

/* Image inside card */
.card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease;
}

/* Dim overlay on image */
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 350ms ease;
  pointer-events: none;
  z-index: 1;
}

.card:hover::after {
  background: rgba(0, 0, 0, 0.62);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: none !important;
  border: none !important;
}

.card:hover img {
  transform: scale(1.04);
}

/* Description overlay */
.card .card-details {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px;
  opacity: 0;
  color: #ffffff;
  text-align: center;
  width: 100%;
  transition:
    opacity 300ms ease,
    transform 300ms ease;
  transform: translateY(12px);
  z-index: 2;
}

.card:hover .card-details {
  opacity: 1;
  transform: translateY(0);
}

.card .card-details h3 {
  font-size: 22px;
  color: #fff;
  margin-bottom: 10px;
}

.card .card-details p {
  font-size: 20px;
  line-height: 1.6;
  color: #eee;
  padding: 0;
}

/* On touch/mobile: always show card details since hover doesn't work */
@media (hover: none) {
  #categories .card {
    height: auto;
  }
  .card::after {
    background: rgba(0, 0, 0, 0.55);
  }
  .card .card-details {
    position: static;
    opacity: 1;
    transform: none;
    background: rgba(0, 0, 0, 0.75);
    padding: 14px 16px;
  }
  .card img {
    height: 220px;
  }
}
.text-container .description .read-more-link {
  background: none;
  border: none;
  color: #fff; /* Link color */
  padding: 0;
  font: inherit;
  cursor: pointer;
  text-decoration: none;
}
.read-more-link {
  background: none;
  border: none;
  color: #0066cc; /* Link color */
  padding: 0;
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
}

.read-more-link:hover {
  color: #004499; /* Hover color */
}
/*
Award Section
*/

.award-section {
  padding: 50px 0;

  display: flex;

  justify-content: center;
}

.award-card {
  width: 85%;
  max-width: 1200px;
  padding: 48px 52px;
  border-radius: 24px;
  background: linear-gradient(135deg, #1a0000 0%, #1e1e1e 40%, #1a0000 100%);
  border: 1px solid rgba(200, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(180, 0, 0, 0.18);
}

/* Subtle glowing top-left accent */
.award-card::before {
  content: "";
  position: absolute;
  top: -60px;
  left: -60px;
  width: 260px;
  height: 260px;
  background: radial-gradient(
    circle,
    rgba(200, 0, 0, 0.28) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* Subtle bottom-right accent */
.award-card::after {
  content: "";
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 220px;
  height: 220px;
  background: radial-gradient(
    circle,
    rgba(200, 0, 0, 0.18) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.award-header {
  display: flex;

  align-items: center;

  gap: 18px;

  margin-bottom: 35px;
}

.award-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #c80000, #7a0000);
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 36px;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(180, 0, 0, 0.4);
}

.award-header h2 {
  color: white;

  font-size: 48px;

  margin: 0;
}

.award-header span {
  color: #b92525;

  font-size: 24px;
}

.award-description {
  color: #d0d0d0;

  font-size: 26px;

  line-height: 1.8;

  margin: 35px 0;
}

.package {
  background: #111;

  border-radius: 20px;

  padding: 35px;
}

.package h3 {
  color: #ffb000;

  font-size: 34px;

  margin-bottom: 30px;
}

.package-item {
  display: flex;

  gap: 20px;

  align-items: flex-start;

  background: rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(255, 255, 255, 0.06);

  border-radius: 15px;

  padding: 25px;

  margin-bottom: 18px;
}

.package-item strong {
  color: white;

  font-size: 25px;
}

.package-item p {
  color: #d0d0d0;

  margin-top: 10px;

  font-size: 20px;

  line-height: 1.6;
}

.package-item:hover {
  border-color: #d60000;

  transform: translateY(-3px);

  transition: 0.3s;
}

@media (max-width: 768px) {
  .award-card {
    width: 95%;

    padding: 30px;
  }

  .award-header {
    flex-direction: column;

    text-align: center;
  }

  .award-header h2 {
    font-size: 32px;
  }

  .award-description {
    font-size: 18px;
  }

  .package-item {
    flex-direction: column;
  }

  .package-item strong {
    font-size: 20px;
  }

  .package-item p {
    font-size: 16px;
  }
}

/*
Jury Section
*/

.subtitle {
  color: #d9a520;

  letter-spacing: 4px;

  font-size: 14px;

  font-weight: 600;

  margin-bottom: 20px;
}

.description {
  max-width: 750px;

  margin: auto;

  color: #9ca3af;

  font-size: 10px;

  line-height: 1.6;

  margin-bottom: 80px;
}

.jury {
  background: #111111;

  border-radius: 20px;

  overflow: hidden;

  transition: 0.4s;

  border: 1px solid #222;
}

.jury:hover {
  transform: translateY(-10px);
}

.jury img {
  width: 100%;

  height: 280px;

  object-fit: cover;

  display: block;
}

.jury h3 {
  padding: 10px;

  text-align: center;

  font-size: 24px;
}

/*
Sponsors
*/

.sponsors {
  background: #080808;

  padding: 50px 0;
}

.container {
  width: 90%;

  max-width: 1300px;

  margin: auto;

  text-align: center;
}
/*.container a{
color: #db0909;
    text-decoration: underline;
}

.container a:hover{
color: #db0909;
}*/
.subtitle {
  color: red;

  letter-spacing: 4px;

  font-size: 14px;

  font-weight: 600;

  margin-bottom: 5px;
}

.sponsor-heading {
    text-align: center;
    font-size: 44px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: 1px;
    position: static;
    display: inline-block;
    transform: none;
   }

    .sponsor-heading::after {
      content: "";
      display: block;
      width: 60px;
      height: 4px;
      background: #d60000;
      border-radius: 4px;
      margin: 10px auto 0;
    }

.description {
  max-width: 750px;

  margin: auto;

  color: #fff;

  font-size: 15px;

  line-height: 1.6;

  margin-bottom: 50px;

  text-align: center;

  padding: 0px 16px;
}

.sponsor-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 30px;
}

.sponsor-card {
  background: #111;

  border-radius: 24px;

  padding: 50px 20px;

  transition: 0.35s;
}

.sponsor-card:hover {
  transform: translateY(-10px);
}

.logo {
  width: 130px;

  height: 130px;

  border-radius: 22px;

  margin: auto;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 22px;

  font-weight: 700;

  color: white;

  margin-bottom: 35px;
}

.sponsor-card h3 {
  color: white;

  font-size: 20px;

  margin-bottom: 10px;

  font-weight: 600;
}

.sponsor-card span {
  color: white;

  font-size: 22px;
}

/* slider style */
.slider-area {
  display: relative;
}
.slider-area .owl-carousel {
  display: block;
  width: 100%;
  z-index: 1;
}

.single-slider {
  height: 80vh;
  padding: 125px 0;
  background-size: cover;
  position: relative;
}

.single-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 1;
}
.single-slider.dim::before {
  background: rgba(0, 0, 0, 0.5);
}

.slider-content {
  position: relative;
  z-index: 2;
}
.slider-content h1 {
  color: #ffffff;
  font-family: "Poppins", serif;
  font-size: 78px;
  font-weight: bold;
  margin: 6px 0 24px;
}

.slider-content h2 {
 display: inline-block;
  padding: 10px 28px;
  border-radius: 30px;
  background: #9d0808;
  color: #fff;
  margin-bottom: 25px;
}

.slider-content p {
  display: inline-block;
  padding: 10px 28px;
  border-radius: 30px;
  background: #080101;
  color: #fff;
  margin-bottom: 25px;
}

.slider-btn a {
  background-color: #ff3d2a;
  border-radius: 5px;
  color: #fff;
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  padding: 18px 38px;
  text-transform: uppercase;
}

.slider-btn a:hover {
  background-color: #fff;
  color: #ff3d2a;
}

.slider-active.owl-carousel > .owl-nav button {
  background-color: #fff;
  border-radius: 3px;
  color: #000;
  display: inline-block;
  font-size: 20px;
  height: 45px;
  left: 15px;
  line-height: 47px;
  opacity: 0;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease 0s;
  width: 45px;
}

.slider-active.owl-carousel > .owl-nav button:hover {
  background-color: #ff3d2a;
  color: #fff;
}

.slider-active.owl-carousel > .owl-nav button.owl-next {
  left: auto;
  right: 15px;
}

.slider-area:hover .slider-active.owl-carousel > .owl-nav button {
  opacity: 1;
}

/* Default Slider Animations */

.owl-item .slider-content * {
  animation-duration: 1.3s;
  animation-fill-mode: both;
}

.owl-item.active .slider-animated-1 a {
  animation-delay: 1.6s;
  animation-name: fadeInLeft;
}

.owl-item.active .slider-animated-2 h3 {
  animation-delay: 0.7s;
  animation-name: fadeInUp;
}

.owl-item.active .slider-animated-2 h1 {
  animation-delay: 1s;
  animation-name: fadeInUp;
  color: white;
}

.owl-item.active .slider-animated-2 h5 {
  animation-delay: 1.3s;
  animation-name: fadeInUp;
}

.owl-item.active .slider-animated-2 a {
  animation-delay: 1.6s;
  animation-name: fadeInUp;
}

/* about-us section*/
.about-us-heading {
    text-align: center;
    font-size: 44px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: 1px;
    position: static;
    display: inline-block;
    transform: none;
   }

    .about-us-heading::after {
      content: "";
      display: block;
      width: 60px;
      height: 4px;
      background: #d60000;
      border-radius: 4px;
      margin: 10px auto 0;
    }
/* competition section*/
.competition {
  padding: 64px 0 40px 0;

  background: #090909;
}

.competition h2 {
    text-align: center;
    font-size: 44px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: 1px;
    position: static;
    display: inline-block;
    transform: none;
   }

    .competition h2::after {
      content: "";
      display: block;
      width: 60px;
      height: 4px;
      background: #d60000;
      border-radius: 4px;
      margin: 10px auto 0;
    }
.competition-timeline {
  margin: 20px 0;
}

.competition-timeline h3 {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: 1px;
    position: static;
    display: inline-block;
    transform: none;
   }

    .competition-timeline h3::after {
      content: "";
      display: block;
      width: 60px;
      height: 4px;
      background: #d60000;
      border-radius: 4px;
      margin: 10px auto 0;
    }


.competition-timeline ul {
  padding-left: 20px;
  line-height: 1.8;
}

.competition-timeline ul li {
  margin-bottom: 10px;
}

.competition-timeline ul ul {
  margin-top: 8px;
  padding-left: 20px;
}

.competition-timeline strong {
  font-weight: 600;
}

/*  Services style  */
.services {
  position: relative;
}

.services .item {
  padding: 60px 45px 90px 45px;
  border-radius: 10px;
  background-color: transparent;
  position: relative;

  transition: all 0.5s;
  border: 2px solid rgba(255, 255, 255, 0.03);
}
.services .item:hover {
  border: 2px solid #222222;
  background-color: #222222;
}
.services .item i {
  width: 45px;
  height: 45px;
  margin-bottom: 20px;
  font-size: 30px;
}
.services .item .icon {
  color: #777;
  font-size: 50px;
  z-index: 2;
  margin-bottom: 20px;
}
.services .item:hover .icon {
  color: #777;
}
.services .item h5 {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 700;
  color: #fff;
}
.services .item p {
  color: #777;
  margin-bottom: 0;

  font-size: 17px;
  line-height: 1.75em;

  font-weight: 400;
}
.services .item:hover h5 {
  color: #fff;
}
.services .item:hover p {
  color: #777;
}
.services .item .numb {
  font-size: 105px;
  line-height: 85px;
  font-weight: 900;
  position: absolute;
  bottom: 0px;
  right: 40px;
  border: none;
  background: linear-gradient(180deg, #222 0%, #1b1b1b 90%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.services .item:hover .numb {
  border: none;
  background: linear-gradient(180deg, #1b1b1b 0%, #222 90%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.services-page h5 {
  color: #fff;
}
.services .item.quicklinks:hover:before {
  width: auto;
  color: rgba(0, 0, 0, 1) !important;
  transition: all 0.3s ease;
}
.services .item.quicklinks:before {
  content: "New";
  background: #fff;
  padding: 0 7px;
  border-radius: 18px;
  position: absolute;
  margin-left: -100px;
  margin-top: -40px;
  line-height: 17px;
  z-index: 2;
  width: 21px;
  height: 21px;
  color: rgba(27, 27, 27, 0) !important;
  transition: all 0.3s ease;
  overflow: hidden;
  border: 2px solid #fff;
  font-weight: 700;
  font-size: 12px;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ======= Owl-Theme custom style ======= */
.owl-theme {
  position: relative;
}
.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 20px;
  line-height: 1.5;
  display: block;
  outline: none;
}
.owl-theme .owl-dots {
  margin-top: 20px;
}
.owl-theme .owl-dots .owl-dot span {
  width: 15px;
  height: 15px;
  margin: 0 3px;
  border-radius: 50%;
  background: #333;
  border: 1px solid #333;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #777;
  border: 1px solid #777;
}
/* owl-nav */
.owl-theme .owl-nav {
  position: absolute;
  top: 38%;
  left: 50%;
  width: 100vw;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
/* button */
.owl-theme .owl-nav [class*="owl-"] {
  position: absolute;
  width: 55px;
  height: 55px;
  line-height: 48px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  opacity: 0;
  pointer-events: all;
}
.owl-theme .owl-nav [class*="owl-"]:hover {
  background: #fff;
  color: #222;
}
.owl-theme:hover .owl-nav [class*="owl-"] {
  opacity: 1;
}
/* prev-next */
.owl-theme .owl-prev {
  position: absolute;
  left: 35px;
}
.owl-theme .owl-next {
  position: absolute;
  right: 35px;
}
.owl-theme .owl-nav {
  z-index: 10;
}
.owl-theme .owl-prev span,
.owl-theme .owl-next span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* 	 IMAGE BACKGROUND WRAPPER
*/
.image-wrapper {
  background: no-repeat center center;
  background-size: cover;
  position: relative;
}

.image-wrapper:not(.box-shadow):not(*:root) {
  -webkit-transform: translateZ(0);
}
.image-wrapper:not(.mobile) {
  background-attachment: fixed !important;
}
.image-wrapper:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: rgba(21, 21, 21, 0.5);
}
.image-wrapper.no-overlay:before {
  display: none;
}
.image-wrapper * {
  position: relative;
  z-index: 2;
}
.box-shadow:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  z-index: 1;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}
.h-100-less {
  height: calc(100vh - 200px);
}
.image-wrapper .tparrows {
  position: absolute;
}
.pb-150 {
  padding-bottom: 150px !important;
}
.pt-150 {
  padding-top: 150px !important;
}
/* Responsive */

@media (max-width: 1100px) {
  .sponsor-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .sponsors {
    padding: 80px 20px;
  }

  .sponsors h2 {
    font-size: 42px;
  }

  .description {
    font-size: 18px;
  }

  .sponsor-grid {
    grid-template-columns: 1fr;
  }

  .logo {
    width: 110px;

    height: 110px;
  }

  .sponsor-card h3 {
    font-size: 24px;
  }

  .sponsor-card span {
    font-size: 18px;
  }
}
/*
Registration
*/

.register {
  padding: 40px 0 40px 0;

  background: #090909;
}
.register .title {
  color: red;
  letter-spacing: 4px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
}

.register-heading {
    text-align: center;
    font-size: 44px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: 1px;
    position: static;
    display: inline-block;
    transform: none;
   }

    .register-heading::after {
      content: "";
      display: block;
      width: 60px;
      height: 4px;
      background: #d60000;
      border-radius: 4px;
      margin: 10px auto 0;
    }

form {
  background: #111;

  padding: 45px;

  border-radius: 20px;

  border: 1px solid #222;
}

form h2 {
  margin-bottom: 30px;

  font-size: 38px;
}
.register label {
  text-align: left;
  color: #fff;
  padding: 10px 0px;
}

input,
select,
textarea {
  width: 100%;
  margin-bottom: 20px;
  padding: 16px;
  background: #1a1a1a;
  color: white;
  border: 1px solid #333;
  border-radius: 8px;
  outline: none;
  transition: 0.3s;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border: 1.5px solid #ffffff !important;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
  caret-color: #ffffff;
}

textarea {
  resize: none;
}

.gender-group {
  display: flex;
  gap: 15px;
  margin-top: 8px;
}

button {
  width: 100%;

  background: red;

  color: white;

  border: none;

  padding: 18px;

  font-size: 18px;

  border-radius: 8px;

  cursor: pointer;

  transition: 0.3s;
}

button:hover {
  background: #ff2222;
}

.terms-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0 16px 0;
  justify-content: flex-start;
}

.terms-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  accent-color: #d60000;
  flex-shrink: 0;
  margin-bottom: 0;
}

.terms-row label {
  margin: 0;
  padding: 0;
  cursor: pointer;
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
}

#submitBtn {
  padding: 12px 24px;
  cursor: not-allowed;
  opacity: 0.5;
}

#submitBtn:not(:disabled) {
  cursor: pointer;
  opacity: 1;
}

/*
Payment Card
*/

.payment {
  background: #111;
  padding: 25px;
  border-radius: 20px;
  color: #fff;
  text-align: center;
}

.payment h3 {
  margin-bottom: 5px;
}

.payment p {
  color: #bfc7d5;
  font-size: 14px;
}

.qr-container {
  background: #ffffff;
  border-radius: 15px;
  padding: 15px;
  margin: 20px 0;
}

.qr-image {
  width: 100%;
  max-width: 250px;
  display: block;
  margin: auto;
  border-radius: 10px;
}

.payment-details {
  background: #9d0808;
  padding: 20px;
  border-radius: 15px;
  text-align: left;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.payment-details hr {
  border-color: rgba(255, 255, 255, 0.1);
}
.payment-details p {
  color: #fff;
  font-size: 14px;
}
.payment-details strong {
  text-align: right;
}

/*
Contact Us Section
*/

.contactus {
  padding: 80px 0 90px;
  background: #0a0a0a;
  position: relative;
}

.contactus::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #d60000, transparent);
}

.contact-heading {
    text-align: center;
    font-size: 44px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: 1px;
    position: static;
    display: inline-block;
    transform: none;
}

.contact-heading::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #d60000;
  border-radius: 4px;
  margin: 10px auto 0;
}

.contact-intro {
  text-align: center;
  color: #9ca3af;
  font-size: 16px;
  max-width: 620px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

/* ---- Shared box styles ---- */
.contact-info-box,
.contact-social-box {
  background: #292424;
  border: 1px solid #222;
  border-radius: 20px;
  padding: 36px 32px;
  transition: border-color 0.3s ease;
}

.contact-info-box:hover,
.contact-social-box:hover {
  border-color: black;
}

.contact-box-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid white;
}

.contact-box-title i {
  font-size: 15px;
  color: white;
}

/*  Contact info list  */
.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon-wrap {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: white;
  border: 1px solid black;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  font-size: 16px;
  transition: all 0.3s ease;
}

.contact-list li:hover .contact-icon-wrap {
  background: white;
  color: black;
  border-color: white;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 4px;
}

.contact-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #666;
}

.contact-detail a,
.contact-detail span {
  font-size: 15px;
  color: white;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-detail a:hover {
  color: white;
}

/* ---- Social links list ---- */
.social-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid #222;
  text-decoration: none;
  background: #0d0d0d;
  transition: all 0.3s ease;
  color: inherit;
}

.social-link:hover {
  transform: translateX(6px);
  border-color: black;
  background: black;
  color: inherit;
}

.social-icon-wrap {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  transition: transform 0.3s ease;
}

.social-link:hover .social-icon-wrap {
  transform: scale(1.1);
}

.fb-group .social-icon-wrap {
  background: #1877f2;
}
.fb-page .social-icon-wrap {
  background: #1877f2;
}
.fb-editors .social-icon-wrap {
  background: #1877f2;
}
.instagram .social-icon-wrap {
  background: linear-gradient(
    135deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
}

.social-detail {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.social-platform {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #666;
}

.social-name {
  font-size: 14px;
  font-weight: 600;
  color: #e0e0e0;
}

.social-arrow {
  color: #444;
  font-size: 12px;
  transition:
    color 0.3s,
    transform 0.3s;
}

.social-link:hover .social-arrow {
  color: #d60000;
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .contact-heading {
    font-size: 32px;
  }
  .contact-info-box,
  .contact-social-box {
    padding: 28px 22px;
  }
}
/*======================================
Footer
======================================*/

footer {
  background: #000;

  padding: 40px;

  text-align: center;

  color: #888;

  border-top: 1px solid #222;
}

/*
Animations
*/

.card,
.jury,
.logo-box,
.box {
  transition: all 0.35s ease;
}

.btn {
  transition: all 0.35s ease;
}
.line-clamp {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/*
Responsive
*/

@media (max-width: 1100px) {
  .overlay h1 {
    font-size: 60px;
  }

  .section h2 {
    font-size: 42px;
  }

  .box h2 {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .single-slider {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    opacity: 1;
    visibility: inherit;
  }
  nav {
    flex-direction: column;

    gap: 20px;
  }

  nav ul {
    gap: 18px;

    flex-wrap: wrap;

    justify-content: center;
  }

  .hero {
    height: 85vh;
  }

  .overlay {
    padding: 20px;
  }

  .overlay h1 {
    font-size: 42px;
  }

  .overlay p {
    font-size: 18px;
  }

  .section {
    padding: 70px 0;
  }

  .section h2 {
    font-size: 34px;
  }

  .box {
    padding: 35px;
  }

  .box h2 {
    font-size: 30px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .payment {
    margin-top: 20px;
  }
}

@media (max-width: 500px) {
  .logo {
    font-size: 26px;
  }

  .btn {
    padding: 12px 24px;
  }

  .card h3 {
    font-size: 22px;
  }

  .logo-box {
    font-size: 24px;
  }

  .payment img {
    width: 170px;
  }
}

.hidden {
  opacity: 0;

  transform: translateY(40px);

  transition: 1s;
}

.show {
  opacity: 1;

  transform: translateY(0);
}

/*
Prize Section (Redesigned)
*/

.prize-section {
  padding: 30px 0 80px;
}

.prize-pool-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  margin: 0 auto 50px;
  padding: 18px 45px;
  max-width: 420px;
  border-radius: 50px;
  background: linear-gradient(135deg, #cc0000, #ff2020);
  box-shadow: 0 10px 30px rgba(204, 0, 0, 0.35);
}

.prize-pool-badge span {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffe3e3;
}

.prize-pool-badge strong {
  font-size: 30px;
  color: #fff;
  font-weight: 800;
}

.prize-section-title {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 28px;
  margin: 55px 0 30px;
  color: white;
  font-weight: 700;
}

.prize-section-title::after {
  content: "";
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, #d60000, transparent);
}

.prize-grid {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/*
Prize Content Wrapper 
*/

.prize-content-wrapper {
  width: 100%;
  display: block;
}

.prize-content-center {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.prize-product-card {
  background: linear-gradient(135deg, #ffffff 0%, #fdf6e3 100%);
  border: 2px solid #ffd24d;
  border-radius: 18px;
  padding: 16px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.prize-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.prize-product-img {
  width: 100%;
  height: 140px;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
}

.prize-product-name {
  margin-top: 12px;
  margin-bottom: 0;
  font-weight: 700;
  font-size: 14px;
  color: #111;
}

@media (max-width: 1100px) {
  .prize-content-wrapper {
    grid-template-columns: 1fr;
  }

  .prize-side-images {
    flex-direction: row;
    justify-content: center;
    position: static;
    flex-wrap: wrap;
    margin-bottom: 25px;
  }

  .prize-side-right {
    margin-top: 25px;
    margin-bottom: 0;
  }

  .prize-product-card {
    flex: 1;
    max-width: 220px;
  }

  .prize-product-img {
    height: 120px;
  }
}

@media (max-width: 480px) {
  .prize-side-images {
    flex-direction: column;
    align-items: center;
  }

  .prize-product-card {
    width: 100%;
    max-width: 260px;
  }
}

.prize-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.prize-card {
  background: #ffffff;
  color: #1a1a1a;
  border-radius: 22px;
  padding: 32px;
  border: 2px solid transparent;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.prize-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s ease;
}

.prize-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.prize-card:hover::before {
  transform: scaleY(1);
}

.prize-card-badge {
  display: inline-block;
  background: #111;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 30px;
  margin-bottom: 18px;
}

.prize-card h4 {
  color: #111;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}

.prize-card .prize-worth {
  display: inline-block;
  color: #d60000;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 20px;
}

.prize-items {
  list-style: none;
  margin: 0;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

.prize-items li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed #e5e5e5;
  color: #333;
  font-size: 15px;
}

.prize-items li:last-child {
  border-bottom: none;
}

.prize-items .rank-label {
  flex-shrink: 0;
  min-width: 130px;
  font-weight: 700;
  color: #cc0000;
  font-size: 14px;
}

.prize-items .medal {
  font-size: 20px;
}

.prize-main {
  background: linear-gradient(135deg, #ffffff 0%, #fdf6e3 100%);
  border: 2px solid black;
}

.prize-main h4 {
  font-size: 28px;
}

.prize-main .prize-card-badge {
  background: linear-gradient(135deg, #d60000, #ff2020);
}

.prize-note {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #eee;
  color: #555;
  font-size: 15px;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .prize-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .prize-card {
    padding: 24px;
  }

  .prize-main h4 {
    font-size: 22px;
  }

  .prize-card h4 {
    font-size: 20px;
  }

  .prize-section-title {
    font-size: 22px;
  }

  .prize-items .rank-label {
    min-width: 100px;

    font-size: 13px;
  }

  .prize-pool-badge strong {
    font-size: 24px;
  }
}


@media (max-width: 992px) {

  nav {
    flex-direction: column;
    gap: 14px;
    padding: 14px 5%;
    background: rgba(0, 0, 0, 0.92);
  }
  nav ul {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }
  nav ul li a {
    font-size: 14px;
  }


  .single-slider {
    height: 60vh;
    padding: 80px 0;
  }
  .slider-content h1 {
    font-size: 48px;
  }
  .slider-content p {
    font-size: 14px;
  }
  .box h3 {
    font-size: 24px;
  }
  .stats {
    flex-wrap: wrap;
  }


  .cta {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 30px 30px;
  }
  .cta h2 {
    font-size: 28px;
  }
  .cta p {
    font-size: 16px;
  }
  .cta a {
    font-size: 16px;
    padding: 12px 20px;
  }


  .competition {
    padding: 50px 0 60px;
  }
  .competition h2 {
    font-size: 30px;
    padding: 0 20px;
  }


  .prize-row {
    grid-template-columns: 1fr;
  }
  .prize-card {
    padding: 24px;
  }
  .prize-main h4 {
    font-size: 22px;
  }
  .prize-card h4 {
    font-size: 18px;
  }
  .prize-pool-badge {
    padding: 14px 28px;
  }
  .prize-pool-badge strong {
    font-size: 22px;
  }
  .prize-section-title {
    font-size: 20px;
  }


  .award-card {
    width: 95%;
    padding: 28px;
  }
  .award-header {
    flex-direction: column;
    text-align: center;
  }
  .award-header h2 {
    font-size: 28px;
  }
  .award-description {
    font-size: 16px;
  }
  .award-icon {
    width: 64px;
    height: 64px;
    font-size: 32px;
  }


  #categories .card {
    height: auto;
  }
  .card img {
    height: 260px;
  }


  .jury img {
    height: 220px;
  }
  .jury h3 {
    font-size: 18px;
    padding: 16px;
  }


  .sponsor-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .sponsors h2 {
    font-size: 36px;
  }


  .register h2 {
    font-size: 34px;
    padding: 0 20px;
  }
  form {
    padding: 28px 20px;
  }


  .about-us h2 {
    font-size: 34px;
    padding: 0 20px;
  }



  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .contact-heading {
    font-size: 34px;
  }


  .section h2 {
    font-size: 34px;
  }
  h2 {
    font-size: 34px;
  }
}


@media (max-width: 768px) {

  nav {
    padding: 12px 4%;
    position: relative;
  }
  nav ul {
    gap: 10px;
    font-size: 13px;
  }


  .single-slider {
    height: 70vh;
    padding: 70px 0;
    background-position: center center;
  }
  .slider-content h1 {
    font-size: 32px;
    line-height: 1.2;
  }
  .slider-content p {
    font-size: 12px;
    padding: 8px 16px;
    margin-bottom: 14px;
  }
  .box {
    padding: 14px 24px;
  }
  .box h3 {
    font-size: 18px;
  }
  .box small {
    font-size: 11px;
  }


  .cta {
    flex-direction: column;
    padding: 28px 20px;
    gap: 18px;
    text-align: center;
  }
  .cta h2 {
    font-size: 22px;
  }
  .cta p {
    font-size: 14px;
  }
  .cta a {
    font-size: 14px;
    padding: 10px 18px;
    width: 100%;
    text-align: center;
  }


  .section {
    padding: 50px 0;
  }
  .section h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }
  h2 {
    font-size: 26px;
  }
  h3 {
    font-size: 20px;
  }


  .competition {
    padding: 40px 0 50px;
  }
  .competition h2 {
    font-size: 24px;
    padding: 0 16px;
    margin-bottom: 20px;
  }
  .competition-timeline h3 {
    font-size: 20px;
  }
  .competition-timeline ul {
    padding-left: 16px;
    font-size: 14px;
  }


  .prize-section {
    padding: 40px 0 60px;
  }
  .prize-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .prize-card {
    padding: 20px;
    border-radius: 16px;
  }
  .prize-main h4 {
    font-size: 20px;
  }
  .prize-card h4 {
    font-size: 17px;
  }
  .prize-card .prize-worth {
    font-size: 16px;
  }
  .prize-pool-badge {
    padding: 12px 22px;
    max-width: 90%;
  }
  .prize-pool-badge strong {
    font-size: 20px;
  }
  .prize-pool-badge span {
    font-size: 11px;
  }
  .prize-section-title {
    font-size: 18px;
    margin: 36px 0 20px;
  }
  .prize-items li {
    font-size: 13px;
    gap: 8px;
  }
  .prize-items .rank-label {
    min-width: 90px;
    font-size: 12px;
  }
  .prize-note {
    font-size: 13px;
  }


  .award-section {
    padding: 30px 0;
  }
  .award-card {
    width: 94%;
    padding: 24px 20px;
    border-radius: 20px;
  }
  .award-header {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    margin-bottom: 20px;
  }
  .award-header h2 {
    font-size: 22px;
  }
  .award-header span {
    font-size: 14px;
  }
  .award-icon {
    width: 56px;
    height: 56px;
    font-size: 28px;
    border-radius: 14px;
  }
  .award-description {
    font-size: 14px;
    margin: 20px 0;
    line-height: 1.7;
  }
  .package {
    padding: 22px 18px;
    border-radius: 16px;
  }
  .package h3 {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .package-item {
    flex-direction: column;
    padding: 18px;
    gap: 10px;
  }
  .package-item strong {
    font-size: 18px;
  }
  .package-item p {
    font-size: 14px;
  }


  #categories .card {
    height: auto;
    margin: 10px 0;
  }
  .card img {
    height: 220px;
  }
  .card .card-details h3 {
    font-size: 20px;
    padding: 16px;
  }
  .card .card-details p {
    padding: 16px 20px;
    font-size: 14px;
  }


  .jury {
    margin-bottom: 20px;
  }
  .jury img {
    height: 200px;
  }
  .jury h3 {
    font-size: 17px;
    padding: 14px;
  }
  .subtitle {
    font-size: 12px;
  }
  .description {
    font-size: 13px;
    margin-bottom: 30px;
  }


  .sponsors {
    padding: 50px 16px;
  }
  .sponsors h2 {
    font-size: 28px;
    margin-bottom: 14px;
  }
  .sponsor-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .sponsor-card {
    padding: 30px 14px;
    border-radius: 16px;
  }
  .sponsor-card h3 {
    font-size: 16px;
  }
  .sponsor-card span {
    font-size: 13px;
  }
  .logo {
    width: 90px;
    height: 90px;
    margin-bottom: 20px;
  }


  .register {
    padding: 40px 0 60px;
  }
  .register h2 {
    font-size: 26px;
    padding: 0 16px;
    line-height: 1.3;
  }
  .register .title {
    font-size: 12px;
    letter-spacing: 3px;
  }
  form {
    padding: 22px 16px;
    border-radius: 16px;
  }
  form h2 {
    font-size: 22px;
    margin-bottom: 20px;
  }
  input,
  select,
  textarea {
    padding: 13px 14px;
    font-size: 14px;
  }
  label {
    font-size: 13px;
  }
  button {
    padding: 15px;
    font-size: 15px;
  }


  .payment {
    padding: 20px 16px;
  }
  .payment h3 {
    font-size: 20px;
  }
  .qr-image {
    max-width: 180px;
  }
  .payment-details {
    padding: 16px;
  }
  .payment-details h4 {
    font-size: 16px;
  }
  .detail-row {
    flex-direction: column;
    gap: 4px;
  }


  .about-us {
    padding: 44px 0 28px;
  }
  .about-us h2 {
    font-size: 28px;
    padding: 0 16px;
  }


  .contactus {
    padding: 50px 0 60px;
  }
  .contact-heading {
    font-size: 28px;
  }
  .contact-intro {
    font-size: 14px;
    margin-bottom: 30px;
  }
  .contact-info-box,
  .contact-social-box {
    padding: 22px 18px;
    border-radius: 16px;
  }
  .contact-box-title {
    font-size: 11px;
    margin-bottom: 20px;
  }
  .contact-icon-wrap {
    width: 38px;
    height: 38px;
    min-width: 38px;
    font-size: 14px;
  }
  .contact-detail a,
  .contact-detail span {
    font-size: 13px;
  }
  .contact-label {
    font-size: 10px;
  }
  .social-icon-wrap {
    width: 36px;
    height: 36px;
    min-width: 36px;
    font-size: 15px;
  }
  .social-name {
    font-size: 13px;
  }
  .social-platform {
    font-size: 10px;
  }
  .social-link {
    padding: 11px 13px;
    gap: 10px;
  }


  footer {
    padding: 28px 16px;
    font-size: 13px;
    line-height: 1.6;
  }

  .container {
    width: 94%;
  }
}


@media (max-width: 480px) {

  nav ul {
    gap: 8px;
  }
  nav ul li a {
    font-size: 12px;
  }


  .single-slider {
    height: 75vh;
    padding: 60px 0;
  }
  .slider-content h1 {
    font-size: 24px;
  }
  .slider-content p {
    font-size: 11px;
    padding: 6px 12px;
  }
  .box {
    padding: 10px 16px;
  }
  .box h3 {
    font-size: 15px;
  }
  .stats {
    gap: 10px;
  }


  .cta h2 {
    font-size: 18px;
  }


  h2 {
    font-size: 22px;
  }
  h3 {
    font-size: 17px;
  }
  .section h2 {
    font-size: 22px;
  }


  .competition h2 {
    font-size: 20px;
  }
  .competition-timeline h3 {
    font-size: 17px;
  }
  .competition-timeline ul {
    font-size: 13px;
  }

  /* Prize */
  .prize-card {
    padding: 16px;
    border-radius: 14px;
  }
  .prize-main h4 {
    font-size: 17px;
  }
  .prize-card h4 {
    font-size: 15px;
  }
  .prize-pool-badge strong {
    font-size: 17px;
  }
  .prize-section-title {
    font-size: 16px;
  }


  .award-header h2 {
    font-size: 18px;
  }
  .award-description {
    font-size: 13px;
  }


  .card img {
    height: 180px;
  }

  .sponsor-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .sponsor-card {
    padding: 22px 10px;
  }
  .sponsor-card h3 {
    font-size: 13px;
  }
  .sponsor-card span {
    font-size: 11px;
  }
  .logo {
    width: 70px;
    height: 70px;
    margin-bottom: 14px;
  }

  /* Registration */
  .register h2 {
    font-size: 20px;
  }
  form {
    padding: 18px 12px;
  }
  input,
  select,
  textarea {
    padding: 11px 12px;
    font-size: 13px;
  }

  /* Contact */
  .contact-heading {
    font-size: 22px;
  }
  .contact-info-box,
  .contact-social-box {
    padding: 18px 14px;
  }
  .contact-list {
    gap: 16px;
  }
  .social-list {
    gap: 10px;
  }
}


.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  z-index: 1000;
  width: auto;
  border-radius: 6px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 768px) {
  nav {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 14px 5%;
    background: rgba(0, 0, 0, 0.95);
    position: fixed;
  }

  .hamburger {
    display: flex;
  }

  nav ul {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.97);
    padding: 10px 0 20px;
    border-top: 1px solid #222;
    z-index: 998;
  }

  nav ul.nav-open {
    display: flex;
    animation: navFadeIn 0.25s ease;
  }

  @keyframes navFadeIn {
    from {
      opacity: 0;
      transform: translateY(-8px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  nav ul li a {
    display: block;
    padding: 14px 24px;
    font-size: 15px;
    border-bottom: 1px solid #1a1a1a;
  }


  .hero {
    margin-top: 0;
  }


  .about-us h2,
  .competition h2,
  .register h2 {
    padding: 0 16px;
    font-size: 28px;
  }


  .single-slider {
    min-height: 60vh;
    height: auto;
    padding: 100px 0 60px;
  }

  .prize-row {
    grid-template-columns: 1fr;
  }

  .row > [class*="col-md-3"] {
    width: 100%;
    margin-bottom: 20px;
  }

  .row > [class*="col-md-6"],
  .row > [class*="col-md-8"],
  .row > [class*="col-md-4"] {
    width: 100%;
  }

  .col-md-4 .payment {
    margin-top: 20px;
  }

  .sponsor-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .award-card {
    width: 96%;
    padding: 22px 16px;
  }

  .award-header {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .award-header h2 {
    font-size: 22px;
  }
  .award-header span {
    font-size: 14px;
  }
  .award-description {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  nav ul li a {
    font-size: 14px;
    padding: 12px 20px;
  }

  .about-us h2,
  .competition h2,
  .register h2 {
    font-size: 22px;
    padding: 0 12px;
  }

  .sponsor-grid {
    grid-template-columns: 1fr;
  }

  .sponsor-card {
    padding: 28px 14px;
  }

  .prize-card {
    padding: 16px;
  }
  .prize-main h4 {
    font-size: 17px;
  }
  .prize-card h4 {
    font-size: 15px;
  }

  .slider-content h1 {
    font-size: 22px;
  }
  .box h3 {
    font-size: 15px;
  }

  footer {
    padding: 24px 14px;
    font-size: 12px;
  }


  input,
  select,
  textarea {
    font-size: 16px;
  }
}

@media (max-width: 360px) {
  .about-us h2,
  .competition h2,
  .register h2 {
    font-size: 19px;
  }

  .slider-content h1 {
    font-size: 18px;
  }

  .prize-pool-badge {
    padding: 12px 18px;
    max-width: 95%;
  }
  .prize-pool-badge strong {
    font-size: 16px;
  }
}

.swal2-popup.swal2-toast {
    border-radius: 30px !important;
    padding: 12px 20px !important;
    font-size: 15px;
}

