@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --primary-dark: #0a0a0f;
  --primary-purple: #6b2fd6;
  --accent-blue: rgba(19, 157, 255, 1);
  --accent-coral: #ff6b6b;
  --accent-cyan: #00d4ff;
  --primary-blue: #139dff;
  --text-white: #ffffff;
  --text-gray: #a0a0a0;
  --text-blue: #139dff;
  --gradient-purple: linear-gradient(
    135deg,
    #6b2fd6 0%,
    #9d4edd 50%,
    #c77dff 100%
  );
  --gradient-gold: linear-gradient(135deg, #f5a623 0%, #ffd93d 100%);
  --gradient-dark: linear-gradient(180deg, #0a0a0f 0%, #1a1a2e 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Space Grotesk", sans-serif;
  background: var(--primary-dark);
  color: var(--text-white);
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

html {
  overflow-x: hidden;
}

/* Navbar */
.ed-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10, 10, 15, 0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, padding 0.3s ease, background 0.3s ease,
    box-shadow 0.3s ease;
  transform: translateY(0);
}

.ed-navbar.scrolled {
  padding: 15px 60px;
  background: rgba(10, 10, 15, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.ed-logo {
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  letter-spacing: 4px;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ed-nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.ed-nav-links a {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s;
  font-family: "Space Grotesk", sans-serif;
vertical-align: middle;
text-transform: uppercase;

}

.ed-nav-links a:hover {
  color: var(--text-white);
}

.ed-nav-btn {
  background: var(--gradient-purple);
  color: var(--text-white);
  padding: 10px 26px;
  border: none;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  text-transform: none;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
font-size: 15.56px;
line-height: 100%;
letter-spacing: 0%;
vertical-align: middle;

}

.ed-nav-btn:hover {
  transform: translateY(-2px);
}

.ed-nav-btn.ed-nav-btn-outline {
  background: transparent;
  border: 2px solid var(--primary-purple);
  color: var(--primary-purple);
}

.ed-nav-btn.ed-nav-btn-outline:hover {
  background: var(--primary-purple);
  color: var(--text-white);
}
a {
  text-decoration: none !important;
}
a:hover {
  color: inherit;
}
/* Hamburger Menu Button */
.ed-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.ed-hamburger span {
  width: 30px;
  height: 3px;
  background: var(--text-white);
  border-radius: 10px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.ed-hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.ed-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.ed-hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.ed-mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.ed-mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Menu */
.ed-mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 350px;
  height: 100vh;
  background: rgba(10, 10, 15, 0.98);
  backdrop-filter: blur(20px);
  z-index: 1000;
  padding: 20px 30px 30px;
  transition: right 0.3s ease;
  overflow-y: auto;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ed-mobile-menu.active {
  right: 0;
}

.ed-mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ed-mobile-logo img {
  height: 30px;
  width: auto;
}

.ed-mobile-close {
  background: transparent;
  border: none;
  color: var(--text-white);
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s;
}

.ed-mobile-close:hover {
  color: var(--accent-blue);
}

.ed-mobile-menu-links {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.ed-mobile-menu-links li {
  margin-bottom: 0;
}

.ed-mobile-menu-links a {
  display: block;
  padding: 15px 0;
  color: var(--text-white);
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: color 0.3s, padding-left 0.3s;
}

.ed-mobile-menu-links a:hover {
  color: var(--accent-blue);
  padding-left: 10px;
}

.ed-mobile-menu-links .ed-mobile-cta {
  display: inline-block;
  background: var(--gradient-purple);
  color: var(--text-white) !important;
  padding: 12px 24px;
  border-radius: 8px;
  margin-top: 15px;
  text-align: center;
  border-bottom: none;
}

.ed-mobile-menu-links .ed-mobile-cta:hover {
  padding-left: 24px;
  opacity: 0.9;
}

.ed-mobile-menu-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.ed-mobile-menu-buttons .ed-nav-btn {
  width: 100%;
  text-align: center;
}

/* Hero Section */
.ed-hero {
  min-height: 95vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 140px 60px 80px;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
}

.ed-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/banner-slider-img.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.4;
}

.ed-hero-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      ellipse at 20% 50%,
      rgba(107, 47, 214, 0.8) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 80% 20%,
      rgba(19, 157, 255, 0.9) 0%,
      transparent 40%
    ),
    radial-gradient(ellipse at 60% 80%, rgba(0, 0, 0, 0.9) 0%, transparent 40%),
    var(--primary-dark);
  opacity: 0.8;
}

.ed-hero-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.ed-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ed-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 24px;
  margin-bottom: 30px;
  animation: fadeInUp 0.8s ease;
}

.ed-hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-coral);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.ed-hero-badge span {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-gray);
  font-family: "Space Grotesk", sans-serif;
font-weight: 700;
line-height: 100%;
letter-spacing: 2px;
vertical-align: middle;
}

.ed-hero-date {
  font-family: "Syne", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-blue);
  letter-spacing: 3px;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.1s backwards;
}

.ed-hero-heading-image-wrap {
  width: min(100%, 1200px);
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.1s backwards;
}

.ed-hero-heading-image {
  display: block;
  width: 100%;
  height: auto;
  /* border-radius: 24px; */
}

.ed-hero-title {
  font-family: "Montserrat", sans-serif;
  line-height: 0.9;
  letter-spacing: -2px;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.2s backwards;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ed-hero-title span {
  display: block;
}

.ed-hero-title .outline {
  -webkit-text-stroke: 2px var(--text-white);
  -webkit-text-fill-color: transparent;
}

.ed-hero-title .outline img {
  max-width: 100%;
  height: auto;
  display: block;
}

.ed-hero-title .gold {
  color: var(--text-blue);
  font-weight: 600;
  font-size: 103.21px;
}

.ed-hero-location {
  font-size: 20px;
  color: var(--text-gray) !important;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: fadeInUp 0.8s ease 0.3s backwards;
    font-family: "Space Grotesk", sans-serif;
font-weight: 400;
line-height: 100%;
letter-spacing: 0%;
vertical-align: middle;

}

.ed-hero-location-link {
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.ed-hero-location-link:hover {
  color: var(--text-white);
  transform: translateY(-1px);
}

.ed-hero-location svg {
  width: 24px;
  height: 24px;
  fill: var(--accent-blue);
}

.ed-hero-cta-group {
  display: flex;
  gap: 20px;
  animation: fadeInUp 0.8s ease 0.4s backwards;
}

.ed-btn-primary {
  background-color: var(--primary-blue);
  color: var(--primary-dark);
  padding: 13px 40px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.3s, box-shadow 0.3s;
line-height: 100%;
vertical-align: middle;

}

.ed-btn-primary:hover {
  transform: translateY(-3px);
  color: var(--primary-dark);
}

.ed-btn-secondary {
  background-color: #ffffff1a;
  text-align: center;
  color: var(--text-white);
  backdrop-filter: blur(10px);
  padding: 13px 40px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s;
}

.ed-btn-secondary:hover {
  border-color: var(--text-white);
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.05);
}

.ed-hero-stats {
  /* position: absolute; */
  /* right: 60px; */
  /* top: 50%; */
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  gap: 7rem;
  animation: fadeInRight 0.8s ease 0.5s backwards;
  z-index: 444;
}

.ed-stat-item {
  text-align: left;
}

.ed-stat-number {
  color: white;
  font-family: "Neue Plak", sans-serif;
font-weight: 400;
font-size: 32px;
line-height: 100%;
letter-spacing: 0%;
text-align: center;
vertical-align: middle;

}

.ed-stat-label {
  color: var(--text-gray);
    font-family: "Space Grotesk", sans-serif;
font-weight: 700;
font-size: 14px;
line-height: 100%;
letter-spacing: 2px;
text-align: start;
vertical-align: middle;
text-transform: uppercase;

}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate(30px, -50%);
  }

  to {
    opacity: 1;
    transform: translate(0, -50%);
  }
}

/* Marquee */
.ed-marquee-section {
  background: linear-gradient(0deg, #0b5e99 0%, #139dff 100%);
  padding: 16px 0;
  overflow: hidden;
}

.ed-marquee-track {
  display: flex;
  animation: marquee 30s linear infinite;
}

.ed-marquee-content {
  display: flex;
  align-items: center;
  gap: 30px;
  padding-right: 60px;
  flex-shrink: 0;
}

.ed-marquee-content span {
  letter-spacing: 3px;
  color: var(--primary-dark);
  white-space: nowrap;
  font-family: "Neue Plak", sans-serif;
font-weight: 400;
font-size: 18px;
line-height: 100%;
vertical-align: middle;

}

.ed-marquee-dot {
  width: 8px;
  height: 8px;
  background: var(--primary-dark);
  border-radius: 50%;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.w-10 {
  width: 10%;
}

.justify-content-between {
  justify-content: space-between !important;
}
/* Trusted By */
.ed-trusted-section {
  padding: 80px 60px;
  background: rgba(255, 255, 255, 0.02);
}

.ed-trusted-label {
  text-align: center;
  text-transform: uppercase;
  color: #a0a0a0;
  margin-bottom: 40px;
  font-family: "Space Grotesk", sans-serif;
font-weight: 700;
font-size: 20px;
line-height: 100%;
letter-spacing: 3px;
vertical-align: middle;

}

.ed-trusted-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.ed-trusted-logo {
  opacity: 0.5;
  transition: opacity 0.3s;
  height: 32px;
}

.ed-trusted-logo:hover {
  opacity: 1;
}

/* About Section */
.ed-about-section {
  padding: 120px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ed-about-content h2 {
  font-family: "Neue Plak", "Montserrat", sans-serif;
  font-size: 75px;
  line-height: 1;
  margin-bottom: 30px;
  font-weight: 900;
}

.ed-about-content h2 span {
  color: var(--accent-blue);
  font-family: "Neue Plak", "Montserrat", sans-serif;
font-weight: 200;
font-size: 72px;
line-height: 72px;
letter-spacing: 0%;
vertical-align: middle;

}

.ed-about-content p {
  color: var(--text-gray);
  margin-bottom: 20px !important;
  font-family: "Space Grotesk", sans-serif;
font-weight: 400;
font-size: 18px;
line-height: 32.4px;
letter-spacing: 0%;
vertical-align: middle;

}

.ed-about-copy > *:last-child {
  margin-bottom: 0;
}

.ed-about-copy ul,
.ed-about-copy ol {
  margin: 0 0 20px 22px;
  color: var(--text-gray);
}

.ed-about-copy li {
  margin-bottom: 10px;
  line-height: 1.8;
}

.ed-about-image {
  position: relative;
}

.ed-about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.ed-about-image::before {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid #F5A623;
  z-index: -1;
}

/* Stats Section */
.ed-stats-section {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 382px;
  overflow: hidden;
}

/* Background image */
.ed-stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/banner-dots-bg.png");
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.ed-stats-section--with-image::before {
  background-image: var(--ed-stats-bg-image);
}

/* Gradient overlay */
.ed-stats-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105.71deg,
    rgba(245, 166, 35, 0.1) 0%,
    rgba(107, 47, 214, 0.1) 100%
  );
  z-index: 2;
}

/* Cards wrapper */
.ed-stats-wrapper {
  position: relative;
  z-index: 3;
  display: flex;
    justify-content: space-evenly;
  padding: 100px;
}

/* Card */
.ed-stat-box {
  width: 212px;
  height: 182px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(245, 166, 35, 0.2);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.ed-stat-box:hover {
  background: rgba(245, 166, 35, 0.1);
  border-color: #f5a623;
  transform: translateY(-5px);
}

/* Number */
.ed-stats-number {
  font-family: "Neue Plak", "Montserrat", sans-serif;
  font-size: 45px;
  line-height: 72px;
  color: #fff;
font-weight: 400;
letter-spacing: 0%;
text-align: center;
vertical-align: middle;

}

/* Label */
.ed-stats-label {
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
font-weight: 700;
font-size: 18px;
line-height: 100%;
text-align: center;
vertical-align: middle;

}

/* What to Expect Section */
.ed-expect-section {
  padding: 120px 60px;
  background: rgba(255, 255, 255, 0.02);
}

.ed-expect-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.ed-expect-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s;
}

.ed-expect-card:hover {
  border-color: var(--accent-blue);
  transform: translateY(-5px);
  background: rgba(245, 166, 35, 0.05);
}

.ed-expect-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: rgba(245, 166, 35, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ed-expect-icon svg {
  width: 40px;
  height: 40px;
  fill: var(--accent-blue);
}

.ed-expect-card h3 {
  font-family: "Syne", sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

.ed-expect-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-gray);
}

/* Speakers Section */
.ed-speakers-section {
  padding: 120px 60px;
}

.ed-section-header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
}

.ed-section-title {
font-family: "Neue Plak", "Montserrat", sans-serif;
  margin-bottom: 30px;
  font-weight: 900;
font-size: 60px;
line-height: 72px;
letter-spacing: 0%;
vertical-align: middle;
display: flex;
align-items: center;
gap: 1.5rem;
}

.ed-section-title span {
  color: var(--accent-blue);
  font-family: "Neue Plak", "Montserrat", sans-serif;
font-weight: 200;
font-size: 60px;
line-height: 72px;
letter-spacing: 0%;
vertical-align: middle;

}

.ed-section-link {
  color: var(--accent-blue);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
}

.ed-section-link:hover {
  gap: 16px;
}

.ed-speakers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.ed-speaker-card {
  position: relative;
  cursor: default;
  overflow: hidden;
}

.ed-speaker-image {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.4s, transform 0.4s;
}

.ed-speaker-card:hover .ed-speaker-image {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.ed-speaker-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 20px;
  background: linear-gradient(transparent, rgba(10, 10, 15, 0.95));
  display: flex;
  flex-direction: column;
  gap: .25rem;
}

.ed-speaker-name {
  font-family: "Syne", sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
line-height: 100%;
letter-spacing: 0%;
vertical-align: middle;

}

.ed-speaker-role {
  font-size: 13px;
  color: var(--text-gray);
  font-family: "Space Grotesk", sans-serif;
font-weight: 400;
line-height: 100%;
letter-spacing: 0%;
vertical-align: middle;
}

.ed-speaker-company {
  font-size: 12px;
  color:#139DFF;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 8px;
}

.ed-speaker-plus {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background:#139DFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.ed-speaker-card:hover .ed-speaker-plus {
  background: #b0d0f0;
  transform: rotate(90deg);
}

.ed-speaker-plus svg {
  width: 20px;
  height: 20px;
  fill: var(--primary-dark);
}

/* VIP Testimonial Section */
.ed-testimonial-section {
  padding: 120px 60px 0px 60px;
  background: linear-gradient(
    135deg,
    rgba(245, 166, 35, 0.05) 0%,
    rgba(107, 47, 214, 0.05) 100%
  );
}

.ed-testimonial-slider {
  max-width: 1100px;
  margin: 0 auto;
}

.ed-testimonial-slider-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
}

.ed-testimonial-counter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Syne", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-white);
}

.ed-testimonial-controls {
  display: inline-flex;
  gap: 12px;
}

.ed-testimonial-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: all 0.2s ease;
}

.ed-testimonial-arrow:hover:not(:disabled) {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
}

.ed-testimonial-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.ed-testimonial-slider-window {
  overflow: hidden;
}

.ed-testimonial-track {
  display: flex;
  transition: transform 0.35s ease;
  will-change: transform;
}

.ed-testimonial-slide {
  flex: 0 0 100%;
  min-width: 100%;
}

.ed-testimonial-content {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.ed-testimonial-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--accent-blue);
}

.ed-testimonial-quote {
  position: relative;
}

.ed-testimonial-quote::before {
  content: '"';
  font-family: "Bebas Neue", sans-serif;
  font-size: 150px;
  color: var(--accent-blue);
  opacity: 0.2;
  position: absolute;
    top: -45px;
    left: -27px;
  line-height: 1;
}

.ed-testimonial-text {
  font-family: "Syne", sans-serif;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
line-height: 38.4px;
letter-spacing: 0%;
vertical-align: middle;

}

.ed-testimonial-author {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-blue);
  font-family: "Space Grotesk", sans-serif;
font-weight: 700;
line-height: 100%;
letter-spacing: 0%;
vertical-align: middle;

}

.ed-testimonial-role {
  font-size: 14px;
  color: var(--text-gray);
  margin-top: 4px;
  font-family: "Space Grotesk", sans-serif;
font-weight: 400;
line-height: 100%;
letter-spacing: 0%;
vertical-align: middle;

}

/* Media Coverage */
.ed-media-section {
  padding: 120px 60px;
  background: rgba(255, 255, 255, 0.02);
}

.ed-media-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.ed-media-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}

.ed-media-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.1);
}

.ed-media-logo {
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
}

.ed-media-logo img {
  max-height: 30px;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}

.ed-media-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.ed-media-content {
  padding: 24px;
}

.ed-media-title {
  font-family: "Syne", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 12px;
  color: white;
}

.ed-media-excerpt {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.6;
}

/* Quotes */
.ed-quotes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.ed-quote-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 30px;
}

.ed-quote-icon {
  font-family: "Bebas Neue", sans-serif;
  font-size: 60px;
  color: var(--accent-blue);
  line-height: 1;
  margin-bottom: 20px;
}

.ed-quote-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-gray);
}

/* News Section */
.ed-news-section {
  padding: 120px 60px;
}

.ed-news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.ed-news-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.ed-news-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.ed-news-card:hover .ed-news-image {
  transform: scale(1.1);
}

.ed-news-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(transparent 30%, rgba(10, 10, 15, 0.95));
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.ed-news-tags {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  gap: 8px;
}

.ed-news-tag {
  background: rgba(10, 10, 15, 0.8);
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ed-news-title {
  font-family: "Syne", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
}

.ed-news-excerpt {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.5;
  margin-bottom: 16px;
}

.ed-news-link {
  color: var(--accent-blue);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Tickets Section */
.ed-tickets-section {
  padding: 120px 60px;
background: linear-gradient(180deg, #0A0A0F 0%, #1A1A2E 100%);
  background-image: url('../images/bg-choose-your.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.ed-tickets-header {
  text-align: center;
  margin-bottom: 60px;
}

.ed-tickets-title {
  font-family: "Montserrat", sans-serif;
  font-size: 60px !important;
  margin-bottom: 16px;
  font-weight: 700;
  color: var(--text-white) !important;
}
.ed-tickets-title span {
  font-weight: 300;
}

.ed-tickets-header p {
  font-size: 18px;
  color: var(--text-gray);
}

.ed-tickets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.ed-ticket-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px;
  position: relative;
  transition: all 0.3s;
  backdrop-filter: blur(25.299999237060547px)
}

.ed-ticket-card:hover {
  border-color: var(--accent-blue);
  transform: translateY(-5px);
}

.ed-ticket-card.featured,
.ed-tickets-grid .ed-ticket-card:nth-child(2) {
  background: linear-gradient(145.16deg, rgba(107, 47, 214, 0.2) 0%, rgba(245, 166, 35, 0.1) 100%);
  border-color: var(--accent-blue);
}

.ed-ticket-card.featured::before,
.ed-tickets-grid .ed-ticket-card:nth-child(2)::before {
  content: "MOST POPULAR";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--accent-blue);
  color: var(--primary-dark);
  padding: 8px 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
}

.ed-ticket-label {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 100;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 2px;
  vertical-align: middle;
  text-transform: uppercase;
  color: var(--text-white);
  margin-bottom: 8px;
}

.ed-ticket-type {
  text-transform: uppercase;
  color: white;
  margin-bottom: 8px;
font-family: "Neue Plak", "Montserrat", sans-serif;
font-weight: 800;
font-size: 28px;
line-height: 100%;
letter-spacing: 0%;
vertical-align: middle;
}

.ed-ticket-name {
  font-family: "Syne", sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.ed-ticket-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 30px;
}

.ed-ticket-price-old {
  color: var(--text-gray);
  text-decoration: line-through;
  font-family: "Neue Plak", "Montserrat", sans-serif;
font-weight: 200;
font-size: 20px;
line-height: 100%;
letter-spacing: 0%;
vertical-align: middle;
}

.ed-ticket-price-current {
  font-weight: 100;
  font-family: "Neue Plak", "Montserrat", sans-serif;
font-size: 45px;
line-height: 56px;
letter-spacing: 0%;
vertical-align: middle;

}

.ed-ticket-features {
  list-style: none;
  margin-bottom: 30px;
  padding-left: 0px;
}

.ed-ticket-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 14px;
  color: var(--text-gray);
}

.ed-ticket-features li svg {
  width: 18px;
  height: 18px;
  fill: var(--accent-blue);
  flex-shrink: 0;
}

.ed-ticket-btn {
  width: 100%;
  padding: 18px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}

.ed-ticket-btn-primary {
  display: block;
  background: var(--gradient-purple);
  color: var(--text-white);
  width: 100% !important;
  text-align: center;
  box-sizing: border-box;
}

.ed-ticket-btn-secondary {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: var(--text-white);
}

.ed-ticket-btn:hover {
  transform: translateY(-2px);
}

/* Venue Section */
.ed-venue-section {
  padding: 120px 60px;
  position: relative;
}

.ed-venue-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.venue-info h2 {
  font-size: 72px;
  margin-bottom: 20px;
  font-family: "Neue Plak", "Montserrat", sans-serif;
font-weight: 700;
line-height: 100%;
letter-spacing: 0%;
vertical-align: middle;
}

.venue-info h3 {
  font-family: "Syne", sans-serif;
  font-size: 24px;
  color: var(--accent-blue);
  margin-bottom: 24px;
font-weight: 700;
line-height: 100%;
letter-spacing: 0%;
vertical-align: middle;

}

.venue-info p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 30px;
}

.ed-venue-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.ed-venue-detail {
  background: rgba(255, 255, 255, 0.03);
  padding: 20px;
  border-left: 4px solid var(--accent-blue);
}

.ed-venue-detail-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-gray);
  margin-bottom: 8px;
}

.ed-venue-detail-value {
  font-family: "Syne", sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.ed-venue-image {
  position: relative;
}

.ed-venue-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.ed-venue-image::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 200px;
  height: 200px;
  background: var(--gradient-purple);
  z-index: -1;
}

/* FAQ Section */
.ed-faq-section {
  padding: 120px 60px;
  background: rgba(255, 255, 255, 0.02);
}

.ed-faq-container {
  /* max-width: 900px;
  margin: 0 auto; */
}

.ed-faq-header {
  font-family: "Montserrat", sans-serif;
  font-size: 60px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 60px;
}
.ed-faq-header span {
  font-weight: 200;
  color: #139DFF;
}

.ed-faq-list{
      margin: 0 200px;
}
.ed-faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ed-faq-question {
  width: 100%;
  padding: 24px 0;
  background: transparent;
  border: none;
  color: var(--text-white);
  font-family: "Syne", sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ed-faq-question svg {
  width: 24px;
  height: 24px;
  fill: var(--accent-blue);
  transition: transform 0.3s;
}

.ed-faq-item.active .ed-faq-question svg {
  transform: rotate(45deg);
}

.ed-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s;
}

.ed-faq-item.active .ed-faq-answer {
  max-height: 200px;
}

.ed-faq-answer p {
  padding: 0 0 24px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-gray);
}

/* Newsletter Section */
.ed-newsletter-section {
  padding: 100px 60px;
  background: linear-gradient(
    135deg,
    rgba(245, 166, 35, 0.1) 0%,
    rgba(107, 47, 214, 0.1) 100%
  );
  text-align: center;
}

.ed-newsletter-title {
  font-family: "Montserrat", sans-serif;
  font-size: 60px !important;
  font-weight: 700 !important;
  margin-bottom: 16px;
  color: var(--text-white) !important;
}
.ed-newsletter-title span {
  font-weight: 200;
  color: #139DFF;
}

.ed-newsletter-section p {
  color: var(--text-gray);
  margin-bottom: 40px;
  font-family: "Space Grotesk", sans-serif;
font-weight: 300;
font-size: 24px;
line-height: 100%;
letter-spacing: 0%;
text-align: center;
vertical-align: middle;
}
.ed-newsletter-text{
  max-width: 600px;
  margin: 0 auto 40px;
}

.ed-newsletter-disclaimer {
  max-width: 600px;
  margin: 20px auto 0;
  font-size: 14px !important;
  line-height: 1.6;
}

.ed-newsletter-form {
  display: flex;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.ed-newsletter-input {
  flex: 1;
  padding: 18px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
}

.ed-newsletter-input::placeholder {
  color: var(--text-gray);
}

.ed-newsletter-input:focus {
  outline: none;
  border-color: var(--accent-blue);
}

.ed-newsletter-btn {
  background: var(--gradient-purple);
  color: var(--text-white);
  padding: 18px 40px;
  border: none;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.3s;
}

.ed-newsletter-btn:hover {
  transform: translateY(-2px);
}

/* Footer */
.ed-footer {
  padding: 80px 60px 110px;
  background: var(--primary-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.ed-footer .ed-logo img {
  width: 200px;
}

.ed-footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .ed-logo {
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-gray);
  margin-bottom: 24px;
}

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

.ed-footer-social a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  transition: background 0.3s;
}

.ed-footer-social a:hover {
  background: var(--accent-blue);
}

.ed-footer-social svg {
  width: 20px;
  height: 20px;
  fill: var(--text-white);
}

.footer-col h4 {
  font-family: "Syne", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.footer-col ul {
  list-style: none;
  padding-left: 0px;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--text-white);
}

.ed-footer-bottom {
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ed-footer-bottom p {
  font-size: 13px;
  color: var(--text-gray);
}

.ed-footer-legal {
  display: flex;
  gap: 30px;
}

.ed-footer-legal a {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s;
}

.ed-footer-legal a:hover {
  color: var(--text-white);
}

/* Sticky Countdown */
.ed-sticky-countdown {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: linear-gradient(115deg, #0f172a 0%, #1e293b 100%);
  padding: 16px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #F5A6234D
}

.ed-countdown-label {
  font-family: "Space Grotesk", sans-serif;
font-weight: 400;
font-size: 18px;
line-height: 100%;
letter-spacing: 1px;
vertical-align: middle;
text-transform: uppercase;
color: #FFFFFF;
}

.ed-countdown-timer {
  display: flex;
  gap: 30px;
}

.ed-countdown-item {
  text-align: center;
}

.ed-countdown-number {
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-weight: 300;
  line-height: 1;
  color: var(--text-white);
}

.ed-countdown-unit {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.ed-countdown-cta {
  background: var(--gradient-purple);
  color: var(--text-white);
  padding: 16px 40px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
      line-height: 100%;
text-align: center;
vertical-align: middle;

}

.ed-countdown-cta:hover {
  transform: translateY(-2px);
}

/* Speaker Modal */
.ed-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 15, 0.95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.ed-modal-overlay.active {
  display: flex;
}

.ed-modal-content {
  background: #1a1a2e;
  max-width: 800px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  position: relative;
}

.ed-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.ed-modal-close svg {
  width: 20px;
  height: 20px;
  fill: var(--text-white);
}

.ed-modal-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

.ed-modal-info {
  padding: 40px;
}

.ed-modal-name {
  font-family: "Syne", sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
}

.ed-modal-role {
  font-size: 16px;
  color: var(--text-gray);
  margin-bottom: 8px;
}

.ed-modal-company {
  font-size: 14px;
  color: var(--accent-blue);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.ed-modal-bio {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-gray);
  margin-bottom: 24px;
}

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

.ed-modal-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  transition: background 0.3s;
}

.ed-modal-social a:hover {
  background: var(--accent-blue);
}

.ed-modal-social svg {
  width: 18px;
  height: 18px;
  fill: var(--text-white);
}

@media screen and (min-width: 767px) and (max-width: 1200px) {
  .ed-tickets-title,
  .ed-section-title {
    font-size: 40px !important;
    line-height: 1.2 !important;
    flex-wrap: wrap;
  }
  .ed-section-title span {
    font-size: 40px !important;
    line-height: 1.2 !important;
  }
  .ed-hero {
    min-height: 65vh;
  }
}
/* Responsive */
@media (max-width: 1200px) {
  .ed-hero-stats {
    display: none;
  }
}

@media (max-width: 1025px) {
  .ed-footer {
    padding: 80px 40px 130px;
  }
  .ed-navbar {
    padding: 20px 30px;
  }

  .ed-nav-links {
    display: none;
  }

  .ed-nav-buttons {
    display: none !important;
  }

  .ed-hamburger {
    display: flex;
  }

  .ed-hero {
    padding: 140px 30px 100px;
  }

  .ed-hero-title {
    font-size: 80px;
  }

  /* Section paddings */
  .ed-trusted-section,
  .ed-about-section,
  .ed-expect-section,
  .ed-speakers-section,
  .ed-testimonial-section,
  .ed-media-section,
  .ed-news-section,
  .ed-tickets-section,
  .ed-venue-section,
  .ed-faq-section,
  .ed-newsletter-section {
    padding: 80px 40px;
  }

  .ed-about-section,
  .ed-venue-content,
  .ed-testimonial-content {
    grid-template-columns: 1fr;
  }

  .ed-about-section {
    gap: 40px;
  }

  .ed-venue-content {
    gap: 32px;
  }

  .venue-info h2 {
    font-size: 52px;
    line-height: 1.1;
  }

  .venue-info h3 {
    font-size: 22px;
  }

  .ed-venue-image img {
    height: auto;
    max-height: 380px;
  }

  .ed-venue-image::after {
    display: none;
  }

  .ed-about-content h2 {
    font-size: 48px;
    line-height: 1.1;
  }

  .ed-about-content h2 span {
    font-size: 48px !important;
    line-height: 1.1 !important;
  }

  .ed-about-image img {
    height: auto;
    max-height: 400px;
  }

  .ed-about-image::before {
    top: -10px;
    right: -10px;
  }

  .ed-testimonial-image {
    max-width: 200px;
    margin: 0 auto;
  }

  .ed-stats-section {
    height: auto;
    margin: 100px auto;
  }

  .ed-stats-wrapper {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 60px 30px;
  }

  .ed-stat-box {
    width: calc(50% - 10px);
    max-width: 300px;
  }

  .ed-expect-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ed-speakers-grid,
  .ed-media-grid,
  .ed-quotes-grid,
  .ed-news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ed-tickets-grid {
    grid-template-columns: 1fr;
  }

  .ed-footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .ed-faq-list {
    margin: 0;
  }
}

@media (max-width: 767px) {
  /* Navbar */
  .ed-navbar {
    padding: 15px 20px;
  }

  .ed-navbar.scrolled {
    padding: 12px 20px;
  }

  /* Hero */
  .ed-hero {
    padding: 120px 20px 60px;
    min-height: 75vh;
    justify-content: center;
  }

  .ed-hero-content {
    gap: 1rem;
  }

  .ed-hero-title {
    font-size: 56px;
  }

  .ed-hero-heading-image-wrap {
    width: 100%;
    max-width: 760px;
  }

  .ed-hero-title .gold {
    font-size: 4rem;
  }

  .ed-hero-title .outline img {
    max-width: 280px;
    margin: 0 auto;
  }

  .ed-hero-date {
    font-size: 18px;
  }

  .ed-hero-location {
    font-size: 16px;
  }

  .ed-hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .ed-btn-primary,
  .ed-btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .ed-hero-stats {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }

  .ed-stat-item {
    text-align: center;
  }

  /* Marquee */
  .ed-marquee-content span {
    font-size: 16px;
  }

  /* Sections */
  .ed-trusted-section,
  .ed-about-section,
  .ed-expect-section,
  .ed-speakers-section,
  .ed-testimonial-section,
  .ed-media-section,
  .ed-news-section,
  .ed-tickets-section,
  .ed-venue-section,
  .ed-faq-section,
  .ed-newsletter-section {
    padding: 60px 24px;
  }

  .ed-faq-list {
    margin: 0;
  }

  /* Section Titles */
  .ed-section-title,
  .ed-about-content h2,
  .venue-info h2,
  .ed-faq-header,
  .ed-tickets-title,
  .ed-newsletter-title {
    font-size: 36px !important;
    line-height: 1.2 !important;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .ed-section-title span {
    font-size: 36px !important;
    line-height: 1.2 !important;
  }

  .ed-section-header {
    flex-direction: column;
    gap: 20px;
  }

  /* Trusted logos */
  .ed-trusted-logos {
    gap: 30px;
  }

  /* About */
  .ed-about-content p {
    font-size: 16px;
  }

  .ed-about-content h2 span {
    font-size: 36px !important;
    line-height: 1.2 !important;
  }

  .ed-about-image img {
    height: auto;
    max-height: 280px;
  }

  .ed-about-image::before {
    display: none;
  }

  /* Hero logo */
  .ed-hero-title .outline img {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Newsletter */
  .ed-newsletter-section p {
    font-size: 18px;
  }

  /* Stats */
  .ed-stats-section {
    margin: 60px auto;
    height: auto;
  }

  .ed-stats-wrapper {
    padding: 40px 20px;
  }

  .ed-stat-box {
    width: 100%;
    max-width: 280px;
  }

  .ed-stats-number {
    font-size: 38px;
  }

  .ed-stats-label {
    font-size: 16px;
  }

  /* Expect */
  .ed-expect-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Speakers */
  .ed-speakers-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Testimonial */
  .ed-testimonial-slider-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .ed-testimonial-content {
    gap: 30px;
  }

  .ed-testimonial-text {
    font-size: 20px;
  }

  .ed-testimonial-quote::before {
    font-size: 100px;
    top: -40px;
  }

  /* Media */
  .ed-media-grid,
  .ed-quotes-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* News */
  .ed-news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Tickets */
  .ed-tickets-grid {
    gap: 20px;
  }

  .ed-ticket-card {
    padding: 30px 20px;
  }

  .ed-ticket-price-current {
    font-size: 48px;
  }

  /* Venue */
  .venue-info h2 {
    font-size: 40px;
    line-height: 1.1;
  }

  .venue-info h3 {
    font-size: 18px;
  }

  .venue-info p {
    font-size: 15px;
  }

  .ed-venue-details {
    grid-template-columns: 1fr;
  }

  .ed-venue-image img {
    height: auto;
    max-height: 260px;
  }

  .ed-venue-image::after {
    display: none;
  }

  /* FAQ */
  .ed-faq-question {
    font-size: 16px;
    padding: 20px 0;
  }

  .ed-faq-answer p {
    font-size: 14px;
  }

  /* Newsletter */
  .ed-newsletter-form {
    flex-direction: column;
  }

  .ed-newsletter-input,
  .ed-newsletter-btn {
    width: 100%;
  }

  /* Footer */
  .ed-footer {
    padding: 60px 20px 200px;
  }

  .ed-footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ed-footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .ed-footer-legal {
    flex-wrap: wrap;
    gap: 34px;
  }

  /* Sticky Countdown */
  .ed-sticky-countdown {
    flex-direction: column;
    gap: 15px;
    padding: 16px 20px;
    text-align: center;
  }

  .ed-countdown-timer {
    gap: 15px;
    justify-content: center;
  }

  .ed-countdown-number {
    font-size: 28px;
  }

  .ed-countdown-cta {
    width: 100%;
    padding: 14px 30px;
  }

  /* Modal */
  .ed-modal-content {
    grid-template-columns: 1fr;
    max-width: 90%;
  }

  .ed-modal-image {
    min-height: 300px;
  }

  .ed-modal-name {
    font-size: 24px;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  /* Sections */
  .ed-trusted-section,
  .ed-about-section,
  .ed-expect-section,
  .ed-speakers-section,
  .ed-testimonial-section,
  .ed-media-section,
  .ed-news-section,
  .ed-tickets-section,
  .ed-venue-section,
  .ed-faq-section,
  .ed-newsletter-section {
    padding: 50px 16px;
  }

  .ed-faq-list {
    margin: 0;
  }

  .ed-footer {
    padding: 50px 16px 160px;
  }

  /* Mobile Menu */
  .ed-mobile-menu {
    width: 100%;
  }

  .ed-mobile-logo img {
    height: 25px;
  }

  .ed-mobile-menu-links a {
    font-size: 16px;
  }

  /* Hero */
  .ed-hero-title {
    font-size: 40px;
  }

  .ed-hero-heading-image-wrap {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }

  .ed-hero-title .gold {
    font-size: 3rem;
  }

  .ed-hero-title .outline img {
    max-width: 200px;
    margin: 0 auto;
  }

  .ed-hero-date {
    font-size: 16px;
  }

  .ed-hero-badge span {
    font-size: 11px;
  }

  /* Section Titles */
  .ed-section-title,
  .ed-about-content h2,
  .venue-info h2,
  .ed-faq-header,
  .ed-tickets-title,
  .ed-newsletter-title {
    font-size: 28px !important;
    line-height: 1.2 !important;
    flex-wrap: wrap;
    gap: 0.4rem;
  }

  .ed-section-title span,
  .ed-about-content h2 span {
    font-size: 28px !important;
    line-height: 1.2 !important;
  }

  .ed-newsletter-section p {
    font-size: 16px;
  }

  .ed-about-section {
    gap: 24px;
  }

  /* Stats */
  .ed-stats-wrapper {
    padding: 30px 15px;
  }

  .ed-stats-number {
    font-size: 32px;
    line-height: 1.2;
  }

  .ed-stats-label {
    font-size: 14px;
  }

  /* Buttons */
  .ed-btn-primary,
  .ed-btn-secondary {
    padding: 14px 30px;
    font-size: 14px;
  }

  /* Testimonial */
  .ed-testimonial-text {
    font-size: 18px;
  }

  /* Ticket cards */
  .ed-ticket-name {
    font-size: 24px;
  }

  .ed-ticket-price-current {
    font-size: 40px;
  }

  /* Countdown */
  .ed-countdown-timer {
    gap: 10px;
  }

  .ed-countdown-item {
    font-size: 12px;
  }

  .ed-countdown-number {
    font-size: 24px;
  }

  .ed-countdown-label {
    font-size: 12px;
  }
}
@media screen and (max-width: 1350px) and (min-width: 1025px) {
  .ed-hero {
    padding: 100px 60px 0px;
  }
}