:root {
  --primary-purple: #7c3aed;
  --dark-purple: #5b21b6;
  --accent-pink: #ec4899;
  --text-primary: #111827;
  --text-secondary: #6b7280;
  --text-light: #9ca3af;
  --border-color: #e5e7eb;
  --bg-gray: #f9fafb;
  --white: #ffffff;
  --orange: #ff6b35;
}

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

body {
  font-family: "Urbanist", sans-serif;
  color: inherit;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Container adjustments */
.container-fluid {
  padding-left: 40px;
  padding-right: 40px;
}

@media (max-width: 767px) {
  .container-fluid {
    padding-left: 20px;
    padding-right: 20px;
  }
}
a:hover {
  color: inherit;
}
/* home pages */
/* Announcement Bar */
.announcement-bar {
  background: #f6f7f7;
  /* position: sticky; */
  top: 0;
  z-index: 1001;
}

.announcement-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: center;
}

.announcement-btn {
  padding: 8px 20px;
  background: var(--primary-purple);
  color: var(--white);
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
  display: inline-block;
}

.announcement-btn:hover {
  background: var(--dark-purple);
  color: var(--white);
  transform: translateY(-2px);
  text-decoration: none;
}

/* Header */
header {
  background: var(--white);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0px;
  z-index: 1000;
}

header .navbar {
  padding: 0.75rem 0;
}

.logo {
  font-size: 28px;
  font-weight: 900;
  color: var(--primary-purple);
  text-decoration: none;
}

.logo:hover {
  color: var(--primary-purple);
}

.navbar-nav {
  gap: 32px;
}

.nav-link {
  color: var(--text-primary) !important;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.2s;
  padding: 0.5rem 0 !important;
}

.nav-link:hover {
  color: var(--primary-purple) !important;
}

/* Mobile navbar styles */
@media (max-width: 991.98px) {
  header {
    top: 0;
  }

  .navbar-nav {
    gap: 0;
    margin-top: 1rem;
  }

  .nav-link {
    padding: 0.75rem 0 !important;
  }

  .header-buttons {
    margin-top: 1rem;
    width: 100%;
  }

  .header-buttons .announcement-btn {
    width: 100%;
    text-align: center;
  }

  .announcement-text {
    font-size: 13px;
  }
}

.btn-register {
  padding: 12px 24px;
  background: var(--primary-purple);
  color: var(--white);
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-register:hover {
  background: var(--dark-purple);
  transform: translateY(-2px);
}

.header-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn-header {
  padding: 10px 20px;
  background: #00000008;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-header:hover {
  color: black;
  border-color: black;
  transform: translateY(-2px);
}

/* Hero Section - WEF Alternative Style */
.hero {
  background-color: #1e2f54;
  padding: 80px 40px;
  color: var(--white);
}

.hero-container {
  /* max-width: 1400px; */
  /* margin: 0 auto; */
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  padding-right: 40px;
}

.hero-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
  opacity: 0.9;
}

.hero h1 {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 32px;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: var(--white);
  color: #1e3a8a;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
}

.hero-button:hover {
  transform: translateX(8px);
  color: #1e3a8a;
}
.hero-button:hover svg {
  fill: #1e3a8a;
}

.hero-button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
a {
  text-decoration: none !important;
}
/* Hero Video */
.hero-video {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/9;
  cursor: pointer;
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
}

.video-label {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  align-self: flex-start;
}

.video-play {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  align-self: flex-start;
}

.play-button {
  width: 56px;
  height: 56px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.hero-video:hover .play-button {
  transform: scale(1.1);
}

.play-button svg {
  width: 20px;
  height: 20px;
  fill: #1e3a8a;
  margin-left: 3px;
}

.video-play-text {
  font-size: 15px;
  font-weight: 600;
}

/* Stats Section */
.stats {
  padding: 60px 40px;
  background: var(--white);
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

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

.stat-number {
  font-size: 48px;
  font-weight: 900;
  color: var(--primary-purple);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 16px;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Responsive Hero */
@media (max-width: 1025px) {
  .hero-container {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-right: 0;
  }

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

/* Stats Section */
.stats {
  padding: 60px 40px;
  background: var(--white);
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

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

.stat-number {
  font-size: 48px;
  font-weight: 900;
  color: var(--primary-purple);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 16px;
  color: var(--text-secondary);
  font-weight: 600;
}

/* News Section - news.worldef.com style */
.news-section {
  padding: 80px 40px;
  background: var(--bg-gray);
}

.news-container {
  max-width: 1000px;
  margin: 0 auto;
}

.section-title {
  font-size: 52px;
  font-weight: 700;
  color: var(--primary-purple);
  /* margin-bottom: 48px; */
}

.spotlight-section-title {
  font-size: 52px;
  font-weight: 700;
  color: var(--primary-purple);
  margin-bottom: 48px;
}

/* Single column news layout like news.worldef.com */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.news-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
  border: 2px solid var(--border-color);
  display: flex;
  flex-direction: row;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: var(--primary-purple);
}

.news-card-image {
  width: 280px;
  min-height: 200px;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-gray);
  flex-shrink: 0;
}

.news-card-content {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-category {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(124, 58, 237, 0.1);
  color: var(--primary-purple);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  width: fit-content;
}

.news-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-primary);
  line-height: 1.3;
}

.news-title a {
  color: var(--text-primary);
  text-decoration: none;
}

.news-title a:hover {
  color: var(--primary-purple);
}

.news-excerpt {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: var(--text-light);
}

.news-author {
  font-weight: 600;
  color: var(--text-secondary);
}

/* Most Popular - After Hero Section */
.most-popular-hero {
  padding: 60px 40px;
  background: var(--white);
}

.most-popular-container {
  max-width: 1200px;
  margin: 0 auto;
}

.most-popular {
  background: rgba(124, 58, 237, 0.05);
  padding: 40px;
  border-radius: 16px;
  border: 2px solid rgba(124, 58, 237, 0.2);
}

.most-popular h3 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 32px;
  color: var(--primary-purple);
  text-align: center;
}

.popular-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.popular-item {
  padding: 20px;
  background: var(--white);
  border-radius: 12px;
  border: 2px solid var(--border-color);
  transition: all 0.3s;
}

.popular-item:hover {
  border-color: var(--primary-purple);
  transform: translateY(-4px);
}

.popular-item a {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  line-height: 1.4;
  display: block;
}

.popular-item a:hover {
  color: var(--primary-purple);
}

.popular-time {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 8px;
}

/* TOP 20 Countries - Redesigned */
.countries-section {
  padding: 80px 40px;
  background: var(--white);
}

.countries-container {
  max-width: 1200px;
  margin: 0 auto;
}

.countries-header {
  text-align: center;
  margin-bottom: 48px;
}

.countries-header h2 {
  font-size: 48px;
  font-weight: 900;
  color: var(--primary-purple);
  margin-bottom: 16px;
}

.countries-header p {
  font-size: 18px;
  color: var(--text-secondary);
}

.countries-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.country-card {
  padding: 0;
  background: transparent;
  border-radius: 0;
  text-align: center;
  transition: all 0.3s;
}

.country-card:hover {
  transform: scale(1.2);
}

.country-flag {
  font-size: 48px;
  cursor: pointer;
}

.country-name {
  display: none;
}

/* Trusted By - Real Logos */
.trusted-section {
  padding: 80px 40px;
  background: var(--bg-gray);
}

.trusted-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.trusted-container h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 48px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.logos-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: center;
  justify-content: center;
}

.logo-item {
  opacity: 0.3;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-item:hover {
  opacity: 0.8;
}

.logo-item img {
  max-width: 80px;
  height: 40px;
  object-fit: contain;
}

.logo-item:hover img {
  filter: grayscale(0%);
}

/* Footer - Completely New Design */
footer {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  color: var(--white);
  padding: 100px 40px 40px;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
}

.footer-about {
  padding-right: 40px;
}

.footer-about h3 {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 24px;
  background: linear-gradient(
    135deg,
    var(--primary-purple) 0%,
    var(--accent-pink) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-tagline {
  font-size: 14px;
  color: var(--primary-purple);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-about p {
  font-size: 16px;
  line-height: 1.8;
  opacity: 0.7;
  margin-bottom: 32px;
}

.footer-contact {
  margin-bottom: 32px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  opacity: 0.8;
}

.footer-contact-item svg {
  width: 20px;
  height: 20px;
  stroke: var(--primary-purple);
}

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

.social-icon {
  width: 48px;
  height: 48px;
  background: rgba(124, 58, 237, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.social-icon:hover {
  background: var(--primary-purple);
  border-color: var(--accent-pink);
  transform: translateY(-4px);
}

.footer-column h4 {
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  color: var(--white);
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 16px;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.2s;
  display: inline-block;
}

.footer-column a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.footer-newsletter {
  margin-top: 32px;
}

.footer-newsletter h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: var(--white);
  font-size: 14px;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-btn {
  padding: 12px 24px;
  background: var(--primary-purple);
  border: none;
  border-radius: 8px;
  color: var(--white);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.newsletter-btn:hover {
  background: var(--accent-pink);
}

.footer-middle {
  padding: 60px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.footer-stat-item h4 {
  font-size: 42px;
  font-weight: 900;
  color: var(--primary-purple);
  margin-bottom: 8px;
}

.footer-stat-item p {
  font-size: 14px;
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-bottom {
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 14px;
  opacity: 0.5;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}

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

/* Responsive */
@media (max-width: 1025px) {
  .popular-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .logos-grid {
    gap: 32px;
  }

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

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

  /* News cards responsive */
  .news-card {
    flex-direction: column;
  }

  .news-card-image {
    width: 100%;
    min-height: 240px;
  }

  .news-card-content {
    padding: 24px;
  }

  .news-title {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .hero {
    padding: 40px 20px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-label {
    font-size: 12px;
  }

  .hero-button {
    padding: 12px 24px;
    font-size: 14px;
  }

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .stat-number {
    font-size: 36px;
  }

  .stat-label {
    font-size: 14px;
  }

  .popular-list {
    grid-template-columns: 1fr;
  }

  .country-flag {
    font-size: 36px;
  }

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

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

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

  /* News section mobile */
  .news-section {
    padding: 40px 20px;
  }

  .section-title {
    font-size: 36px;
  }

  .news-card-image {
    min-height: 200px;
  }

  .news-title {
    font-size: 20px;
  }

  .news-excerpt {
    font-size: 14px;
  }
}

/* ============ FEATURED BANNER ============ */
.featured-banner {
  width: 100%;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  margin-top: 2rem;
}

/* Abstract Shapes Background */
.featured-banner::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(124, 58, 237, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.featured-banner::after {
  content: "";
  position: absolute;
  bottom: -40%;
  right: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(236, 72, 153, 0.12) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

/* Geometric Shapes */
.shape-circle-1 {
  position: absolute;
  top: 20%;
  left: 15%;
  width: 150px;
  height: 150px;
  border: 3px solid rgba(124, 58, 237, 0.2);
  border-radius: 50%;
}

.shape-circle-2 {
  position: absolute;
  bottom: 25%;
  right: 20%;
  width: 200px;
  height: 200px;
  border: 3px solid rgba(236, 72, 153, 0.15);
  border-radius: 50%;
}

.shape-triangle {
  position: absolute;
  top: 40%;
  right: 35%;
  width: 0;
  height: 0;
  border-left: 80px solid transparent;
  border-right: 80px solid transparent;
  border-bottom: 140px solid rgba(124, 58, 237, 0.08);
}

/* Content Container */
.banner-content {
  max-width: 100%;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 9999;
  gap: 40px;
  flex-wrap: wrap;
}

.banner-text {
  flex: 1;
}

.banner-tagline {
  font-size: 48px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
  background: linear-gradient(
    135deg,
    var(--white) 0%,
    rgba(255, 255, 255, 0.7) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.banner-date {
  font-size: 18px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.5px;
}

.banner-cta {
  flex-shrink: 0;
}

.btn-banner {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-banner:hover {
  transform: translateX(8px);
}

.btn-banner svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

/* Responsive */
@media (max-width: 1440px) {
  .banner-content,
  .banner-v2-content {
    padding: 0 60px;
  }
}

@media (max-width: 1025px) {
  .banner-content,
  .banner-v2-top {
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
  }

  .banner-tagline,
  .banner-v2-title {
    font-size: 36px;
  }

  .shape-circle-1,
  .shape-circle-2,
  .shape-triangle {
    display: none;
  }
}

@media (max-width: 767px) {
  .banner-content,
  .banner-v2-content {
    padding: 0 24px;
  }

  .banner-tagline,
  .banner-v2-title {
    font-size: 28px;
  }

  .banner-v2-stats {
    flex-wrap: wrap;
    gap: 24px;
  }
}

/* Impact Section */

.impact-section {
  padding: 60px 0;
}

.impact-header {
  display: flex;

  justify-content: center;

  align-items: center;

  margin-bottom: 80px;

  flex-wrap: wrap;

  gap: 30px;
}

/* Tabs */

.tabs-container {
  display: flex;

  background-color: var(--bg-secondary);

  border-radius: 50px;

  padding: 8px;

  gap: 8px;
}

.tab-btn {
  padding: 12px 32px;

  border: none;

  background-color: transparent;

  color: var(--text-muted);

  font-weight: 500;

  font-size: 1rem;

  border-radius: 50px;

  cursor: pointer;

  transition: all 0.3s ease;

  font-family: inherit;

  white-space: nowrap;
}

.tab-btn:hover {
  color: var(--text-light);
}

.tab-btn.active {
  background-color: var(--text-white);

  color: var(--bg-primary);
}

/* Events Grid */

.events-grid {
  display: grid;

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

  gap: 40px;
}

/* Event Cards */

.event-card {
  background-color: #ffffff0d;

  border: 2px solid #ffffff16;

  border-radius: 20px;

  padding: 40px;

  transition: all 0.4s ease;

  position: relative;

  overflow: hidden;

  display: flex;

  flex-direction: column;
}

.event-card::before {
  content: "";

  position: absolute;

  top: 0;

  left: 0;

  width: 5px;

  height: 100%;

  background: linear-gradient(180deg, #8a50ff 0%, #ff6b6b 100%);
}

.event-card-active::before {
  background: linear-gradient(180deg, #8a50ff 0%, #ff6b6b 100%);
}

.event-card:hover {
  transform: translateY(-5px);

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* Event Badge */

.event-badge {
  display: inline-block;

  padding: 8px 18px;

  border-radius: 25px;

  font-size: 0.75rem;

  font-weight: 700;

  letter-spacing: 0.08em;

  margin-bottom: 24px;

  text-transform: uppercase;

  width: fit-content;
}

.badge-coming {
  background-color: #8a50ff2c;
  color: #ffffff93;
}

.badge-register {
  background-color: #8a50ff2c;
  color: #ffffff93;
}

.event-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);

  font-weight: 700;

  color: var(--text-white);

  margin-bottom: 28px;

  line-height: 1.2;
}

/* Event Info */

.event-info {
  margin-bottom: 36px;
}

.info-item {
  display: flex;

  align-items: center;

  gap: 12px;

  color: var(--text-light);

  font-size: 1rem;

  margin-bottom: 14px;
}

.info-item .icon {
  color: var(--text-muted);
}

/* Event Stats */

.event-stats {
  display: flex;

  gap: 40px;

  margin-bottom: 36px;

  flex-wrap: wrap;
}

.stat-item {
  flex: 1;

  min-width: 90px;
}

.stat-value {
  font-size: clamp(1.75rem, 3vw, 2.5rem);

  font-weight: 700;

  color: var(--text-white);

  margin-bottom: 6px;

  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;

  color: var(--text-muted);
}

/* Register Button */

.btn {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 10px;

  padding: 16px 36px;

  border-radius: 10px;

  font-weight: 600;

  font-size: 1rem;

  text-decoration: none;

  transition: all 0.3s ease;

  cursor: pointer;

  border: none;

  margin-top: auto;

  width: fit-content;
}

.event-card .btn-register {
  background: linear-gradient(180deg, #ff6b35 0%, #f7931e 100%);
  color: var(--text-white);
}

.event-card .btn-register:hover {
  background-color: #ff6635;
}

.event-card .btn-register .icon {
  transition: transform 0.3s ease;
}

.event-card .btn-register:hover .icon {
  transform: translateX(3px);
}
.section-title-impact {
  font-size: 52px;
  font-weight: 700;
  color: white;
}

/* Responsive Design */

@media screen and (max-width: 1025px) {
  .custom-tabs {
    gap: 0.5rem !important;
  }
  .events-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 767px) {
  .custom-tabs {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .hero {
    padding: 30px 15px !important;
  }

  .impact-section {
    padding: 40px 0;
  }

  .impact-header {
    flex-direction: column;

    align-items: flex-start;

    margin-bottom: 50px;

    gap: 20px;
  }

  .section-title {
    font-size: 2rem;
  }

  .tabs-container {
    width: 100%;

    justify-content: space-between;

    padding: 6px;

    gap: 6px;
  }

  .tab-btn {
    padding: 10px 20px;

    font-size: 0.9rem;

    flex: 1;
  }

  .events-grid {
    gap: 25px;
  }

  .event-card {
    padding: 32px 28px;
  }

  .event-title {
    font-size: 1.75rem;

    margin-bottom: 24px;
  }

  .event-stats {
    gap: 0px;
    justify-content: space-between;
    flex-wrap: nowrap;
  }

  .stat-value {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .impact-header {
    margin-bottom: 40px;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .tabs-container {
    flex-direction: column;

    width: 100%;

    padding: 4px;

    gap: 4px;
  }

  .tab-btn {
    padding: 12px 20px;

    font-size: 0.95rem;

    width: 100%;

    text-align: center;
  }

  .event-card {
    padding: 28px 24px;
  }

  .event-title {
    font-size: 1.5rem;
  }

  .info-item {
    font-size: 0.95rem;
  }

  .stat-item {
    flex: 0 1 auto;
  }

  .stat-value {
    font-size: 1.75rem;
  }

  .stat-label {
    font-size: 0.85rem;
  }

  .btn-register {
    width: 100%;

    padding: 14px 30px;
  }
}

@media (max-width: 360px) {
  .event-card {
    padding: 24px 20px;
  }

  .event-title {
    font-size: 1.35rem;
  }

  .stat-value {
    font-size: 1.5rem;
  }
}
/* Icon Utility */

.icon {
  flex-shrink: 0;
}

/* ============ SPOTLIGHT SECTION ============ */
.spotlight-section {
  padding: 80px 40px;
  background: var(--white);
}

.spotlight-section .container {
  max-width: 1400px;
  margin: 0 auto;
}

.spotlight-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.spotlight-section .section-title {
  font-size: 48px;
  font-weight: 900;
  color: var(--text-primary);
}

.spotlight-section .section-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin-top: 8px;
}

.more-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s;
  border-radius: 50px;
  border: 2px solid black;
  padding: 10px 20px;
}

.more-link svg {
  width: 20px;
  height: 20px;
}

/* Spotlight Cards Grid */
.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.spotlight-card {
  position: relative;
  height: 500px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
}

.spotlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.spotlight-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spotlight-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
}

.spotlight-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--primary-purple);
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.spotlight-overlay .play-button {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.3s;
}

.spotlight-card:hover .play-button {
  transform: scale(1.1);
  background: var(--white);
}

.spotlight-overlay .play-button svg {
  width: 24px;
  height: 24px;
  stroke: var(--white);
  margin-left: 3px;
}

.spotlight-card:hover .play-button svg {
  stroke: var(--text-primary);
}

.spotlight-category {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.8;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.spotlight-title {
  font-size: 36px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
}

/* Responsive - Spotlight Section */
@media (max-width: 1025px) {
  .spotlight-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .spotlight-section .section-title {
    font-size: 36px;
  }

  .spotlight-card {
    height: 400px;
  }

  .spotlight-title {
    font-size: 24px;
  }

  .spotlight-section .section-header {
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
  }
}

.custom-tabs {
  border: #ffffff16;
  background-color: #ffffff0d;
  padding: 10px 20px;
  border-radius: 50px;
  gap: 1.5rem;
}

.custom-nav-link {
  background-color: transparent;
  color: white !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 10px 20px;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
}

.custom-nav-link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;

  transform: translate(-50%, -50%);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-nav-link:hover::before {
  width: 100%;
  height: 100%;
}

.custom-nav-link:hover {
  background-color: transparent;
  color: white !important;
}

.custom-nav-link.active {
  background-color: white !important;
  color: #1e2f54 !important;
  padding: 10px 20px !important;
  border-radius: 50px;
  transform: scale(1.05);
}

.custom-nav-link.active::before {
  display: none;
}

/* Tab Content Animations */
.tab-content {
  position: relative;
}

.tab-pane {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.tab-pane.active {
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ============ NEWSLETTER SECTION ============ */
.newsletter-section {
  margin: 80px 40px;
  background-color: #1e2f54;
  border-radius: 16px;
  overflow: hidden;
}

/* Top Part - Main Newsletter */
.newsletter-top {
  padding: 48px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.newsletter-content {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
}

.newsletter-logo {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.153);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
  text-align: center;
  line-height: 1.2;
  padding: 12px;
  flex-shrink: 0;
}

.newsletter-text {
  color: white;
}

.newsletter-title {
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 8px;
}

.newsletter-description {
  font-size: 18px;
  opacity: 0.9;
  line-height: 1.6;
}

.newsletter-cta {
  flex-shrink: 0;
}

.btn-subscribe {
  padding: 16px 32px;
  background: transparent;
  color: white;
  border: 2px solid white;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-subscribe:hover {
  background: white;
  color: #1e3a8a;
}

.btn-subscribe svg {
  width: 20px;
  height: 20px;
}

/* Bottom Part - Social Media */
.newsletter-bottom {
  padding: 32px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.social-title {
  font-size: 20px;
  font-weight: 400;
  color: white;
}

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

.newsletter-section .social-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}

.newsletter-section .social-icon svg {
  width: 24px;
  height: 24px;
  transition: all 0.3s;
}

.newsletter-section .social-icon svg path {
  fill: white;
  stroke: white;
  transition: all 0.3s;
}

.newsletter-section .social-icon:hover {
  background: white;
  border: transparent;
  transform: translateY(-4px);
}

.newsletter-section .social-icon:hover svg path {
  fill: #1e2f54;
  stroke: #1e2f54;
}

/* Responsive - Newsletter */
@media (max-width: 1025px) {
  .newsletter-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .newsletter-bottom {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .social-icons {
    flex-wrap: wrap;
  }
}

@media (max-width: 767px) {
  .newsletter-section {
    margin: 10px;
  }

  .newsletter-top,
  .newsletter-bottom {
    padding: 32px 24px;
  }

  .newsletter-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .newsletter-title {
    font-size: 24px;
  }

  .newsletter-description {
    font-size: 16px;
  }
}

.hero-banner {
  position: relative;
  min-height: 217px;
  overflow: hidden;
  background-color: #1a0b2e;
  border-radius: 24px;
  margin: 4rem auto;
  padding: 60px 40px;
}

/* Rectangle 1 - Background Image */
.hero-banner-bg {
  position: absolute;
  inset: 0;
  background: url("../images/banner-bg.webp") center / cover no-repeat;
  mix-blend-mode: multiply;
  filter: blur(2.6px);
  z-index: 1;
}

/* Common Gradient Style */
.gradient {
  position: absolute;
  border-radius: 50%;
  z-index: 2;
}

/* Purple Gradient */
.gradient-purple {
  left: -10%;
  right: 75.28%;
  top: -30%;
  bottom: -100.85%;
  background: radial-gradient(
    70.71% 70.71% at 50% 50%,
    rgba(124, 58, 237, 0.15) 0%,
    rgba(124, 58, 237, 0) 70%
  );
}

/* Pink Gradient */
.gradient-pink {
  left: 73.33%;
  right: -15%;
  top: -137.02%;
  bottom: -40%;
  background: radial-gradient(
    70.71% 70.71% at 50% 50%,
    rgba(236, 72, 153, 0.12) 0%,
    rgba(236, 72, 153, 0) 70%
  );
}

@media screen and (max-width: 1025px) {
  .hero-banner {
    min-height: 280px;
    padding: 50px 32px;
    margin: 2rem 20px;
  }

  .banner-content {
    padding: 0 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .banner-tagline {
    font-size: 36px;
  }
}

/* ============ IN THE NEWS SECTION ============ */
.news-mentions-section {
  padding: 80px 0;
  background: var(--bg-gray);
  margin: 0 -20px;
}

.news-mentions-wrapper {
  width: 1200px;
  margin: 0 auto;
}

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

.press-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  transition: all 0.3s;
}

.press-link:hover {
  color: var(--primary-purple);
  gap: 12px;
}

.press-link svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

/* News Grid */
.news-mentions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 40px;
}

.news-mention-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 48px;
  border-bottom: 2px solid var(--border-color);
  transition: all 0.3s;
}

.news-mention-item:hover {
  border-bottom-color: var(--primary-purple);
}

.news-headline {
  font-size: 20px;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.4;
  transition: color 0.3s;
}

.news-source {
  color: var(--primary-purple);
  text-decoration: none;
  font-size: 16px;
  font-weight: 300;
  transition: all 0.3s;
}

.news-source:hover {
  color: var(--dark-purple);
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 1240px) {
  .news-mentions-wrapper {
    width: 100%;
    padding: 0 40px;
  }
}

@media (max-width: 1025px) {
  .news-mentions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 32px;
  }
}

@media (max-width: 767px) {
  .news-mentions-wrapper {
    padding: 0 24px;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .news-mentions-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Section */
.stats-section {
  position: relative;
  width: 100%;
  background: linear-gradient(106.05deg, #7c3aed 0%, #5b21b6 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 80px 40px;
}

.stats-inner {
  width: 100%;
  max-width: 1360px;
  text-align: center;
}

/* Heading */
.stats-title {
  max-width: 1000px;
  margin: 0 auto 60px auto;
  font-weight: 800;
  font-size: 42px;
  line-height: 1.3;
  color: #ffffff;
}

/* Stats Row */
.stats-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

/* Single Stat */
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.stat-number {
  font-weight: 800;
  font-size: 56px;
  line-height: 1.2;
  color: #ffffff;
}

.stat-label {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
  color: #ffffff;
  opacity: 0.9;
}

/* Section */
.host-section {
  position: relative;
  width: 100%;
  background: linear-gradient(104.89deg, #1e1b4b 0%, #0f172a 100%);
  overflow: hidden;
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 380px;
}

/* Bottom Gradient */
.host-gradient {
  position: absolute;
  height: 200px;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    70.71% 141.42% at 50% 100%,
    rgba(124, 58, 237, 0.3) 0%,
    rgba(124, 58, 237, 0) 70%
  );
  animation: gradientPulse 3s ease-in-out infinite;
}

@keyframes gradientPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}

/* Title */
.host-title {
  position: relative;
  max-width: 652px;
  font-weight: 800;
  font-size: 42px;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 24px;
  opacity: 0;
  animation: slideInFromLeft 1s ease forwards;
  z-index: 1;
}

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

/* Description */
.host-description {
  position: relative;
  max-width: 664px;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
  color: #ffffff;
  opacity: 0;
  animation: fadeIn 1s ease forwards 0.3s;
  margin-bottom: 32px;
  z-index: 1;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.9;
  }
}

/* Button */
.host-button {
  position: relative;
  max-width: 337.48px;
  width: 100%;
  height: 50px;
  background: #ff6b35;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0;
  animation: bounceIn 1s ease forwards 0.6s;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  z-index: 1;
  margin: 0 auto;
}

.host-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
  background: #ff7e4d;
}

.host-button::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  padding: 2px;
  background: linear-gradient(45deg, #ff6b35, #ff8c5a, #ff6b35);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s;
}

.host-button:hover::before {
  opacity: 1;
  animation: borderRotate 3s linear infinite;
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes borderRotate {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

.host-button span {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  text-transform: uppercase;
  color: #ffffff;
  position: relative;
  z-index: 1;
}

footer {
  background: linear-gradient(124.94deg, #1f2937 0%, #111827 100%);
  color: #fff;
  padding: 64px 120px 32px;
}

/* ---------------- TOP ---------------- */
.footer-top {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: center;
}

.footer-desc {
  font-size: 16px;
  line-height: 29px;
  opacity: 0.7;
  max-width: 820px;
}

.divider {
  margin: 32px 0 48px;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
}

/* ---------------- CONTENT ---------------- */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 72px;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 18px;
}

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

.footer-col li {
  font-size: 15px;
  color: #94a3b8;
  margin-bottom: 14px;
  cursor: pointer;
}

.footer-col li:hover {
  color: #fff;
}

.footer-col a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: inherit;
}

/* ---------------- CONTACT + NEWSLETTER ---------------- */
.footer-bottom-area {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 56px;
  align-items: center;
}

.contact-info {
  font-size: 14px;
  opacity: 0.8;
}

/* .contact-info div {
  margin-bottom: 10px;
} */

.socials {
  display: flex;
  gap: 14px;
  /* margin-top: 16px; */
}

.social {
  width: 44px;
  height: 44px;
  padding: 14px;
  color: white;
  text-decoration: none;
  background: rgba(124, 58, 237, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  border-radius: 30px;
}

/* Newsletter */
.newsletter {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-end;
}

.newsletter span {
  font-weight: 700;
}

.newsletter input {
  width: 220px;
  height: 44px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #fff;
  outline: none;
}

.newsletter button {
  height: 44px;
  padding: 0 20px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(95.53deg, #ff6b35, #ff5722);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

/* ---------------- COPYRIGHT ---------------- */
.footer-final {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 48px;
  font-size: 14px;
  opacity: 0.5;
}

.footer-links {
  display: flex;
  gap: 22px;
}

/* ---------------- RESPONSIVE ---------------- */
@media screen and (min-width: 767px) and (max-width: 1026px) {
  .newsletter input {
    width: 100%;
  }
  .footer-links {
    gap: 10px;
    white-space: nowrap;
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }
  footer {
    padding: 48px 32px;
  }
}
@media (max-width: 767px) {
  .follow-socials {
    margin: 0 auto !important;
    gap: 16px !important;
    margin: 0 0.5rem !important;
    flex-wrap: wrap;
    justify-content: space-between !important;
  }
  .announcement-bar {
    display: none;
  }
  .socials {
    gap: 5px;
  }
  .newsletter input {
    width: 100%;
  }
  .footer-links {
    gap: 10px;
    white-space: nowrap;
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
  }
  footer {
    padding: 48px 20px;
  }
}
@media (max-width: 1025px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom-area {
    grid-template-columns: 1fr;
  }

  .newsletter {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .footer-final {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
}

.social svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.social {
  cursor: pointer;
  transition: all 0.25s ease;
}

.social:hover {
  background: rgba(124, 58, 237, 0.35);
  transform: translateY(-2px);
}
.contact {
  margin-top: 24px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.contact-item svg {
  width: 20px;
  height: 20px;
  stroke: #e5e7eb;
  stroke-width: 1.8;
  fill: none;
  flex-shrink: 0;
}

.contact-item span {
  font-size: 14px;
  font-weight: 500;
  color: #e5e7eb;
}

.contact-item a {
  color: inherit;
  text-decoration: none;
}

.contact-item a:hover {
  color: inherit;
}
/* Section */
.subscribe-section {
  position: relative;
  width: 100%;
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  padding: 60px 40px;
}

/* Container */
.subscribe-container {
  position: relative;
  width: 100%;
  max-width: 1360px;
}

/* Heading */
.subscribe-title {
  font-weight: 800;
  font-size: 47.8px;
  line-height: 1.3;
  letter-spacing: -0.5px;
  color: #7c3aed;
  margin-bottom: 12px;
}

.subscribe-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: #6b7280;
  margin-bottom: 32px;
}

/* Cards */
.subscribe-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.subscribe-card {
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  padding: 24px;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.subscribe-card:hover {
  border-color: #7c3aed;
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.1);
}

.subscribe-card h4 {
  margin: 0 0 8px 0;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  color: #111827;
}

.subscribe-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #6b7280;
}

/* Form */
.subscribe-form {
  display: flex;
  gap: 12px;
  max-width: 600px;
}

.subscribe-form input {
  flex: 1;
  height: 45px;
  padding: 0 18px;
  border: 2px solid #e5e7eb;
  border-radius: 6px;
  font-family: "Inter", sans-serif;
  font-size: 14.4px;
  outline: none;
  transition: border-color 0.3s;
}

.subscribe-form input:focus {
  border-color: #7c3aed;
}

.subscribe-form input::placeholder {
  color: #757575;
}

.subscribe-form button {
  min-width: 136.53px;
  height: 45px;
  background: #7c3aed;
  border: none;
  border-radius: 6px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 14.6px;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s;
}

.subscribe-form button:hover {
  background: #6d28d9;
  transform: translateY(-2px);
}

/* ============ COMPREHENSIVE RESPONSIVE STYLES ============ */

/* Tablet - 1025px and below */
@media (max-width: 1025px) {
  /* Stats Section */
  .stats-section {
    padding: 60px 32px;
  }

  .stats-title {
    font-size: 36px;
    margin-bottom: 48px;
  }

  .stats-list {
    gap: 32px;
  }

  .stat-number {
    font-size: 48px;
  }

  /* Host Section */
  .host-section {
    padding: 60px 32px;
  }

  .host-title {
    font-size: 36px;
  }

  .host-description {
    font-size: 16px;
  }

  /* Subscribe Section */
  .subscribe-section {
    padding: 48px 32px;
  }

  .subscribe-title {
    font-size: 38px;
  }

  .subscribe-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Trusted Section */
  .trusted-section {
    padding: 60px 32px;
  }

  .logos-grid {
    gap: 40px;
  }

  .logo-item img {
    max-width: 70px;
    height: 35px;
  }
}

/* Mobile - 767px and below */
@media (max-width: 767px) {
  /* Stats Section */
  .stats-section {
    padding: 48px 20px;
  }

  .stats-title {
    font-size: 28px;
    margin-bottom: 36px;
  }

  .stats-list {
    justify-content: center;
    gap: 24px;
  }

  /* .stat-item {
    min-width: 120px;
  } */

  .stat-number {
    font-size: 40px;
  }

  .stat-label {
    font-size: 14px;
  }

  /* Host Section */
  .host-section {
    padding: 48px 20px;
    min-height: auto;
  }

  .host-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .host-description {
    font-size: 15px;
    margin-bottom: 28px;
  }

  .host-button {
    max-width: 100%;
    font-size: 14px;
  }

  /* Subscribe Section */
  .subscribe-section {
    padding: 40px 20px;
  }

  .subscribe-title {
    font-size: 32px;
  }

  .subscribe-subtitle {
    font-size: 16px;
  }

  .subscribe-cards {
    gap: 16px;
  }

  .subscribe-card {
    padding: 20px;
  }

  .subscribe-card h4 {
    font-size: 16px;
  }

  .subscribe-card p {
    font-size: 13px;
  }

  .subscribe-form {
    flex-direction: column;
    max-width: 100%;
  }

  .subscribe-form input,
  .subscribe-form button {
    width: 100%;
  }

  /* Trusted Section */
  .trusted-section {
    padding: 48px 20px;
  }

  .trusted-container h2 {
    font-size: 12px;
    margin-bottom: 32px;
  }

  .logos-grid {
    gap: 32px;
  }

  .logo-item img {
    max-width: 60px;
    height: 30px;
  }

  /* Spotlight Section */
  .spotlight-section {
    padding: 10px;
  }

  .spotlight-section-title {
    font-size: 36px;
    margin-bottom: 0px;
  }

  /* Newsletter Section */
  .newsletter-section {
    margin: 10px;
  }

  .newsletter-top {
    padding: 32px 24px;
    flex-direction: column;
    gap: 32px;
  }

  .newsletter-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .newsletter-logo {
    width: 60px;
    height: 60px;
    font-size: 12px;
  }

  .newsletter-title {
    font-size: 24px;
  }

  .newsletter-title span {
    display: block;
  }

  .newsletter-description {
    font-size: 15px;
  }

  .btn-subscribe {
    padding: 14px 28px;
    font-size: 14px;
    width: 100%;
    justify-content: center;
  }

  .newsletter-bottom {
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .social-title {
    font-size: 18px;
  }

  .social-icons {
    flex-wrap: wrap;
  }

  /* Hero Banner */
  .hero-banner {
    margin: 2rem 20px;
    padding: 40px 20px;
  }

  .banner-content {
    padding: 0 20px;
  }

  .banner-tagline {
    font-size: 32px;
  }

  .banner-date {
    font-size: 16px;
  }

  .btn-banner {
    padding: 12px 24px;
    font-size: 14px;
  }
}

/* Small Mobile - 480px and below */
@media (max-width: 480px) {
  /* Stats Section */
  .stats-list {
    flex-direction: column;
    gap: 32px;
  }

  /* .stat-item {
    min-width: 100%;
  } */

  .stats-title {
    font-size: 24px;
  }

  /* Host Section */
  .host-title {
    font-size: 24px;
  }

  .host-description {
    font-size: 14px;
  }

  /* Subscribe Section */
  .subscribe-title {
    font-size: 28px;
  }

  .subscribe-subtitle {
    font-size: 15px;
  }

  /* Trusted Section */
  .logos-grid {
    gap: 24px;
  }

  .logo-item img {
    max-width: 50px;
    height: 25px;
  }

  /* Newsletter */
  .newsletter-title {
    font-size: 20px;
  }

  .newsletter-description {
    font-size: 14px;
  }

  .social-icons {
    width: 100%;
    justify-content: center;
  }

  .newsletter-section .social-icon {
    width: 44px;
    height: 44px;
  }

  /* Hero Banner */
  .banner-tagline {
    font-size: 24px;
  }

  .banner-date {
    font-size: 14px;
  }
}
/* Container */
.forgot-container {
  width: 100%;
  height: 100vh;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

/* Forgot Card */
.forgot-card {
  width: 480px;
  background: var(--white);
  padding: 48px;
  border-radius: 16px;
  border: 2px solid var(--border-color);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

/* Icon */
.forgot-icon {
  width: 80px;
  height: 80px;
  background: rgba(124, 58, 237, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.forgot-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--primary-purple);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.forgot-header {
  text-align: center;
  margin-bottom: 32px;
}

.forgot-title {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.forgot-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Form */
.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 16px;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text-primary);
  transition: all 0.2s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-purple);
}

.form-input::placeholder {
  color: var(--text-light);
}

/* Button */
.btn-submit-forgot {
  width: 100%;
  padding: 16px;
  background: linear-gradient(95.53deg, #ff6b35, #ff5722);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.btn-submit-forgot:hover {
  transform: translateY(-2px);
}

/* Back to Login */
.back-login {
  text-align: center;
}

.back-login a {
  font-size: 15px;
  color: var(--primary-purple);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.back-login a:hover {
  text-decoration: underline;
}

.back-login svg {
  width: 16px;
  height: 16px;
  stroke: var(--primary-purple);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Success Message */
.success-message {
  display: none;
  text-align: center;
}

.success-message.active {
  display: block;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.success-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--green);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.success-title {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.success-text {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.6;
}

.success-email {
  display: inline-block;
  padding: 8px 16px;
  background: var(--bg-gray);
  border-radius: 6px;
  font-weight: 700;
  color: var(--primary-purple);
  margin-bottom: 24px;
}

.success-info {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 24px;
}

.btn-resend {
  width: 100%;
  padding: 14px;
  background: linear-gradient(95.53deg, #ff6b35, #ff5722);
  color: white;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: 16px;
}

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

/* Back Link */
.back-link {
  text-align: center;
  margin-top: 24px;
}

.back-link a {
  font-size: 14px;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
}

.back-link a:hover {
  color: var(--primary-purple);
}

/* Email Help Section */
.email-help-section {
  position: relative;
  background: #f9fafb;
  border-radius: 8px;
  padding: 16px;
  margin-top: 24px;
}

.email-help-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  display: flex;
  align-items: center;
  color: #111827;
  margin: 0 0 10px 0;
}

.email-help-text {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-style: normal;
  font-weight: 200;
  font-size: 13px;
  line-height: 21px;
  color: #6b7280;
  margin: 0;
}

.email-help-text span {
  font-weight: 500;
}

/* Responsive */
@media (max-width: 767px) {
  .forgot-card {
    width: 100%;
    padding: 32px 24px;
  }

  .forgot-title {
    font-size: 28px;
  }

  .success-title {
    font-size: 24px;
  }

  .email-help-section {
    margin-left: 20px;
    margin-right: 20px;
  }
}

/* ABOUT PAGE */

/* Hero Section */
.abt-hero-section {
  position: relative;
  height: 600px;
  background-color: #1e2f54;
  overflow: hidden;
}

.abt-hero-content {
  position: absolute;
  width: 800px;
  left: 320px;
  top: 163.6px;
}

.abt-hero-title {
  position: relative;
  width: 923px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 64px;
  line-height: 70px;
  display: flex;
  align-items: center;
  color: #ffffff;
  margin: 0 0 32px 0;
}

.abt-hero-subtitle {
  position: relative;
  width: 756.72px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
  display: flex;
  align-items: center;
  color: #ffffff;
  opacity: 0.9;
  margin: 0;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary-purple);
  margin-bottom: 16px;
}

.section-title {
  font-size: 48px;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-description {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Story Section */
.abt-story-section {
  position: relative;
  height: 700px;
  background: #ffffff;
}

.abt-story-title {
  position: absolute;
  width: 199.72px;
  height: 53px;
  left: 104px;
  top: 119.45px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 42px;
  line-height: 67px;
  display: flex;
  align-items: center;
  color: #111827;
  margin: 0;
}

.abt-story-text-1 {
  position: absolute;
  width: 559.7px;
  left: 104px;
  top: 207.64px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  display: flex;
  align-items: center;
  color: #6b7280;
  margin: 0;
}

.abt-story-text-2 {
  position: absolute;
  width: 571.42px;
  left: 104px;
  top: 324.81px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  display: flex;
  align-items: center;
  color: #6b7280;
  margin: 0;
}

.abt-story-text-3 {
  position: absolute;
  width: 575.58px;
  left: 104px;
  top: 474.37px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  display: flex;
  align-items: center;
  color: #6b7280;
  margin: 0;
}

.abt-story-image {
  position: absolute;
  height: 500px;
  left: 760px;
  right: 104px;
  top: 100px;
  background: url("../images/story-img.png") center/cover;
  box-shadow: 0px 20px 60px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
}

/* Story Section Responsive */
@media (max-width: 1025px) {
  .abt-story-section {
    height: auto;
    padding: 80px 40px;
  }

  .abt-story-title {
    position: relative;
    width: 100%;
    left: 0;
    top: 0;
    font-size: 36px;
    line-height: 50px;
    margin-bottom: 32px;
  }

  .abt-story-text-1 {
    position: relative;
    width: 100%;
    max-width: 600px;
    left: 0;
    top: 0;
    margin-bottom: 24px;
  }

  .abt-story-text-2 {
    position: relative;
    width: 100%;
    max-width: 600px;
    left: 0;
    top: 0;
    margin-bottom: 24px;
  }

  .abt-story-text-3 {
    position: relative;
    width: 100%;
    max-width: 600px;
    left: 0;
    top: 0;
    margin-bottom: 40px;
  }

  .abt-story-image {
    position: relative;
    height: 400px;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    max-width: 600px;
  }
}

@media (max-width: 767px) {
  .abt-story-section {
    padding: 60px 24px;
  }

  .abt-story-title {
    font-size: 32px;
    line-height: 42px;
    margin-bottom: 24px;
  }

  .abt-story-text-1,
  .abt-story-text-2,
  .abt-story-text-3 {
    font-size: 16px;
    line-height: 28px;
    max-width: 100%;
    margin-bottom: 20px;
  }

  .abt-story-image {
    height: 300px;
    max-width: 100%;
    margin-top: 32px;
  }
}

/* Mission Vision Grid */
.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.mv-card {
  background: var(--white);
  padding: 48px;
  border-radius: 16px;
  border: 2px solid var(--border-color);
}

.mv-title {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 20px;
  color: var(--primary-purple);
}

.mv-text {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Timeline */
.timeline {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.timeline:before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: var(--border-color);
}

.timeline-item {
  display: flex;
  gap: 40px;
  margin-bottom: 64px;
  position: relative;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-year {
  flex: 1;
  text-align: right;
  padding-top: 8px;
}

.timeline-item:nth-child(even) .timeline-year {
  text-align: left;
}

.timeline-year-text {
  font-size: 48px;
  font-weight: 900;
  color: var(--primary-purple);
  line-height: 1;
}

.timeline-content {
  flex: 1;
  background: var(--white);
  padding: 32px;
  border-radius: 12px;
  border: 2px solid var(--border-color);
}

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  background: var(--primary-purple);
  border-radius: 50%;
  border: 4px solid var(--white);
  box-shadow: 0 0 0 4px var(--border-color);
  z-index: 1;
}

.timeline-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.timeline-description {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Stats Section */
.stats-section {
  background-color: #1e2f54;
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  text-align: center;
}

.stat-item {
  padding: 32px;
}

.stat-number {
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 16px;
  font-weight: 600;
  opacity: 0.9;
}

.btn-primary {
  padding: 18px 48px;
  background: var(--primary-purple);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--dark-purple);
  transform: translateY(-2px);
}

.btn-secondary {
  padding: 18px 48px;
  background: var(--white);
  color: var(--primary-purple);
  border: 2px solid var(--primary-purple);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-secondary:hover {
  background: var(--primary-purple);
  color: var(--white);
  transform: translateY(-2px);
}

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

  .mission-vision-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 767px) {
  .abt-hero-section {
    height: auto;
    padding: 80px 20px;
  }

  .abt-hero-content {
    position: relative;
    width: 100%;
    left: 0;
    top: 0;
  }

  .abt-hero-title {
    width: 100%;
    font-size: 40px;
    line-height: 48px;
  }

  .abt-hero-subtitle {
    width: 100%;
    font-size: 18px;
    line-height: 28px;
  }

  .section-title {
    font-size: 32px;
  }

  .section {
    padding: 60px 0;
  }

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

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

  .timeline:before {
    left: 20px;
  }

  .timeline-item {
    flex-direction: column !important;
    padding-left: 50px;
  }

  .timeline-dot {
    left: 20px;
  }

  .timeline-year {
    text-align: left !important;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
}
/* SECTION */
.journey-section {
  position: relative;
  width: 100%;
  padding: 80px 0;
}

.journey-title {
  text-align: center;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  color: #111827;
  margin-bottom: 80px;
}

/* CONTAINER */
.journey-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
  height: 1800px;
}

/* CENTER LINE */
.journey-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  background: #e5e7eb;
}

/* CARD */
.journey-item {
  position: absolute;
  width: calc(50% - 80px);
  background: #f9fafb;
  border-radius: 12px;
  padding: 32px;
}

.journey-item.left {
  left: 0;
  right: auto;
}

.journey-item.right {
  left: auto;
  right: 0;
}

.journey-item .year {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #7c3aed;
  margin-bottom: 6px;
  display: block;
}

.journey-item h3 {
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 12px;
  color: #111827;
}

.journey-item p {
  font-size: 16px;
  line-height: 27px;
  color: #6b7280;
  margin: 0;
}

/* IMAGE */
.journey-image {
  position: absolute;
  width: calc(50% - 80px);
  height: 250px;
  background: #e5e7eb;
  border-radius: 12px;
}

.journey-image.left {
  left: 0;
  right: auto;
}

.journey-image.right {
  left: auto;
  right: 0;
}

/* DOT */
.journey-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: #7c3aed;
  border: 4px solid #ffffff;
  box-shadow: 0 0 0 4px #e5e7eb;
  border-radius: 50%;
}

/* ========================= */
/* 💻 TABLET ONLY */
/* ========================= */
@media (min-width: 767px) and (max-width: 1025px) {
  .w-md-25 {
    width: 25% !important;
  }
  .journey-item.right,
  .journey-image.right {
    left: auto;
    right: 30px;
  }
  .journey-image.left,
  .journey-item.left {
    left: 30px;
    right: auto;
  }
  .journey-container {
    max-width: 800px;
  }
}
.timeline-img {
  width: 100%;
  height: -webkit-fill-available;
  object-fit: fill;
}

/* ========================= */
/* 📱 MOBILE ONLY */
/* ========================= */
@media (max-width: 767px) {
  .journey-title {
    font-size: 36px;
    margin-bottom: 60px;
  }

  .journey-container {
    padding: 0 2rem 0 3.5rem;
    height: auto;
    max-width: 100%;
    display: flex;
    flex-direction: column;
  }

  .journey-line {
    left: 1.5rem;
    transform: none;
  }

  .journey-item,
  .journey-image {
    position: relative;
    width: 100%;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    margin-bottom: 1.5rem;
  }

  .journey-item {
    padding: 1.5rem;
  }

  /* Add dot indicator to journey items */
  .journey-item::before {
    content: "";
    position: absolute;
    left: calc(-3.5rem + 1.5rem - 10px);
    top: 1.5rem;
    width: 20px;
    height: 20px;
    background: #7c3aed;
    border: 4px solid #ffffff;
    box-shadow: 0 0 0 4px #e5e7eb;
    border-radius: 50%;
    z-index: 2;
  }

  .journey-image {
    height: 200px;
  }

  /* Keep timeline at the top */
  .journey-line {
    order: 0;
  }

  /* Reorder elements: alternating item-image pairs */
  /* Child structure: line(1), item(2), image(3), dot(4), image(5), item(6), dot(7)... */

  /* 2015 - item(2), image(3) */
  .journey-item:nth-child(2) {
    order: 1;
  }
  .journey-image:nth-child(3) {
    order: 2;
  }

  /* 2017 - image(5), item(6) */
  .journey-item:nth-child(6) {
    order: 3;
  }
  .journey-image:nth-child(5) {
    order: 4;
  }

  /* 2019 - item(8), image(9) */
  .journey-item:nth-child(8) {
    order: 5;
  }
  .journey-image:nth-child(9) {
    order: 6;
  }

  /* 2021 - image(11), item(12) */
  .journey-item:nth-child(12) {
    order: 7;
  }
  .journey-image:nth-child(11) {
    order: 8;
  }

  /* 2023 - item(14), image(15) */
  .journey-item:nth-child(14) {
    order: 9;
  }
  .journey-image:nth-child(15) {
    order: 10;
  }

  /* 2025 - image(17), item(18) */
  .journey-item:nth-child(18) {
    order: 11;
  }
  .journey-image:nth-child(17) {
    order: 12;
  }

  /* Hide original dots in responsive */
  .journey-dot {
    display: none;
  }
}

/* 📱 MOBILE SMALL */
@media (max-width: 480px) {
  .journey-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .journey-container {
    padding: 0 1rem 0 2.5rem;
    display: flex;
    flex-direction: column;
  }

  .journey-line {
    left: 1rem;
  }

  .journey-item {
    padding: 1.25rem;
    margin-bottom: 1rem;
  }

  /* Adjust dot position for mobile */
  .journey-item::before {
    left: calc(-2.5rem + 1rem - 10px);
    top: 1.25rem;
    width: 20px;
    height: 20px;
  }

  .journey-item h3 {
    font-size: 20px;
  }

  .journey-item p {
    font-size: 14px;
    line-height: 1.6;
  }

  .journey-image {
    height: 180px;
    margin-bottom: 1rem;
  }
}

/* LEARNSHİP SECTION */
.leadership-section {
  background: #f9fafb;
  padding: 100px 80px;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.leadership-title {
  text-align: center;
  font-size: 48px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 80px;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* CARD */
.leader-card {
  position: relative;
  background: transparent;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
}
.leader-image img {
  width: 100%;
  height: auto;
}

.leader-info {
  padding: 20px 16px 24px;
  background: transparent;
}

.leader-name {
  font-size: 20px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 4px;
}

.leader-role {
  font-size: 15px;
  font-weight: 400;
  color: #6b7280;
  margin-bottom: 4px;
}

.leader-company {
  font-size: 13px;
  font-weight: 600;
  color: #7c3aed;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

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

@media (max-width: 767px) {
  .leadership-section {
    padding: 80px 24px;
  }

  .leadership-title {
    font-size: 36px;
    margin-bottom: 60px;
  }

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

  .leader-image {
    height: 260px;
  }
}
/* our core values */

.core-values-section {
  background: #ffffff;
  padding: 100px 0;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.core-values-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.core-values-title {
  font-size: 48px;
  font-weight: 800;
  text-align: center;
  color: #111827;
  margin-bottom: 64px;
}

/* Grid */
.core-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Card */
.core-values-card {
  background: #f9fafb;
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.core-values-number {
  font-size: 48px;
  font-weight: 800;
  color: #7c3aed;
}

.core-values-heading {
  font-size: 24px;
  font-weight: 800;
  color: #111827;
}

.core-values-text {
  font-size: 16px;
  line-height: 27px;
  color: #6b7280;
}

/* =========================
   RESPONSIVE
========================= */

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

  .core-values-title {
    font-size: 40px;
  }
}

@media (max-width: 640px) {
  .core-values-grid {
    grid-template-columns: 1fr;
  }

  .core-values-title {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .core-values-card {
    padding: 32px 24px;
  }
}

/* trusted partners */

.trusted-partners-section {
  background: #ffffff;
  padding: 80px 0;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.trusted-partners-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.trusted-partners-title {
  font-size: 48px;
  font-weight: 800;
  text-align: center;
  color: #111827;
  margin-bottom: 64px;
}

/* Grid */
.trusted-partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px 24px;
  align-items: center;
}

/* Item */
.trusted-partner-item {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  opacity: 0.5;
  line-height: 38px;
  white-space: nowrap;
}

.trusted-partner-item img {
  max-width: 100%;
  max-height: 80px;
  width: auto;
  object-fit: contain;
}

/* Brand Colors */
.partner-amazon {
  color: #ff9900;
}
.partner-alibaba {
  color: #00aeef;
}
.partner-shopify {
  color: #96bf48;
}
.partner-ebay {
  color: #f16521;
}
.partner-trendyol {
  color: #00aeef;
}
.partner-jumia {
  color: #000000;
}
.partner-emag {
  color: #e62e04;
}
.partner-allegro {
  color: #ffa800;
}
.partner-ozon {
  color: #00a1e0;
}
.partner-rakuten {
  color: #d9251d;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1025px) {
  .trusted-partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .trusted-partners-title {
    font-size: 40px;
  }
}

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

  .trusted-partners-title {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .trusted-partner-item {
    font-size: 20px;
  }
}

@media (max-width: 420px) {
  .trusted-partners-grid {
    grid-template-columns: 1fr;
  }
}

/* worldef cta */

.worldef-cta-section {
  background: linear-gradient(106.18deg, #ff6b35 0%, #ff5722 100%);
  padding: 100px 0;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.worldef-cta-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.worldef-cta-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 16px;
}

.worldef-cta-text {
  font-size: 20px;
  line-height: 32px;
  color: #ffffff;
  opacity: 0.95;
  margin-bottom: 40px;
}

.worldef-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 57px;
  padding: 0 48px;
  background: #ffffff;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ff6b35;
  text-decoration: none;
  transition: all 0.25s ease;
}

.worldef-cta-button:hover {
  background: #fff5f0;
  transform: translateY(-2px);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1025px) {
  .worldef-cta-title {
    font-size: 40px;
  }
}

@media (max-width: 640px) {
  .worldef-cta-section {
    padding: 72px 0;
  }

  .worldef-cta-title {
    font-size: 32px;
    line-height: 1.4;
  }

  .worldef-cta-text {
    font-size: 18px;
    margin-bottom: 32px;
  }

  .worldef-cta-button {
    width: 100%;
    max-width: 320px;
  }
}

/* CONTACT PAGE */

.worldef-contact {
  font-family: "Plus Jakarta Sans", sans-serif;
  background: #ffffff;
  padding: 100px 0;
}

.worldef-contact-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

/* LEFT CONTENT */

.worldef-contact-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 16px;
  color: #111827;
}

.worldef-contact-desc {
  font-size: 18px;
  line-height: 1.7;
  color: #6b7280;
  margin-bottom: 32px;
}

.worldef-contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.worldef-contact-card {
  background: #f9fafb;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
}

.worldef-contact-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #111827;
}

.worldef-contact-card a,
.worldef-contact-card span {
  font-size: 16px;
  font-weight: 600;
  color: #7c3aed;
  text-decoration: none;
}

.worldef-contact-phone {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.worldef-contact-phone div {
  font-size: 16px;
  color: #6b7280;
}

/* FORM */

.worldef-contact-form-wrapper {
  background: #f9fafb;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  padding: 32px;
}

.worldef-contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.worldef-contact-form label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #111827;
}

.worldef-contact-form input,
.worldef-contact-form select,
.worldef-contact-form textarea {
  width: 100%;
  padding: 14px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
}

.worldef-contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.worldef-contact-full {
  grid-column: span 2;
}

.worldef-contact-submit {
  grid-column: span 2;
  height: 50px;
  background: linear-gradient(95.53deg, #ff6b35 0%, #ff5722 100%);
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
  cursor: pointer;
  transition: opacity 0.25s ease;
}

.worldef-contact-submit:hover {
  opacity: 0.9;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 1025px) {
  .worldef-contact-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .worldef-contact {
    padding: 72px 0;
  }

  .worldef-contact-title {
    font-size: 32px;
  }

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

  .worldef-contact-full {
    grid-column: span 1;
  }

  .worldef-contact-submit {
    grid-column: span 1;
  }
}

.contact-section {
  background-color: #1e2f54;
  padding: 80px 20px;
}

.contact-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 56px;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin: 0;
}

.contact-description {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.6;
  opacity: 0.9;
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* =========================
       RESPONSIVE
    ========================= */

@media (max-width: 767px) {
  .contact-title {
    font-size: 40px;
  }

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

@media (max-width: 480px) {
  .contact-section {
    padding: 60px 16px;
  }

  .contact-title {
    font-size: 32px;
  }

  .contact-description {
    font-size: 16px;
  }
}

/* ===== OUR OFFICES SECTION ===== */
.our-offices {
  background: #f9fafb;
  padding: 80px 16px;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.our-offices__title {
  text-align: center;
  font-size: 48px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 32px;
}

/* Tabs */
.our-offices__tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.our-offices__tab {
  padding: 12px 24px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 700;
  border: 2px solid #e5e7eb;
  background: #ffffff;
  cursor: pointer;
  color: #111827;
}

.our-offices__tab--active {
  background: #7c3aed;
  border-color: #7c3aed;
  color: #ffffff;
}

/* Cards */
.our-offices__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.office-card {
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.office-card__image {
  height: 250px;
  background: #e5e7eb;
  background-size: cover;
  background-position: center;
}

.office-card__content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.office-card__title {
  font-size: 24px;
  font-weight: 800;
  color: #111827;
}

.office-card__address {
  font-size: 15px;
  line-height: 26px;
  color: #6b7280;
}

.office-card__info {
  font-size: 14px;
  line-height: 22px;
  color: #6b7280;
}

.office-card__info strong {
  color: #111827;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 767px) {
  .our-offices__title {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .our-offices__title {
    font-size: 28px;
  }

  .office-card__image {
    height: 200px;
  }
}

/* ===== GLOBAL REACH SECTION ===== */
.global-reach {
  background: #ffffff;
  padding: 80px 16px;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.global-reach__wrapper {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  min-height: 500px;
}

.global-reach__wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.global-reach__card {
  background: rgba(124, 58, 237, 0.95);
  border-radius: 12px;
  padding: 24px 32px;
  text-align: center;
  max-width: 400px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.global-reach__title {
  font-size: 28px;
  font-weight: 800;
  line-height: 45px;
  color: #ffffff;
  margin-bottom: 8px;
}

.global-reach__text {
  font-size: 16px;
  line-height: 26px;
  color: #ffffff;
  opacity: 0.95;
}

/* Responsive */
@media (max-width: 767px) {
  .global-reach__wrapper {
    min-height: 420px;
  }

  .global-reach__wrapper iframe {
    min-height: 420px;
  }

  .global-reach__card {
    max-width: 320px;
    padding: 20px 24px;
  }

  .global-reach__title {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .global-reach {
    padding: 48px 12px;
  }

  .global-reach__wrapper {
    min-height: 360px;
  }

  .global-reach__wrapper iframe {
    min-height: 360px;
  }

  .global-reach__card {
    padding: 18px 20px;
    max-width: 280px;
  }

  .global-reach__title {
    font-size: 22px;
    line-height: 34px;
  }

  .global-reach__text {
    font-size: 15px;
  }
}

/* ===== FAQ SECTION ===== */
.faq-section {
  background: #f9fafb;
  padding: 80px 16px;
  padding-top: 80px;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.faq-section__container {
  max-width: 1200px;
  margin: 0 auto;
}

.faq-section__title {
  font-size: 48px;
  font-weight: 800;
  line-height: 77px;
  text-align: center;
  color: #111827;
  margin-bottom: 64px;
}

/* GRID */
.faq-section__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* CARD */
.faq-section__item {
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 32px;
}

.faq-section__question {
  font-size: 20px;
  font-weight: 800;
  line-height: 32px;
  color: #7c3aed;
  margin-bottom: 12px;
}

.faq-section__answer {
  font-size: 16px;
  line-height: 27px;
  color: #6b7280;
}

/* RESPONSIVE */
@media (max-width: 767px) {
  .faq-section__grid {
    grid-template-columns: 1fr;
  }

  .faq-section__title {
    font-size: 36px;
    line-height: 56px;
  }
}

@media (max-width: 480px) {
  .faq-section__title {
    font-size: 28px;
    line-height: 42px;
    margin-bottom: 40px;
  }

  .faq-section__item {
    padding: 24px;
  }

  .faq-section__question {
    font-size: 18px;
  }
}

.follow-section {
  padding: 80px 20px;
  background: #ffffff;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.follow-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Title */
.follow-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.6;
  color: #111827;
  margin-bottom: 16px;
}

/* Description */
.follow-desc {
  max-width: 600px;
  margin: 0 auto 48px;
  font-size: 18px;
  line-height: 1.6;
  color: #6b7280;
}

/* Social list */
.follow-socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin: 0 24rem;
}

/* Social item */
.follow-social {
  width: 50px;
  height: 50px;
  padding: 11px;
  color: rgb(0, 0, 0);
  text-decoration: none;
  background: #f9fafb;
  border: 2px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.follow-social:hover {
  background: rgba(122, 122, 122, 0.35);
  transform: translateY(-2px);
}

.follow-social svg {
  width: 32px;
  height: 32px;
  fill: #000000;
}

.follow-social:hover svg {
  fill: #000000;
}

/* Newsletter Button */
.follow-newsletter {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #f9fafb;
  border: 2px solid #e5e7eb;
  font-weight: 700;
  font-size: 16px;
  color: #111827;
  cursor: pointer;
  transition: all 0.25s ease;
}

.follow-newsletter:hover {
  background: #7c3aed;
  border-color: #7c3aed;
  color: #ffffff;
}

.follow-newsletter svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 767px) {
  .follow-title {
    font-size: 36px;
  }

  .follow-desc {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .follow-title {
    font-size: 30px;
  }
}

/* SPEAKERS DİRECTORY */

/* Header Spacer */
.spk-header-spacer {
  height: 146.39px;
  background: var(--bg-gray);
}

/* Hero Section */
.spk-hero-section {
  background-color: #1e2f54;
  padding: 100px 24px;
  text-align: center;
  color: var(--white);
}

.spk-hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.spk-hero-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0.9;
}

.spk-hero-title {
  font-size: 56px;
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.1;
}

.spk-hero-subtitle {
  font-size: 18px;
  font-weight: 400;
  opacity: 0.95;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

/* Container */
.spk-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Stats Banner */
.spk-stats-banner {
  background-color: #1e2f54;
  padding: 60px 24px;
  margin-bottom: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.237);
}

.spk-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 1280px;
  margin: 0 auto;
}

.spk-stat-item {
  text-align: center;
  color: var(--white);
}

.spk-stat-number {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 8px;
  line-height: 1;
}

.spk-stat-label {
  font-size: 16px;
  font-weight: 600;
  opacity: 0.9;
}

/* Filters Section */
.spk-filters-section {
  padding: 40px 0 60px;
}

.spk-filters-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 24px;
}

.spk-filters-title {
  font-size: 32px;
  font-weight: 900;
  color: var(--text-primary);
}

.spk-search-box {
  flex: 1;
  max-width: 400px;
  position: relative;
}

.spk-search-input {
  width: 100%;
  padding: 14px 20px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 16px;
  font-family: "Plus Jakarta Sans", sans-serif;
  transition: all 0.2s ease;
}

.spk-search-input:focus {
  outline: none;
  border-color: var(--primary-purple);
}

.spk-filter-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.spk-filter-tab {
  padding: 12px 24px;
  background: var(--white);
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
}

.spk-filter-tab:hover,
.spk-filter-tab.active {
  background: var(--primary-purple);
  color: var(--white);
  border-color: var(--primary-purple);
}

/* Speakers Grid */
.spk-speakers-section {
  padding-bottom: 100px;
}

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

.spk-speaker-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
  cursor: pointer;
}

.spk-speaker-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-purple);
  box-shadow: 0 12px 32px rgba(124, 58, 237, 0.15);
}

.spk-speaker-image {
  width: 100%;
  height: 280px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.spk-speaker-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--primary-purple);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.spk-speaker-info {
  padding: 24px;
}

.spk-speaker-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.spk-speaker-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.spk-speaker-company {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-purple);
  margin-bottom: 16px;
}

.spk-speaker-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.spk-topic-tag {
  padding: 6px 12px;
  background: var(--bg-gray);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
}

/* CTA Section */
.spk-cta-section {
  background: linear-gradient(135deg, #ff6b35 0%, #ff5722 100%);
  padding: 80px 24px;
  text-align: center;
  color: var(--white);
}

.spk-cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.spk-cta-title {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 16px;
}

.spk-cta-description {
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.95;
}

.spk-cta-button {
  padding: 16px 40px;
  background: var(--white);
  color: var(--orange);
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
}

.spk-cta-button:hover {
  color: var(--orange);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Footer Spacer */
.spk-footer-spacer {
  height: 442.59px;
  background: var(--bg-gray);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .spk-speakers-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}

@media (max-width: 1025px) {
  .follow-socials {
    margin: 0px !important;
  }
  .spk-hero-section {
    padding: 80px 24px;
  }

  .spk-hero-title {
    font-size: 48px;
  }

  .spk-hero-subtitle {
    font-size: 16px;
  }

  .spk-stats-banner {
    padding: 50px 24px;
    margin-bottom: 60px;
  }

  .spk-stats-grid {
    gap: 32px;
  }

  .spk-stat-number {
    font-size: 40px;
  }

  .spk-speakers-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .spk-speaker-image {
    height: 240px;
  }

  .spk-cta-title {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .spk-header-spacer {
    height: 80px;
  }

  .spk-hero-section {
    padding: 60px 20px;
  }

  .spk-hero-title {
    font-size: 36px;
  }

  .spk-hero-subtitle {
    font-size: 15px;
  }

  .spk-stats-banner {
    padding: 40px 20px;
    margin-bottom: 50px;
  }

  .spk-stats-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .spk-stat-number {
    font-size: 36px;
  }

  .spk-stat-label {
    font-size: 14px;
  }

  .spk-filters-section {
    padding: 30px 0 50px;
  }

  .spk-filters-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .spk-filters-title {
    font-size: 28px;
  }

  .spk-search-box {
    max-width: 100%;
  }

  .spk-filter-tabs {
    width: 100%;
  }

  .spk-filter-tab {
    padding: 10px 18px;
    font-size: 13px;
  }

  .spk-speakers-section {
    padding-bottom: 60px;
  }

  .spk-speakers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .spk-speaker-image {
    height: 200px;
  }

  .spk-speaker-info {
    padding: 20px;
  }

  .spk-speaker-name {
    font-size: 18px;
  }

  .spk-cta-section {
    padding: 60px 20px;
  }

  .spk-cta-title {
    font-size: 28px;
  }

  .spk-cta-description {
    font-size: 16px;
  }

  .spk-cta-button {
    padding: 14px 32px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .spk-hero-title {
    font-size: 28px;
  }

  .spk-hero-subtitle {
    font-size: 14px;
  }

  .spk-stats-banner {
    padding: 30px 16px;
  }

  .spk-stat-number {
    font-size: 32px;
  }

  .spk-filters-title {
    font-size: 24px;
  }

  .spk-search-input {
    font-size: 14px;
    padding: 12px 16px;
  }

  .spk-filter-tab {
    padding: 8px 14px;
    font-size: 12px;
  }

  .spk-speakers-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .spk-speaker-image {
    height: 240px;
  }

  .spk-cta-title {
    font-size: 24px;
  }

  .spk-cta-description {
    font-size: 14px;
  }

  .spk-cta-button {
    padding: 12px 28px;
    width: 100%;
  }
}

/* ========== OFFCANVAS ANIMATIONS ========== */
.offcanvas-start {
  transition: transform 0.3s ease-in-out;
}

.offcanvas-body .nav-item {
  opacity: 0;
  transform: translateX(-20px);
  animation: slideInLeft 0.4s ease forwards;
}

.offcanvas-body .nav-item:nth-child(1) {
  animation-delay: 0.1s;
}

.offcanvas-body .nav-item:nth-child(2) {
  animation-delay: 0.15s;
}

.offcanvas-body .nav-item:nth-child(3) {
  animation-delay: 0.2s;
}

.offcanvas-body .nav-item:nth-child(4) {
  animation-delay: 0.25s;
}

.offcanvas-body .nav-item:nth-child(5) {
  animation-delay: 0.3s;
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.offcanvas-body .nav-link {
  position: relative;
  transition: all 0.3s ease;
  padding: 12px 0;
  display: block;
}

.offcanvas-body .nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 0;
  height: 2px;
  background: var(--primary-purple);
  transition: width 0.3s ease;
}

.offcanvas-body .nav-link:hover {
  color: var(--primary-purple);
  transform: translateX(5px);
}

.offcanvas-body .nav-link:hover::before {
  width: 30px;
}

.offcanvas-body .announcement-btn {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.offcanvas-body .announcement-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.offcanvas-body .announcement-btn:hover::before {
  width: 300px;
  height: 300px;
}

.offcanvas-body .announcement-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(98, 48, 186, 0.3);
}

/* ========== DESKTOP NAVBAR ANIMATIONS ========== */
.navbar-collapse .nav-link {
  position: relative;
  transition: all 0.3s ease;
}

.navbar-collapse .nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--primary-purple);
  transition: width 0.3s ease;
}

.navbar-collapse .nav-link:hover {
  color: var(--primary-purple);
  transform: translateY(-2px);
}

.navbar-collapse .nav-link:hover::before {
  width: 100%;
}

.navbar-collapse .announcement-btn {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.navbar-collapse .announcement-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.navbar-collapse .announcement-btn:hover::before {
  width: 300px;
  height: 300px;
}

.navbar-collapse .announcement-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(98, 48, 186, 0.3);
}

/* FAQ Header Spacer */
.faq-header-spacer {
  height: 146.39px;
  background: var(--bg-gray);
}

/* FAQ Hero Section */
.faq-hero-section {
  background-color: #1e2f54;
  padding: 100px 24px;
  text-align: center;
  color: var(--white);
}

.faq-hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.faq-hero-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0.9;
}

.faq-hero-title {
  font-size: 64px;
  font-weight: 900;
  margin-bottom: 24px;
  line-height: 1.1;
}

.faq-hero-subtitle {
  font-size: 20px;
  font-weight: 400;
  opacity: 0.95;
  line-height: 1.6;
}

/* FAQ Container */
.faq-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.faq-section-header {
  text-align: center;
  margin-bottom: 64px;
}

.faq-section-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary-purple);
  margin-bottom: 16px;
}

.faq-section-title {
  font-size: 48px;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.faq-section-description {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* FAQ Search Box */
.faq-search-container {
  max-width: 600px;
  margin: 0 auto 64px;
}

.faq-search-box {
  position: relative;
}

.faq-search-input {
  width: 100%;
  padding: 18px 24px;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  font-size: 16px;
  font-family: "Plus Jakarta Sans", sans-serif;
  transition: all 0.2s ease;
}

.faq-search-input:focus {
  outline: none;
  border-color: var(--primary-purple);
}

/* FAQ Category Tabs */
.faq-category-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

.faq-category-tab {
  padding: 12px 24px;
  background: var(--white);
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
}

.faq-category-tab:hover,
.faq-category-tab.active {
  background: var(--primary-purple);
  color: var(--white);
  border-color: var(--primary-purple);
}

/* FAQ Grid */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.faq-category {
  grid-column: 1 / -1;
}

.faq-category-title {
  font-size: 32px;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 3px solid var(--primary-purple);
}

.faq-item {
  background: var(--white);
  padding: 28px 32px;
  border-radius: 12px;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary-purple);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.1);
}

.faq-question {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.4;
}

.faq-answer {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq-answer a {
  color: var(--primary-purple);
  font-weight: 600;
  text-decoration: none;
}

.faq-answer a:hover {
  text-decoration: underline;
}

/* FAQ Contact CTA */
.faq-contact-cta {
  background: linear-gradient(135deg, #ff6b35 0%, #ff5722 100%);
  padding: 64px 48px;
  text-align: center;
  color: var(--white);
  margin-top: 80px;
}

.faq-contact-title {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 16px;
}

.faq-contact-description {
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.95;
}

.faq-contact-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.faq-contact-item {
  text-align: center;
}

.faq-contact-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
  margin-bottom: 8px;
}

.faq-contact-value {
  font-size: 18px;
  font-weight: 700;
}

.faq-contact-button {
  padding: 16px 40px;
  background: var(--white);
  color: #ff5d28;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
}

.faq-contact-button:hover {
  transform: translateY(-2px) scale(1.05);
  color: #ff5d28;
}

/* FAQ Footer Spacer */
.faq-footer-spacer {
  height: 442.59px;
  background: var(--bg-gray);
}

/* FAQ Responsive */
@media (max-width: 1025px) {
  .faq-hero-title {
    font-size: 48px;
  }

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

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

@media (max-width: 767px) {
  .faq-hero-title {
    font-size: 36px;
  }

  .faq-hero-subtitle {
    font-size: 16px;
  }

  .faq-section-title {
    font-size: 32px;
  }

  .faq-category-title {
    font-size: 24px;
  }

  .faq-category-tabs {
    flex-direction: column;
  }

  .faq-category-tab {
    width: 100%;
  }
}

/* Awards Header Spacer */
.awards-header-spacer {
  height: 146.39px;
  background: var(--bg-gray);
}

/* Awards Hero Section */
.awards-hero-section {
  background-color: #1e2f54;
  padding: 100px 24px;
  text-align: center;
  color: var(--white);
}

.awards-hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.awards-hero-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0.9;
}

.awards-hero-title {
  font-size: 64px;
  font-weight: 900;
  margin-bottom: 24px;
  line-height: 1.1;
}

.awards-hero-subtitle {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 40px;
  opacity: 0.95;
  line-height: 1.6;
}

.awards-hero-deadline {
  display: inline-block;
  padding: 12px 32px;
  background: var(--orange);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
}

.awards-btn-primary {
  padding: 13px 32px;
  background: var(--white);
  color: var(--primary-purple);
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
  margin-left: 16px;
}

.awards-btn-primary:hover {
  transform: translateY(-2px) scale(1.05);
  color: var(--primary-purple);
}

/* Awards Container */
.awards-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.awards-container-timeline {
  margin: 0 auto;
}

/* Awards Section */
.awards-section {
  padding: 100px 0;
}

.awards-section-header {
  text-align: center;
  margin-bottom: 64px;
}

.awards-section-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary-purple);
  margin-bottom: 16px;
}

.awards-section-title {
  font-size: 48px;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.awards-section-description {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Awards Categories Grid */
.awards-categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.awards-category-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 16px;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.awards-category-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-purple);
  box-shadow: 0 12px 32px rgba(124, 58, 237, 0.15);
}

.awards-category-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-purple), var(--accent-pink));
}

.awards-category-icon {
  width: 56px;
  height: 56px;
  background: rgba(124, 58, 237, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
}

.awards-category-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--primary-purple);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.awards-category-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.awards-category-description {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.awards-category-criteria {
  font-size: 14px;
  color: var(--text-light);
  font-style: italic;
}

/* Awards Past Winners */
.awards-winners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.awards-winner-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
}

.awards-winner-card:hover {
  border-color: var(--primary-purple);
  transform: translateY(-8px);
}

.awards-winner-year {
  background: linear-gradient(135deg, var(--gold) 0%, #ffa500 100%);
  padding: 16px;
  text-align: center;
  color: var(--text-primary);
  font-size: 18px;
  font-weight: 900;
}

.awards-winner-info {
  padding: 32px 24px;
}

.awards-winner-award {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-purple);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.awards-winner-company {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.awards-winner-description {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Awards Judging Criteria */
.awards-criteria-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.awards-criteria-card {
  background: var(--bg-gray);
  padding: 32px;
  border-radius: 12px;
}

.awards-criteria-number {
  font-size: 48px;
  font-weight: 900;
  color: var(--primary-purple);
  opacity: 0.3;
  margin-bottom: 16px;
}

.awards-criteria-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.awards-criteria-list {
  list-style: none;
}

.awards-criteria-list li {
  padding: 10px 0;
  font-size: 16px;
  color: var(--text-secondary);
  position: relative;
  padding-left: 28px;
}

.awards-criteria-list li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary-purple);
  font-weight: 900;
  font-size: 18px;
}

/* Awards Application Form - Modern Design */
.awards-form-section {
  background: var(--bg-gray);
}

.awards-form-card {
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  padding: 60px;
}

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

.awards-form-grid-full {
  grid-column: span 2;
}

.awards-form-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.awards-form-label .required-star {
  color: #ff6b3d;
  margin-left: 2px;
}

.awards-form-input,
.awards-form-select,
.awards-form-textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 2px solid var(--border-color);
  font-size: 15px;
  font-family: "Plus Jakarta Sans", sans-serif;
  transition: all 0.2s ease;
}

.awards-form-input:focus,
.awards-form-select:focus,
.awards-form-textarea:focus {
  outline: none;
  border-color: var(--primary-purple);
}

.awards-form-textarea {
  min-height: 140px;
  resize: vertical;
}

.awards-section-box {
  background: #f8fafc;
  border: 2px solid var(--border-color);
  border-radius: 20px;
  padding: 32px;
  margin: 40px 0;
}

.awards-section-box h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
}

.awards-section-box p {
  margin: 0 0 24px;
  color: var(--text-gray);
}

.awards-store-input {
  margin-bottom: 16px;
}

.awards-store-input label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.awards-badge-small {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
}

.awards-badge-required {
  background: rgba(139, 79, 255, 0.1);
  color: var(--primary-purple);
}

.awards-badge-optional {
  background: var(--border-color);
  color: #94a3b8;
}

.awards-info-box {
  display: flex;
  gap: 12px;
  background: rgba(139, 79, 255, 0.05);
  padding: 16px;
  border-radius: 12px;
  font-size: 14px;
  color: var(--text-gray);
  margin-top: 16px;
}

.awards-form-submit {
  width: 100%;
  height: 57px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(94deg, #8b4fff, #7c3aed);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 32px;
  transition: all 0.3s ease;
}

.awards-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139, 79, 255, 0.3);
}

.awards-form-helper {
  font-size: 13px;
  color: #64748b;
  margin-top: 6px;
}

/* Awards Footer Spacer */
.awards-footer-spacer {
  height: 442.59px;
  background: var(--bg-gray);
}

/* Awards Responsive */
@media (max-width: 1025px) {
  .awards-hero-title {
    font-size: 48px;
  }

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

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

@media (max-width: 767px) {
  .awards-criteria-grid {
    grid-template-columns: 1fr;
  }
  .awards-hero-title {
    font-size: 36px;
  }

  .awards-hero-subtitle {
    font-size: 16px;
  }

  .awards-section-title {
    font-size: 32px;
  }

  .awards-section {
    padding: 60px 0;
  }

  .awards-categories-grid {
    grid-template-columns: 1fr;
  }

  .awards-winners-grid {
    grid-template-columns: 1fr;
  }

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

  .awards-form-grid-full {
    grid-column: span 1;
  }

  .awards-form-card {
    padding: 32px 24px;
  }

  .awards-btn-primary {
    margin-left: 0;
    margin-top: 16px;
  }
}

/* Awards Timeline - Horizontal Scroll Design */
.awards-timeline-wrapper {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 40px 280px;
  scrollbar-width: none; /* Firefox - scrollbar gizle */
  -ms-overflow-style: none; /* IE/Edge - scrollbar gizle */
  cursor: grab;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch; /* iOS smooth scroll */
}

.awards-timeline-wrapper:active {
  cursor: grabbing;
}

.awards-timeline-wrapper::-webkit-scrollbar {
  display: none; /* Chrome/Safari/Opera - scrollbar gizle */
  height: 0;
  width: 0;
}

.awards-timeline-horizontal {
  display: flex;
  gap: 120px;
  padding: 20px 40px;
  min-width: max-content;
  width: fit-content;
  position: relative;
}

/* Horizontal Line */
.awards-timeline-horizontal::before {
  content: "";
  position: absolute;
  top: 56px;
  left: 180px;
  right: 135px;
  height: 3px;
  background: linear-gradient(to right, #7c3aed, #ec4899);
}

/* Timeline Item Card */
.awards-timeline-item-card {
  width: 260px;
  text-align: center;
  position: relative;
}

/* Icon */
.awards-timeline-icon {
  width: 72px;
  height: 72px;
  background: #7c3aed;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.awards-timeline-icon svg {
  width: 30px;
  height: 30px;
  stroke: white;
  stroke-width: 2;
}

/* Number */
.awards-timeline-number {
  font-size: 56px;
  font-weight: 800;
  color: #e5e7eb;
  margin: 0 0 12px 0;
  line-height: 1;
}

/* Date */
.awards-timeline-date {
  font-size: 11px;
  color: #7c3aed;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

/* Title */
.awards-timeline-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: #111827;
}

/* Text */
.awards-timeline-text {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}

/* Tablet Responsive */
@media (max-width: 1025px) {
  .awards-timeline-wrapper {
    padding: 40px 60px;
  }
}

/* Mobile Responsive */
@media (max-width: 767px) {
  .awards-timeline-wrapper {
    padding: 40px 20px;
  }

  .awards-timeline-horizontal {
    gap: 60px;
    padding: 20px;
  }

  .awards-timeline-horizontal::before {
    top: 46px;
    left: 126px;
    right: 120px;
  }

  .awards-timeline-item-card {
    width: 200px;
  }

  .awards-timeline-number {
    font-size: 42px;
  }

  .awards-timeline-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
  }

  .awards-timeline-icon svg {
    width: 24px;
    height: 24px;
  }

  .awards-timeline-title {
    font-size: 16px;
  }

  .awards-timeline-date {
    font-size: 10px;
  }

  .awards-timeline-text {
    font-size: 13px;
  }
}

.awards-presentation-section {
  background: #ff6b35;
  border-radius: 8px;
  margin: 100px 0;
  padding: 80px 20px;
}

/* CONTAINER */
.awards-presentation-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  position: relative;
}

/* OVERLAY ICON */
.awards-overlay-box {
  width: 80px;
  height: 80px;
  margin: 0 auto 32px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.awards-overlay-box svg {
  width: 40px;
  height: 40px;
  stroke: #fff;
}

/* TITLE */
.awards-presentation-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 20px;
}

/* DESCRIPTION */
.awards-presentation-desc {
  font-size: 18px;
  line-height: 31px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 880px;
  margin: 0 auto 40px;
}

/* BUTTON */
.awards-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: #ffffff;
  border-radius: 12px;
  color: #ff5d28;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.awards-download-btn svg {
  width: 20px;
  height: 20px;
  stroke: #ff5d28;
}

/* FOOTNOTE */
.awards-presentation-meta {
  margin-top: 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

/* RESPONSIVE */
@media (max-width: 767px) {
  .awards-presentation-title {
    font-size: 32px;
  }

  .awards-presentation-desc {
    font-size: 16px;
    line-height: 28px;
  }

  .awards-download-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Header Spacer */
.pe-header-spacer {
  height: 146.39px;
  background: var(--bg-gray);
}

/* Hero Section */
.pe-hero-section {
  background-color: #1e2f54;
  padding: 100px 24px;
  text-align: center;
  color: var(--white);
}

.pe-hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.pe-hero-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0.9;
}

.pe-hero-title {
  font-size: 64px;
  font-weight: 900;
  margin-bottom: 24px;
  line-height: 1.1;
}

.pe-hero-subtitle {
  font-size: 20px;
  font-weight: 400;
  opacity: 0.95;
  line-height: 1.6;
}

/* Container */
.pe-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section */
.pe-section {
  padding: 100px 0;
}

.pe-section-header {
  text-align: center;
  margin-bottom: 64px;
}

.pe-section-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary-purple);
  margin-bottom: 16px;
}

.pe-section-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.pe-section-description {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Stats Grid */
.pe-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 80px;
}

.pe-stat-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 16px;
  border: 2px solid var(--border-color);
  text-align: center;
  transition: all 0.3s ease;
}

.pe-stat-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-purple);
  box-shadow: 0 12px 32px rgba(124, 58, 237, 0.15);
}

.pe-stat-number {
  font-size: 56px;
  font-weight: 900;
  color: var(--primary-purple);
  margin-bottom: 12px;
  line-height: 1;
}

.pe-stat-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-secondary);
}

/* Year Tabs */
.pe-year-tabs {
  display: flex;
  justify-content: start;
  gap: 12px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

.pe-year-tab {
  padding: 5px 20px;
  background: transparent;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
}

.pe-year-tab:hover,
.pe-year-tab.active {
  background: var(--primary-purple);
  color: var(--white);
  border-color: var(--primary-purple);
}

/* Photo Gallery */
.pe-photo-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.pe-photo-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.pe-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.pe-photo-item:hover img {
  transform: scale(1.1);
}

.pe-photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 24px;
  color: var(--white);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pe-photo-item:hover .pe-photo-overlay {
  opacity: 1;
}

.pe-photo-title {
  font-size: 16px;
  font-weight: 700;
}

/* Video Section */
.pe-video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.pe-video-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
}

.pe-video-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-purple);
  box-shadow: 0 12px 32px rgba(124, 58, 237, 0.15);
}

.pe-video-thumbnail {
  position: relative;
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
}

.pe-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pe-video-play:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.pe-video-play:after {
  content: "";
  width: 0;
  height: 0;
  border-left: 20px solid var(--primary-purple);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 5px;
}

.pe-video-info {
  padding: 24px;
}

.pe-video-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.pe-video-description {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Testimonials */
.pe-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.pe-testimonial-card {
  background: var(--white);
  padding: 32px;
  border-radius: 16px;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
}

.pe-testimonial-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-purple);
  box-shadow: 0 12px 32px rgba(124, 58, 237, 0.15);
}

.pe-testimonial-quote {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.pe-testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.pe-author-avatar {
  width: 48px;
  height: 48px;
  background: var(--primary-purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
}

.pe-author-info {
  flex: 1;
}

.pe-author-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-primary);
}

.pe-author-title {
  font-size: 14px;
  color: var(--text-secondary);
}

/* Event Highlights */
.pe-highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.pe-highlight-card {
  background: var(--bg-gray);
  padding: 40px;
  border-radius: 16px;
}

.pe-highlight-icon {
  width: 56px;
  height: 56px;
  background: rgba(124, 58, 237, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.pe-highlight-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--primary-purple);
  fill: none;
  stroke-width: 2;
}

.pe-highlight-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.pe-highlight-description {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Footer Spacer */
.pe-footer-spacer {
  height: 442.59px;
  background: var(--bg-gray);
}

/* Responsive */
@media (max-width: 1025px) {
  .pe-hero-title {
    font-size: 48px;
  }

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

  .pe-photo-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (max-width: 767px) {
  .pe-hero-title {
    font-size: 36px;
  }

  .pe-hero-subtitle {
    font-size: 16px;
  }

  .pe-section-title {
    font-size: 32px;
  }

  .pe-section {
    padding: 60px 0;
  }

  .pe-stats-grid {
    grid-template-columns: 1fr;
  }

  .pe-photo-gallery {
    grid-template-columns: 1fr;
  }

  .pe-video-grid {
    grid-template-columns: 1fr;
  }

  .pe-testimonials-grid {
    grid-template-columns: 1fr !important;
  }
  .pe-highlights-grid {
    grid-template-columns: 1fr;
  }
}

.px-6 {
  padding-left: 10rem;
  padding-right: 10rem;
}

/* Header Spacer */
.cnt-header-spacer {
  height: 146.39px;
  background: var(--bg-gray);
}

/* Hero Section */
.cnt-hero-section {
  background-color: #1e2f54;
  padding: 100px 24px;
  text-align: center;
  color: var(--white);
}

.cnt-hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.cnt-hero-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0.9;
}

.cnt-hero-title {
  font-size: 64px;
  font-weight: 900;
  margin-bottom: 24px;
  line-height: 1.1;
}

.cnt-hero-subtitle {
  font-size: 20px;
  font-weight: 400;
  opacity: 0.95;
  line-height: 1.6;
}

/* Container */
.cnt-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section */
.cnt-section {
  padding: 100px 0;
}

/* Contact Grid */
.cnt-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* Contact Info */
.cnt-contact-info-section {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.cnt-info-card {
  background: var(--white);
  padding: 32px;
  border-radius: 16px;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
}

.cnt-info-card:hover {
  border-color: var(--primary-purple);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.1);
}

.cnt-info-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.cnt-info-icon {
  width: 48px;
  height: 48px;
  background: rgba(124, 58, 237, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cnt-info-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary-purple);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cnt-info-card-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
}

.cnt-info-card-content {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.cnt-info-card-content a {
  color: var(--primary-purple);
  text-decoration: none;
  font-weight: 600;
}

.cnt-info-card-content a:hover {
  text-decoration: underline;
}

/* Social Links */
.cnt-follow-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* Social Icon Button */
.cnt-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 5px;
  background: rgba(124, 58, 237, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7c3aed;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.cnt-social-btn:hover {
  background: #7c3aed;
  color: #ffffff;
}

/* Contact Pill Button */
.cnt-contact-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.15);
  color: #7c3aed;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.cnt-contact-btn svg path {
  fill: #7c3aed;
  transition: all 0.2s ease;
}

.cnt-contact-btn:hover {
  background: #7c3aed;
  color: #ffffff;
}

.cnt-social-btn:hover svg path,
.cnt-contact-btn:hover svg path {
  fill: #ffffff;
}

/* Contact Form */
.cnt-contact-form-section {
  background: var(--white);
  padding: 48px;
  border-radius: 16px;
  border: 2px solid var(--border-color);
}

.cnt-form-title {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.cnt-form-description {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.6;
}

.cnt-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.cnt-form-group {
  margin-bottom: 24px;
}

.cnt-form-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.cnt-form-input,
.cnt-form-select,
.cnt-form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 16px;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text-primary);
  transition: all 0.2s ease;
}

.cnt-form-input:focus,
.cnt-form-select:focus,
.cnt-form-textarea:focus {
  outline: none;
  border-color: var(--primary-purple);
}

.cnt-form-textarea {
  resize: vertical;
  min-height: 150px;
}

.cnt-form-submit {
  width: 100%;
  padding: 18px;
  background: var(--primary-purple);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cnt-form-submit:hover {
  background: var(--dark-purple);
  transform: translateY(-2px);
}

/* Map Section */
.cnt-map-section {
  background: var(--bg-gray);
}

.cnt-map-container {
  width: 100%;
  height: 500px;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid var(--border-color);
}

.cnt-map-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.cnt-map-placeholder-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.cnt-map-placeholder-subtitle {
  font-size: 14px;
  opacity: 0.8;
}
/* Footer Spacer */
.cnt-footer-spacer {
  height: 442.59px;
  background: var(--bg-gray);
}

/* Responsive */
@media (max-width: 1025px) {
  .cnt-hero-title {
    font-size: 48px;
  }

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

@media (max-width: 767px) {
  .cnt-hero-title {
    font-size: 36px;
  }

  .cnt-hero-subtitle {
    font-size: 16px;
  }

  .cnt-section {
    padding: 60px 0;
  }

  .cnt-contact-form-section {
    padding: 32px 24px;
  }

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

/* ========================================
   PAST EVENTS PAGE STYLES
   ======================================== */

/* Filter Groups */
.pe-filter-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pe-filter-title {
  font-size: 14px;
  font-weight: 600;
  color: #475569;
}

.pe-button-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Desktop layout */
@media (min-width: 1025px) {
  .pe-filters-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

/* Expect Section */
.pe-expect-section {
  background: #f9fafb;
  padding: 80px 16px;
}

.pe-expect-container {
  max-width: 1280px;
  margin: 0 auto;
}

.pe-expect-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.6;
  text-align: center;
  color: #111827;
  margin-bottom: 56px;
}

.pe-expect-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.pe-expect-card {
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 200px;
}

.pe-expect-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: #111827;
  line-height: 32px;
}

.pe-expect-card p {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: #111827;
  opacity: 0.9;
}

/* Tablet */
@media (max-width: 1025px) {
  .pe-expect-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pe-expect-title {
    font-size: 34px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .pe-expect-grid {
    grid-template-columns: 1fr;
  }

  .pe-expect-title {
    font-size: 26px;
    line-height: 1.4;
  }

  .pe-expect-card {
    padding: 24px;
  }
}

/* ========================================
   SPONSORS PAGE STYLES
   ======================================== */

/* Partners Section */
.sp-partners-section {
  background-color: #273b5c;
  padding: 80px 40px;
  text-align: center;
  color: var(--white);
}

.sp-partners-container {
  max-width: 1200px;
  margin: 0 auto;
}

.sp-partners-title {
  font-size: 56px;
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.1;
}

.sp-partners-desc {
  font-size: 20px;
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.sp-partners-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin: 40px 0;
}

.sp-stat {
  text-align: center;
}

.sp-stat h3 {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 8px;
}

.sp-stat p {
  font-size: 16px;
  opacity: 0.9;
}

.sp-partners-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 48px;
}

.sp-partner-btn {
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.sp-partner-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--white);
  transform: translateY(-2px);
}

.sp-partner-btn.active {
  background: var(--white);
  color: #273b5c;
  border-color: var(--white);
}

/* Sponsors Section */
.sp-sponsors-section {
  padding: 80px 40px;
}

.sp-sponsors-container {
  max-width: 1400px;
  margin: 0 auto;
}

.sp-sponsor-tier {
  margin-bottom: 80px;
}

.sp-tier-header {
  text-align: center;
  margin-bottom: 48px;
}

.sp-tier-badge {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.sp-tier-badge.platinum {
  background: linear-gradient(135deg, #94a3b8 0%, #64748b 100%);
  color: var(--white);
}

.sp-tier-badge.gold {
  background: linear-gradient(135deg, #fcd34d 0%, #f59e0b 100%);
  color: #92400e;
}

.sp-tier-badge.silver {
  background: linear-gradient(135deg, #cbd5e1 0%, #94a3b8 100%);
  color: #334155;
}

.sp-tier-badge.bronze {
  background: linear-gradient(135deg, #fb923c 0%, #ea580c 100%);
  color: var(--white);
}

.sp-tier-title {
  font-size: 42px;
  font-weight: 900;
  color: var(--text-primary);
}

/* Sponsor Grid */
.sp-sponsors-grid {
  display: grid;
  gap: 32px;
}

.sp-sponsors-grid.platinum {
  grid-template-columns: repeat(2, 1fr);
}

.sp-sponsors-grid.gold {
  grid-template-columns: repeat(3, 1fr);
}

.sp-sponsors-grid.silver,
.sp-sponsors-grid.bronze {
  grid-template-columns: repeat(4, 1fr);
}

.sp-sponsor-card {
  background: var(--white);
  border-radius: 12px;
  padding: 40px;
  border: 2px solid var(--border-color);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.sp-sponsor-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.sp-sponsor-card.platinum:hover {
  border-color: #64748b;
}

.sp-sponsor-card.gold:hover {
  border-color: #f59e0b;
}

.sp-sponsor-card.silver:hover {
  border-color: #94a3b8;
}

.sp-sponsor-card.bronze:hover {
  border-color: #ea580c;
}

.sp-sponsor-logo {
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.sp-sponsor-logo img {
  max-width: 200px;
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s;
}

.sp-sponsor-card:hover .sp-sponsor-logo img {
  filter: grayscale(0%);
  opacity: 1;
}

.sp-sponsor-name {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.sp-sponsor-description {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.sp-sponsor-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-purple);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s;
}

.sp-sponsor-link:hover {
  gap: 12px;
}

.sp-sponsor-link svg {
  width: 16px;
  height: 16px;
}

/* CTA Section */
.sp-cta-section {
  padding: 80px 0px;
  background: var(--white);
}

.sp-cta-container {
  margin: 0 auto;
  text-align: center;
  padding: 60px 400px;
  background: linear-gradient(135deg, #ff6b35 0%, #ff5722 100%);
  color: var(--white);
}

.sp-cta-container h2 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 16px;
}

.sp-cta-container p {
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.95;
  line-height: 1.7;
}

.sp-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.sp-btn-primary {
  padding: 18px 40px;
  background: var(--white);
  color: var(--primary-purple);
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.2s;
}

.sp-btn-primary:hover {
  transform: translateY(-2px);
  color: var(--primary-purple);
}

.sp-btn-secondary {
  padding: 18px 40px;
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.2s;
}

.sp-btn-secondary:hover {
  background: var(--white);
  color: var(--primary-purple);
}

/* Benefits Section */
.sp-benefits-section {
  padding: 80px 40px;
  background: var(--bg-gray);
}

.sp-benefits-container {
  max-width: 1200px;
  margin: 0 auto;
}

.sp-benefits-title {
  font-size: 42px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 48px;
  color: var(--text-primary);
}

.sp-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.sp-benefit-card {
  background: var(--white);
  padding: 32px;
  border-radius: 12px;
  border: 2px solid var(--border-color);
}

.sp-benefit-icon {
  width: 64px;
  height: 64px;
  background: rgba(124, 58, 237, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.sp-benefit-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--primary-purple);
}

.sp-benefit-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.sp-benefit-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 1025px) {
  .sp-sponsors-grid.platinum {
    grid-template-columns: 1fr;
  }

  .sp-sponsors-grid.gold {
    grid-template-columns: repeat(2, 1fr);
  }

  .sp-sponsors-grid.silver,
  .sp-sponsors-grid.bronze {
    grid-template-columns: repeat(3, 1fr);
  }

  .sp-benefits-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .sp-partners-title {
    font-size: 38px;
  }

  .sp-partners-desc {
    font-size: 18px;
  }

  .sp-partners-stats {
    flex-direction: column;
    gap: 32px;
  }

  .sp-partners-buttons {
    flex-direction: column;
  }

  .sp-partner-btn {
    width: 100%;
  }

  .sp-sponsors-grid.gold,
  .sp-sponsors-grid.silver,
  .sp-sponsors-grid.bronze {
    grid-template-columns: 1fr;
  }

  .sp-cta-buttons {
    flex-direction: column;
  }
}

/* ========================================
   MAGAZINE PAGE STYLES
   ======================================== */

/* Hero Section */
.mg-hero {
  background-color: #1e2f54;
  padding: 80px 40px;
  text-align: center;
  color: var(--white);
}

.mg-hero h1 {
  font-size: 56px;
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.1;
}

.mg-hero p {
  font-size: 20px;
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto;
}

/* Magazine Section */
.mg-magazine-section {
  padding: 80px 40px;
}

.mg-magazine-container {
  max-width: 1400px;
  margin: 0 auto;
}

.mg-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.mg-section-title {
  font-size: 48px;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.mg-section-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Latest Issue */
.mg-latest-issue {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 36px;
  padding: 3rem;
  margin-bottom: 80px;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid var(--border-color);
}

.mg-latest-cover {
  position: relative;
  background: var(--bg-gray);
  border-radius: 20px;
}

.mg-latest-cover img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.mg-latest-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  padding: 8px 24px;
  background: var(--primary-purple);
  color: var(--white);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mg-latest-content {
  padding: 60px;
}

.mg-latest-content h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.mg-latest-meta {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}

.mg-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
}

.mg-meta-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--primary-purple);
}

.mg-latest-description {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.mg-latest-highlights {
  margin-bottom: 32px;
}

.mg-latest-highlights h4 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.mg-highlights-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mg-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-secondary);
}

.mg-highlight-item svg {
  width: 20px;
  height: 20px;
  stroke: var(--primary-purple);
  flex-shrink: 0;
  margin-top: 2px;
}

.mg-btn-download {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #ff6b35 0%, #ff5722 100%);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-weight: 500;
  font-size: 16px;
  justify-content: center;
  text-decoration: none;
  width: 100%;
  transition: transform 0.3s ease;
}

.mg-btn-download:hover {
  transform: translateY(-3px);
  color: white;
}

.mg-btn-download svg {
  width: 20px;
  height: 20px;
}

.mg-btn-view-pdf {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background: #f9fafb;
  color: #111827;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s;
  width: 100%;
}

.mg-btn-view-pdf:hover {
  background: var(--white);
  border-color: var(--orange);
  color: var(--orange);
}

.mg-latest-actions {
  display: flex;
  gap: 12px;
  width: 50%;
  align-items: flex-start;
  flex-direction: column;
}

/* Past Issues */
.mg-past-issues {
  margin-top: 80px;
}

.mg-past-issues h3 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 40px;
  color: var(--text-primary);
}

/* Magazines Grid */
.mg-magazines-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}

.mg-magazine-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
  border: 2px solid var(--border-color);
}

.mg-magazine-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-purple);
}

.mg-magazine-cover {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bg-gray);
}

.mg-magazine-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mg-magazine-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 12px;
  background: var(--primary-purple);
  color: var(--white);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mg-magazine-info {
  padding: 24px;
}

.mg-magazine-date {
  font-size: 13px;
  color: var(--primary-purple);
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mg-magazine-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-primary);
  line-height: 1.3;
}

.mg-magazine-excerpt {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.mg-magazine-stats {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

.mg-stat-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-light);
}

.mg-stat-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--primary-purple);
}

.mg-magazine-actions {
  display: flex;
  gap: 12px;
}

.mg-btn-view {
  flex: 1;
  padding: 12px;
  background: linear-gradient(135deg, #ff6b35 0%, #ff5722 100%);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  text-align: center;
  transition: transform 0.3s ease;
}

.mg-btn-view:hover {
  transform: translateY(-2px);
  color: var(--white);
}

.mg-btn-download-small {
  padding: 12px 16px;
  background: #7c3aed;
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mg-btn-download-small:hover {
  transform: translateY(-2px);
}

.mg-btn-download-small svg {
  width: 18px;
  height: 18px;
}

/* Subscribe Section */
.mg-subscribe-section {
  padding: 80px 40px;
  background: var(--white);
}

.mg-subscribe-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.mg-subscribe-container h3 {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.mg-subscribe-container p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.mg-subscribe-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.mg-subscribe-input {
  flex: 1;
  padding: 10px 20px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 16px;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.mg-subscribe-input:focus {
  outline: none;
  border-color: #ff6b35;
}

.mg-subscribe-btn {
  padding: 10px 32px;
  background: linear-gradient(135deg, #ff6b35 0%, #ff5722 100%);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s;
}

.mg-subscribe-btn:hover {
  background-color: #ff6b35;
}

/* Responsive */
@media (max-width: 1025px) {
  .mg-latest-issue {
    grid-template-columns: 1fr;
  }

  .mg-magazines-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .mg-hero h1 {
    font-size: 38px;
  }

  .mg-latest-content {
    padding: 40px 24px;
  }

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

  .mg-subscribe-form {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .mg-magazines-grid {
    grid-template-columns: 1fr;
  }
}

/* Download Modal */
.mg-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.mg-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mg-modal-container {
  background: var(--white);
  border-radius: 20px;
  width: 90%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s;
}

.mg-modal-overlay.active .mg-modal-container {
  transform: scale(1);
}

.mg-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: var(--white);
  border: 2px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 1;
}

.mg-modal-close:hover {
  background: #f3f4f6;
  border-color: var(--primary-purple);
}

.mg-modal-close svg {
  width: 20px;
  height: 20px;
  stroke: var(--text-primary);
}

.mg-modal-header {
  background-color: #1e2f54;
  padding: 48px 40px 40px;
  border-radius: 20px 20px 0 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* .mg-modal-header::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
} */

.mg-modal-icon {
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 3px solid var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.mg-modal-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--white);
}

.mg-modal-title {
  font-size: 28px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.mg-modal-subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 1;
}

.mg-modal-body {
  padding: 40px;
}

.mg-form-group {
  margin-bottom: 24px;
}

.mg-form-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.mg-form-label .required {
  color: var(--accent-pink);
}

.mg-form-input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 15px;
  font-family: "Plus Jakarta Sans", sans-serif;
  transition: all 0.3s;
  background: var(--white);
}

.mg-form-input:focus {
  outline: none;
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.mg-form-input::placeholder {
  color: var(--text-light);
}

.mg-form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}

.mg-form-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border-color);
  border-radius: 4px;
  cursor: pointer;
  margin-top: 2px;
  flex-shrink: 0;
}

.mg-form-checkbox label {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  cursor: pointer;
}

.mg-form-checkbox a {
  color: var(--primary-purple);
  text-decoration: none;
  font-weight: 600;
}

.mg-form-checkbox a:hover {
  text-decoration: underline;
}

.mg-btn-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #ff6b35 0%, #ff5722 100%);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.mg-btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px #ff6b3563;
}

.mg-btn-submit svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.mg-helper-text {
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
  margin-top: 16px;
}

@media (max-width: 576px) {
  .mg-modal-container {
    width: 95%;
    margin: 20px;
  }

  .mg-modal-header,
  .mg-modal-body {
    padding: 32px 24px;
  }

  .mg-modal-title {
    font-size: 24px;
  }
}

/* PEOPLE */
/* Hero Banner */
.pl-hero-banner {
  background-color: #250957;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.pl-hero-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.pl-hero-content h1 {
  font-size: 72px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1;
  letter-spacing: -2px;
}

.pl-hero-subtitle {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.95;
}

.pl-hero-description {
  font-size: 17px;
  line-height: 1.7;
  color: var(--white);
  opacity: 0.95;
}

.pl-hero-image {
  position: relative;
}

.pl-hero-image img {
  width: 100%;
  border-radius: 16px;
}

/* CTA Bar */
.pl-cta-bar {
  background: #1e293b;
  padding: 24px 0;
}

.pl-cta-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 120px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pl-cta-text {
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
}

.pl-btn-explore {
  padding: 10px 36px;
  background: linear-gradient(135deg, #ff6b35 0%, #ff5722 100%);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pl-btn-explore:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px #ff6b3548;
}

/* Section Title */
.pl-section-header {
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 120px 40px;
}

.pl-section-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.pl-section-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* People Grid */
.pl-people-section {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 120px 80px;
}

.pl-people-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}

/* Person Card */
.pl-person-card {
  background: var(--white);
  border: 2px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
}

.pl-person-card:hover {
  border-color: var(--primary-purple);
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(124, 58, 237, 0.2);
}

.pl-person-photo {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.pl-person-info {
  padding: 24px;
}

.pl-person-name {
  font-size: 20px;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.pl-person-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.pl-person-company {
  font-size: 15px;
  color: var(--primary-purple);
  font-weight: 800;
  margin-bottom: 12px;
}

.pl-person-bio {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pl-person-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

.pl-country-flag {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
}

/* View All Button */
.pl-view-all-section {
  text-align: center;
  margin-bottom: 80px;
}

.pl-btn-view-all {
  padding: 10px 36px;
  background: linear-gradient(106.18deg, #ff6b35 0%, #ff5722 100%);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pl-btn-view-all:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px #ff6b3561;
}

/* Filter Section */
.pl-filter-section {
  max-width: 1440px;
  margin: 0 auto;
  padding: 60px 120px 80px;
  background: var(--bg-gray);
}

.pl-filter-title {
  font-size: 36px;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 32px;
}

.pl-filter-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.pl-filter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.pl-filter-column h3 {
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.pl-filter-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pl-filter-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
  cursor: pointer;
  transition: all 0.2s;
}

.pl-filter-item:hover .pl-filter-name {
  color: var(--primary-purple);
}

.pl-filter-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 12px;
}

.pl-filter-count {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-secondary);
}

.pl-flag-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

/* Newsletter */
.pl-newsletter-section {
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 120px;
  text-align: center;
}

.pl-newsletter-title {
  font-size: 42px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.pl-newsletter-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

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

.pl-newsletter-input {
  flex: 1;
  padding: 10px 24px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 15px;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.pl-newsletter-input:focus {
  outline: none;
  border-color: #ff6b35;
}

.pl-btn-subscribe {
  padding: 10px 40px;
  background: linear-gradient(106.18deg, #ff6b35 0%, #ff5722 100%);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
}

.pl-btn-subscribe:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px #ff6b355c;
}

.pl-newsletter-disclaimer {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 16px;
}

/* Footer */
.pl-footer {
  background: var(--text-primary);
  color: var(--white);
  padding: 60px 0 40px;
}

.pl-footer-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 120px;
}

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

.pl-footer-brand h3 {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 16px;
}

.pl-footer-description {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.8;
}

.pl-footer-column h4 {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.pl-footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pl-footer-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.pl-footer-links a:hover {
  opacity: 1;
}

.pl-footer-bottom {
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  opacity: 0.6;
  text-align: center;
}

/* Responsive */
@media (max-width: 1440px) {
  .pl-hero-container,
  .pl-cta-container,
  .pl-section-header,
  .pl-people-section,
  .pl-filter-section,
  .pl-newsletter-section,
  .pl-footer-container {
    padding-left: 60px;
    padding-right: 60px;
  }
}

@media (max-width: 1025px) {
  .pl-hero-container {
    grid-template-columns: 1fr;
  }

  .pl-hero-content h1 {
    font-size: 56px;
  }

  .pl-people-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pl-filter-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 767px) {
  .pl-hero-container,
  .pl-cta-container,
  .pl-section-header,
  .pl-people-section,
  .pl-filter-section,
  .pl-newsletter-section,
  .pl-footer-container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .pl-hero-content h1 {
    font-size: 42px;
  }

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

  .pl-cta-container {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .pl-newsletter-form {
    flex-direction: column;
  }

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

@media (max-width: 480px) {
  .pl-people-grid {
    grid-template-columns: 1fr;
  }
}

/* Hero Section with Image */
.pd-hero-section {
  position: relative;
  height: 600px;
  background-color: #1e2f54;
}

.pd-hero-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 120px;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.pd-hero-content {
  position: relative;
  z-index: 2;
}

.pd-person-name {
  font-size: 64px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.1;
}

.pd-person-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  opacity: 0.95;
  margin-bottom: 32px;
}

.pd-person-short-bio {
  font-size: 17px;
  line-height: 1.7;
  color: var(--white);
  opacity: 0.95;
}

.pd-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid var(--white);
  border-radius: 8px;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 32px;
}

.pd-hero-badge img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.pd-hero-image-wrapper {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.pd-hero-image {
  width: 100%;
  max-width: 500px;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  border: 4px solid rgba(255, 255, 255, 0.3);
}

/* CTA Bar */
.pd-cta-bar {
  background-color: #1e293b;
  padding: 20px 0;
}

.pd-cta-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 120px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pd-cta-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

.pd-btn-explore {
  padding: 12px 28px;
  background: linear-gradient(
    135deg,
    var(--primary-purple) 0%,
    var(--accent-pink) 100%
  );
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
}

.pd-btn-explore:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.4);
}

/* Main Content */
.pd-main-content {
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 120px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
}

/* Biography */
.pd-bio-section h2 {
  font-size: 36px;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.pd-bio-text {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.pd-bio-highlight {
  background: rgba(124, 58, 237, 0.05);
  padding: 24px;
  border-left: 4px solid var(--primary-purple);
  border-radius: 8px;
  margin: 32px 0;
}

.pd-bio-highlight h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.pd-bio-highlight p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* Sidebar */
.pd-sidebar {
  position: sticky;
  top: 24px;
}

.pd-stats-card {
  background: linear-gradient(
    135deg,
    var(--primary-purple) 0%,
    var(--accent-pink) 100%
  );
  padding: 32px;
  border-radius: 16px;
  margin-bottom: 32px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.pd-stats-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -30%;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.pd-stats-card h3 {
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.pd-stat-item {
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.pd-stat-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 4px;
}

.pd-stat-value {
  font-size: 20px;
  font-weight: 900;
}

.pd-info-card {
  background: var(--white);
  padding: 32px;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  margin-bottom: 32px;
}

.pd-info-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.pd-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
}

.pd-info-item:last-child {
  border-bottom: none;
}

.pd-info-icon {
  width: 40px;
  height: 40px;
  background: rgba(124, 58, 237, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pd-info-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--primary-purple);
}

.pd-info-details {
  flex: 1;
}

.pd-info-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.pd-info-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
}

.pd-btn-view-more {
  width: 100%;
  padding: 14px;
  background: var(--white);
  color: var(--primary-purple);
  border: 2px solid var(--primary-purple);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 20px;
}

.pd-btn-view-more:hover {
  background: var(--primary-purple);
  color: var(--white);
}

/* Similar People */
.pd-similar-section {
  padding: 80px 0;
  background: var(--bg-gray);
}

.pd-similar-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 120px;
}

.pd-similar-title {
  font-size: 36px;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 40px;
}

.pd-similar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.pd-similar-card {
  background: var(--white);
  border: 2px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
}

.pd-similar-card:hover {
  border-color: var(--primary-purple);
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(124, 58, 237, 0.15);
}

.pd-similar-photo {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.pd-similar-info {
  padding: 20px;
}

.pd-similar-name {
  font-size: 18px;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.pd-similar-title-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.pd-similar-company {
  font-size: 13px;
  color: var(--primary-purple);
  font-weight: 700;
}

.pd-similar-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border-color);
  font-size: 12px;
  color: var(--text-secondary);
}

.pd-similar-flag {
  width: 16px;
  height: 16px;
  border-radius: 50%;
}

/* Latest News & Analysis Section */
.pd-news-section {
  padding: 80px 0;
  background: var(--white);
}

.pd-news-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 120px;
}

.pd-news-title {
  font-size: 36px;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.pd-news-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 48px;
}

.pd-news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}

.pd-news-article {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-color);
  cursor: pointer;
  transition: all 0.3s;
}

.pd-news-article:hover {
  transform: translateX(8px);
}

.pd-news-image-wrapper {
  width: 200px;
  height: 140px;
  border-radius: 8px;
  overflow: hidden;
}

.pd-news-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.pd-news-article:hover .pd-news-image {
  transform: scale(1.05);
}

.pd-news-content {
  flex: 1;
}

.pd-news-category {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--primary-purple);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.pd-news-article-title {
  font-size: 22px;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.3;
}

.pd-news-article:hover .pd-news-article-title {
  color: var(--primary-purple);
}

.pd-news-excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.pd-news-meta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.pd-news-date {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 600;
}

.pd-view-all-news {
  text-align: center;
  padding-top: 40px;
  border-top: 2px solid var(--border-color);
}

.pd-btn-view-all-news {
  padding: 16px 40px;
  background: var(--white);
  color: var(--text-primary);
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.pd-btn-view-all-news:hover {
  border-color: var(--primary-purple);
  color: var(--primary-purple);
  transform: translateY(-2px);
}

/* Newsletter */
.pd-newsletter-section {
  padding: 80px 0;
}

.pd-newsletter-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 120px;
  text-align: center;
}

.pd-newsletter-title {
  font-size: 42px;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.pd-newsletter-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

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

.pd-newsletter-input {
  flex: 1;
  padding: 10px 24px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 15px;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.pd-newsletter-input:focus {
  outline: none;
  border-color: #ff6b35;
}

.pd-btn-subscribe {
  padding: 10px 40px;
  background: linear-gradient(106.18deg, #ff6b35 0%, #ff5722 100%);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
}

.pd-btn-subscribe:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px #ff6b355c;
}

/* Footer */
.pd-footer {
  background: var(--text-primary);
  color: var(--white);
  padding: 60px 0 40px;
}

.pd-footer-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 120px;
}

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

.pd-footer-brand h3 {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 16px;
}

.pd-footer-description {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.8;
}

.pd-footer-column h4 {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.pd-footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pd-footer-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.pd-footer-links a:hover {
  opacity: 1;
}

.pd-footer-bottom {
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  opacity: 0.6;
  text-align: center;
}

/* Responsive */
@media (max-width: 1440px) {
  .pd-hero-container,
  .pd-cta-container,
  .pd-main-content,
  .pd-similar-container,
  .pd-news-container,
  .pd-newsletter-container,
  .pd-footer-container {
    padding-left: 60px;
    padding-right: 60px;
  }
}

@media (max-width: 1025px) {
  .pd-main-content {
    gap: 25px;
  }

  .pd-sidebar {
    position: relative;
    top: 0;
  }

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

  .pd-news-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .pd-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pd-person-name {
    font-size: 45px;
  }
  .pd-hero-image {
    height: 400px;
  }
}

@media (max-width: 767px) {
  .pd-main-content {
    grid-template-columns: 1fr;
  }
  .pd-hero-section {
    height: auto;
  }

  .pd-hero-container {
    grid-template-columns: 1fr;
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .pd-hero-image-wrapper {
    justify-content: center;
    margin-top: 40px;
  }

  .pd-hero-image {
    max-width: 100%;
    height: 300px;
  }

  .pd-person-name {
    font-size: 36px;
  }

  .pd-person-title {
    font-size: 18px;
  }

  .pd-person-short-bio {
    font-size: 15px;
  }

  .pd-cta-container,
  .pd-main-content,
  .pd-similar-container,
  .pd-news-container,
  .pd-newsletter-container,
  .pd-footer-container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .pd-similar-grid {
    grid-template-columns: 1fr;
  }

  .pd-news-grid {
    grid-template-columns: 1fr;
  }

  .pd-news-article {
    grid-template-columns: 1fr;
  }

  .pd-news-image-wrapper {
    width: 100%;
    height: 200px;
  }

  .pd-newsletter-form {
    flex-direction: column;
  }

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

/* Section */
.bp-banner-partner-section {
  width: 100%;
  background: #1e2f54;
  padding: 100px 0 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Container */
.bp-banner-partner-container {
  width: 100%;
  max-width: 1200px;
  padding: 0 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

/* Heading */
.bp-banner-partner-title {
  font-weight: 800;
  font-size: 56px;
  line-height: 70px;
  letter-spacing: -1px;
  color: #ffffff;
  margin: 0;
}

/* Description */
.bp-banner-partner-desc {
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 0;
}

/* Button */
.bp-banner-partner-button {
  background: linear-gradient(108.24deg, #ff6b3d 0%, #ff5722 100%);
  border-radius: 12px;
  padding: 16px 32px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.bp-banner-partner-button:hover {
  transform: translateY(-2px);
}

.bp-banner-partner-button span {
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  color: #ffffff;
}

/* Partnership Packages Section */
.bp-packages-section {
  background: #f8fafc;
  padding: 80px 0 20px;
}

.bp-packages-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 120px;
}

.bp-packages-title {
  font-size: 30px;
  font-weight: 600;
  text-align: center;
  color: #1e2f54;
  margin-bottom: 60px;
}

/* Comparison Table Styles */
.bp-comparison-table {
  background: transparent;
  margin-bottom: 60px;
  display: grid;
  grid-template-columns: 300px repeat(5, 1fr);
  column-gap: 20px;
}

/* Table Header */
.bp-table-header {
  display: contents;
}

.bp-header-cell {
  padding: 40px 24px;
  text-align: center;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
  min-height: 220px;
  justify-content: start;
  border-radius: 8px 8px 0 0;
}

.bp-header-cell.bp-features-col {
  background: transparent;
  border: none;
  box-shadow: none;
}

.bp-header-cell.bp-dark {
  background: #0f172a;
  color: #fff;
}

/* Table Body */
.bp-table-body {
  display: contents;
}

.bp-table-row {
  display: contents;
}

.bp-feature-name {
  background: #ffffff;
  font-weight: 600;
  font-size: 13px;
  color: #1e2f54;
  padding: 4px 29px;
  line-height: 1.5;
  display: flex;
  align-items: center;
  min-height: 45px;
  white-space: nowrap;
  position: relative;
}

.bp-feature-name::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 28px;
  right: 28px;
  height: 1px;
  background: #e5e7eb;
}

.bp-table-row:last-child .bp-feature-name::before {
  display: none;
}

.bp-table-cell {
  padding: 13px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  text-align: center;
  min-height: 50px;
  position: relative;
}

.bp-table-cell::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  height: 1px;
  background: #e5e7eb;
}

.bp-table-row:last-child .bp-table-cell::before {
  display: none;
}

.bp-table-row:last-child .bp-table-cell {
  border-radius: 0 0 8px 8px;
}

.bp-table-cell.bp-dark {
  background: #0f172a;
}

.bp-table-cell.bp-dark::before {
  background: #1e293b;
}

/* Header Label and Title */
.bp-header-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #64748b;
  text-transform: uppercase;
}

.bp-dark .bp-header-label {
  color: #94a3b8;
}

.bp-header-title {
  font-size: 22px;
  font-weight: 600;
  color: #1e2f54;
  margin: 0;
  letter-spacing: -0.5px;
}

.bp-dark .bp-header-title {
  color: #fff;
}

.bp-header-stars {
  display: flex;
  gap: 0px;
  justify-content: center;
  align-items: center;
  min-height: 36px;
}

.bp-header-stars .bp-star {
  width: 28px;
  height: 28px;
  color: #ff6b35;
  filter: drop-shadow(0 2px 4px rgba(255, 107, 53, 0.3));
}

.bp-table-btn {
  padding: 8px 14px;
  background: #fe6e2f;
  color: #fff;
  border-radius: 28px;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 100%;
  max-width: 200px;
  display: inline-block;
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.2);
}

.bp-table-btn:hover {
  background: #ff5520;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
  color: #fff;
  text-decoration: none;
}

/* ========================================
   MOBILE ACCORDION STYLES
   ======================================== */

/* Display Control */
@media (min-width: 1025px) {
  .bp-desktop-table {
    display: grid;
  }

  .bp-accordion-wrapper {
    display: none;
  }
}

@media (max-width: 1024px) {
  .bp-desktop-table {
    display: none !important;
  }

  .bp-accordion-wrapper {
    display: block;
  }
}

/* Accordion Container */
.bp-accordion-wrapper {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 20px;
  margin-bottom: 60px;
}

/* Accordion Item */
.bp-accordion-item {
  background: #1e2f54 !important;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.bp-accordion-item:hover {
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.1);
}

/* Accordion Header */
.bp-accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: #1e2f54;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
}

.bp-accordion-header:hover {
  background: #1e2f54;
}

.bp-accordion-header[aria-expanded="true"] {
  background: #1e2f54;
  border-bottom: 1px solid #1e2f54;
}

.bp-accordion-title {
  font-size: 13px;
  font-weight: 600;
  color: white;
  line-height: 1.4;
  flex: 1;
  padding-right: 12px;
}

/* Chevron Icon */
.bp-accordion-icon {
  width: 24px;
  height: 24px;
  color: #64748b;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.bp-accordion-header[aria-expanded="true"] .bp-accordion-icon {
  transform: rotate(180deg);
  color: white;
}

/* Accordion Content */
.bp-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bp-accordion-content.active {
  max-height: 2000px;
}

.bp-accordion-body {
  padding: 12px;
  background: #fafafa;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Package Card */
.bp-package-card {
  background: #ffffff;
  border-radius: 6px;
  padding: 10px 12px;
  border: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s ease;
  min-height: 52px;
}

.bp-package-card:hover {
  border-color: #7c3aed;
  box-shadow: 0 2px 8px rgba(124, 58, 237, 0.08);
}

.bp-package-card.dark {
  background: white;
  border-color: #1e293b;
}

/* Package Header (Left side) */
.bp-package-header {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}

.bp-package-label {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #64748b;
  text-transform: uppercase;
  line-height: 1;
}

.bp-package-card.dark .bp-package-label {
  color: #94a3b8;
}

.bp-package-title {
  font-size: 14px;
  font-weight: 700;
  color: #1e2f54;
  margin: 0;
  line-height: 1.2;
}

.bp-package-card.dark .bp-package-title {
  color: #ffffff;
}

.bp-package-stars {
  display: flex;
  gap: 3px;
  margin-top: 2px;
}

.bp-package-stars svg {
  width: 8px;
  height: 12px;
}

.bp-package-stars .star-dots {
  fill: #f59e0b;
}

.bp-package-stars .star-dots-x {
  fill: #d1d5db;
}

/* Package Value (Right side) */
.bp-package-value {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.3rem;
  min-width: 50px;
  flex-direction: column;
}

.bp-package-value .bp-icon-check,
.bp-package-value .bp-icon-x {
  width: 24px;
  height: 24px;
}

.bp-package-value .bp-value {
  font-size: 12px;
  font-weight: 600;
  color: #1e2f54;
  text-align: right;
  white-space: nowrap;
  line-height: 1.2;
}

.bp-package-card.dark .bp-package-value .bp-value {
  color: #ffffff;
}

/* Accessibility */
.bp-accordion-header:focus {
  outline: 2px solid #7c3aed;
  outline-offset: 2px;
}

.bp-accordion-header:focus:not(:focus-visible) {
  outline: none;
}

/* Responsive Adjustments */
@media (max-width: 1024px) and (min-width: 769px) {
  .bp-accordion-wrapper {
    padding: 0px;
  }

  .bp-accordion-body {
    padding: 24px;
  }

  .bp-package-card {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .bp-accordion-wrapper {
    padding: 0px;
    gap: 10px;
  }

  .bp-accordion-header {
    padding: 16px;
  }

  .bp-accordion-title {
    font-size: 13px;
  }

  .bp-accordion-icon {
    width: 20px;
    height: 20px;
  }

  .bp-accordion-body {
    padding: 16px;
    gap: 7px;
  }

  .bp-package-card {
    padding: 7px 14px;
  }

  .bp-package-title {
    font-size: 11px;
  }


}

/* Icons and Values */
.bp-icon-check {
  width: 20px;
  height: 20px;
  fill: #1bc5bd;
  flex-shrink: 0;
}

.bp-icon-x {
  width: 20px;
  height: 20px;
  fill: #1bc5bd;
  flex-shrink: 0;
}

.bp-value {
  font-weight: 700;
  font-size: 16px;
  color: #1e2f54;
  letter-spacing: 0.3px;
}

.bp-dark .bp-value {
  color: #fff;
}

/* Hero Section */
.opd-hero-section {
  background-color: #1e2f54;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.opd-hero-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 120px;
  position: relative;
  z-index: 1;
}

.opd-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 40px;
  opacity: 0.9;
  transition: opacity 0.2s;
}

.opd-back-link:hover {
  opacity: 1;
}

.opd-back-link svg {
  width: 20px;
  height: 20px;
}

.opd-hero-content {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 60px;
  align-items: center;
}

.opd-partner-logo-wrapper {
  width: 200px;
  height: 200px;
  background: var(--white);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.opd-partner-logo {
  max-width: 100%;
  max-height: 100%;
}

.opd-partner-info h1 {
  font-size: 64px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.1;
}

.opd-partner-tagline {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  opacity: 0.95;
  margin-bottom: 24px;
}

.opd-partner-meta {
  display: flex;
  white-space: nowrap;
  gap: 25px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.opd-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
}

.opd-meta-item svg {
  width: 20px;
  height: 20px;
}

.opd-partner-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.opd-badge {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid var(--white);
  border-radius: 8px;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

/* Stats Bar */
.opd-stats-bar {
  background-color: #1e2f54;
  padding: 32px 0;
}

.opd-stats-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 120px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.opd-stat-item {
  text-align: center;
  padding: 20px;
}

.opd-stat-number {
  font-size: 42px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 8px;
}

.opd-stat-label {
  font-size: 14px;
  color: var(--white);
  opacity: 0.8;
  font-weight: 600;
}

/* Main Content */
.opd-main-content {
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 120px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
}

/* About Section */
.opd-about-section h2 {
  font-size: 36px;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.opd-about-text {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

/* Partnership Benefits */
.opd-benefits-section {
  margin-top: 60px;
}

.opd-benefits-section h3 {
  font-size: 28px;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 32px;
}

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

.opd-benefit-card {
  background: var(--white);
  padding: 24px;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  transition: all 0.3s;
}

.opd-benefit-card:hover {
  border-color: var(--primary-purple);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.15);
}

.opd-benefit-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(
    135deg,
    var(--primary-purple) 0%,
    var(--accent-pink) 100%
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.opd-benefit-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--white);
}

.opd-benefit-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.opd-benefit-description {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* Key Initiatives */
.opd-initiatives-section {
  margin-top: 60px;
}

.opd-initiatives-section h3 {
  font-size: 28px;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 32px;
}

.opd-initiative-card {
  background: rgba(124, 58, 237, 0.05);
  padding: 28px;
  border-left: 4px solid var(--primary-purple);
  border-radius: 8px;
  margin-bottom: 24px;
}

.opd-initiative-card h4 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.opd-initiative-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* Sidebar */
.opd-sidebar {
  position: sticky;
  top: 24px;
}

.opd-contact-card {
  background-color: #7c3aed;
  padding: 32px;
  border-radius: 16px;
  color: var(--white);
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}

.opd-contact-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.opd-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.opd-contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.opd-contact-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--white);
}

.opd-contact-info {
  flex: 1;
}

.opd-contact-label {
  font-size: 12px;
  opacity: 0.8;
  font-weight: 600;
  text-transform: uppercase;
}

.opd-contact-value {
  font-size: 15px;
  font-weight: 700;
}

.opd-btn-contact {
  width: 100%;
  padding: 14px;
  background: var(--white);
  color: var(--primary-purple);
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 20px;
  position: relative;
  z-index: 1;
}

.opd-btn-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

.opd-info-card {
  background: var(--white);
  padding: 32px;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  margin-bottom: 32px;
}

.opd-info-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.opd-info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.opd-info-item {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}

.opd-info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.opd-info-item-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.opd-info-item-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
}

/* Related Partners */
.opd-related-section {
  padding: 80px 0;
  background: var(--bg-gray);
}

.opd-related-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 120px;
}

.opd-related-title {
  font-size: 36px;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 40px;
}

.opd-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.opd-related-card {
  background: var(--white);
  border: 2px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
}

.opd-related-card:hover {
  border-color: var(--primary-purple);
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(124, 58, 237, 0.15);
}

.opd-related-logo-wrapper {
  height: 180px;
  background: var(--bg-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.opd-related-logo {
  max-width: 100%;
  max-height: 100%;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s;
}

.opd-related-card:hover .opd-related-logo {
  filter: grayscale(0%);
  opacity: 1;
}

.opd-related-info {
  padding: 20px;
}

.opd-related-name {
  font-size: 18px;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.opd-related-category {
  font-size: 13px;
  color: var(--primary-purple);
  font-weight: 700;
}

/* Footer */
.opd-footer {
  background: var(--text-primary);
  color: var(--white);
  padding: 60px 0 40px;
}

.opd-footer-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 120px;
}

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

.opd-footer-brand h3 {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 16px;
}

.opd-footer-description {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.8;
}

.opd-footer-column h4 {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.opd-footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.opd-footer-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.opd-footer-links a:hover {
  opacity: 1;
}

.opd-footer-bottom {
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  opacity: 0.6;
  text-align: center;
}

/* Responsive */
@media (max-width: 1440px) {
  .opd-hero-container,
  .opd-stats-container,
  .opd-main-content,
  .opd-related-container,
  .opd-footer-container {
    padding-left: 60px;
    padding-right: 60px;
  }
}

@media (max-width: 1025px) {
    .bp-package-value .bp-icon-check,
  .bp-package-value .bp-icon-x {
    width: 15px;
    height: 15px;
  }
  .bp-package-card.dark .bp-package-title {
    color: #1e2f54;
}
  .opd-hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .opd-partner-logo-wrapper {
    margin: 0 auto;
  }

  .opd-partner-meta {
    justify-content: center;
  }

  .opd-partner-badges {
    justify-content: center;
  }

  .opd-partner-info h1 {
    font-size: 48px;
  }

  .opd-stats-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .opd-main-content {
    grid-template-columns: 1fr;
  }

  .opd-sidebar {
    position: relative;
    top: 0;
  }

  .opd-benefits-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 767px) {
  .opd-hero-container,
  .opd-stats-container,
  .opd-main-content,
  .opd-related-container,
  .opd-footer-container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .opd-partner-info h1 {
    font-size: 36px;
  }

  .opd-stats-container {
    gap: 10px;
    grid-template-columns: 1fr;
  }

  .opd-stat-item {
    border-right: none;
  }

  .opd-stat-item:last-child {
    border-bottom: none;
  }

  .opd-related-grid {
    grid-template-columns: 1fr;
  }

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

/* ========================= */
/* BECOME PARTNER - OUR PARTNERS SECTION */
/* ========================= */

.bp-our-partners-section {
  width: 100%;
  height: 224px;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bp-our-partners-container {
  width: 100%;
  max-width: 1200px;
  height: 104px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.bp-our-partners-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 32px;
  color: #64748b;
  text-align: center;
}

.bp-our-partners-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.bp-our-partners-logos {
  display: inline-flex;
  align-items: center;
  gap: 48px;
  padding-right: 48px;
  animation: bpSlideLeft 25s linear infinite;
  white-space: nowrap;
}

.bp-our-partners-logos:hover {
  animation-play-state: paused;
}

@keyframes bpSlideLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.bp-our-partners-logos a {
  display: inline-block;
  text-decoration: none;
}

.bp-our-partners-logos img {
  height: 50px;
  width: auto;
  opacity: 0.6;
  object-fit: contain;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.bp-our-partners-logos a:hover img {
  opacity: 1;
  transform: translateY(-2px);
}

/* ========================= */
/* BECOME PARTNER - STATS SECTION */
/* ========================= */

.bp-stats-section {
  width: 100%;
  background: #f8fafc;
  padding: 80px 0;
}

.bp-stats-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}

.bp-stat {
  text-align: center;
}

.bp-stat-number {
  font-weight: 800;
  font-size: 48px;
  line-height: 77px;
  background: linear-gradient(106.76deg, #8b4fff 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bp-stat-label {
  margin-top: 10px;
  font-weight: 600;
  font-size: 16px;
  line-height: 26px;
  color: #64748b;
}

/* ========================= */
/* BECOME PARTNER - WHY PARTNER SECTION */
/* ========================= */

.bp-why-partner-section {
  width: 100%;
  padding: 80px 0;
}

.bp-why-partner-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 380px;
}

.bp-why-partner-image {
  width: 100%;
  height: 100%;
  min-height: 380px;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
}

.bp-why-partner-content {
  padding: 40px 60px 40px 0;
}

.bp-why-partner-heading {
  font-weight: 800;
  font-size: 36px;
  line-height: 58px;
  color: #0f172a;
  margin: 0 0 24px 0;
}

.bp-why-partner-description {
  font-weight: 400;
  font-size: 16px;
  line-height: 29px;
  color: #64748b;
  margin: 0;
}

/* ========================= */
/* BECOME PARTNER - TESTIMONIALS SECTION */
/* ========================= */

.bp-testimonials-section {
  width: 100%;
  background: linear-gradient(
      120.4deg,
      rgba(15, 23, 42, 0.95),
      rgba(30, 41, 59, 0.95)
    ),
    url("section-bg.jpg");
  position: relative;
  padding: 100px 0;
}

.bp-testimonials-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(236, 72, 153, 0.15),
    rgba(124, 58, 237, 0.15)
  );
  pointer-events: none;
}

.bp-testimonials-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
  position: relative;
  z-index: 2;
}

.bp-testimonials-heading {
  text-align: center;
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 64px 0;
}

.bp-testimonials-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.bp-testimonials-card {
  position: relative;
  height: 520px;
  background: linear-gradient(180deg, #1a0b2e, #2d1b4e);
  border: 3px solid rgba(236, 72, 153, 0.6);
  border-radius: 24px;
  overflow: hidden;
  text-align: center;
  color: #fff;
}

.bp-testimonials-card::after {
  content: "";
  position: absolute;
  left: 0%;
  right: 0%;
  bottom: 0;
  height: 40%;
  background: url("../images/become-partner-profile-bg.png") center/cover;
  opacity: 0.6;
}

.bp-testimonials-brand {
  margin-top: 24px;
  font-size: 16px;
  letter-spacing: 2px;
  font-weight: 800;
}

.bp-testimonials-location {
  font-size: 14px;
  letter-spacing: 1px;
  margin-top: 4px;
}

.bp-testimonials-speaker-img {
  width: 200px;
  height: 280px;
  margin: 24px auto;
  background-size: cover;
  background-position: center;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  position: relative;
  z-index: 2;
}

.bp-testimonials-quote-box {
  position: absolute;
  left: 23px;
  right: 23px;
  bottom: 63px;
  background: rgba(124, 58, 237, 0.95);
  border: 2px solid rgba(236, 72, 153, 0.6);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  border-radius: 16px;
  padding: 20px;
  font-size: 15px;
  font-weight: 600;
  line-height: 22px;
  z-index: 2;
}

.bp-testimonials-name {
  position: absolute;
  bottom: 18px;
  width: 100%;
  font-size: 14px;
  font-weight: 700;
  z-index: 2;
}

.bp-testimonials-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.bp-testimonials-play:hover {
  transform: scale(1.1);
}

.bp-testimonials-play::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 20px solid #000000;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  margin-left: 4px;
}

/* ========================= */
/* BECOME PARTNER - WHAT TO EXPECT SECTION */
/* ========================= */

.bp-expect-section {
  width: 100%;
  background: #f8fafc;
  padding: 100px 0;
}

.bp-expect-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
}

.bp-expect-title {
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.4;
  margin: 0 0 64px 0;
  color: #0f172a;
}

.bp-expect-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.bp-expect-card {
  background: #ffffff;
  border: 1.5px solid #e5e7eb;
  border-radius: 20px;
  padding: 24px;
  transition: all 0.25s ease;
}

.bp-expect-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.bp-expect-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 20px;
}

.bp-expect-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111827;
}

.bp-expect-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #374151;
  margin: 0;
}

/* Responsive */
@media (max-width: 1200px) {
  .bp-expect-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .bp-expect-section {
    padding: 64px 0;
  }

  .bp-expect-title {
    font-size: 30px;
  }

  .bp-expect-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================= */
/* BECOME PARTNER - ADDITIONAL PARTNERSHIPS SECTION */
/* ========================= */

.bp-additional-partnerships-section {
  width: 100%;
  background: #fff;
  padding: 80px 0;
}

.bp-additional-partnerships-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
}

.bp-additional-partnerships-heading {
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  margin: 0 0 60px 0;
  color: #0f172a;
}

.bp-additional-partnerships-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.bp-additional-partnerships-card {
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.bp-additional-partnerships-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.bp-additional-partnerships-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.bp-additional-partnerships-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 12px 0;
  color: #0f172a;
}

.bp-additional-partnerships-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  flex: 1;
}

.bp-additional-partnerships-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #64748b;
  margin-bottom: 6px;
}

.bp-additional-partnerships-features li::before {
  content: "✓";
  color: #1bc5bd;
  font-weight: 700;
}

.bp-additional-partnerships-price {
  font-size: 22px;
  font-weight: 800;
  color: #8b4fff;
  margin: 0 0 12px 0;
}

.bp-additional-partnerships-btn {
  background: #ff5a1f;
  color: #fff;
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: block;
  transition: background 0.2s ease;
}

.bp-additional-partnerships-btn:hover {
  background: #e5501c;
}

/* Responsive */
@media (max-width: 1025px) {
  .bp-additional-partnerships-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .bp-additional-partnerships-section {
    padding: 40px 0;
  }

  .bp-additional-partnerships-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================= */
/* BECOME PARTNER - READY TO PARTNER SECTION */
/* ========================= */

.bp-ready-section {
  width: 100%;
  background: linear-gradient(104.1deg, #ff6b3d 0%, #ff5722 100%);
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bp-ready-container {
  max-width: 800px;
  width: 100%;
  text-align: center;
  color: #ffffff;
  padding: 0 20px;
}

.bp-ready-container h2 {
  font-size: 42px;
  font-weight: 800;
  line-height: 67px;
  margin: 0 0 12px 0;
}

.bp-ready-container p {
  font-size: 18px;
  font-weight: 400;
  line-height: 29px;
  opacity: 0.95;
  margin: 0 0 32px 0;
}

.bp-ready-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background: #ffffff;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  color: #ff6b3d;
  text-decoration: none;
  transition: all 0.25s ease;
}

.bp-ready-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* ========================= */
/* BECOME PARTNER - RESPONSIVE */
/* ========================= */

/* Tablet - 1025px and below */
@media (max-width: 1025px) {
  /* Banner */
  .bp-banner-partner-section {
    padding: 80px 0 60px;
  }

  .bp-banner-partner-container {
    padding: 0 2rem;
  }

  .bp-banner-partner-title {
    font-size: 42px;
    line-height: 56px;
  }

  .bp-banner-partner-desc {
    font-size: 16px;
    line-height: 28px;
  }

  /* Partners Logos */
  .bp-our-partners-section {
    height: auto;
    padding: 60px 0;
  }

  .bp-our-partners-logos {
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .bp-our-partners-logos img {
    height: 50px;
  }

  /* Stats */
  .bp-stats-section {
    padding: 60px 0;
  }

  .bp-stats-container {
    padding: 0 2rem;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  /* Why Partner */
  .bp-why-partner-section {
    padding: 60px 0;
  }

  .bp-why-partner-container {
    padding: 0 2rem;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .bp-why-partner-content {
    padding: 40px;
  }

  /* Testimonials */
  .bp-testimonials-section {
    padding: 80px 0;
  }

  .bp-testimonials-container {
    padding: 0 2rem;
  }

  .bp-testimonials-heading {
    font-size: 36px;
    margin-bottom: 48px;
  }

  .bp-testimonials-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Ready Section */
  .bp-ready-section {
    padding: 60px 0;
  }

  .bp-ready-container h2 {
    font-size: 36px;
    line-height: 52px;
  }

  /* Packages Section */
  .bp-packages-container {
    padding: 0 2rem;
  }

  .bp-packages-title {
    margin-bottom: 48px;
  }

  /* Comparison Table */
  .bp-comparison-table {
    overflow-x: auto;
  }

  .bp-table-column.bp-features-column {
    flex: 0 0 260px;
    min-width: 260px;
  }

  .bp-table-column {
    min-width: 150px;
  }

  .bp-column-header {
    padding: 32px 18px;
    min-height: 200px;
  }

  .bp-header-title {
    font-size: 24px;
  }

  .bp-header-stars .bp-star {
    width: 24px;
    height: 24px;
  }

  .bp-table-btn {
    max-width: 170px;
    padding: 12px;
    font-size: 14px;
  }

  .bp-features-column .bp-column-cell {
    padding: 20px 24px;
    font-size: 14px;
  }

  .bp-column-cell {
    padding: 20px;
  }
}

/* Mobile - 767px and below */
@media (max-width: 767px) {
  /* Banner */
  .bp-banner-partner-section {
    padding: 60px 0 40px;
  }

  .bp-banner-partner-container {
    padding: 0 1.5rem;
  }

  .bp-banner-partner-title {
    font-size: 32px;
    line-height: 42px;
  }

  .bp-banner-partner-desc {
    font-size: 15px;
    line-height: 26px;
  }

  .bp-banner-partner-button {
    padding: 14px 28px;
  }

  /* Partners Logos */
  .bp-our-partners-section {
    padding: 50px 0;
  }

  .bp-our-partners-container {
    height: auto;
  }

  .bp-our-partners-title {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .bp-our-partners-logos img {
    height: 40px;
  }

  /* Stats */
  .bp-stats-section {
    padding: 50px 0;
  }

  .bp-stats-container {
    padding: 0 1.5rem;
    gap: 24px;
  }

  .bp-stat-number {
    font-size: 36px;
    line-height: 56px;
  }

  /* Why Partner */
  .bp-why-partner-section {
    padding: 50px 0;
  }

  .bp-why-partner-container {
    padding: 1.5rem;
    gap: 30px;
  }

  .bp-why-partner-image {
    min-height: 250px;
  }

  .bp-why-partner-content {
    padding: 20px;
  }

  .bp-why-partner-heading {
    font-size: 28px;
    line-height: 40px;
    margin-bottom: 16px;
  }

  .bp-why-partner-description {
    font-size: 15px;
    line-height: 26px;
  }

  /* Testimonials */
  .bp-testimonials-section {
    padding: 60px 0;
  }

  .bp-testimonials-container {
    padding: 0 1.5rem;
  }

  .bp-testimonials-heading {
    font-size: 28px;
    margin-bottom: 32px;
  }

  .bp-testimonials-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .bp-testimonials-card {
    height: 480px;
  }

  .bp-testimonials-speaker-img {
    width: 180px;
    height: 250px;
  }

  .bp-testimonials-quote-box {
    left: 16px;
    right: 16px;
    bottom: 50px;
    font-size: 14px;
    padding: 16px;
  }

  /* Expect Section */
  .bp-expect-section {
    padding: 50px 0;
  }

  .bp-expect-container {
    padding: 0 1.5rem;
  }

  .bp-expect-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  /* Additional Partnerships */
  .bp-additional-partnerships-section {
    padding: 50px 0;
  }

  .bp-additional-partnerships-container {
    padding: 0 1.5rem;
  }

  .bp-additional-partnerships-heading {
    font-size: 28px;
    margin-bottom: 40px;
  }

  /* Ready Section */
  .bp-ready-section {
    padding: 50px 0;
  }

  .bp-ready-container h2 {
    font-size: 28px;
    line-height: 40px;
  }

  .bp-ready-container p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 24px;
  }

  .bp-ready-button {
    padding: 14px 28px;
    font-size: 15px;
  }

  /* Packages Section */
  .bp-packages-section {
    padding: 50px 0 0;
  }

  .bp-packages-container {
    padding: 0 1.5rem;
  }

  /* Comparison Table */
  .bp-comparison-table {
    grid-template-columns: 220px repeat(5, 140px);
    gap: 14px;
    overflow-x: auto;
  }

  .bp-header-cell {
    padding: 24px 14px;
    min-height: 180px;
  }

  .bp-header-label {
    font-size: 11px;
  }

  .bp-header-title {
    font-size: 20px;
  }

  .bp-header-stars .bp-star {
    width: 22px;
    height: 22px;
  }

  .bp-table-btn {
    max-width: 150px;
    padding: 10px 20px;
    font-size: 13px;
  }

  .bp-feature-name {
    padding: 18px 20px;
    font-size: 14px;
  }

  .bp-table-cell {
    padding: 18px 12px;
  }

  .bp-icon-check,
  .bp-icon-x {
    width: 28px;
    height: 28px;
    font-size: 16px;
  }

  .bp-value {
    font-size: 14px;
  }
}

/* Small Mobile - 480px and below */
@media (max-width: 480px) {
  .bp-banner-partner-title {
    font-size: 26px;
    line-height: 36px;
  }

  .bp-our-partners-logos img {
    height: 35px;
  }

  .bp-stat-number {
    font-size: 32px;
  }

  .bp-stat-label {
    font-size: 14px;
  }

  .bp-testimonials-heading,
  .bp-expect-title,
  .bp-additional-partnerships-heading,
  .bp-ready-container h2 {
    font-size: 24px;
    line-height: 34px;
  }

  .bp-why-partner-heading {
    font-size: 24px;
    line-height: 34px;
  }

  /* Comparison Table */
  .bp-comparison-table {
    grid-template-columns: 180px repeat(5, 120px);
    gap: 14px;
    overflow-x: auto;
  }

  .bp-header-cell {
    padding: 20px 12px;
    gap: 14px;
    min-height: 160px;
  }

  .bp-header-label {
    font-size: 10px;
  }

  .bp-header-title {
    font-size: 16px;
  }

  .bp-header-stars .bp-star {
    width: 18px;
    height: 18px;
  }

  .bp-table-btn {
    max-width: 130px;
    padding: 10px 16px;
    font-size: 12px;
  }

  .bp-feature-name {
    padding: 14px 16px;
    font-size: 13px;
  }

  .bp-table-cell {
    padding: 14px 10px;
  }

  .bp-icon-check,
  .bp-icon-x {
    width: 24px;
    height: 24px;
    font-size: 14px;
  }

  .bp-value {
    font-size: 13px;
  }
}

/* ========================= */
/* OUR GLOBAL PARTNERS - HERO SECTION */
/* ========================= */

.ogp-hero-section {
  position: relative;
  width: 100%;
  min-height: 587px;
  background: #1e2f54;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 0;
}

.ogp-hero-container {
  position: relative;
  max-width: 900px;
  width: 100%;
  text-align: center;
  z-index: 2;
  padding: 0 20px;
}

.ogp-hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  margin-bottom: 24px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  background: rgba(139, 79, 255, 0.2);
  border: 2px solid rgba(139, 79, 255, 0.4);
  border-radius: 24px;
}

.ogp-hero-heading {
  font-size: 64px;
  font-weight: 800;
  line-height: 70px;
  letter-spacing: -1px;
  color: #ffffff;
  margin: 0 0 24px 0;
}

.ogp-hero-desc {
  font-size: 20px;
  line-height: 32px;
  color: #94a3b8;
  margin: 0 0 48px 0;
}

.ogp-hero-stats {
  display: flex;
  justify-content: center;
  gap: 80px;
}

.ogp-hero-stat {
  text-align: center;
}

.ogp-hero-stat-value {
  font-size: 48px;
  font-weight: 800;
  line-height: 77px;
  color: #ffffff;
}

.ogp-hero-stat-label {
  font-size: 16px;
  font-weight: 600;
  color: #64748b;
}

/* Responsive */
@media (max-width: 767px) {
  .ogp-hero-stat-label {
    font-size: 12px;
  }
  .ogp-hero-section {
    padding: 80px 0;
    min-height: auto;
  }

  .ogp-hero-heading {
    font-size: 40px;
    line-height: 48px;
  }

  .ogp-hero-desc {
    font-size: 16px;
    line-height: 26px;
  }

  .ogp-hero-stats {
    gap: 45px;
  }

  .ogp-hero-stat-value {
    font-size: 30px;
    line-height: 60px;
  }
}

@media (max-width: 480px) {
  .ogp-hero-section {
    padding: 60px 0;
  }

  .ogp-hero-heading {
    font-size: 32px;
    line-height: 40px;
  }

  .ogp-hero-desc {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 32px;
  }

  .ogp-hero-badge {
    font-size: 12px;
    padding: 6px 16px;
  }
}

/* ==================== OUR GLOBAL PARTNERS - SECTIONS ==================== */

.ogp-section {
  max-width: 1200px;
  margin: 120px auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ogp-section.ogp-reverse {
  direction: rtl;
}

.ogp-section.ogp-reverse > * {
  direction: ltr;
}

.ogp-section-badge {
  display: inline-block;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #8b4fff;
  background: rgba(139, 79, 255, 0.1);
  border-radius: 20px;
  margin-bottom: 24px;
}

.ogp-section h2 {
  font-size: 48px;
  line-height: 58px;
  font-weight: 800;
  margin-bottom: 24px;
  color: #0f172a;
}

.ogp-section p {
  font-size: 18px;
  line-height: 32px;
  color: #64748b;
  margin-bottom: 32px;
}

.ogp-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  border: 2px solid #8b4fff;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  color: #8b4fff;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.ogp-btn:hover {
  background: #8b4fff;
  color: #fff;
  transform: translateY(-2px);
}

.ogp-btn svg {
  width: 20px;
  height: 20px;
}

/* Image Card */
.ogp-image-card {
  position: relative;
  height: 440px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.ogp-image-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ogp-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgb(15 23 42 / 97%) 0%,
    rgb(255 255 255 / 0%) 45%
  );
  pointer-events: none;
}

.ogp-image-text {
  position: absolute;
  left: 40px;
  bottom: 40px;
  color: #fff;
  z-index: 1;
}

.ogp-image-text h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.ogp-image-text span {
  font-size: 14px;
  font-weight: 600;
  color: #94a3b8;
}

/* Light Background Sections */
.ogp-bg-light {
  background: #f8fafc;
  padding: 120px 0;
}

/* CTA Section */
.ogp-cta {
  background: linear-gradient(107.64deg, #8b4fff 0%, #7c3aed 100%);
  padding: 120px 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.ogp-cta::after {
  content: "";
  position: absolute;
  inset: -50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 2%,
    transparent 2%
  );
  background-size: 50px 50px;
  opacity: 0.5;
}

.ogp-cta h2 {
  color: #fff;
  font-size: 48px;
  line-height: 58px;
  font-weight: 800;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.ogp-cta p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 18px;
  line-height: 32px;
  position: relative;
  z-index: 1;
}

.ogp-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.ogp-cta .ogp-btn.ogp-primary {
  background: #fff;
  color: #8b4fff;
  border: 2px solid #fff;
}

.ogp-cta .ogp-btn.ogp-primary:hover {
  background: transparent;
  color: #fff;
}

.ogp-cta .ogp-btn.ogp-outline {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}

.ogp-cta .ogp-btn.ogp-outline:hover {
  background: #fff;
  color: #8b4fff;
}
@media (max-width: 1025px) {
  .ogp-section {
    gap: 25px !important;
    margin: 30px auto;
  }
}
/* Responsive */
@media (max-width: 1025px) {
  .ogp-section h2 {
    font-size: 35px;
  }
}

/* Responsive */
@media (max-width: 767px) {
  .ogp-section {
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 80px auto;
  }

  .ogp-section h2 {
    font-size: 36px;
    line-height: 44px;
  }

  .ogp-section p {
    font-size: 16px;
    line-height: 28px;
  }

  .ogp-image-card {
    height: 380px;
  }

  .ogp-bg-light {
    padding: 80px 0;
  }

  .ogp-cta {
    padding: 80px 20px;
  }

  .ogp-cta h2 {
    font-size: 36px;
    line-height: 44px;
  }

  .ogp-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .ogp-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .ogp-section {
    padding: 0 1.5rem;
    margin: 60px auto;
  }

  .ogp-section h2 {
    font-size: 28px;
    line-height: 36px;
  }

  .ogp-image-card {
    height: 320px;
  }

  .ogp-image-text {
    left: 24px;
    bottom: 24px;
  }

  .ogp-image-text h4 {
    font-size: 20px;
  }

  .ogp-bg-light {
    padding: 60px 0;
  }

  .ogp-cta h2 {
    font-size: 28px;
    line-height: 36px;
  }
}

@media (max-width: 1025px) {
  .ogp-image-card {
    height: 380px;
  }
  .ogp-bg-light {
    padding: 70px 0;
  }
}

/* NEWS PAGE */
/* ================= HERO ================= */
.nws-hero-section {
  position: relative;
  height: 289.59px;
  background: #1e2f54;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nws-hero-content {
  max-width: 1200px;
  width: 100%;
  padding: 0 80px;
  text-align: center;
}

.nws-hero-title {
  font-weight: 800;
  font-size: 55.9px;
  line-height: 90px;
  letter-spacing: -0.5px;
  color: #ffffff;
  margin-bottom: 12px;
}

.nws-hero-description {
  font-size: 20px;
  line-height: 32px;
  color: #ffffff;
  opacity: 0.9;
  max-width: 580px;
  margin: 0 auto;
}

/* ================= FILTER SECTION ================= */
.nws-filter-section {
  position: relative;
  height: 157px;
  background: #ffffff;
}

/* TOP BUTTONS */
.nws-filter-top {
  position: absolute;
  left: 104px;
  top: 32px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  max-width: calc(100% - 104px - 320px - 104px - 20px); /* left margin + search width + right margin + gap */
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: #e5e7eb transparent;
}

.nws-filter-top::-webkit-scrollbar {
  height: 6px;
}

.nws-filter-top::-webkit-scrollbar-track {
  background: transparent;
}

.nws-filter-top::-webkit-scrollbar-thumb {
  background: #e5e7eb;
  border-radius: 3px;
}

.nws-filter-top::-webkit-scrollbar-thumb:hover {
  background: #d1d5db;
}

.nws-filter-btn {
  padding: 8px 24px;
  border-radius: 24px;
  border: 2px solid #e5e7eb;
  background: #ffffff;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.nws-filter-btn.active {
  background: #7c3aed;
  border-color: #7c3aed;
  color: #ffffff;
}

/* BOTTOM BUTTONS */
.nws-filter-bottom {
  position: absolute;
  left: 104px;
  top: 88px;
  display: flex;
  gap: 8px;
}

/* SEARCH */
.nws-filter-search {
  position: absolute;
  right: 104px;
  top: 58px;
  width: 320px;
  height: 40px;
}

.nws-filter-search input {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  border: 2px solid #e5e7eb;
  padding: 0 44px 0 18px;
  font-size: 14px;
  font-family: Arial, sans-serif;
}

.nws-filter-search svg {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  stroke: #9ca3af;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .nws-filter-top,
  .nws-filter-bottom {
    left: 24px;
    right: 24px;
    flex-wrap: wrap;
  }

  .nws-filter-search {
    position: static;
    margin: 16px 24px 0;
    width: auto;
  }

  .nws-filter-section {
    height: auto;
    padding-bottom: 24px;
  }
}

@media (max-width: 768px) {
  .nws-hero-title {
    font-size: 36px;
    line-height: 48px;
  }

  .nws-hero-description {
    font-size: 16px;
  }

  .nws-hero-content {
    padding: 0 24px;
  }
}

.nws-featured-section {
  background: #f9fafb;
  padding: 80px 0;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.nws-featured-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
}

.nws-featured-title {
  font-size: 36px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 32px;
}

/* GRID */
.nws-featured-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}

/* LEFT MAIN */
.nws-featured-main {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  padding-bottom: 24px;
}

.nws-featured-main-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.nws-badge {
  display: inline-block;
  margin: 20px 24px 12px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #7c3aed;
  background: rgba(124, 58, 237, 0.1);
  border-radius: 4px;
}

.nws-featured-main-title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.3;
  color: #111827;
  padding: 0 24px;
}

.nws-featured-desc {
  font-size: 16px;
  color: #6b7280;
  padding: 12px 24px;
}

.nws-featured-meta {
  display: flex;
  gap: 8px;
  padding: 0 24px;
  font-size: 14px;
  color: #9ca3af;
}

/* RIGHT */
.nws-featured-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.nws-featured-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  padding-bottom: 16px;
}

.nws-featured-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.nws-featured-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  padding: 12px 16px 8px;
  line-height: 1.4;
}

.nws-featured-card .nws-time {
  font-size: 14px;
  color: #9ca3af;
  padding: 0 16px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .nws-featured-grid {
    grid-template-columns: 1fr;
  }

  .nws-featured-container {
    padding: 0 24px;
  }

  .nws-featured-main-img {
    height: 280px;
  }
}

/* SECTION */
.nws-articles-section {
  padding: 80px 0;
}

.nws-articles-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
}

/* TITLE */
.nws-section-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 48px;
}

/* GRID */
.nws-articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* CARD */
.nws-article-card {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #ffffff;
  overflow: hidden;
  padding-bottom: 24px;
  display: flex;
  flex-direction: column;
}

.nws-article-image {
  height: 220px;
  background: #e5e7eb;
}

/* TAG */
.nws-article-tag {
  align-self: flex-start;
  margin: 16px 0 0 16px;
  padding: 6px 12px;
  background: rgba(124, 58, 237, 0.1);
  color: #7c3aed;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
}

/* CONTENT */
.nws-article-card h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  margin: 16px;
}

.nws-article-card p {
  font-size: 15px;
  line-height: 24px;
  color: #6b7280;
  margin: 0 16px 16px;
}

/* META */
.nws-article-meta {
  margin: auto 16px 0;
  display: flex;
  gap: 8px;
  font-size: 14px;
  color: #9ca3af;
}

/* PAGINATION */
.nws-pagination {
  margin-top: 64px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.nws-page-btn {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 2px solid #e5e7eb;
  background: #ffffff;
  font-weight: 700;
  cursor: pointer;
}

.nws-page-btn.active {
  background: #7c3aed;
  border-color: #7c3aed;
  color: #ffffff;
}

.nws-page-ellipsis {
  display: flex;
  align-items: center;
  padding: 0 8px;
  color: #6b7280;
  font-weight: 700;
  user-select: none;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .nws-articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .nws-articles-grid {
    grid-template-columns: 1fr;
  }

  .nws-articles-container {
    padding: 0 24px;
  }
}
/* NEWSLETTER SECTION */
.nws-newsletter-section {
  background: #1e2f54;
  padding: 64px 0;
}

.nws-newsletter-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
  text-align: center;
}

/* TITLE */
.nws-newsletter-container h2 {
  font-size: 42px;
  font-weight: 800;
  line-height: 67px;
  color: #ffffff;
}

/* DESCRIPTION */
.nws-newsletter-container p {
  margin-top: 16px;
  font-size: 18px;
  line-height: 29px;
  color: #ffffff;
  opacity: 0.9;
}

/* FORM */
.nws-newsletter-form {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* INPUT */
.nws-newsletter-form input {
  width: 320px;
  height: 46px;
  padding: 0 20px;
  border-radius: 8px;
  border: none;
  font-size: 16px;
  outline: none;
}

/* BUTTON */
.nws-newsletter-form button {
  height: 46px;
  padding: 0 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(95.53deg, #ff6b35 0%, #ff5722 100%);
}

/* RESPONSIVE */
@media (max-width: 640px) {
  .nws-newsletter-form {
    flex-direction: column;
  }

  .nws-newsletter-form input,
  .nws-newsletter-form button {
    width: 100%;
  }

  .nws-newsletter-container {
    padding: 0 24px;
  }
}

.star-dots {
  width: 20px;
  height: 20px;
  fill: #f0ad4e;
}
.star-dots-x {
  width: 20px;
  height: 20px;
  fill: #f2f2f2;
}

.sn-container {
        max-width: 1200px;
        margin: auto;
        padding: 32px 16px;
        display: grid;
        grid-template-columns: 1fr 380px;
        gap: 32px;
      }

      @media (max-width: 1024px) {
        .sn-container {
          grid-template-columns: 1fr;
          padding: 20px 12px;
        }
      }

      @media (min-width: 1025px) {
        .sn-article {
          max-width: 788px;
        }
      }

      /* ===== MAIN ===== */

      .sn-badge {
        display: inline-block;
        padding: 6px 12px;
        background: rgba(124, 58, 237, 0.1);
        color: #7c3aed;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.5px;
        border-radius: 4px;
        text-transform: uppercase;
      }

      @media (max-width: 768px) {
        .sn-badge {
          font-size: 11px;
          padding: 5px 10px;
        }
      }

      .sn-article h1 {
        margin: 24px 0 16px;
        font-size: 48px;
        line-height: 1.2;
      }

      @media (max-width: 768px) {
        .sn-article h1 {
          font-size: 28px;
          margin: 16px 0 12px;
        }
      }

      .sn-article h2 {
        font-size: 32px;
        line-height: 1.3;
        margin-top: 32px;
        margin-bottom: 16px;
      }

      @media (max-width: 768px) {
        .sn-article h2 {
          font-size: 24px;
          margin-top: 24px;
          margin-bottom: 12px;
        }
      }

      .sn-article h4 {
        font-size: 20px;
        line-height: 1.4;
        margin-top: 24px;
        margin-bottom: 12px;
      }

      @media (max-width: 768px) {
        .sn-article h4 {
          font-size: 18px;
          margin-top: 20px;
        }
      }

      .sn-article .sn-desc {
        font-size: 20px;
        line-height: 32px;
        color: #6b7280;
      }

      @media (max-width: 768px) {
        .sn-article .sn-desc {
          font-size: 16px;
          line-height: 26px;
        }
      }

      .sn-article p {
        font-size: 16px;
        line-height: 28px;
      }

      @media (max-width: 768px) {
        .sn-article p {
          font-size: 15px;
          line-height: 26px;
        }
      }

      .sn-article ul {
        padding-left: 24px;
      }

      @media (max-width: 768px) {
        .sn-article ul {
          padding-left: 20px;
        }
      }

      .sn-article li {
        font-size: 16px;
        line-height: 28px;
        margin-bottom: 8px;
      }

      @media (max-width: 768px) {
        .sn-article li {
          font-size: 15px;
          line-height: 26px;
        }
      }

      /* Author */
      .sn-author {
        margin-top: 32px;
        display: flex;
        align-items: center;
        gap: 16px;
        flex-wrap: wrap;
      }

      @media (max-width: 768px) {
        .sn-author {
          margin-top: 24px;
          gap: 12px;
        }
      }

      .sn-author-flex {
        display: flex;
        align-items: center;
        gap: 16px;
      }

      @media (max-width: 768px) {
        .sn-author-flex {
          gap: 12px;
        }
      }

      .sn-avatar {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: linear-gradient(135deg, #7c3aed, #ec4899);
        color: #fff;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
      }

      @media (max-width: 768px) {
        .sn-avatar {
          width: 40px;
          height: 40px;
          font-size: 14px;
        }
      }

      .sn-author-info {
        display: flex;
        flex-direction: column;
        gap: 2px;
      }

      .sn-author-info strong {
        font-size: 16px;
      }

      @media (max-width: 768px) {
        .sn-author-info strong {
          font-size: 15px;
        }
      }

      .sn-author-info span {
        display: block;
        font-size: 14px;
        color: #9ca3af;
      }

      @media (max-width: 768px) {
        .sn-author-info span {
          font-size: 13px;
        }
      }

      .sn-socials {
        margin-left: auto;
        display: flex;
        gap: 8px;
      }

      @media (max-width: 768px) {
        .sn-socials {
          margin-left: 0;
          width: 100%;
          justify-content: flex-start;
          gap: 6px;
        }
      }

      .sn-socials button {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #fff;
        border: 1px solid #e5e7eb;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s ease;
      }

      .sn-socials button:hover {
        background: #f9fafb;
        border-color: #d1d5db;
      }

      @media (max-width: 768px) {
        .sn-socials button {
          width: 36px;
          height: 36px;
        }

        .sn-socials button svg {
          width: 16px;
          height: 16px;
        }
      }

      /* Listen */
      .sn-listen {
        margin-top: 24px;
        display: inline-flex;
        align-items: center;
        gap: 12px;
        background: #1e2f54;
        color: #fff;
        padding: 10px 20px;
        border-radius: 20px;
        font-size: 14px;
      }

      @media (max-width: 768px) {
        .sn-listen {
          margin-top: 16px;
          font-size: 13px;
          padding: 8px 16px;
        }
      }

      /* Image */
      .sn-cover {
        margin-top: 32px;
        background: #ddd;
        border-radius: 12px;
        width: 100%;
      }

 
    

      /* Content */
      .sn-date {
        margin-top: 16px;
        font-size: 14px;
        color: #9ca3af;
        display: block;
      }

      @media (max-width: 768px) {
        .sn-date {
          margin-top: 12px;
          font-size: 13px;
        }
      }

      blockquote {
        margin: 40px 0;
        padding: 24px;
        background: #f9fafb;
        border-left: 5px solid #7c3aed;
        font-style: italic;
        font-size: 18px;
        color: #6b7280;
      }

      @media (max-width: 768px) {
        blockquote {
          margin: 24px 0;
          padding: 16px;
          font-size: 15px;
          border-left-width: 4px;
        }
      }

      /* Tags */
      .sn-tags {
        margin-top: 48px;
        padding-top: 32px;
        border-top: 1px solid #e5e7eb;
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
      }

      @media (max-width: 768px) {
        .sn-tags {
          margin-top: 32px;
          padding-top: 24px;
          gap: 8px;
        }
      }

      .sn-tag {
        padding: 8px 16px;
        background: #f9fafb;
        border-radius: 20px;
        font-size: 14px;
        color: #6b7280;
      }

      @media (max-width: 768px) {
        .sn-tag {
          padding: 6px 12px;
          font-size: 13px;
        }
      }

      /* ===== SIDEBAR ===== */
      .sn-sidebar {
        position: relative;
      }

      .sn-sidebar h3 {
        margin-bottom: 16px;
        font-size: 20px;
      }

      @media (max-width: 768px) {
        .sn-sidebar h3 {
          font-size: 18px;
          margin-bottom: 12px;
          margin-top: 32px;
        }

        .sn-sidebar h3:first-child {
          margin-top: 0;
        }
      }

      .sn-related-item {
        display: flex;
        gap: 12px;
        padding: 12px;
        border-radius: 8px;
        margin-bottom: 8px;
      }

      @media (max-width: 768px) {
        .sn-related-item {
          padding: 8px;
          gap: 10px;
        }
      }

      .sn-related-item img {
        width: 100px;
        height: 70px;
        border-radius: 6px;
        background: #ddd;
        object-fit: cover;
        flex-shrink: 0;
      }

      @media (max-width: 768px) {
        .sn-related-item img {
          width: 80px;
          height: 60px;
        }
      }

      .sn-related-item span {
        font-size: 13px;
        color: #9ca3af;
      }

      @media (max-width: 768px) {
        .sn-related-item span {
          font-size: 12px;
        }
      }

      /* Newsletter */
      .sn-newsletter {
        margin-top: 32px;
        padding: 32px;
        border-radius: 12px;
        background: linear-gradient(126deg, #7c3aed, #5b21b6);
        color: #fff;
      }

      @media (max-width: 768px) {
        .sn-newsletter {
          margin-top: 24px;
          padding: 24px;
        }
      }

      .sn-newsletter h4 {
        margin-top: 0;
        margin-bottom: 8px;
        font-size: 20px;
      }

      @media (max-width: 768px) {
        .sn-newsletter h4 {
          font-size: 18px;
        }
      }

      .sn-newsletter p {
        margin-top: 0;
        margin-bottom: 16px;
        font-size: 15px;
        opacity: 0.9;
      }

      @media (max-width: 768px) {
        .sn-newsletter p {
          font-size: 14px;
          margin-bottom: 12px;
        }
      }

      .sn-newsletter input,
      .sn-newsletter button {
        width: 100%;
        height: 42px;
        border-radius: 6px;
        border: none;
        margin-top: 12px;
        font-size: 14px;
      }

      @media (max-width: 768px) {
        .sn-newsletter input,
        .sn-newsletter button {
          height: 40px;
          font-size: 13px;
          margin-top: 8px;
        }
      }

      .sn-newsletter input {
        padding: 0 16px;
      }

      .sn-newsletter button {
        font-weight: 700;
        color: #7c3aed;
        cursor: pointer;
        transition: all 0.2s ease;
      }

      .sn-newsletter button:hover {
        background: #f3f4f6;
      }

      /* Popular Tags */
      .sn-popular-tags {
        margin-top: 32px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
      }

      @media (max-width: 768px) {
        .sn-popular-tags {
          margin-top: 24px;
          gap: 8px;
        }
      }

        /* ========== WORLDEF SECTION ========== */
      .el-worldef-section {
        position: relative;
        width: 100%;
        min-height: 496px;
        background: #1e2f54;
        overflow: hidden;
        padding-bottom: 40px;
      }

      /* Overlay */
      .el-overlay {
        position: absolute;
        left: 0;
        right: 0;
        top: 0.38px;
        bottom: -104.38px;
      }

      /* Logo */
      .el-logo {
        position: absolute;
        width: 100%;
        max-width: 373.45px;
        height: 93px;
        left: 50%;
        transform: translateX(-50%);
        top: 136px;
        background-size: contain;
        padding: 0 16px;
      }

      .el-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
      }

      /* Group 20 */
      .el-group-20 {
        position: absolute;
        width: 100%;
        max-width: 518.05px;
        left: 50%;
        transform: translateX(-50%);
        top: 259px;
        text-align: center;
        padding: 0 16px;
      }

      .el-group-20 p {
        margin: 0 0 24px;
        font-weight: 500;
        font-size: 18px;
        line-height: 29px;
        color: #94a3b8;
      }

      /* Buttons wrapper */
      .el-buttons {
        display: flex;
        justify-content: center;
        gap: 16px;
        flex-wrap: wrap;
      }

      /* Button base */
      .el-btn {
        height: 49px;
        padding: 0 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        font-size: 15px;
        cursor: pointer;
      }

      /* All Events */
      .el-btn-primary {
        background: #ffffff;
        border: 1px solid #8b4fff;
        border-radius: 12px;
        color: #1e2f54;
      }

      /* Upcoming & Past */
      .el-btn-outline {
        background: transparent;
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 8px;
        color: #ffffff;
      }

      /* ========== TRUSTED BY SECTION ========== */
      .el-trusted-section {
        position: relative;
        width: 100%;
        min-height: 211px;
        background: #ffffff;
        border-top: 1px solid #e5e7eb;
        border-bottom: 1px solid #e5e7eb;
        padding-bottom: 40px;
      }

      /* Heading */
      .el-trusted-title {
        position: absolute;
        top: 45px;
        left: 50%;
        transform: translateX(-50%);
        font-weight: 700;
        font-size: 14px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: #6b7280;
        text-align: center;
      }

      /* Logos wrapper */
      .el-logos {
        position: absolute;
        top: 123px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        max-width: 904.55px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        opacity: 0.3;
        padding: 0 16px;
        overflow-x: auto;
        gap: 16px;
      }

      .el-logos::-webkit-scrollbar {
        height: 4px;
      }

      .el-logos::-webkit-scrollbar-track {
        background: transparent;
      }

      .el-logos::-webkit-scrollbar-thumb {
        background: rgba(107, 114, 128, 0.3);
        border-radius: 2px;
      }

      .el-logos img {
        height: 40px;
        width: auto;
        object-fit: contain;
        flex-shrink: 0;
      }

      .el-logos a {
        flex-shrink: 0;
      }

      .el-logo-small {
        width: 32px;
      }

      .el-logo-medium {
        width: 40px;
      }

      .el-logo-normal {
        width: 80px;
      }

      /* ========== STATS SECTION ========== */
      .el-stats-section {
        position: relative;
        width: 100%;
        min-height: 339.17px;
        background: linear-gradient(103.25deg, #ec4899 0%, #7c3aed 100%);
        color: #fff;
        padding-bottom: 60px;
      }

      /* Content wrapper */
      .el-stats-content {
        position: relative;
        padding: 64px 80px;
        height: 211.17px;
      }

      /* Heading */
      .el-stats-title {
        position: absolute;
        top: 71px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        max-width: 721.89px;
        font-weight: 800;
        font-size: 42px;
        line-height: 67px;
        text-align: center;
        padding: 0 16px;
      }

      /* Stats row */
      .el-stats-row {
        position: absolute;
        top: 186.19px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 90px;
        text-align: center;
        padding: 0 16px;
        max-width: 100%;
        overflow-x: auto;
      }

      .el-stats-row::-webkit-scrollbar {
        height: 4px;
      }

      .el-stats-row::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
      }

      .el-stats-row::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.3);
        border-radius: 2px;
      }

      .el-stat-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        flex-shrink: 0;
      }

      .el-stat-number {
        font-weight: 800;
        font-size: 42px;
        line-height: 67px;
      }

      .el-stat-label {
        margin-top: 10px;
        font-weight: 600;
        font-size: 13px;
        line-height: 21px;
        text-transform: uppercase;
        opacity: 0.9;
      }

      /* ========== EVENTS SECTION ========== */
      .el-events-section {
        position: relative;
        width: 100%;
        background: #ffffff;
        padding: 100px 16px;
      }

      /* Cards grid */
      .el-events-grid {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
      }

      /* Card */
      .el-event-card {
        position: relative;
        height: 280px;
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0px 8px 32px rgba(0, 0, 0, 0.1);
        background-size: cover;
        background-position: center;
      }

      /* Gradient overlay */
      .el-event-overlay {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 177.58px;
        background: linear-gradient(
          0deg,
          rgba(15, 23, 42, 0.95) 0%,
          rgba(15, 23, 42, 0) 100%
        );
      }

      /* Content */
      .el-event-content {
        position: absolute;
        left: 32px;
        bottom: 55px;
        right: 32px;
        color: #ffffff;
      }

      .el-event-title {
        font-weight: 800;
        font-size: 26px;
        line-height: 42px;
        white-space: pre-line;
      }

      .el-event-subtitle {
        position: absolute;
        top: 89px;
        font-weight: 600;
        font-size: 14px;
        line-height: 22px;
        color: #94a3b8;
      }

      /* ========== ALL IN E-COMMERCE SECTION ========== */
      .el-all-ecommerce-section {
        position: relative;
        width: 100%;
        background: linear-gradient(
          106.29deg,
          #1a1f3a 0%,
          #2d1b4e 25%,
          #4a1e5c 50%,
          #2d4a7c 75%,
          #1e3a5f 100%
        );
        overflow-x: hidden;
        padding: 78px 16px;
      }

      /* Radial gradients */
      .el-all-ecommerce-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(
            81.32% 278.31% at 20% 50%,
            rgba(124, 58, 237, 0.3) 0%,
            rgba(124, 58, 237, 0) 50%
          ),
          radial-gradient(
            81.32% 278.31% at 80% 50%,
            rgba(59, 130, 246, 0.3) 0%,
            rgba(59, 130, 246, 0) 50%
          );
      }

      /* Title */
      .el-all-title {
        position: relative;
        z-index: 1;
        max-width: 1113.28px;
        margin: 0 auto 78px;
        padding: 0 16px;
        font-weight: 800;
        font-size: 48px;
        line-height: 58px;
        text-align: center;
        background: linear-gradient(
          90deg,
          #e0c3fc 0%,
          #8ec5fc 50%,
          #e0c3fc 100%
        );
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
      }

      /* Pills container */
      .el-pill-container {
        position: relative;
        z-index: 1;
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 16px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px 32px;
      }

      /* Pill */
      .el-pill {
        height: 69.59px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        background: rgba(255, 255, 255, 0.08);
        border: 2px solid rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(5px);
        border-radius: 32px;
        color: #ffffff;
        font-weight: 700;
        font-size: 16px;
        line-height: 26px;
      }


      /* ========== SPEAKERS SECTION ========== */
      .el-speakers-section {
        background: #ffffff;
        padding: 80px 0;
      }

      .el-container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 16px;
      }

      .el-section-title {
        font-weight: 800;
        font-size: 42px;
        line-height: 67px;
        text-align: center;
        color: #111827;
        margin-bottom: 16px;
      }

      .el-section-desc {
        max-width: 800px;
        margin: 0 auto 64px;
        font-size: 17px;
        line-height: 29px;
        text-align: center;
        color: #6b7280;
      }

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

      .el-speaker-card {
        text-align: center;
      }

      .el-speaker-image {
        border-radius: 12px;
        margin-bottom: 16px;
        background-size: cover;
        background-position: center;
      }

      .el-speaker-card h4 {
        font-size: 16px;
        font-weight: 700;
        line-height: 26px;
        margin: 0;
        color: #111827;
      }

      .el-speaker-card span {
        font-size: 14px;
        line-height: 22px;
        color: #6b7280;
      }

      .el-see-more-wrapper {
        display: flex;
        justify-content: center;
        margin-top: 64px;
      }

      .el-see-more-btn {
        width: 180px;
        height: 46px;
        background: #ff6b35;
        border-radius: 8px;
        border: none;
        color: #ffffff;
        font-size: 16px;
        font-weight: 700;
        cursor: pointer;
      }
      /* ========== EXPECT SECTION ========== */
      .el-expect-section {
        background: #f9fafb;
        padding: 80px 0;
      }

      .el-expect-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
      }

      .el-expect-card {
        background: #ffffff;
        border: 2px solid #e5e7eb;
        border-radius: 16px;
        padding: 32px;
      }

      .el-expect-card h3 {
        font-size: 20px;
        font-weight: 800;
        line-height: 32px;
        margin: 0 0 16px;
        color: #111827;
      }

      .el-expect-card p {
        font-size: 14px;
        line-height: 22px;
        color: #111827;
        opacity: 0.9;
        margin: 0;
      }

      /* ========== SPEAKER QUOTE CAROUSEL SECTION ========== */
      .el-quote-section {
        padding: 50px 0;
        background: linear-gradient(111deg, #5b21b6 0%, #1e1b4b 100%);
      }

      .el-profile-card {
        text-align: center;
      }

      .el-profile-card img {
        width: 260px;
        height: 320px;
        object-fit: cover;
        border-radius: 16px;
        margin-bottom: 24px;
      }

      .el-profile-card h4 {
        font-weight: 800;
        margin-bottom: 4px;
        color: #fff;
      }

      .el-profile-card span {
        opacity: 0.9;
        color: #fff;
      }

      .el-quote-box {
        background: rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(6px);
        border-radius: 20px;
        padding: 48px;
      }

      .el-quote-text {
        font-size: 22px;
        font-weight: 600;
        line-height: 1.6;
        color: #fff;
      }

      .el-quote-sub {
        font-size: 15px;
        opacity: 0.9;
        margin-top: 24px;
        color: #fff;
      }

      .el-carousel-controls {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
      }

      .el-carousel-control-btn {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        color: #fff;
        transition: all 0.3s ease;
      }

      .el-carousel-control-btn:hover {
        background: rgba(255, 255, 255, 0.25);
      }

      .el-quote-section .carousel-indicators {
        position: static;
        margin-top: 0px;
        align-items: center;
      }

      .el-quote-section .carousel-indicators [data-bs-target] {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.4);
        border: none;
        margin: 0 6px;
      }

      .el-quote-section .carousel-indicators .active {
        background: #ffffff;
        outline: 1px solid #ffffff;
        outline-offset: 5px;
      }

      .carousel-inner {
        height: 450px;
      }

      /* ========== EVENT GALLERY SECTION ========== */
      .event-gallery-section {
        padding: 80px 16px;
        background: #ffffff;
      }

      .event-gallery-grid {
        max-width: 1280px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
      }

      .event-gallery-card {
        background: #f9fafb;
        border-radius: 8px;
        overflow: hidden;
        height: 296px;
        position: relative;
        cursor: pointer;
      }

      .event-gallery-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
      }

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

      /* ========== HOST WORLDEF SECTION ========== */
      .el-host-section {
        background: linear-gradient(104.55deg, #ff6b35 0%, #ff5722 100%);
        padding: 100px 16px;
        text-align: center;
        color: #ffffff;
      }

      .el-host-section h2 {
        font-size: 48px;
        font-weight: 800;
        line-height: 1.6;
        margin-bottom: 16px;
      }

      .el-host-section p {
        font-size: 20px;
        line-height: 32px;
        opacity: 0.95;
        max-width: 1000px;
        margin: 0 auto 40px;
      }

      .el-host-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 64px;
        padding: 0 48px;
        background: #ffffff;
        border-radius: 8px;
        font-size: 18px;
        font-weight: 700;
        color: #ff632e;
        text-decoration: none;
        transition: all 0.3s ease;
      }

      .el-host-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
      }

      /* ========================================
         EVENTS LISTING - RESPONSIVE STYLES
         ======================================== */

      /* Desktop to Tablet - 1200px */
      @media (max-width: 1200px) {
        .event-gallery-grid {
          grid-template-columns: repeat(3, 1fr);
        }
      }

      /* Tablet and below - 992px */
      @media (max-width: 992px) {
        .el-speakers-grid {
          grid-template-columns: repeat(3, 1fr);
        }

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

        .el-quote-box {
          margin-top: 32px;
        }

        .el-quote-section {
          padding: 60px 0;
        }

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

        .el-pill-container {
          grid-template-columns: repeat(2, 1fr);
        }
      }

      /* Mobile - 768px */
      @media (max-width: 768px) {
        /* Worldef Section */
        .el-worldef-section {
          min-height: auto;
          padding: 60px 16px;
        }

        .el-logo {
          position: relative;
          width: 100%;
          max-width: 250px;
          margin: 0 auto 40px;
          left: auto;
          top: auto;
          transform: none;
          padding: 0 16px;
        }

        .el-group-20 {
          position: relative;
          width: 100%;
          left: auto;
          top: auto;
          transform: none;
        }

        .el-group-20 p {
          font-size: 16px;
          line-height: 26px;
        }

        .el-buttons {
          flex-direction: column;
          gap: 12px;
        }

        /* Trusted Section */
        .el-trusted-section {
          min-height: auto;
          padding: 40px 16px 60px;
        }

        .el-trusted-title {
          position: relative;
          top: auto;
          left: auto;
          transform: none;
          margin-bottom: 40px;
        }

        .el-logos {
          position: relative;
          top: auto;
          left: auto;
          transform: none;
          width: 100%;
          justify-content: flex-start;
          gap: 20px;
        }

        /* Stats Section */
        .el-stats-section {
          min-height: auto;
          padding: 60px 16px;
        }

        .el-stats-content {
          height: auto;
          padding: 0;
        }

        .el-stats-title {
          position: relative;
          top: auto;
          left: auto;
          transform: none;
          width: 100%;
          font-size: 32px;
          line-height: 48px;
          margin-bottom: 40px;
        }

        .el-stats-row {
          position: relative;
          top: auto;
          left: auto;
          transform: none;
          gap: 40px;
          justify-content: flex-start;
        }

        /* Events Section */
        .el-events-section {
          padding: 60px 16px;
        }

        .el-events-grid {
          grid-template-columns: 1fr;
          gap: 24px;
        }

        /* All E-Commerce Section */
        .el-all-ecommerce-section {
          padding: 60px 16px;
        }

        .el-all-title {
          font-size: 28px;
          line-height: 38px;
          margin-bottom: 40px;
          word-break: break-word;
        }

        .el-pill-container {
          grid-template-columns: 1fr;
          gap: 12px;
        }

        .el-pill {
          height: 60px;
          font-size: 14px;
        }

        /* Speakers Section */
        .el-container {
          padding: 0 16px;
        }

        .el-section-title {
          font-size: 32px;
          line-height: 48px;
        }

        .el-section-desc {
          font-size: 15px;
          line-height: 26px;
          margin-bottom: 40px;
        }

        .el-speakers-grid {
          grid-template-columns: repeat(2, 1fr);
          gap: 24px 16px;
        }

     

        .el-see-more-wrapper {
          margin-top: 40px;
        }

        /* Expect Section */
        .el-expect-grid {
          grid-template-columns: 1fr;
          gap: 16px;
        }

        .el-expect-card {
          padding: 24px;
        }

        /* Quote Carousel Section */
        .el-profile-card img {
          width: 200px;
          height: 250px;
        }

        .el-quote-box {
          padding: 32px 24px;
          min-height: auto;
        }

        .el-quote-text {
          font-size: 18px;
        }

        .el-quote-sub {
          font-size: 14px;
        }

        /* Event Gallery */
        .event-gallery-section {
          padding: 60px 16px;
        }

        /* Host Section */
        .el-host-section {
          padding: 80px 16px;
        }

        .el-host-section h2 {
          font-size: 36px;
        }

        .el-host-section p {
          font-size: 16px;
          line-height: 26px;
        }

        .el-host-btn {
          height: 56px;
          padding: 0 32px;
          font-size: 16px;
        }
      }

      /* Small Mobile - 576px */
      @media (max-width: 576px) {
        .el-speakers-grid {
          grid-template-columns: 1fr;
        }

        .event-gallery-section {
          padding: 40px 16px;
        }

        .event-gallery-grid {
          grid-template-columns: 1fr;
        }
      }



        /* ================= HERO ================= */
      .agenda-section {
        background: #1e2f54;
        padding: 80px 16px;
        text-align: center;
        color: #fff;
      }

      .agenda-badge {
        display: inline-flex;
        padding: 10px 24px;
        border-radius: 999px;
        background: rgba(139, 79, 255, 0.2);
        border: 2px solid rgba(139, 79, 255, 0.4);
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 1.5px;
        margin-bottom: 20px;
      }

      .agenda-title {
        font-size: 48px;
        font-weight: 800;
        margin-bottom: 28px;
      }

      .agenda-event {
        display: inline-block;
        padding: 16px 32px;
        background: linear-gradient(99deg, #8b4fff, #7c3aed);
        border-radius: 12px;
        font-size: 18px;
        font-weight: 700;
      }

      /* ================= LAYOUT ================= */
      .agenda-stage-section {
        max-width: 1200px;
        margin: 80px auto;
        padding: 0 24px;
        display: grid;
        grid-template-columns: 300px 1fr;
        gap: 32px;
      }

      /* ================= STAGE CARD ================= */
      .agenda-stage-card {
        border-radius: 20px;
        padding: 32px;
        color: #fff;
        height: fit-content;
      }

      .agenda-stage-card.agenda-blue {
        background: linear-gradient(146deg, #1e40af, #1e3a8a);
      }

      .agenda-stage-card.agenda-pink {
        background: linear-gradient(146deg, #c026d3, #a21caf);
      }

      .agenda-stage-card.agenda-purple {
        background: linear-gradient(146deg, #8b4fff, #7c3aed);
      }
      .agenda-stage-card h3 {
        font-size: 20px;
        font-weight: 800;
        margin-bottom: 16px;
      }

      .agenda-stage-card p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 24px;
      }

      .agenda-stage-list {
        list-style: none;
        padding: 0;
      }

      .agenda-stage-list li {
        font-size: 14px;
        margin-bottom: 10px;
      }

      .agenda-stage-list li::before {
        content: "→ ";
        font-weight: 700;
      }

      /* ================= DATE BAR ================= */
      .agenda-date-bar {
        height: 72px;
        background: linear-gradient(95deg, #8b4fff, #7c3aed);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 32px;
        font-size: 20px;
        font-weight: 800;
        color: #fff;
        margin-bottom: 24px;
        gap: 1rem;
        cursor: pointer; /* Clickable */
        user-select: none;
      }
      
      .agenda-date-bar svg {
          transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      }
      
      .agenda-date-bar.collapsed svg {
          transform: rotate(180deg);
      }
      
      /* ================= ACCORDION WRAPPER ================= */
      .agenda-accordion-wrapper {
          display: grid;
          grid-template-rows: 1fr;
          overflow: hidden;
          transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, margin-top 0.4s ease;
          opacity: 1;
          margin-bottom: 12px;
      }
      
      .agenda-accordion-wrapper.collapsed {
          grid-template-rows: 0fr;
          opacity: 0;
          margin-top: -24px; /* Collapse the gap */
          pointer-events: none;
      }
      
      .agenda-accordion-wrapper > div {
          min-height: 0;
      }

      /* ================= SESSION GRID ================= */
      .agenda-session-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
      }

      /* ================= SESSION CARD ================= */
      .agenda-session-card {
        background: #fff;
        border: 2px solid #e2e8f0;
        border-radius: 24px;
        padding: 24px;
        display: flex;
        flex-direction: column;
        box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
      }

      .agenda-session-card.agenda-highlight {
        background: linear-gradient(135deg, #ff6544, #ff5722);
        color: #fff;
        border: none;
      }

      .agenda-time-badge {
        display: inline-block;
        font-size: 13px;
        font-weight: 700;
        color: #8b4fff;
        background: rgba(139, 79, 255, 0.1);
        padding: 8px 14px;
        border-radius: 8px;
        margin-bottom: 16px;
        width: fit-content;
      }

      .agenda-session-card.agenda-highlight .agenda-time-badge {
        color: #fff;
        background: rgba(255, 255, 255, 0.2);
      }

      .agenda-session-card h5 {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 16px;
      }

      .agenda-session-card p {
        font-size: 14px;
        color: #64748b;
        margin-bottom: 20px;
      }

      .agenda-session-card.agenda-highlight p {
        color: rgba(255, 255, 255, 0.9);
      }

      /* ================= ROLE ================= */
      .agenda-role {
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: #8b4fff;
        margin: 16px 0 8px;
      }

      .agenda-session-card.agenda-highlight .agenda-role {
        color: #fff;
      }

      /* ================= PERSON ================= */
      .agenda-person {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 10px;
      }

      .agenda-avatar {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: linear-gradient(135deg, #cbd5e1, #94a3b8);
        flex-shrink: 0;
      }

      .agenda-avatar img {
        border-radius: 50%;
        padding: 2px;
      }

      .agenda-session-card.agenda-highlight .agenda-avatar {
        background: rgba(255, 255, 255, 0.25);
        border: 2px solid rgba(255, 255, 255, 0.4);
      }

      .agenda-person-info {
        display: flex;
        flex-direction: column;
      }

      .agenda-person-name {
        font-size: 14px;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 2px;
      }

      .agenda-person-title {
        font-size: 13px;
        line-height: 1.3;
        color: #64748b;
      }

      .agenda-session-card.agenda-highlight .agenda-person-title {
        color: rgba(255, 255, 255, 0.9);
      }

      .agenda-person + .agenda-person {
        margin-top: 8px;
      }

      /* ================= RESPONSIVE ================= */
      @media (max-width: 1024px) {
        .agenda-stage-section {
          grid-template-columns: 1fr;
        }

        .agenda-session-grid {
          grid-template-columns: 1fr;
        }
      }