/* ───────────── RESET & BASE ───────────── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", Arial, sans-serif;
  scroll-behavior: smooth;
}

body {
  background: #fff;
  color: #111;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
}

/* ───────────── ANIMATED ELEMENTS (scroll + reveal) ───────────── */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* ───────────── HEADER / NAV ───────────── */
header {
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s;
}

header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 25px;
  max-width: 1400px;
  margin: auto;
}

.logo {
  width: 300px;
  height: auto;
  transition: transform 0.3s;
}

/*.logo:hover {*/
/*  transform: scale(1.04);*/
/*}*/

nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: #222;
  font-size: 15px;
  font-weight: 500;
  transition:
    color 0.3s,
    transform 0.3s;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2.5px;
  background: linear-gradient(90deg, #7ed957, #39a845);
  transition: width 0.35s ease;
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

nav a:hover {
  color: #2a8a2a;
  transform: translateY(-1px);
}

nav a.active {
  color: #1f7a1f;
}

.nav-btn {
  background: linear-gradient(90deg, #7ed957, #39a845);
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600;
  border: 1px solid transparent;
  transition:
    background 0.3s,
    transform 0.3s,
    box-shadow 0.3s;
  box-shadow: 0 6px 18px rgba(57, 168, 69, 0.3);
}

.nav-btn:hover {
  background: linear-gradient(90deg, #6bc94a, #2d963a);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 28px rgba(57, 168, 69, 0.4);
  color: #fff !important;
}

.nav-btn::after {
  display: none;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #222;
  transition: transform 0.3s;
}

.menu-toggle:hover {
  transform: rotate(90deg);
}

/* ───────────── HERO ───────────── */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.78)),
    url("/assets/img/hero.avif");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 40px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 50px;
  align-items: center;
  color: #fff;
}

.tag {
  color: #79ff63;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 1.5px;
  display: inline-block;
  animation: fadeInUp 0.8s ease;
}

.hero h1 {
  font-size: 58px;
  line-height: 1.15;
  margin: 18px 0 16px;
  animation: fadeInUp 0.9s ease;
}

.hero p {
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 24px;
  opacity: 0.9;
  animation: fadeInUp 1s ease;
}

.hero-info {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  animation: fadeInUp 1.1s ease;
}

.hero-info div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
}

.hero-info i {
  color: #7ed957;
  font-size: 20px;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  animation: fadeInUp 1.2s ease;
}

.btn-primary {
  background: linear-gradient(90deg, #7ed957, #39a845);
  color: #fff;
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  box-shadow: 0 6px 20px rgba(57, 168, 69, 0.35);
  border: 1px solid transparent;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px rgba(57, 168, 69, 0.45);
}

.btn-outline-light {
  border: 2px solid #7ed957;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  transition:
    background 0.3s,
    transform 0.3s;
  display: inline-block;
}

.btn-outline-light:hover {
  background: rgba(126, 217, 87, 0.15);
  transform: translateY(-3px);
}

/* Register Box */
.register-box {
  background: rgba(255, 255, 255, 0.1);
  padding: 32px 28px;
  border-radius: 24px;
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  animation: fadeInUp 1s ease;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.register-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.register-box h3 {
  font-size: 26px;
  margin-bottom: 18px;
  color: #fff;
}

.register-box input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(126, 217, 87, 0.5);
  transform: scale(1.01);
}

.register-box button {
  width: 100%;
  padding: 16px;
  background: linear-gradient(90deg, #7ed957, #39a845);
  color: #fff;
  border: none;
  font-size: 17px;
  font-weight: 700;
  border-radius: 12px;
  cursor: pointer;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  box-shadow: 0 6px 18px rgba(57, 168, 69, 0.35);
  margin-top: 4px;
}

.register-box button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(57, 168, 69, 0.5);
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ───────────── COUNTER SECTION ───────────── */
.counter-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #07120d, #16361e, #2c7a2c);
  position: relative;
  z-index: 5;
}

.counter-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.counter-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 35px 20px;
  text-align: center;
  color: #fff;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

.counter-box::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #4fff3b, #ffffff);
  left: 0;
  top: 0;
}

.counter-box:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
}

.counter-box .icon {
  width: 70px;
  height: 70px;
  margin: auto;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 18px;
  color: #7cff5f;
}

.counter-box h2 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 6px;
}

.counter-box p {
  font-size: 18px;
  opacity: 0.9;
}

/* ═══════════ ANIMATED COUNTDOWN (NEW) ═══════════ */
.countdown-section {
  padding: 60px 0px;
  position: relative;
  width: 100%;
  /* background:
                radial-gradient(ellipse at 20% 50%, rgba(19, 184, 63, 0.12) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 20%, rgba(181, 220, 37, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 50% 100%, rgba(19, 184, 63, 0.06) 0%, transparent 40%),
                #0f1322; */
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  text-align: center;
  animation: sectionFadeIn 1s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
}

.countdown-section.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes sectionFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.countdown-section::before,
.countdown-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.countdown-section::before {
  width: 400px;
  height: 400px;
  top: -120px;
  right: -120px;
  background: rgba(19, 184, 63, 0.15);
  animation: orbFloat 12s ease-in-out infinite alternate;
}

.countdown-section::after {
  width: 350px;
  height: 350px;
  bottom: -100px;
  left: -100px;
  background: rgba(181, 220, 37, 0.1);
  animation: orbFloat 16s ease-in-out infinite alternate-reverse;
}

@keyframes orbFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(40px, 30px) scale(1.15);
  }
}

.countdown-container {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  background:
    radial-gradient(
      ellipse at 20% 50%,
      rgba(19, 184, 63, 0.12) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 80% 20%,
      rgba(181, 220, 37, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 50% 100%,
      rgba(19, 184, 63, 0.06) 0%,
      transparent 40%
    ),
    #0f1322;
  border-radius: 18px;
  padding: 60px 0px;
}

.timer {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.time-box {
  position: relative;
  min-width: 120px;
  padding: 28px 20px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.4s ease;
  flex: 0 1 auto;
}

.time-box:hover {
  transform: translateY(-4px);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(19, 184, 63, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.time-box::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(19, 184, 63, 0.3),
    rgba(181, 220, 37, 0.1),
    transparent
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.6;
}

.time-box::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(19, 184, 63, 0.2), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
  filter: blur(8px);
  pointer-events: none;
}

.time-box:hover::before {
  opacity: 1;
}

.time-box h2 {
  position: relative;
  font-size: 62px;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin: 0;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #13b83f 0%, #b5dc25 100%);
  -webkit-background-clip: text;
  /* -webkit-text-fill-color: transparent; */
  background-clip: text;
  text-shadow: 0 0 60px rgba(19, 184, 63, 0.15);
  transition: transform 0.2s ease;
  font-variant-numeric: tabular-nums;
}

.num-wrap {
  display: inline-block;
  position: relative;
  overflow: hidden;
  min-width: 70px;
}

.num-wrap .digit {
  display: inline-block;
  transition:
    transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.2s ease;
  will-change: transform, opacity;
}

.num-wrap .digit.flip {
  animation: digitFlip 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes digitFlip {
  0% {
    transform: translateY(-8px) scale(0.85);
    opacity: 0.3;
  }
  60% {
    transform: translateY(4px) scale(1.04);
    opacity: 1;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.time-box p {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
}

.countdown-container h1 {
  font-size: 38px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 38px;
  letter-spacing: -0.5px;
  line-height: 1.3;
  background: linear-gradient(135deg, #ffffff 60%, rgba(255, 255, 255, 0.5));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.2);
}

.countdown-container h1 span {
  display: inline-block;
  background: linear-gradient(135deg, #13b83f, #b5dc25);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.countdown-container .register-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 56px;
  border-radius: 60px;
  background: linear-gradient(135deg, #13b83f, #8fc31f);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.3px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow:
    0 12px 40px rgba(19, 184, 63, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.countdown-container .register-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 60px;
  background: linear-gradient(135deg, #0fa834, #7db31a);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.countdown-container .register-btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow:
    0 20px 60px rgba(19, 184, 63, 0.4),
    0 0 80px rgba(19, 184, 63, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.countdown-container .register-btn:hover::before {
  opacity: 1;
}

.countdown-container .register-btn span,
.countdown-container .register-btn svg {
  position: relative;
  z-index: 1;
}

.countdown-container .register-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.countdown-container .register-btn:hover svg {
  transform: translateX(5px);
}

.countdown-container .register-btn::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transform: rotate(25deg) translateX(-100%);
  transition: transform 0.8s ease;
  pointer-events: none;
}

.countdown-container .register-btn:hover::after {
  transform: rotate(25deg) translateX(100%);
}

/* ───────────── ABOUT ───────────── */
.about-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #0f172a, #111827);
  color: #fff;
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

.badges {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 20px;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.about-content h2 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 18px;
}

.about-content h2 span {
  color: #60a5fa;
}

.about-content p {
  color: #cbd5e1;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.about-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.stat {
  background: rgba(255, 255, 255, 0.05);
  padding: 14px 20px;
  border-radius: 12px;
  min-width: 130px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat h3 {
  font-size: 14px;
  color: #93c5fd;
  margin-bottom: 4px;
}

.stat p {
  font-size: 13px;
  color: #e5e7eb;
  margin-bottom: 0;
}

.about-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #3b82f6;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition:
    background 0.3s,
    transform 0.3s,
    box-shadow 0.3s;
  box-shadow: 0 6px 18px rgba(59, 130, 246, 0.3);
}

.about-btn:hover {
  background: #2563eb;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.4);
}

.about-image .image-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transition: transform 0.5s ease;
}

.about-image .image-card:hover {
  transform: scale(1.01);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ───────────── INDUSTRY ───────────── */
.industry-section {
  padding: 90px 40px;
  background: linear-gradient(135deg, #ffffff, #f4f8ff);
}

.industry-container {
  max-width: 1400px;
  margin: auto;
}

.industry-header {
  text-align: center;
  margin-bottom: 60px;
}

.industry-header span {
  font-size: 14px;
  letter-spacing: 4px;
  color: #65b532;
  font-weight: 600;
}

.industry-header h2 {
  font-size: 52px;
  margin: 15px 0;
  color: #111;
}

.industry-header p {
  max-width: 600px;
  margin: auto;
  color: #666;
  font-size: 18px;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.industry-card {
  background: #fff;
  padding: 24px 18px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid #e8e8e8;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
  cursor: default;
}

.industry-card::before {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  background: #9be35b;
  right: -30px;
  top: -30px;
  border-radius: 50%;
  opacity: 0.2;
}

.industry-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.industry-card .icon {
  width: 52px;
  height: 52px;
  background: #efffe6;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}

.industry-card h3 {
  font-size: 17px;
  margin: 0;
  color: #222;
}

/* ───────────── ATTEND / WHO SHOULD ATTEND ───────────── */
.attend-section {
  padding: 90px 40px;
  background: #05055f;
  color: #fff;
}

.attend-wrapper {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 60px;
}

.attend-title span {
  letter-spacing: 3px;
  font-size: 14px;
  color: #9da8ff;
}

.attend-title h2 {
  font-size: 48px;
  line-height: 1.1;
  margin: 20px 0;
}

.attend-title strong {
  display: block;
  color: #fff;
}

.attend-title p {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.8;
  max-width: 450px;
}

.attend-image {
  margin-top: 40px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s;
}

.attend-image:hover {
  transform: scale(1.01);
}

.attend-image img {
  width: 100%;
  height: 410px;
  object-fit: cover;
  display: block;
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.role-card {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.12),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 22px 20px;
  border-radius: 20px;
  backdrop-filter: blur(12px);
  transition:
    transform 0.35s ease,
    background 0.35s ease;
}

.role-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.16);
}

.role-card b {
  font-size: 28px;
  color: #8fa0ff;
}

.role-card h3 {
  margin: 10px 0 4px;
  font-size: 18px;
}

.role-card p {
  margin: 0;
  opacity: 0.7;
  font-size: 15px;
}

/* ───────────── TOPICS ───────────── */
.topics-section {
  padding: 100px 40px;
  background: linear-gradient(135deg, #ffffff, #f4fff3);
}

.topics-container {
  max-width: 1450px;
  margin: auto;
}

.topics-header {
  text-align: center;
  margin-bottom: 70px;
}

.topics-header span {
  font-size: 14px;
  letter-spacing: 5px;
  font-weight: 700;
  color: #69b83f;
}

.topics-header h2 {
  font-size: 62px;
  margin: 15px 0;
  font-weight: 800;
  color: #1c7c32;
}

.topics-header h2 strong {
  background: linear-gradient(90deg, #8fdc55, #2f9e44);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.topics-header p {
  max-width: 650px;
  margin: auto;
  font-size: 18px;
  color: #555;
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.topic-card {
  padding: 32px;
  background: #fff;
  border-radius: 24px;
  border: 1px solid #dff1d8;
  box-shadow: 0 20px 45px rgba(90, 170, 70, 0.1);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.topic-card::before {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  background: linear-gradient(135deg, #dfffca, #a7e87b);
  border-radius: 50%;
  right: -45px;
  top: -45px;
  opacity: 0.5;
}

.topic-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 70px rgba(70, 160, 50, 0.22);
}

.topic-card h3 {
  font-size: 22px;
  line-height: 1.3;
  margin-bottom: 14px;
  background: linear-gradient(90deg, #65b83d, #2d8c45);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.topic-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

/* ───────────── SPEAKERS ───────────── */
.speaker-section {
  padding: 90px 40px;
  background: #fff;
}

.speaker-container {
  max-width: 1500px;
  margin: auto;
}

.speaker-header {
  text-align: center;
  margin-bottom: 60px;
}

.speaker-header h2 {
  font-size: 48px;
  margin: 0;
  color: #111;
}

.speaker-header p {
  color: #666;
  font-size: 18px;
  margin-top: 8px;
}

.speaker-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
}

.speaker-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 30px;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.speaker-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.speaker-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 14px 14px 0 0;
  transition: transform 0.5s;
}

.speaker-card:hover img {
  transform: scale(1.03);
}

.speaker-card h3 {
  font-size: 24px;
  line-height: 1.2;
  margin: 24px 15px 12px;
  color: #111;
}

.speaker-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  padding: 0 20px;
  min-height: 90px;
}

.speaker-card span {
  display: block;
  width: 55px;
  height: 3px;
  background: #ff4b65;
  margin: 18px auto 0;
  border-radius: 4px;
}

/* ───────────── AGENDA / SCHEDULE ───────────── */
.agenda-section {
  padding: 90px 40px;
  background: linear-gradient(135deg, #ffffff, #f5fff4);
}

.agenda-container {
  max-width: 1400px;
  margin: auto;
  display: grid;
  /* grid-template-columns: 0.9fr 1.4fr; */
  gap: 60px;
  align-items: center;
}

.agenda-image {
  height: 620px;
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s;
}

.agenda-image:hover {
  transform: scale(1.01);
}

.agenda-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.75));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 45px;
  color: #fff;
}

.image-overlay span {
  letter-spacing: 5px;
  font-size: 14px;
  color: #a9ef72;
  font-weight: 600;
}

.image-overlay h2 {
  font-size: 56px;
  line-height: 1;
  margin: 12px 0 0;
}

.agenda-content h2 {
  font-size: 48px;
  margin-bottom: 32px;
  color: #111;
  font-weight: 800;
}

.agenda-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.agenda-item {
  background: #fff;
  padding: 22px 28px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 35px;
  border-left: 6px solid #55b936;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.agenda-item:hover {
  transform: translateX(10px);
  box-shadow: 0 25px 50px rgba(80, 170, 60, 0.15);
}

.agenda-item span {
  font-size: 17px;
  font-weight: 700;
  color: #4ca932;
  min-width: 100px;
}

.agenda-item p {
  font-size: 15px;
  margin: 0;
  color: #222;
  font-weight: 500;
}

/* ───────────── PARTNERS ───────────── */
.partner-section {
  padding: 90px 40px;
  background: linear-gradient(135deg, #ffffff, #f5fff2);
  overflow: hidden;
}

.partner-container {
  max-width: 1400px;
  margin: auto;
}

.partner-header {
  text-align: center;
  margin-bottom: 60px;
}

.partner-header span {
  letter-spacing: 5px;
  font-size: 14px;
  font-weight: 700;
  color: #58b83b;
}

.partner-header h2 {
  font-size: 48px;
  margin: 15px 0;
  color: #111;
  font-weight: 800;
}

.partner-header p {
  color: #666;
  font-size: 18px;
}

.logo-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.logo-track {
  display: flex;
  width: max-content;
  gap: 30px;
  animation: slide 28s linear infinite;
}

.logo-slider:hover .logo-track {
  animation-play-state: paused;
}

.logo-card {
  width: 220px;
  height: 120px;
  background: #fff;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  border: 1px solid #e6e6e6;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.logo-card:hover {
  transform: scale(1.06);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.logo-card img {
  max-width: 140px;
  max-height: 70px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.65;
  transition:
    filter 0.4s,
    opacity 0.4s,
    transform 0.4s;
}

.logo-card:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.08);
}

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ───────────── CONTACT ───────────── */
.contact-section {
  padding: 90px 40px;
  background: linear-gradient(135deg, #f7fff5, #ffffff);
}

.contact-container {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 40px;
  align-items: stretch;
}

.contact-info {
  background: linear-gradient(135deg, #079447, #6bc94a);
  border-radius: 30px;
  padding: 50px;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(40, 170, 50, 0.25);
}

.glow {
  position: absolute;
  width: 250px;
  height: 250px;
  background: #fff;
  opacity: 0.1;
  border-radius: 50%;
  right: -80px;
  top: -80px;
}

.small-title {
  letter-spacing: 4px;
  font-size: 14px;
  font-weight: 700;
}

.contact-info h2 {
  font-size: 25px;
  margin: 15px 0;
}

.intro {
  font-size: 18px;
  max-width: 500px;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 20px;
  border-bottom: 2px solid #e5e5e5;
  padding-bottom: 10px;
}

.contact-box {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 35px;
}

.person h3 {
  font-size: 18px;
  margin: 20px 0px;
}

.person h4 {
  font-size: 22px;
  margin: 8px 0 18px;
}

.person p {
  font-size: 15px;
  line-height: 1.8;
  margin: 4px 0;
}

.person p i {
  font-size: 18px;
  margin-right: 10px;
}

.person p a {
  font-size: 18px;
  text-decoration: none;
  color: #fff;
}

.person p a:hover {
  color: #000;
}

.divider {
  background: rgba(255, 255, 255, 0.3);
  width: 1px;
}

.map-box h3 {
  font-size: 20px;
  margin-bottom: 16px;
}

.map-box iframe {
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  width: 100%;
  height: 280px;
  border: 0;
}

.callback-card {
  background: #fff;
  padding: 42px 35px;
  border-radius: 30px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.callback-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

.callback-card h2 {
  font-size: 30px;
  margin-bottom: 28px;
  color: #111;
}

.callback-card input {
  width: 100%;
  padding: 15px 18px;
  margin-bottom: 14px;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-size: 15px;
  outline: none;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}

.callback-card input:focus {
  border-color: #65c83c;
  box-shadow: 0 0 0 3px rgba(101, 200, 60, 0.2);
}

.callback-card button {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(90deg, #079447, #6bc94a);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  box-shadow: 0 6px 18px rgba(7, 148, 71, 0.3);
}

.callback-card button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(7, 148, 71, 0.4);
}

/* ───────────── FOOTER ───────────── */
footer {
  background: #07120d;
  padding: 30px;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
}

/* ───────────── WHATSAPP FLOAT ───────────── */
.whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 30px;
  color: #fff;
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.whatsapp:hover {
  transform: scale(1.12) rotate(-6deg);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.55);
  color: #fff;
}

/* ───────────── RESPONSIVE ───────────── */
@media (max-width: 1200px) {
  .speaker-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1100px) {
  .topics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .industry-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .hero h1 {
    font-size: 40px;
  }
  .about-wrapper {
    grid-template-columns: 1fr;
  }
  .about-content h2 {
    font-size: 32px;
  }
  .attend-wrapper {
    grid-template-columns: 1fr;
  }
  .attend-title h2 {
    font-size: 36px;
  }
  .agenda-container {
    grid-template-columns: 1fr;
  }
  .agenda-image {
    height: 400px;
  }
  .agenda-content h2 {
    font-size: 36px;
  }
  .contact-container {
    grid-template-columns: 1fr;
  }
  .contact-box {
    grid-template-columns: 1fr;
  }
  .divider {
    height: 1px;
    width: 100%;
    background: rgba(255, 255, 255, 0.3);
  }
  .counter-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .topics-header h2 {
    font-size: 42px;
  }
  .industry-header h2 {
    font-size: 38px;
  }
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .speaker-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .role-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* countdown responsive */
  .countdown-section {
    padding: 60px 16px;
  }
  .timer {
    gap: 14px;
  }
  .time-box {
    min-width: 80px;
    padding: 20px 14px 18px;
    border-radius: 18px;
  }
  .time-box h2 {
    font-size: 42px;
  }
  .num-wrap {
    min-width: 44px;
  }
  .time-box p {
    font-size: 12px;
    margin-top: 8px;
    letter-spacing: 1.5px;
  }
  .countdown-container h1 {
    font-size: 26px;
    margin-bottom: 30px;
  }
  .countdown-container .register-btn {
    padding: 15px 36px;
    font-size: 16px;
    border-radius: 50px;
  }
  .countdown-container .register-btn svg {
    width: 17px;
    height: 17px;
  }
  .countdown-section::before,
  .countdown-section::after {
    filter: blur(80px);
    width: 250px;
    height: 250px;
  }
}

@media (max-width: 768px) {
  nav {
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    gap: 16px;
    padding: 30px 20px;
    display: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(0, 0, 0, 0.04);
  }
  nav.active {
    display: flex;
  }
  nav a {
    font-size: 17px;
    padding: 6px 0;
    width: 100%;
    text-align: center;
  }
  nav a::after {
    bottom: 0;
  }
  .nav-btn {
    display: inline-block;
    width: auto;
    margin: 4px auto 0;
  }
  .menu-toggle {
    display: block;
  }
  .btn-group .btn-primary,
  .btn-group .btn-outline-light {
    width: 100%;
    text-align: center;
  }
  .hero h1 {
    font-size: 34px;
  }
  .hero p {
    font-size: 17px;
  }
  .register-box {
    padding: 24px 18px;
  }
  .register-box h3 {
    font-size: 22px;
  }
  .topics-grid {
    grid-template-columns: 1fr;
  }
  .topics-section {
    padding: 60px 20px;
  }
  .topics-header h2 {
    font-size: 34px;
  }
  .speaker-section {
    padding: 60px 20px;
  }
  .speaker-header h2 {
    font-size: 34px;
  }
  .speaker-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .speaker-card img {
    height: 220px;
  }
  .speaker-card h3 {
    font-size: 20px;
  }
  .speaker-card p {
    font-size: 14px;
    min-height: 60px;
  }
  .agenda-section {
    padding: 60px 20px;
  }
  .agenda-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 20px;
  }
  .agenda-item p {
    font-size: 17px;
  }
  .agenda-item span {
    min-width: auto;
  }
  .partner-section {
    padding: 60px 20px;
  }
  .partner-header h2 {
    font-size: 34px;
  }
  .logo-card {
    width: 160px;
    height: 100px;
  }
  .logo-card img {
    max-width: 100px;
    max-height: 55px;
  }
  .contact-section {
    padding: 60px 20px;
  }
  .contact-info {
    padding: 32px 22px;
  }
  .contact-info h2 {
    font-size: 34px;
  }
  .callback-card {
    padding: 28px 18px;
  }
  .callback-card h2 {
    font-size: 26px;
  }
  .industry-section {
    padding: 60px 20px;
  }
  .industry-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .industry-header h2 {
    font-size: 32px;
  }
  .attend-section {
    padding: 60px 20px;
  }
  .attend-title h2 {
    font-size: 30px;
  }
  .role-grid {
    grid-template-columns: 1fr;
  }
  .attend-image img {
    height: 200px;
  }
  .counter-section {
    padding: 50px 0;
  }
  .counter-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .counter-box h2 {
    font-size: 34px;
  }
  .counter-box {
    padding: 24px 14px;
  }
  .about-section {
    padding: 60px 0;
  }
  .about-content h2 {
    font-size: 28px;
  }
  .about-stats {
    flex-direction: column;
    gap: 12px;
  }
  .stat {
    min-width: auto;
  }
  .image-overlay h2 {
    font-size: 40px;
  }
  .whatsapp {
    width: 52px;
    height: 52px;
    font-size: 24px;
    bottom: 16px;
    right: 16px;
  }

  /* countdown mobile */
  .countdown-section {
    padding: 40px 12px;
  }
  .timer {
    gap: 10px;
  }
  .time-box {
    min-width: 64px;
    padding: 14px 10px 14px;
    border-radius: 14px;
  }
  .time-box h2 {
    font-size: 32px;
  }
  .num-wrap {
    min-width: 32px;
  }
  .time-box p {
    font-size: 10px;
    margin-top: 6px;
    letter-spacing: 1px;
  }
  .countdown-container h1 {
    font-size: 20px;
    margin-bottom: 24px;
  }
  .countdown-container .register-btn {
    padding: 13px 28px;
    font-size: 14px;
    gap: 8px;
  }
  .countdown-container .register-btn svg {
    width: 15px;
    height: 15px;
  }
  .countdown-section::before,
  .countdown-section::after {
    filter: blur(60px);
    width: 160px;
    height: 160px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
  }
  .hero-info {
    flex-direction: column;
    gap: 10px;
  }
  .speaker-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }
  .industry-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }
  .counter-wrapper {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }
  .topics-grid {
    max-width: 400px;
    margin: 0 auto;
  }
  .agenda-image {
    height: 280px;
  }
  .image-overlay h2 {
    font-size: 32px;
  }
  .register-box {
    padding: 18px 14px;
  }
  .register-box input {
    padding: 12px 14px;
    font-size: 14px;
  }
  .register-box button {
    font-size: 15px;
    padding: 14px;
  }
  .logo-card {
    width: 130px;
    height: 80px;
    padding: 12px;
  }
  .logo-card img {
    max-width: 80px;
    max-height: 45px;
  }
  .logo-track {
    gap: 16px;
  }

  .time-box {
    min-width: 52px;
    padding: 10px 6px 10px;
    border-radius: 12px;
  }
  .time-box h2 {
    font-size: 26px;
  }
  .num-wrap {
    min-width: 26px;
  }
  .time-box p {
    font-size: 9px;
    letter-spacing: 0.5px;
  }
  .timer {
    gap: 6px;
  }
}

/* scroll margin for fixed header */
section[id] {
  scroll-margin-top: 80px;
}

/* register now highlight pulse */
.register-highlight {
  animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(126, 217, 87, 0.3);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(126, 217, 87, 0.08);
  }
}

/* ─── Register form styles ─── */
.register-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.register-form input,
.register-form select {
  width: 100%;
  height: 38px;
  background: rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 5px;
  padding: 0 18px;
  color: white;
  font-size: 16px;
  outline: none;
}

.register-form select option {
  color: black;
}

.register-form input::placeholder {
  color: #cfcfcf;
}

@media (max-width: 600px) {
  .register-form input,
  .register-form select {
    height: 42px;
    font-size: 15px;
  }
}

/* #loader{
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: rgba(255,255,255,0.9);
    z-index:9999;
    display:none;
    justify-content:center;
    align-items:center;
    flex-direction:column;
} */
/* 
.spinner{
    width:50px;
    height:50px;
    border:5px solid #ddd;
    border-top:5px solid #3399cc;
    border-radius:50%;
    animation: spin 1s linear infinite;
}

@keyframes spin{
    100%{
        transform: rotate(360deg);
    }
} */



/* From Uiverse.io by dimasptrautmaa */ 
.page {
  display: flex;
  justify-content: center;
  align-items: center;

      position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: rgb(0 0 0 / 91%);
    z-index:9999;
    /* display:none; */
    justify-content:center;
    align-items:center;
    flex-direction:column;
}

.page #count {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  /* position: relative; */
}

.h3 {
  color: white;
}

.ring {
  width: 190px;
  height: 190px;
  border: 1px solid transparent;
  border-radius: 50%;
  position: absolute;
}

.ring:nth-child(1) {
  border-bottom: 8px solid rgb(255, 141, 249);
  animation: rotate1 2s linear infinite;
}

@keyframes rotate1 {
  from {
    transform: rotateX(50deg) rotateZ(110deg);
  }

  to {
    transform: rotateX(50deg) rotateZ(470deg);
  }
}

.ring:nth-child(2) {
  border-bottom: 8px solid rgb(255,65,106);
  animation: rotate2 2s linear infinite;
}

@keyframes rotate2 {
  from {
    transform: rotateX(20deg) rotateY(50deg) rotateZ(20deg);
  }

  to {
    transform: rotateX(20deg) rotateY(50deg) rotateZ(380deg);
  }
}

.ring:nth-child(3) {
  border-bottom: 8px solid rgb(0,255,255);
  animation: rotate3 2s linear infinite;
}

@keyframes rotate3 {
  from {
    transform: rotateX(40deg) rotateY(130deg) rotateZ(450deg);
  }

  to {
    transform: rotateX(40deg) rotateY(130deg) rotateZ(90deg);
  }
}

.ring:nth-child(4) {
  border-bottom: 8px solid rgb(252, 183, 55);
  animation: rotate4 2s linear infinite;
}

@keyframes rotate4 {
  from {
    transform: rotateX(70deg) rotateZ(270deg);
  }

  to {
    transform: rotateX(70deg) rotateZ(630deg);
  }
}

.send-btn:disabled{
    opacity:0.7;
    cursor:not-allowed;
}



/* For Chrome, Safari, Edge, and Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* For Firefox */
input[type=number] {
  -moz-appearance: textfield;
}









.partner-grid{
    display:flex;
    flex-direction:column;
    gap:30px;
    align-items:center;
    margin-top:50px;
}

/* Common Row */
.logo-row{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

/* First Row (2 logos) */
.row-1 .logo-card{
    width:153px;
}

/* Second Row (3 logos) */
.row-2 .logo-card{
    width:220px;
}

.logo-card{
    height:115px;
    background:#fff;
    border:1px solid #eee;
    border-radius:15px;
    display:flex;
    justify-content:center;
    align-items:center;
    transition:.4s ease;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.logo-card img{
    max-width:140px;
    max-height:70px;
    object-fit:contain;
    filter:grayscale(100%);
    transition:.4s ease;
}

.logo-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.logo-card:hover img{
    filter:grayscale(0);
    transform:scale(1.08);
}

/* Mobile */
@media(max-width:768px){
    .logo-row{
        flex-direction:column;
        align-items:center;
    }

    .logo-card{
        width:90% !important;
    }
}

.logo-row{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
}

.sponsor-title{
    margin-bottom:15px;
    font-size:24px;
    font-weight:700;
    color:#0F2A63;
    text-transform:uppercase;
    letter-spacing:1px;
}



/* Gold Sponsor */
.gold-row{
    text-align:center;
    margin-bottom:60px;
}

.gold-row .logo-card{
    width:260px;
    height:170px;
    margin:0 auto;
}

/* Silver Sponsor */
.silver-row{
    margin-top:40px;
}

.silver-row .sponsor-title{
    text-align:center;
    margin-bottom:25px;
}

.logo-row{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:25px;
    justify-items:center;
}

/* ===========================
   GOLD SPONSOR
=========================== */

.first-row{
    display:flex !important;
    justify-content:center;
    align-items:center;
    width:100%;
    text-align:center;
    margin-bottom:60px;
}

.logo-item{
    display:flex;
    flex-direction:column;
    align-items:center;
}

.first-row .logo-card{
    width:250px;
    height:170px;
}

/* ===========================
   SILVER SPONSOR
=========================== */

.sponsor-section{
    width:100%;
    margin-top:40px;
}

.sponsor-section .sponsor-title{
    text-align:center;
    margin-bottom:25px;
}

/* Only Silver logos */
.sponsor-section .logo-row{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
    justify-items:center;
}

.logo-card{
    background:#fff;
    border-radius:12px;
    padding:20px;
    height:150px;
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.logo-card img{
    max-width:100%;
    max-height:90px;
    object-fit:contain;

    filter:none !important;
    -webkit-filter:none !important;
    opacity:1 !important;
    transition:0.3s;
}

.logo-card:hover img{
    filter:none !important;
    -webkit-filter:none !important;
    opacity:1 !important;
    transform:scale(1.05);
}

/* ===========================
   TABLET
=========================== */

@media(max-width:992px){

    .sponsor-section .logo-row{
        grid-template-columns:repeat(2,1fr);
    }

}

/* ===========================
   MOBILE
=========================== */

@media(max-width:576px){

    .sponsor-section .logo-row{
        grid-template-columns:1fr;
    }

    .first-row .logo-card{
        width:180px;
    }

}
