/* =============================================
   SOUNDWAVE AWARDS 2025 — style.css
   ============================================= */

/* ---------- CSS Variables ---------- */
:root {
  --primary:       #1428A0;
  --primary-glow:  rgba(230, 57, 70, 0.45);
  --gold:          #f4c430;
  --gold-glow:     rgba(244, 196, 48, 0.35);
  --bg-dark:       #07080d;
  --bg-card:       rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.08);
  --border:        rgba(255, 255, 255, 0.08);
  --text-primary:  #f0f0f0;
  --text-muted:    rgba(240, 240, 240, 0.55);
  --font:          'Segoe UI', system-ui, -apple-system, sans-serif;
  --radius:        14px;
  --transition:    0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'SamsungSSBody', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'SamsungSSHead', sans-serif;
}

.light-text {
    font-weight: 300;
}

.medium-text {
    font-weight: 500;
}

.bold-text {
    font-weight: 700;
}

body {
  background: #fff;
  color: #2f2f2f;
  overflow-x: hidden;
  position: relative;
}
.archivo {
  font-family: "Archivo Black", sans-serif;}
  .fontst1{color: #00C3B2; font-size: 3rem; text-transform: uppercase;}
  .fontst1 span{color: #fff; font-size: 2.7rem; text-transform: uppercase;}

/* ---------- Background Canvas ---------- */
#bg-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
      z-index: 9999;
}

/* ---------- Particles Overlay ---------- */
.particles-overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.logo{ border-radius: 12px; padding: 15px 10px; max-width: 100%;}
.upcase{color: #000; text-transform: uppercase; font-weight: 700;  font-family: 'SamsungSSHead';  letter-spacing: 0.5px;}
.sambold{ font-family: 'SamsungSSHeadbold'; font-weight: 700; color: #fff; text-transform: uppercase; font-size: 3.75rem;}

.particle {
  position: absolute;
  bottom: -60px;
  opacity: 0;
  animation: floatUp linear infinite;
  color: var(--primary);
  font-size: 1rem;
  text-shadow: 0 0 8px currentColor;
  user-select: none;
}

@keyframes floatUp {
  0%   { transform: translateY(0) rotate(0deg) scale(0.6);   opacity: 0; }
  10%  { opacity: 0.7; }
  90%  { opacity: 0.4; }
  100% { transform: translateY(-110vh) rotate(360deg) scale(1.1); opacity: 0; }
}

/* ---------- All sections above canvas ---------- */
nav, section, footer {
  position: relative;
  z-index: 10;
}

/* ---------- Glassmorphic Navbar ---------- */
.glass-nav {
  background: rgba(7, 8, 13, 1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
  transition: background var(--transition);
}

.glass-nav.scrolled {
  background: rgba(7, 8, 13, 0.92);
  box-shadow: 0 4px 32px rgba(0,0,0,0.5);
}

.brand-logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff !important;
  letter-spacing: 0.9px;
  text-decoration: none;
  text-transform: capitalize;
}

.brand-logo i { margin-right: 6px; }

.navbar-nav .nav-link {
 
  font-weight: 500;
  transition: color var(--transition);
  padding: 0.4rem 0.75rem !important;
      text-transform: uppercase;
}

.navbar-nav .nav-link:hover { color: var(--gold) !important; }

.btn-nominate {
  background: linear-gradient(135deg, var(--primary), #c1121f);
  color: #fff !important;
  border: none;
  border-radius: 50px;
  padding: 0.45rem 1.3rem;
  font-weight: 600;
  font-size: 110%;
  letter-spacing: 0.3px;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-nominate:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 26px var(--primary-glow);
}

.navbar-toggler {
  border-color: var(--border) !important;
  filter: invert(1);
}

/* ---------- Hero Section ---------- */
.hero-section {
  min-height: 100vh;
  padding: 110px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-section-inner {
  padding: 110px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  pointer-events: none;
  animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  50%       { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

.hero-badge {
  display: inline-block;
  background: rgba(244, 196, 48, 0.12);
  border: 1px solid rgba(244, 196, 48, 0.3);
  color: var(--gold);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  animation: fadeDown 0.8s ease forwards;
}

.hero-title {
  font-size: clamp(3.2rem, 9vw, 7.5rem);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.05;
  color: #fff;
  text-shadow: 0 4px 40px rgba(0,0,0,0.6);
  animation: fadeUp 0.9s 0.1s ease both;
}

.hero-title .highlight {
  color: var(--primary);
  text-shadow: 0 0 40px var(--primary-glow), 0 4px 20px rgba(0,0,0,0.5);
  position: relative;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.4vw, 1.25rem);
  color: var(--text-muted);
  max-width: 620px;
  margin: 1.2rem auto 0;
  line-height: 1.7;
  animation: fadeUp 0.9s 0.2s ease both;
}

.hero-year {
  font-size: clamp(5rem, 18vw, 13rem);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.06);
  line-height: 1;
  pointer-events: none;
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  user-select: none;
  z-index: -1;
  white-space: nowrap;
  animation: yearPulse 6s ease-in-out infinite;
}

@keyframes yearPulse {
  0%, 100% { -webkit-text-stroke-color: rgba(255,255,255,0.06); }
  50%       { -webkit-text-stroke-color: rgba(230, 57, 70, 0.12); }
}

/* Hero Buttons */
.btn-hero-primary {
  background: linear-gradient(135deg, var(--primary), #000);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.85rem 2.2rem;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 6px 28px rgb(14 99 170 / 50%);
  transition: all var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
}



.btn-hero-primary2 {
  border: 2px solid #1428A0;
  color: #fff;
  border-radius: 50px;
  padding: 0.85rem 2.2rem;
  font-weight: 700;
  font-size: 1rem;
  transition: all var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  background: #83479C;
background: linear-gradient(90deg, rgba(131, 71, 156, 1) 1%, rgba(207, 91, 163, 1) 50%, rgba(245, 134, 109, 1) 100%);
}




.bg-blu{ background: linear-gradient(135deg, #673AB7, #0D71AC);}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  color: #fff;
}

.btn-hero-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 50px;
  padding: 0.85rem 2.2rem;
  font-weight: 700;
  font-size: 1rem;
  transition: all var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn-hero-outline:hover {
  background: var(--gold);
  color: var(--bg-dark);
  box-shadow: 0 8px 28px var(--gold-glow);
  transform: translateY(-3px);
}

/* Countdown */
.countdown-wrap { color: var(--text-muted); }

.countdown-label {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.count-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.75rem 1.2rem;
  min-width: 72px;
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.count-box span {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 16px var(--gold-glow);
}

.count-box small {
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.count-sep {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  align-self: center;
  margin-top: -6px;
}

/* Scroll Hint */
.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scroll-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: scrollBounce 1.6s ease-in-out infinite;
  box-shadow: 0 0 8px var(--gold-glow);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%       { transform: translateY(14px); opacity: 0.4; }
}

/* ---------- Stats Bar ---------- */
.stats-bar {
  background: rgba(255,255,255,0.025);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.stat-item { padding: 0.5rem; }

.stat-number {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--gold);
  text-shadow: 0 0 24px var(--gold-glow);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ---------- Sections ---------- */
.section-block {
  padding: 60px 0;
/*  background: #ffffffcc; */
}

.section-dark {
  background: rgba(0,0,0,0.3);
}

.section-gradient {
  background: #f6f6f6d6;
}

.section-tag {
  display: inline-block;
  background: rgba(230, 57, 70, 0.12);
  border: 1px solid rgba(230, 57, 70, 0.3);
  color: var(--primary);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #000;
  margin-bottom: 0.75rem;
}

.section-sub {  
  color: #000;
  font-size: 1.2rem;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---------- About Cards ---------- */
.about-card {
    background: #031ba078;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem;
    transition: all var(--transition);
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.cw{color: #fff;}

.disc{font-family: 'SamsungSSHead'; font-weight: 500; color: #fff; font-size: 1rem; letter-spacing: 0.5px; min-height: 105px;}

.about-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(230, 57, 70, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.3);
}

.about-icon {
  width: 52px; height: 52px;
  background: #83479C;
background: linear-gradient(90deg, rgba(131, 71, 156, 1) 1%, rgba(207, 91, 163, 1) 50%, rgba(245, 134, 109, 1) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 1rem;
}

.about-card h5 {
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.about-card p {
  line-height: 1.65;
  margin: 0;
}

/* ---------- Nominee Cards ---------- */
.nominee-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
}

.nominee-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  opacity: 0;
  transition: opacity var(--transition);
}

.nominee-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  border-color: rgba(230, 57, 70, 0.25);
}

.nominee-card:hover::before { opacity: 1; }

.nominee-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  margin: 1.5rem auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
  position: relative;
}

.nominee-avatar::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid transparent;
  background: linear-gradient(var(--bg-dark), var(--bg-dark)) padding-box,
              linear-gradient(135deg, var(--primary), var(--gold)) border-box;
}

.nominee-body {
  padding: 1rem 1.25rem 1.5rem;
  text-align: center;
}

.nominee-name {
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 4px;
}

.nominee-role {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.nominee-city {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.nominee-city i { color: var(--gold); margin-right: 3px; }
.fixed-top{z-index: 99999;}

/* ---------- Jury Cards ---------- */
.jury-card {
  background: rgb(236 236 236);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  transition: all var(--transition);
  overflow: hidden;
}

.jury-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.3);
  border-color: rgba(244, 196, 48, 0.3);
}

.jury-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  font-weight: 800;
  background: #069BAE;
  position: relative;
}


.nav-link{font-size: 100%; color: #fff !important;}

.jury-name {
  font-weight: 700;
  font-size: 1.1rem;
  color: #252525;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.jury-title {
  font-size: 0.82rem;
  color: #474747;
  font-weight: 600;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.jury-org {
  font-size: 0.85rem;
  color: rgb(0 0 0);
}

/* ---------- Nomination Form ---------- */
.nominate-form .glass-input {
  background: rgba(255,255,255,1);
  border: 1px solid rgb(90 90 90 / 41%);
  border-radius: 10px;
  color: #000;
  padding: 0.85rem 1.2rem;
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.nominate-form .glass-input:focus {
  background: rgba(255,255,255,1);
  border-color: rgb(90 90 90 / 41%);
  box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.18);
  color: #000;
  outline: none;
}
.thead-dark{background: #583638;}

.nominate-form .glass-input::placeholder { color: #000; }

.nominate-form select.glass-input option {
  background: #1a1a2e;
  color: var(--text-primary);
}

.form-success-msg {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #4ade80;
  border-radius: 10px;
  padding: 1rem 1.5rem;
  font-weight: 600;
  margin-top: 1rem;
}

/* ---------- Sponsors ---------- */
.sponsor-logo-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.2rem 2rem;
  color: var(--text-muted);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  transition: all var(--transition);
  min-width: 150px;
  text-align: center;
}

.sponsor-logo-item:hover {
  background: rgba(255,255,255,0.08);
  color: var(--gold);
  border-color: rgba(244, 196, 48, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.sponsor-logo-item i { font-size: 1.5rem; display: block; margin-bottom: 6px; }

/* ---------- Footer ---------- */
.site-footer {
  background: rgba(0,0,0,1);
  border-top: 1px solid var(--border);
}

.footer-brand {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  text-shadow: 0 0 12px var(--gold-glow);
}

.footer-text {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.footer-heading {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  padding: 0;
}
.site-footer{color: #fff;}

.footer-links li {
  margin-bottom: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--gold); }

.social-links { display: flex; gap: 12px; }

.social-links a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1rem;
  text-decoration: none;
  transition: all var(--transition);
}

.social-links a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 4px 18px var(--primary-glow);
}

.footer-hr { border-color: var(--border); }

.footer-copy {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ---------- Animations ---------- */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- AOS-style scroll reveal (custom) ---------- */
[data-aos] {
  opacity: 1;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos][data-aos-delay="100"] { transition-delay: 0.1s; }
[data-aos][data-aos-delay="200"] { transition-delay: 0.2s; }
[data-aos][data-aos-delay="300"] { transition-delay: 0.3s; }
[data-aos][data-aos-delay="400"] { transition-delay: 0.4s; }

[data-aos="zoom-in"] {
  transform: scale(0.85);
}
[data-aos="zoom-in"].aos-animate {
  transform: scale(1);
}

[data-aos="fade-down"] {
  transform: translateY(-24px);
}
[data-aos="fade-down"].aos-animate {
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 767px) {
  .hero-section { padding-top: 90px; }
  .count-box { min-width: 58px; padding: 0.6rem 0.8rem; }
  .count-box span { font-size: 1.6rem; }
  .count-sep { font-size: 1.6rem; }
  .section-block { padding: 70px 0; }
  .hero-title { letter-spacing: -1px; }
  .btn-hero-primary, .btn-hero-outline { padding: 0.75rem 1.6rem; font-size: 0.92rem; }
  .countdown-boxes { flex-wrap: wrap; gap: 0.6rem !important; }

.btn-hero-primary2 {
  padding: 0.85rem .7rem !important;
}
.fontst1 span{    font-size: 2.5rem !important;}
.fontst1{    font-size: 2.8rem !important;}
}

@media (max-width: 480px) {
  .count-sep { display: none; }
}

/* ---------- Custom scrollbar ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover { background: var(--gold); }












.contact-section{
    position:relative;
    padding:80px 0;
    overflow:hidden;
    background: #ffffffbd;
}
/*
.contact-section::before
{
    content:"";
    position:absolute;
    width:120px;
    height:120px;
    background-image:url("../images/icons/Mandala-Gradient.png");
    background-repeat:no-repeat;
    background-size:contain;
    background-position:center;
    opacity: 0.5;
}

.contact-section::after{
    content:"";
    position:absolute;
    width:120px;
    height:120px;
    background-image:url("../images/icons/Mandala-Gradient.png");
    background-repeat:no-repeat;
    background-size:contain;
    background-position:center;
    opacity: 0.5;
}


.contact-section:before{
    width:300px;
    height:300px;
    top:40px;
    left:40px;
}

.contact-section:after{
    width:320px;
    height:320px;
    right:60px;
    bottom:120px;
}

*/

.section-title{
    font-size:2rem;
    font-weight:600;
    margin-bottom:15px;
    text-transform: uppercase; letter-spacing: 0.5px;
}

.section-subtitle{
    text-align:center;
    font-size:1.8rem;
    font-weight:600;
    margin-bottom:10px;
}
.nam{font-family: 'SamsungSSHead'; font-weight: 500; letter-spacing: 0.5px;}

.rd{color: #c1121f;}


.icon-box{color: #1428A0; margin-right: 15px;}

.contact-row{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:20px;
}
.cont a{text-decoration: none; font-weight: 500; color: #2f2f2f;}

.contact-row span{
    color:#e5e5e5;
}

.sponsor-title{
    text-align:center;
    font-size:1.8rem;
    font-weight:600;
    margin:70px 0 50px;
}

.form-title{
    text-align:center;
    font-size:1.8rem;
    font-weight:600;
    margin:0 0;
}

.person-card{
    position:relative;
    padding-left:15px;
}

.person-name{
    color:#d32532;
    font-size:1rem;
    text-transform:uppercase;
    margin-bottom:10px;
}

.person-card p{
    margin-bottom:6px;
    color:#161616;
}

.person-card i{
    margin-right:8px;
}

.corner-line{
    position:absolute;
    right:10px;
    bottom:-20px;
    width:35px;
    height:35px;
    border-right:2px solid #dc2f3c;
    border-bottom:2px solid #dc2f3c;
}

.corner-line:before{
    content:"";
    width:10px;
    height:10px;
    background:#de313e;
    border-radius:50%;
    position:absolute;
    left:-8px;
    bottom:-6px;
}

.footer-links a{
    color:#fff;
    text-decoration:none;
    margin-left:15px;
}

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

.innerpage-box .small-head {
    font-size: 18px;
    color: #da2d3a;
    font-weight: 600;
}

.table .thead-dark th {color: #fff;}
.table>:not(caption)>*>*{background-color:transparent;}
label{font-weight: 600;}
.guid{font-size: 1.05rem; line-height: 1.8;}
.title-name{    color: #d32532;
    font-size: 1.2rem;
    text-transform: uppercase;
    margin-bottom: 10px;}

.nav-right{display: flex; flex-direction: row; list-style: none; margin: 0;}
.custom-control{margin: 10px 0;}

.jury-col{
    width:20%;
}

@media (max-width:991.98px){
    .jury-col{
        width:33.333%;
    }
}

@media (max-width:767.98px){
    .jury-col{
        width:50%;
    }
    .nav-right {position: absolute;
    right: 10px;
    top: 10px;}
    .contact-section::before, .contact-section::after {display: none;}
    
}


.showtop{    position: relative;
    z-index: 99999;}






.category-box{
    display:flex;
    align-items:center;
    gap:12px;
    background:#fff;
    border:1px solid #e5e5e5;
    border-radius:10px;
    padding:14px 16px;
    height:100%;
    transition:all .3s ease;
    box-shadow:0 2px 8px rgba(0,0,0,.05);
}

.category-box:hover{
    transform:translateY(-3px);
    box-shadow:0 6px 18px rgba(0,0,0,.12);
}

.category-box i{
    font-size:20px;
    color:#db2d3a;
    flex-shrink:0;
}

.category-box span{
    font-size:15px;
    font-weight:500;
    line-height:1.4;
}
/*
.hero-section{background: url(../images/bgart.jpg) no-repeat top center; background-size: 100%;}

*/

.hero-section{background: #1428A0;
background: linear-gradient(90deg, #1428A0 1%, #041c50 50%, #1428A0 100%);}

.grad1{background: #06198b;
/* background: linear-gradient(90deg, rgba(20, 40, 160, 1) 1%, rgba(13, 113, 172, 1) 50%, rgba(6, 155, 174, 1) 100%); */
overflow: hidden;
}
.rigt{    position: absolute;
    right: -210px;
    opacity: .2;}

.bgbl{    background: #1428A0;
    color: #fff;}

    .btn-hero-primary-reg {
  background: background: #1428A0;
background: linear-gradient(90deg, rgba(13, 113, 172, 1) 1%, rgba(6, 155, 174, 1) 100%);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.85rem 2.2rem;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 6px 28px rgb(14 99 170 / 50%);
  transition: all var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
}









.agenda-section{
   
    color:#fff;
}

.timeline{
    position:relative;
}

.timeline:before{
    content:"";
    position:absolute;
    left:50%;
    top:0;
    transform:translateX(-50%);
    width:6px;
    height:100%;
    background:#00C3B2;
    border-radius:20px;
}

.timeline-item{
    position:relative;
    margin-bottom:70px;
}

.timeline-center{
    position:relative;
    min-height:100px;
}

/* Center Circle */

.timeline-dot{
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    width:24px;
    height:24px;
    background:#fff;
    border:5px solid #00C3B2;
    border-radius:50%;
    z-index:5;
}

/* Dotted Connector */

.timeline-center:before{
    content:"";
    position:absolute;
    top:50%;
    width:110px;
    height:8px;
    transform:translateY(-50%);
    background:radial-gradient(circle,#00C3B2 3px,transparent 4px);
    background-size:18px 8px;
    background-repeat:repeat-x;
}

.timeline-item.left .timeline-center:before{
    right:50%;
}

.timeline-item.right .timeline-center:before{
    left:50%;
}

.timeline-content h5{
    font-size:16px;
    font-weight:700;
    margin-bottom:10px;
}

.timeline-content h4{
    font-size:20px;
    font-weight:700;
    margin-bottom:12px;
}

.timeline-content p{
    color:#d9d9d9;
    font-size:17px;
    line-height:1.7;
    margin:0;
}


      .bg-video{
    position:absolute;
    top:50%;
    left:50%;
    width:100%;
    height:100%;
    object-fit:cover;
    transform:translate(-50%,-50%);
    z-index:-2;
    opacity: 0.6;
}

.video-overlay{
    position:absolute;
    inset:0;
        background: radial-gradient(80% 60% at 50% 30%, rgb(26, 35, 184) 0%, rgb(11, 16, 104) 45%, rgb(6, 9, 74) 100%);
    z-index:-1; opacity: 0.8;
}

@media (max-width: 991px) {

    /* Move timeline to left */
    .timeline:before{
        left:18px;
        transform:none;
        display: none;
    }

    /* Hide center column */
    .timeline-center{
        display:none;
    }

    /* Hide horizontal dotted connectors */
    .timeline-center:before,
    .timeline-item.left .timeline-center:before,
    .timeline-item.right .timeline-center:before{
        display:none !important;
    }

    .timeline-item{
        margin-bottom:40px;
    }

    /* Content */
    .timeline-content{
        position:relative;
        padding-left:60px;
        text-align:left !important;
    }

    /* Timeline circle */
    .timeline-content:before{
        content:"";
        position:absolute;
        left:8px;
        top:10px;
        width:22px;
        height:22px;
        background:#fff;
        border:5px solid #00C3B2;
        border-radius:50%;
        z-index:2;
    }

    /* Vertical line */
    .timeline-content:after{
        content:"";
        position:absolute;
        left:18px;
        top:32px;
        width:4px;
        height:calc(100% + 35px);
        background:#00C3B2;
    }

    /* Remove line from last item */
    .timeline-item:last-child .timeline-content:after{
        display:none;
    }

    .timeline-content h5{
        font-size:15px;
    }

    .timeline-content h4{
        font-size:18px;
    }

    .timeline-content p{
        font-size:15px;
        line-height:1.6;
    }

}