/* Base */
:root {
      --gold: #d4af37;
      --gold-dark: #b8962e;
      --bg-dark: #0a0a14;
      --card-bg: rgba(20, 20, 35, 0.7);
      --text-light: #f0f0f0;
      --text-muted: #aaa;
    }

body {
  font-family: 'Inter', sans-serif;
  background-color: #0b0f17;
  color: #7b879d;
  margin: 0;
  font-size: 0.875rem;

}
.normal-text{
  font-family: serif;
  font-weight: 700;
  font-size: 110%;
}

p{
  color: #7b879d;
 
}
.v-count {
    text-align: center;
    width: 100%;
    margin-top: 1rem !important;
}
.container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 20px;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Playfair Display', serif;
}

.text-justify{
  text-align: justify;
}

.h3{
  color: var(--gold);
  font-size: 1.3rem;
}
.h4{
  color: white;
  font-size: 0.9rem;
}
.text-sm {
  font-size: .875rem;
  line-height: 1.25rem;
}

.text-primary {
  color: #dfac2a;
}

.divider-gold {
  margin-left: auto;
  margin-right: auto;
  height: .125rem;
  width: 5rem;
  background: linear-gradient(90deg, transparent, hsl(43 74% 52%), transparent);
}

option {
  background-color: #131827;
  color: var(--text-light);
}



/* ==============================
   NAVBAR BASE
============================== */

.ath-navbar {
  padding: 20px 0;
  background: transparent;
  transition:
    padding 0.35s ease,
    background 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

/* ==============================
   SHRINK ON SCROLL
============================== */

.ath-navbar.scrolled {
  padding: 20px 0;
  background: rgba(11, 19, 35, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* ==============================
   HIDE / SHOW
============================== */

.ath-navbar.nav-hidden {
  transform: translateY(-100%);
}

/* Optional: smoother font resizing */
.ath-navbar .navbar-brand {
  transition: font-size 0.35s ease;
}

.ath-navbar.scrolled .navbar-brand {
  font-size: 1.5rem;
}


/* Navbar */
.ath-navbar {
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  border-bottom: 1px solid #ffffff26;
}

@media (hover: hover) {
  .navbar .dropdown:hover>.dropdown-menu {
    display: block;
  }
}

a{
  color: var(--gold);
}

.ath-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #d4af37 !important;
}

.ath-link {
  color: #f1ede4b3;
  font-size: 0.875rem;
  font-weight: 500;
}

.ath-link:hover,
.ath-link.active,
.ath-link:focus {
  color: #d4af37 !important;
}

/* Hero Background Section */
.hero-bg-section {
  /*min-height: 100vh;*/
  background-image: url("../images/hero-ceremony-CPrjsMv3.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  color: #ffffff;
  padding: 120px 0 50px;
}

.btn:hover {
  opacity: 0.9;
}

/* Dark overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgb(5 7 12 / 55%), rgb(12 14 23));
  z-index: 1;
}

/* Content above overlay */
.hero-bg-section .container {
  z-index: 2;
}

/* Badge */
.hero-badge {
  display: inline-block;
  letter-spacing: 3px;
  font-size: 4rem;
  color: #d4af37;
}
.hero-badge img{
  max-height: 70px;
}

/* Heading */
.hero-heading {
  font-family: 'Playfair Display', serif;
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.hero-heading span {
  color: #d4af37;
}

.text-primary {
  color: #d4af37 !important;
}

/* Description */
.hero-description {
  text-align: center;
  margin: 0;
  color: #7b879d;
  font-size: 1.4rem;
  line-height: 1.6;
  font-weight: 300;
}

.in-conjunctin{
  font-size: 2rem;
}
.in-conjunctin span {
    color: #d4af37;
}

/* Buttons */
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-heading {
    font-size: 2.4rem;
  }

  .hero-description {
    font-size: 1rem;
  }
  .in-conjunctin{
    font-size: 1.4rem;
  }
}

/* ==============================
   SCROLL DOWN MOUSE ICON
============================== */

.scroll-indicator {
  position: relative;
  margin-top: 56px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 5;
  color: #d4af37;
  font-family: inherit;
}

.scroll-indicator p {
  font-size: 12px;
  margin-top: 8px;
  letter-spacing: 1px;
  opacity: 0.85;
}

/* Mouse body */
.mouse {
  width: 28px;
  height: 48px;
  border: 2px solid #d4af37;
  border-radius: 20px;
  position: relative;
  margin: 0 auto;
}

/* Scroll wheel */
.wheel {
  width: 4px;
  height: 8px;
  background: #d4af37;
  border-radius: 2px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 1.5s infinite;
}

/* Animation */
@keyframes scrollWheel {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }

  30% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate(-50%, 12px);
  }
}


/* Our Story Section */
.our-story-section {
  background: #1d24354d;
  padding: 30px 0;
  color: #ffffff;
}

/* Tag */
.story-tag {
  display: inline-block;
  letter-spacing: 3px;
  font-size: 0.85rem;
  color: #d4af37;
  margin-bottom: 1rem;
}

/* Title */
.story-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.story-title span {
  color: #d4af37;
}

/* Divider */
.story-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, #d4af37, transparent);
  margin-bottom: 2rem;
}

.gold-glow {
  box-shadow: 0 0 30px #dfac2a26, 0 0 60px #dfac2a0d;
}

/* Text */
.story-text {
  color: #9aa3b2;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-align: justify;

}

/* Media Box */
.story-media {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    inset 0 0 0 1px rgba(212, 175, 55, 0.15),
    0 40px 80px rgba(0, 0, 0, 0.8);
  max-height: 300px;
  object-fit: cover;
}

/* Image */
.story-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Play Button */
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: #d4af37;
  color: #000;
  font-size: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;

}


.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero-title span {
  color: #d4af37;
}

.hero-subtitle {
  max-width: 700px;
  margin: 1.5rem auto;
  color: #b9c0d0;
}

.hero-edition {
  letter-spacing: 2px;
  color: #d4af37;
  font-weight: 500;
  margin-bottom: 2rem;
}

.ath-navbar .btn-gold {
  padding: 0.75rem 2rem;
  font-size: 0.875rem;
}

/* Buttons */
.btn-gold {
  background: linear-gradient(135deg, #d4af37, #f1d27a);
  color: #000;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.3s ease;
  display: inline-block;

}

.btn-outline-gold {
  border: 1px solid #d4af37;
  color: #d4af37;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  transition: transform 0.3s ease;
}

.hover-scale:hover {
  transition: transform 0.3s ease;
  transform: scale(1.05);
}

.btn-outline-gold:hover {
  backdrop-filter: blur(8px);
  color: gold;
  background: hsl(50.59deg 100% 50% / 9%);
  border: 1px solid;
  transition: all 0.3s ease;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  transition: transform 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.4rem;
  }
}

/* About Awards Section */
.about-awards-section {
  background: #1d24354d;
  padding: 20px 0 100px;
  color: #ffffff;
  position: relative;
}

/* Section Heading */
.section-tag {
  display: inline-block;
  font-size: 0.875rem;
  letter-spacing: 3px;
  color: #d4af37;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-title span {
  color: #d4af37;
}

.section-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, transparent, #d4af37, transparent);
  margin: 1.5rem auto 0;
}

/* Stats Cards */
.stats-card {
  background: linear-gradient(145deg, #0c1220, #070b13);
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 30px #dfac2a26, 0 0 60px #dfac2a0d;
}

.stats-card:hover {
  transform: translateY(-6px);
  box-shadow:
    inset 0 0 0 1px rgba(212, 175, 55, 0.2),
    0 30px 60px rgba(0, 0, 0, 0.8);
}

.stats-icon {
  font-size: 2rem;
  color: #d4af37;
 
}

.stats-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  color: #d4af37;
  margin-bottom: 0.3rem;
}

.stats-card p {
  color: #9aa3b2;
  margin: 0;
  font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 2.2rem;
  }
}

/* Partnership Section */
.partnership-section {
  background: radial-gradient(circle at center, #0c1220 0%, #070b13 70%);
  padding: 20px 0;
  color: #ffffff;
}

/* Title */
.partnership-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

/* Text */
.partnership-text {
  color: #9aa3b2;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-align: justify;

}

/* Highlighted words */
.highlight {
  color: #d4af37;
  font-weight: 500;
}

/* Image Wrapper */
.partnership-image-wrapper {
  background: linear-gradient(145deg, #000000, #0b0f17);
  border-radius: 14px;
  padding: 0px;
  box-shadow:
    inset 0 0 0 1px rgba(212, 175, 55, 0.12),
    0 40px 80px rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Image */
.partnership-image {
 height: 300px;
    object-fit: cover;
    width: 100%;
}

/* Responsive */
@media (max-width: 991px) {
  .partnership-title {
    font-size: 2rem;
  }

  .partnership-text {
    max-width: 100%;
  }

  .partnership-image {
    max-height: 320px;
  }
}

/* Section */
.award-categories-section {
  background: #060b14;
  padding: 30px 0;
  color: #ffffff;
}

/* Heading */
.section-tag {
  font-size: 0.85rem;
  letter-spacing: 3px;
  color: #e6b74a;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 600;
}

.section-title span {
  color: #e6b74a;
}

.section-divider {
  width: 70px;
  height: 2px;
  background: #e6b74a;
  margin: 20px auto 0;
}

/* Cards */
.category-card {
  background: #0a1220;
  border-radius: 10px;
  padding: 1.5rem;
  height: 100%;
  text-align: left;

  border: 1px solid rgba(230, 183, 74, 0.18);

  transition: all 0.35s ease;
}

/* Hover = subtle glow */
.category-card:hover {
  border-color: rgba(230, 183, 74, 0.45);
  box-shadow: 0 0 0 1px rgba(230, 183, 74, 0.25);
  transition: all 0.35s ease;
  cursor: pointer;
}

.category-card:hover .category-icon {
  color: #e6b74a;
  transform: scale(1.2);
  transition: all 0.3s ease;
}

/* Icons */
.category-icon {
  font-size: 28px;
  color: #e6b74a;
  margin-bottom: 18px;
  display: inline-block;
  transition: all 0.3s ease;
}

/* Titles */
.category-card h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.125rem;
  color: #ffffff;
  margin-bottom: 6px;
  font-weight: 500;
}

/* Descriptions */
.category-card p {
  display: none;
  font-size: 0.875rem;
  color: #8fa0b6;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 2.2rem;
  }
}

.award-categories-section {
  background: radial-gradient(circle at top, #0c1220, #070b13);
  padding: 30px 0;
  color: #ffffff;
}

.section-tag {
  font-size: 0.875rem;
  letter-spacing: 3px;
  color: #d4af37;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
}

.section-title span {
  color: #d4af37;
}

.section-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, transparent, #d4af37, transparent);
  margin: 1.5rem auto 0;
}





@media (max-width: 768px) {
  .section-title {
    font-size: 2.2rem;
  }
}

.dropdown-menu {
  background: #0a1220;
  border: 1px solid rgba(230, 183, 74, 0.25);
  border-radius: 14px;
  padding: 8px 0;
}

.dropdown-item {
  color: #cfd6e1;
  padding: 5px 22px;
  font-size: 0.875rem;
}

.dropdown-item:hover {
  background: rgba(230, 183, 74, 0.12);
  color: #e6b74a;
}

/* SECTION BACKGROUND */
.nomination-process {
  background: #1d24354d;
  /*background: radial-gradient(circle at top, #0f1a2e, #060b16);*/
  color: #cfd6e1;
}

/* EYEBROW */
.section-eyebrow {
  display: inline-block;
  color: #e6b74a;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 10px;
}

/* TITLE */
.section-title {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  color: #fff;
}

.section-title span {
  color: #e6b74a;
}

/* DIVIDER */
.title-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, transparent, #e6b74a, transparent);
  margin: 18px auto 0;
}

/* PROCESS CARDS */
.process-card {
  background: linear-gradient(180deg, #0b1424, #070d1a);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 1.5rem;
  height: 100%;
  text-align: left;
  position: relative;
  transition-property: all  0.22s;
    
}
.process-card:hover{
  border-color: #dfac2a4d;
   
    transition: all 0.15s;
     box-shadow: 0 0 30px #dfac2a26, 0 0 60px #dfac2a0d !important;
}
/* ICON */
.step-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e6b74a;
  font-size: 1.9rem;
  margin-bottom: 20px;
}

/* NUMBER */
.step-number {
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 2rem;
  font-weight: 600;
  color: rgba(230, 183, 74, 0.25);
  font-family: 'Playfair Display', serif;
}

/* TEXT */
.process-card h5 {
  color: #fff;
  font-size: 1.125rem;
  margin-bottom: 10px;
}

.process-card p {
  font-size: 0.875rem;
  color: #9aa4b2;
  margin: 0;
}

/* ARROWS */
.process-arrow {
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: rgba(230, 183, 74, 0.5);
  z-index: 99;
}

.ath-link.btn-gold {
  padding: 5px 18px;
}

.ath-link.btn-outline-gold {
  padding: 5px 18px;
}

/* COUNTDOWN SECTION */
.countdown-section {
  padding: 2rem 0 3rem; 
  /*background: radial-gradient(circle at top, #0e182c, #050a14);*/
  color: #cfd6e1;
}

/* STAR ICON */
.countdown-icon {
  font-size: 2rem;
  color: #e6b74a;
}

/* EYEBROW */
.section-eyebrow {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: #e6b74a;
  margin-bottom: 12px;
}

/* TITLE */
.countdown-title {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  color: #ffffff;
}

.countdown-title span {
  color: #e6b74a;
}

/* DIVIDER */
.title-divider {
  width: 70px;
  height: 2px;
  margin: 18px auto 0;
  background: linear-gradient(to right, transparent, #e6b74a, transparent);
}

/* COUNT BOX */
.count-box {
  background: linear-gradient(180deg, #0b1424, #070d1a);
  border-radius: 18px;
  padding: 1em;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 40px rgba(230, 183, 74, 0.08);
  transition: all 0.3s;
}

.count-box:hover{
  border-color: #dfac2a4d;
  transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s;
}
.count-box h3 {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  margin-bottom: 5px;
  color: #e6b74a;
}

.count-box span {
  font-size: 0.875rem;
  
  color: #9aa4b2;
}

/* DATE */
.event-date {
  margin-top: 30px;
  font-size: 0.875rem;
  color: #9aa4b2;
}

.event-date i {
  color: #e6b74a;
  margin-right: 8px;
}



/* RESPONSIVE */
@media (max-width: 768px) {
  .countdown-title {
    font-size: 2.4rem;
  }

  .count-box h3 {
    font-size: 2.4rem;
  }
}


/* Section */
.jury-section {
  padding: 3rem 0;
  /*background: radial-gradient(circle at top, #0b1323, #05080f 70%);*/
  background: #1d24354d;
}

/* Header */
.jury-subtitle {
  color: #d4af37;
  letter-spacing: 2px;
  font-size: 14px;
  font-weight: 600;
}

.jury-title {
  font-size: 3rem;
  color: #fff;
  font-weight: 700;
  margin-top: 10px;
}

.jury-title span {
  color: #d4af37;
}

.jury-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, transparent, #d4af37, transparent);
  margin: 18px auto 0;
}

/* Card */
.jury-card {
  background: linear-gradient(
180deg, #1d2435, #06061e);
  border-radius: 20px;
  transition: all ease 0.3s;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  overflow: hidden;
}

.jury-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 30px #dfac2a26, 0 0 60px #dfac2a0d !important;
  border-color: #dfac2a4d;
  transition: all ease 0.3s;
}

/* Avatar */
.jury-avatar {
  width: 80px;
  height: 80px;

  border-radius: 50%;
  background: linear-gradient(145deg, #f1c24b, #c89b1e);
  color: #000;
  font-size: 28px;
  font-weight: 700;
  display: flex;
  font-family: "Playfair Display", serif;
  align-items: center;
  justify-content: center;
  margin: 3rem auto;
}
.jury-avatar img{
  width: 140px;
  height: 140px;

  border-radius: 50%;
}
/* Content */
.jury-content h4 {
  font-size: 15px;
  margin-bottom: 6px;
  color: white;
  text-transform: uppercase;
}

.jury-content .role {
  color: #d4af37;
  font-weight: 500;
  margin-bottom: 4px;
  font-size: 0.875rem;
}

.jury-content {
  background: #06061e;
  display: block;
  overflow: hidden;
  padding: 1rem;
}

.jury-content .org {
  color: #8c93a8;
  font-size: 0.775rem;
}

/* Trusted Partners Section */
.partners-section {
  padding: 30px 0;
  background: radial-gradient(circle at top, #0b1323, #05080f 70%);
  color: #fff;
}

/* Heading */
.partners-subtitle {
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;
  color: #d4af37;
}

.partners-title {
  font-size: 52px;
  font-weight: 700;
  margin-top: 10px;
}

.partners-title span {
  color: #d4af37;
}

.partners-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, transparent, #d4af37, transparent);
  margin: 18px auto 0;
}

/* Partner Card */
.partner-card {
  height: 80px;
  border-radius: 16px;
  /*background: #0f1524b3;*/
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9aa3b2;
  font-size: 16px;
  font-weight: 500;
  padding: 10px;
  transition: all 0.3s ease;
  font-family: "Playfair Display", serif;
  transition: all 0.22s;
}

.partners-list{
      display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
}

.partners-list li{
    height: 118px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    width: 24.33%;
}
@media(max-width: 480px){
    .partners-list li {
        width: 49.33%;
        height: 115px;
    }
}

.partners-list img{
  max-width: 100%;
  max-height: 108px;
}

.closed-image{
  display: none;
}
.partner-card img{
  max-height: 70px;
}
/* Hover */
.partner-card:hover, .partners-list li:hover {
  color: #d4af37;
  border-color: rgba(212, 175, 55, 0.6);
  transform: translateY(-4px);
  background: #fff;
  transition: all 0.22s;
}

.footer-social {
    display: flex;
    
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
     background: rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* Hover Effects */
.social-icon:hover {
    transform: translateY(-5px);
}

/* Brand Colors */
.facebook:hover {
    background: #1877F2;
    color: #fff;
}

.instagram:hover {
    background: radial-gradient(circle at 30% 107%, 
        #fdf497 0%, #fdf497 5%, 
        #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: #fff;
}

.threads:hover {
    background: #000;
    color: #fff;
}

/* Footer */
.site-footer {
  background: radial-gradient(circle at top, #0b1323, #05080f 70%);
  padding: 80px 0 30px;
  color: #9aa3b2;
  font-size: 15px;
}

/* Brand */
.footer-brand h4 {
  font-size: 22px;
  color: #d4af37;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand h4 span {
  color: #fff;
}

.footer-brand p {
  margin-top: 16px;
  line-height: 1.7;
  max-width: 260px;
}

/* Titles */
.footer-title {
  font-size: 14px;
  letter-spacing: 1.5px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 18px;
  font-family: "Playfair Display", serif;
}

.gold-gradient-bg {
  background: linear-gradient(135deg, #edc55e, #dfac2a, #a57e1d);
}

.gold-gradient-bg:hover {
  background: linear-gradient(135deg, #f1d27a, #d4af37, #c89b1e);
  transition: all 0.3s ease;
  transform: scale(1.1);
}

a.gold-gradient-bg{
  background: linear-gradient(135deg, #edc55e, #dfac2a, #a57e1d);
  text-decoration: none !important;
  color: var(--blue-dark) !important;
  transition: all 0.2s;
}
/* Links */
.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 12px;
}

.footer-links a {
  text-decoration: none;
  color: #9aa3b2;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #d4af37;
}

/* Contact */
.footer-contact i {
  color: #d4af37;
  margin-right: 10px;
}

/* Newsletter */
.newsletter-text {
  margin-bottom: 16px;
  max-width: 280px;
}

.newsletter-box {
  display: flex;
  gap: 10px;
}

.newsletter-box input {
  flex: 1;
  background: #1a2236;
  border: none;
  border-radius: 10px;
  padding: 12px 14px;
  color: #fff;
  outline: none;
  max-width: 70%;
}

.newsletter-box button {

  border: none;
  border-radius: 10px;
  padding: 0 22px;
  font-weight: 600;
  color: #000;
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
 
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
}

.footer-legal a {
  margin-left: 20px;
  font-size: 14px;
  text-decoration: none;
  color: #9aa3b2;
}

.footer-legal a:hover {
  color: #d4af37;
}

/* ================================
   FADE-UP SCROLL ANIMATION (GLOBAL)
================================ */

/* Initial hidden state */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

/* When visible */
.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* Optional stagger delays */
.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

/* ===============================
   NOMINEE BENEFITS SECTION
================================ */

.nominee-section {
    background: #0b1323;
    padding: 100px 0;
    color: #cbd5e1;
}

.section-title {
    color: #ffffff;
    font-weight: 600;
   
    letter-spacing: 1px;
}

.section-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #f5d77a);
    margin: 15px auto 0;
    border-radius: 10px;
}

/* ===============================
   BENEFIT CARDS
================================ */

.benefit-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 35px 30px;
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212,175,55,0.4);
    box-shadow: 0 25px 50px rgba(0,0,0,0.6);
}

/* ===============================
   ICONS
================================ */

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #d4af37;
}

/* Icon Colors */
/*.gold   { background: linear-gradient(135deg, #d4af37, #f5d77a); }
.blue   { background: linear-gradient(135deg, #2563eb, #60a5fa); }
.green  { background: linear-gradient(135deg, #16a34a, #4ade80); }
.purple { background: linear-gradient(135deg, #7c3aed, #c084fc); }
.yellow { background: linear-gradient(135deg, #f59e0b, #fde68a); }
.red    { background: linear-gradient(135deg, #dc2626, #f87171); }
*/
/* ===============================
   TEXT
================================ */

.benefit-card h5 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.85;
}
/* ===============================
   WINNER BENEFITS SECTION
================================ */

.winner-benefits-section {
    background: radial-gradient(circle at top, #05080f, #060b1a);
    padding: 110px 0;
    color: #d1d5db;
}

.section-title {
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 1px;
}

.section-divider {
    width: 90px;
    height: 3px;
    margin: 15px auto;
    background: linear-gradient(90deg, #d4af37, #f5d77a);
    border-radius: 20px;
}

.section-desc {
    max-width: 720px;
    margin: auto;
    font-size: 16px;
    opacity: 0.9;
}

/* ===============================
   BENEFIT CARDS
================================ */

.winner-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 1rem;
    height: 100%;
    display: flex;
    gap: 16px;
    transition: all 0.4s ease;
    align-items: center;
}

.winner-card i {
    font-size: 26px;
    color: #d4af37;
    min-width: 32px;
}

.winner-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

.winner-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212,175,55,0.4);
    box-shadow: 0 25px 45px rgba(0,0,0,0.6);
}
/* ===============================
   EVENT TIMELINE SECTION
================================ */

.event-timeline-section {
    background: radial-gradient(circle at top, #0f1c3f, #060b1a);
    padding: 110px 0;
    text-align: center;
}

/* Card */
.timeline-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 32px 20px;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
}

.timeline-card h4 {
    color: #ffffff;
    font-weight: 600;
    margin-top: 20px;
}

.timeline-card p {
    color: #cbd5e1;
    margin: 0;
    font-size: 15px;
}

/* Icon */
.timeline-icon {
    width: 62px;
    height: 62px;
    margin: auto;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37, #f5d77a);
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-icon i {
    color: #0b132b;
    font-size: 26px;
}

/* Highlight Ceremony */
.timeline-card.highlight {
    border-color: rgba(212,175,55,0.5);
    box-shadow: 0 25px 50px rgba(212,175,55,0.15);
}

/* Hover */
.timeline-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    border-color: rgba(212,175,55,0.5);
}
/* ===============================
   THEME COLORS
================================= */
:root {
  --blue-dark: #0b1d33;
  --blue-main: #0d3b66;
  --blue-light: #1e6fb9;
  --gold: #d4af37;
  --white: #ffffff;
  --text-light: #d6dbe3;
}

/* ===============================
   SECTION
================================= */
#categories {
  padding: 80px 0;
  background: #1d24354d;
  /*background: linear-gradient(135deg, #071426, #0b1d33);*/
}

/* ===============================
   SECTION HEADING
================================= */
.area-title {
  font-size: 28px;
  letter-spacing: 2px;
  color: var(--gold);
}

.seperator {
  display: inline-block;
  position: relative;
}

.seperator-one,
.seperator-two {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 6px auto;
  border: none;
}

.seperator-two {
  width: 30px;
  opacity: 0.6;
}

/* ===============================
   ACCORDION
================================= */
.accordion-item {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 12px;
  border-radius: 6px;
  overflow: hidden;
}

/* Header Button */
.accordion-button {
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
  font-weight: 500;
  letter-spacing: 0.4px;
  padding: 16px 20px;
  transition: all 0.3s ease;
  border:1px solid transparent;
}

.accordion-button:not(.collapsed) {
  background: transparent;
  border-color: #dfac2a4d;
  transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s;
  box-shadow: none;
  color: var(--gold);
}

.accordion-button:focus {
  box-shadow: none;
  border: none;
}

/* Arrow Icon */
.accordion-button::after {
  filter: brightness(0) invert(1);
}

/* ===============================
   ACCORDION BODY
================================= */
.accordion-body {
  background: rgba(255, 255, 255, 0.02);
  padding: 25px;
}

/* ===============================
   CATEGORY LIST
================================= */
.categories-list {
  padding-left: 20px;
  margin: 0;
}

.categories-list li {
  /*color: var(--text-light);*/
  font-size: 0.875rem;
  padding: 8px 0;
  line-height: 1.4;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

.categories-list li:last-child {
  border-bottom: none;
}
.categories-list span a{
  background: var(--gold);
    color: var(--text-light);
    text-decoration: none;
    padding: 4px 8px;
    border-radius: 25px;
    font-size: 10px;
    float: inline-end;
}

/* ===============================
   HOVER EFFECTS
================================= */
.accordion-button:hover {
  color: var(--gold);
  border-color: #dfac2a4d;
  transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s;
     box-shadow: 0 0 30px #dfac2a26, 0 0 60px #dfac2a0d !important;
}

.categories-list li:hover {
  color: var(--gold);
 cursor: pointer;
  transition: all 0.2s ease;
}

/* ===============================
   MOBILE
================================= */
@media (max-width: 768px) {
  .area-title {
    font-size: 22px;
  }

  .accordion-button {
    font-size: 14px;
  }

  .categories-list li {
    font-size: 14px;
  }
}
/* ===============================
   JUDGING CRITERIA SECTION
================================= */

#judging {
  background: #1d24354d;
  /*background: linear-gradient(135deg, #071426, #0b1d33);*/
  color: #fff;
}

/* Title */
#judging .area-title {
  font-size: 28px;
  letter-spacing: 2px;
  color: #caa24d;
}

#judging .area-title span {
  font-weight: 600;
  color: #ffffff;
}

/* Criteria Row */
.criteria-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

/* Percentage */
.criteria-item .percent {
  min-width: 55px;
  font-size: 20px;
  font-weight: 600;
  color: #caa24d;
}

/* Content */
.criteria-content {
  width: 100%;
}

.criteria-content p {
  margin: 0 0 6px;
  font-size: 15px;
  color: #d6dbe3;
  letter-spacing: 0.3px;
}

/* Progress */
.progress {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
}

.progress-bar {
  background: linear-gradient(90deg, #caa24d, #f0d68c);
  border-radius: 20px;
  animation: growBar 1.5s ease forwards;
}



/* Animation */
@keyframes growBar {
  from {
    width: 0;
  }
}

/* Responsive */
@media (max-width: 768px) {
  #judging .area-title {
    font-size: 22px;
  }

  .criteria-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .criteria-item .percent {
    margin-bottom: 5px;
  }
}

#dates .card p{margin: 0;}

/* SECTION BACKGROUND */
.bg-grd-dark-blue {
  /*background: #1d24354d;*/
  padding: 80px 0;
}

/* CARD STYLE */
.card-default.card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  transition: all 0.35s ease;
  height: 100%;
}

.card-default.card:hover {
  transform: translateY(-10px);
   box-shadow: 0 0 30px #dfac2a26, 0 0 60px #dfac2a0d !important;
  border-color: #dfac2a4d;
  transition: all 0.3s;
}

/* CARD BODY */
.card-body {
  padding: 40px 20px;
}

/* CLOSED IMAGE */
.closed-image img {
  width: 60px;
  opacity: 0.85;
  margin-bottom: 20px;
}

/* DATE TEXT */
.area-title {
  font-size: 22px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

 

/* DESCRIPTION */
.card-body p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  letter-spacing: 0.4px;
}

/* RESPONSIVE SPACING */
/*@media (max-width: 991px) {
  .card-default.card {
    margin-bottom: 30px;
  }
}*/


/* ===============================
   ATH FAQ ACCORDION THEME
================================ */

 

/* Links */
#accordionExample a {
  color: #ffd700;
  text-decoration: none;
}

#accordionExample a:hover {
  text-decoration: underline;
}

/* Ordered lists */
#accordionExample ol {
  padding-left: 18px;
}

#accordionExample ol li {
  margin-bottom: 8px;
}

.accordion-body{
  font-size: 0.875rem;
  color: #7b879d;
  text-align: justify;
}

/* Table inside accordion */
#accordionExample table {
  margin-top: 15px;
  background: rgba(255, 255, 255, 0.03);
}

#accordionExample table td {
  border-color: rgba(255, 215, 0, 0.2);
  font-size: 0.875rem;
  color: #7b879d;
}

/* Hide d-none items safely */
#accordionExample .d-none {
  display: none !important;
}

/* Responsive */
@media (max-width: 768px) {
  #accordionExample .accordion-button {
    padding: 16px 18px;
    font-size: 15px;
  }

  #accordionExample .accordion-body {
    padding: 18px;
  }
 
}
/* ===============================
   INNER PAGE HERO
================================ */
.inner-hero {
  background: linear-gradient(rgba(7, 26, 47, 0.85), rgb(0 0 0 / 73%)), url(../images/hero-ceremony-CPrjsMv3.jpg) bottom center / cover no-repeat;
  padding: 120px 0 90px;
}

.inner-hero h1 {
  color: #ffffff;
  font-weight: 600;
  
  letter-spacing: 1px;
}
.inner-hero span{
  color: var(--gold);
}

.inner-hero p {
  color: #d6e1f0;
  font-size: 16px;
}
/* ===============================
   LEGAL / PRIVACY PAGES
================================ */
.legal-content {
  padding: 70px 0;
  color: #d6e1f0;
}

.legal-content h2,
.legal-content h3 {
  color: #ffd700;
  margin-top: 30px;
}

.legal-content ul {
  padding-left: 20px;
}

.legal-content li {
  margin-bottom: 8px;
}


/* ===============================
   AWARDS LISTING PAGE
================================ */

.awards-listing {
  padding: 80px 0;
  color: #d6e1f0;
}

/* Top image strip */
.hero-thumb {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.hero-thumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* Search & Filter */
.filter-bar {
  background: rgba(255,255,255,0.03);
  padding: 18px;
  border-radius: 16px;
}

.search-box {
  position: relative;
}

.search-box i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #8fa8c8;
}

.search-box input {
  width: 100%;
  background: #1b2435;
  border: none;
  padding: 14px 18px 14px 48px;
  border-radius: 12px;
  color: #fff;
}

.search-box input::placeholder {
  color: #8fa8c8;
}

/* Filter buttons */
.btn-filter {
  background: #1b2435;
  border: none;
  color: #9fb7d8;
  padding: 12px 20px;
  border-radius: 10px;
  margin-left: 8px;
  transition: all .3s ease;
}

.btn-filter.active,
.btn-filter:hover {
  background: linear-gradient(135deg, #f5c542, #d4a017);
  color: #071a2f;
}

/* Listing table */
.listing-table {
  margin-top: 30px;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
}

.listing-head,
.listing-row {
  display: grid;
  grid-template-columns: 2.5fr 2fr 1.5fr 1fr;
  padding: 18px 30px;
  align-items: center;
}

.listing-head {
  background: rgba(255,255,255,0.04);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #8fa8c8;
}

.listing-row {
  border-top: 1px solid rgba(255,255,255,0.06);
  transition: background .3s ease;
}

.listing-row:hover {
  background: rgba(255,255,255,0.05);
}

/* Text styles */
.listing-row .name {
  font-weight: 600;
  color: #ffffff;
}

.listing-row .category,
.listing-row .country {
  color: #9fb7d8;
}

/* Award badge */
.award {
  justify-self: start;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
}

.award.winner {
  background: linear-gradient(135deg, #f5c542, #d4a017);
  color: #071a2f;
}


/* ===============================
   WHAT WINNERS SAY
================================ */

.winner-testimonials {
  padding: 90px 0;
  background: radial-gradient(
    circle at top,
    #0b1628 0%,
    #070f1d 60%,
    #050b16 100%
  );
}

/* Section Title */
.winner-testimonials .section-title {
  font-size: 32px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}

.winner-testimonials .section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #f5c542, #d4a017);
  margin: 14px auto 0;
  border-radius: 3px;
}

/* Testimonial Card */
.testimonial-card {
  height: 100%;
  padding: 34px 36px;
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.04),
    rgba(255,255,255,0.015)
  );
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03),
              0 20px 60px rgba(0,0,0,0.5);
  transition: all 0.35s ease;
}

/* Hover effect (subtle, premium) */
.testimonial-card:hover {
  border-color: rgba(245,197,66,0.45);
  box-shadow: 0 25px 80px rgba(0,0,0,0.6);
  transform: translateY(-4px);
}

/* Quote Text */
.testimonial-text {
  font-size: 17px;
  line-height: 1.65;
  font-style: italic;
  color: #e6eefc;
  margin-bottom: 22px;
}

/* Author */
.testimonial-author {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  color: #f5c542;
  letter-spacing: 0.3px;
}

/* Responsive */
@media (max-width: 768px) {
  .winner-testimonials {
    padding: 70px 0;
  }

  .testimonial-text {
    font-size: 16px;
  }
}


/* ======================================
   LOGIN BOX – ATH THEME
====================================== */

.content-login {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.04),
    rgba(255,255,255,0.015)
  );
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow:
    0 25px 80px rgba(0,0,0,0.65),
    inset 0 0 0 1px rgba(255,255,255,0.04);
  border-radius: 25px;
  max-width: 520px;
  margin: 0 auto;
}

/* Inner spacing */
.content-login .content-main {
  padding: 20px;
}

/* Labels */
.content-login label {
  font-size: 14px;
  font-weight: 500;
  color: #cfd8eb;
  margin-bottom: 6px;
}

/* Inputs */
.content-login .form-control {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  color: #ffffff;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 15px;
}

.content-login .form-control::placeholder {
  color: rgba(255,255,255,0.45);
}

.content-login .form-control:focus {
  background: rgba(255,255,255,0.08);
  border-color: #f5c542;
  box-shadow: 0 0 0 3px rgba(245,197,66,0.15);
  color: #ffffff;
}

/* Login Button */
.btn-blue {
  background: linear-gradient(135deg, #f5c542, #d4a017);
  border: none;
  color: #111;
  font-weight: 600;
  padding: 12px 34px;
  border-radius: 30px;
  letter-spacing: 0.3px;
  transition: all 0.35s ease;
}

.btn-blue:hover {
  background: linear-gradient(135deg, #ffd86a, #e0ad28);
  box-shadow: 0 12px 35px rgba(245,197,66,0.35);
  transform: translateY(-2px);
}

/* Divider */
.content-login hr {
  border-color: rgba(255,255,255,0.12);
  margin: 30px 0 24px;
}

/* Checkbox */
.content-login .form-check-input {
  background-color: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.25);
}

.content-login .form-check-input:checked {
  background-color: #f5c542;
  border-color: #f5c542;
}

.content-login .form-check-label {
  color: #cfd8eb;
  font-size: 14px;
}

/* Links */
.content-login a {
  color: #f5c542;
  text-decoration: none;
  font-weight: 500;
}

.content-login a:hover {
  color: #ffd86a;
  text-decoration: underline;
}

/* Validation */
.content-login .invalid-feedback {
  color: #ff6b6b;
  font-size: 13px;
}

/* Responsive */
@media (max-width: 576px) {
  .content-login {
    border-radius: 18px;
  }

  .content-login .form-control {
    font-size: 14px;
  }
}


/* =====================================
   NOMINATION FORM – ATH THEME
===================================== */

#featured {
  background: radial-gradient(circle at top, #0f1629, #070b16 70%);
  padding: 80px 0;
}

/* Card wrapper */
#featured .bg-transparent {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.04),
    rgba(255,255,255,0.015)
  );
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 26px;
  box-shadow:
    0 30px 90px rgba(0,0,0,0.7),
    inset 0 0 0 1px rgba(255,255,255,0.04);
  padding: 50px 40px;
}

/* Header */
#featured .card-header {
  background: none;
  border: none;
  text-align: center;
}

#featured .card-title {
  color: #ffffff;
  font-weight: 500;
  letter-spacing: 0.4px;
}

#featured hr {
  border-color: rgba(255,255,255,0.12);
  margin: 30px 0;
}

/* Labels */
#featured label,
#featured .control-label {
  color: #cfd8eb;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
}

/* Required star */
#featured .text-danger {
  color: #f5c542 !important;
}

/* Inputs & Selects */
#featured .form-control {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  color: #ffffff;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 14px;
}

#featured .form-control::placeholder {
  color: rgba(255,255,255,0.45);
}

#featured .form-control:focus {
  background: rgba(255,255,255,0.08);
  border-color: #f5c542;
  box-shadow: 0 0 0 3px rgba(245,197,66,0.15);
  color: #ffffff;
}

/* Dropdown arrow fix for dark theme */
#featured select.form-control {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #f5c542 50%),
    linear-gradient(135deg, #f5c542 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(1em + 4px),
    calc(100% - 15px) calc(1em + 4px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

/* Form spacing */
#featured .form-group {
  margin-bottom: 22px;
}

/* Checkbox styling */
#featured .form-check {
  margin-bottom: 14px;
}

#featured .form-check-input {
  background-color: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.3);
}

#featured .form-check-input:checked {
    background-color: #000000;
    border-color: #cbcbcb;
}

#featured .form-check-label {
  color: #cfd8eb;
  font-size: 14px;
  line-height: 1.6;
}

/* Links */
#featured a,
#featured .winner_package_href {
  color: #f5c542;
  text-decoration: none;
  font-weight: 500;
}

#featured a:hover {
  color: #ffd86a;
  text-decoration: underline;
}

/* Submit button */
#featured .btn-red {
  background: linear-gradient(135deg, #f5c542, #d4a017);
  border: none;
  color: #111;
  padding: 14px 40px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 40px;
  transition: all 0.35s ease;
}

#featured .btn-red:hover {
  background: linear-gradient(135deg, #ffd86a, #e0ad28);
  box-shadow: 0 15px 40px rgba(245,197,66,0.4);
  transform: translateY(-2px);
}

/* Validation feedback */
#featured .invalid-feedback,
#featured .emailex {
  color: #ff6b6b;
  font-size: 13px;
}
.form-control.is-invalid:focus, .was-validated .form-control:invalid:focus {
    border-color: #ff0018 !important;
    box-shadow: 0 0 0 .25rem rgba(var(--bs-danger-rgb), .25) !important;
}
.form-control.is-invalid, .was-validated .form-control:invalid{
    border-color: #ff0018 !important;
}
/* Mobile */
@media (max-width: 768px) {
  #featured {
    padding: 50px 15px;
  }

  #featured .bg-transparent {
    padding: 35px 20px;
    border-radius: 20px;
  }
  .section-title, .jury-title, .partners-title {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
  }
  .footer-bottom{
    text-align: center;
  }

   .inner-hero {
     
    padding: 120px 0 20px;
}
}


.gallery-section img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-section img:hover {
    transform: scale(1.05);
}


/* ==============================
   WINNER SECTION
============================== */

.winner-section {
    /*background: linear-gradient(180deg, #07162f, #020b1a);*/
    padding: 80px 0;
}

/* GRID */
/*.winner-section .row {
    row-gap: 30px;
}*/

/* CARD */
.winner-section .card {
    height: 100%;
    border-radius: 18px;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
}

.winner-section .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 30px #dfac2a26, 0 0 60px #dfac2a0d !important;
    border-color: #d4af3766;
    transition: all 0.4s ease;
}

/* WINNER BADGE */
.winner-section .card::before {
    content: "🏆 WINNER";
    position: absolute;
    top: 15px;
    right: -40px;
    background: linear-gradient(90deg,#f9c74f,#f9844a);
    color: #000;
    font-size: 10px;
    font-weight: 700;
    padding: 5px 35px;
    transform: rotate(45deg);
    letter-spacing: 1px;
    z-index: 99;
}

/* IMAGE */
.winner-section figure {
    margin: 0;
    background: #fff;
    padding: 18px;
    text-align: center;
}

.winner-section figure img {
    width: 100%;
    height: 75px;
    object-fit: scale-down;
    transition: transform 0.4s ease;
 
}

.winner-section .card:hover figure img {
    transform: scale(1.08);
}

/* BODY */
.winner-section .card-body {
    padding: 22px;
    text-align: center;
}

.winner-section .company-name-nominee {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--white);
    font-family: 'Playfair Display', serif;
}

.winner-section .category-name-nominee {
    font-size: 0.675rem;
    letter-spacing: 0;
    color: #7b879d;
    text-transform: uppercase;
}
 

.winner-section .location-name-nominee {
    font-size: 1.3rem;
    margin: 0;
    opacity: 1;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
}

/* PROFILE LINK */
.winner-section .gradient-text {
    background: linear-gradient(90deg,#f9c74f,#f9844a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    transition: all 0.3s ease;
}

.winner-section .gradient-text:hover {
    letter-spacing: 0.8px;
}

/* RESPONSIVE */
 

@media (max-width: 575px) {
    .winner-section {
        padding: 30px 0;
    }
}

.sidebar {
      background: var(--card-bg);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(212, 175, 55, 0.15);
      border-radius: 1rem;
      overflow: hidden;
      box-shadow: 0 10px 40px rgba(0,0,0,0.6);
    }

    .profile-header {
      background: linear-gradient(135deg, rgba(212,175,55,0.12), transparent);
      padding: 2rem 1.5rem;
      text-align: center;
      border-bottom: 1px solid rgba(212,175,55,0.2);
    }

    .profile-img {
      width: 100px;
      height: 100px;
      object-fit: cover;
      border: 3px solid var(--gold);
      box-shadow: 0 0 20px rgba(212,175,55,0.4);
      transition: all 0.3s;
    }

    .profile-img:hover {
      transform: scale(1.08);
    }

    .profile-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      font-weight: 600;
      margin: 1rem 0 0.5rem;
      color: white;
    }

    .edit-link {
      color: var(--gold);
      font-size: 0.9rem;
      transition: all 0.3s;
    }

    .edit-link:hover {
      color: #fff;
      text-decoration: underline;
      transform: translateY(-2px);
    }

    .list-group-item {
      background: transparent;
      border: none;
      color: var(--text-light);
      padding: 1rem 1.5rem;
      transition: all 0.3s;
      border-left: 4px solid transparent;
    }

    .list-group-item:hover {
      background: rgba(212,175,55,0.08);
      color: var(--gold);
      border-left-color: var(--gold);
      transform: translateX(6px);
    }

    .list-group-item.active {
      background: rgba(212,175,55,0.18);
      color: var(--gold);
      border-left-color: var(--gold);
      font-weight: 600;
      box-shadow: inset 0 0 15px rgba(212,175,55,0.15);
    }

    .list-group-item i {
      width: 24px;
      text-align: center;
      margin-right: 12px;
      color: var(--text-muted);
      transition: color 0.3s;
    }

    .list-group-item:hover i,
    .list-group-item.active i {
      color: var(--gold);
    }

    .list-group-item.logout {
      border-top: 1px solid rgba(255,255,255,0.08);
      margin-top: 1rem;
      color: #ff6b6b;
    }

    .list-group-item.logout:hover {
      color: #ff8787;
      background: rgba(255,107,107,0.1);
      border-left-color: #ff6b6b;
    }

    @media (max-width: 576px) {
      .sidebar { border-radius: 0; }
    }

    /* ==========================================================================
   ATH Awards - #myAccount Profile / Dashboard Page
   Dark Gold Premium Theme
   ========================================================================== */

:root {
  --gold:          #d4af37;
  --gold-dark:     #b8962e;
  --goldenrod:     goldenrod;
  --bg-dark:       #0a0a14;
  --bg-darker:     #06060e;
  --card-bg:       rgba(20, 20, 35, 0.70);
  --card-border:   rgba(212, 175, 55, 0.20);
  --glow-gold:     rgba(212, 175, 55, 0.30);
  --glow-strong:   rgba(212, 175, 55, 0.50);
  --text-light:    #f0f0f0;
  --text-muted:    #c0c0c0;
  --border-muted:  rgba(255,255,255,0.08);
}
 
 

/* =============================================
   Main Layout (sidebar + content)
   ============================================= */
 

#myAccount .row.main-content {
  margin-top: 2rem;
}

  

/* Profile / Account Card */
#myAccount .profile-card,
#myAccount .account-info,
#myAccount .nomination-card {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--card-border);
  border-radius: 1.2rem;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 8px 36px rgba(0,0,0,0.55);
  transition: all 0.35s ease;
}

#myAccount .profile-card:hover,
#myAccount .nomination-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 52px rgba(212,175,55,0.28);
  border-color: var(--gold);
}

/* Gradient Text */
#myAccount .gradient-text,
#myAccount .gradient-heading {
  background: linear-gradient(90deg, #f0e6c8 18%, #ffecb3 42%, #d4af37 62%, #b8962e 82%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

/* Buttons */
#myAccount .btn-gold,
#myAccount .btn-filter,
#myAccount .btn-download {
  background: var(--gold);
  color: #111;
  border: none;
  border-radius: 50rem;
  padding: 0.6rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s;
}

#myAccount .btn-gold:hover,
#myAccount .btn-filter:hover,
#myAccount .btn-download:hover {
  background: var(--gold-dark);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px var(--glow-gold);
}

#myAccount .btn-outline-gold {
  color: var(--gold);
  border: 1px solid var(--gold);
  background: transparent;
}

#myAccount .btn-outline-gold:hover {
  background: var(--gold);
  color: #111;
}

/* Images / Profile Photo / Gallery */
#myAccount img.profile-img,
#myAccount img.img-preview,
#myAccount .qr-image {
  border: 3px solid rgba(212,175,55,0.35);
  border-radius: 1rem;
  box-shadow: 0 6px 24px rgba(212,175,55,0.25);
  transition: all 0.3s;
}

#myAccount img.profile-img:hover,
#myAccount img.img-preview:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(212,175,55,0.45);
}

/* QR Section */
#myAccount .qr-section {
  background: rgba(212,175,55,0.05);
  border: 1px dashed var(--gold);
  border-radius: 1rem;
  padding: 1.8rem;
}

#myAccount .voting-link {
  color: var(--gold);
  text-decoration: underline;
  font-weight: 500;
}

/* Form Elements (edit profile, change password, etc.) */
#myAccount .form-control,
#myAccount .form-select {
  background: rgba(30,30,45,0.75);
  border: 1px solid rgba(212,175,55,0.3);
  color: var(--text-light);
  border-radius: 0.75rem;
}

#myAccount .form-control:focus,
#myAccount .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 0.25rem rgba(212,175,55,0.22);
  background: rgba(30,30,45,0.9);
}

/* Responsive */
@media (max-width: 992px) {
  #myAccount .page-title { font-size: 2.8rem; }
  #myAccount .main-container { padding: 1.5rem; }
}

@media (max-width: 768px) {
  #myAccount .inner-hero { padding: 70px 0 50px; }
  #myAccount .section-eyebrow { font-size: 1rem; letter-spacing: 4px; }
  #myAccount .gradient-text { font-size: 1.7rem; }
}

.vbannerimg{
      height: 120px;
    object-fit: contain;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.table-responsive-sm .table, tbody, td, tfoot, th, thead, tr{
  background: transparent !important;
  color: #7b879d !important;
}


.award-section {
  background: linear-gradient(135deg, #0f172a, #020617);
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.award-card {
  max-width: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 1rem;
  color: #fff;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.award-badge {
  display: inline-block;
  background: #f59e0b;
  color: #000;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.award-title {
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 28px;
  color: var(--goldenrod);
}

.award-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.award-meta .label {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #94a3b8;
  margin-bottom: 6px;
}

.award-meta .value {
  font-size: 16px;
  font-weight: 600;
}

/* SECTION BACKGROUND */
.awards-listing {
  padding: 80px 0;
  color: #ffffff;
}
 

/* Vote Text */
.awards-listing .col-md-6:first-child > br {
  display: none;
}

/* Logo */
.awards-listing img.img-fluid {
  margin: 10px 0 20px;
  object-fit: contain;
}

/* Organization Name */
.awards-listing h5.h3 {
  font-weight: 800;
  margin-bottom: 10px;
}

/* Divider */
.awards-listing hr {
  border-color: rgba(255, 255, 255, 0.2);
  margin: 20px 0;
}

/* OWL CAROUSEL IMAGES */
.owl-blog-item img {
  border-radius: 12px;
  max-height: 280px;
  object-fit: cover;
}

/* TEXT DETAILS */
.awards-listing p {
  font-size: 15px;
  margin-bottom: 8px;
  color: #e5e7eb;
}

.awards-listing p.h4 {
  font-size: 17px;
  font-weight: 600;
  margin-top: 15px;
}

/* ICON COLOR */
.awards-listing i.fa {
  color: #facc15;
  margin-right: 6px;
}

/* WEBSITE LINK */
.awards-listing a {
  color: #93c5fd;
  text-decoration: none;
}

.awards-listing a:hover {
  text-decoration: underline;
}

 
 

/* FORM LABELS */
.awards-listing label {
  color: #e5e7eb;
  font-size: 14px;
}

/* INPUTS */
.awards-listing .form-control {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  height: 46px;
  border-radius: 8px;
}

.awards-listing .form-control:focus {
  border-color: #facc15;
  box-shadow: none;
}

/* RADIO BUTTONS */
.form-check-input:checked {
  background-color: #facc15;
  border-color: #facc15;
}

/* SUBMIT BUTTON */
.awards-listing .btn-blue {
  background: linear-gradient(135deg, #facc15, #eab308);
  color: #000;
  font-weight: 700;
  padding: 12px 40px;
  border-radius: 30px;
  border: none;
  transition: all 0.3s ease;
}

.awards-listing .btn-blue:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(250, 204, 21, 0.4);
}

/* CAPTCHA CENTER */
#g-recaptcha {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

.male-bear{
  position: absolute;
    left: 3%;
    height: 300px;
    top: 10%;
}
.female-bear{
   position: absolute;
    right: 3%;
    height: 300px;
    top: 10%;
}
@media(max-width: 991px){
  .female-bear {
    position: absolute;
    right: 3%;
    height: 200px;
    top: 25%;
}
.male-bear {
    position: absolute;
    left: 3%;
    height: 200px;
    top: 25%;
}
}
/* RESPONSIVE */
@media (max-width: 768px) {
  .awards-listing .col-md-6 {
    margin-bottom: 30px;
  }

  .owl-blog-item img {
    max-height: 200px;
  }
  .female-bear {
    position: relative;
    right: 3%;
    height: 200px;
    top: 10%;
    display: inline-block;
}
.male-bear {
    position: relative;
    right: 3%;
    height: 200px;
    top: 10%;
    display: inline-block;
}
}

