/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  overscroll-behavior: none;
}
body {
  font-family: "KlavikaWeb";
  line-height: 1.6;
  color: black;
  background-color: #f8f9fa;
}
a {
  text-decoration: none !important;
  letter-spacing: 0 !important;
}
img {
  height: auto;
  width: 100%;
  max-width: 100%;
  vertical-align: top;
  border: 0;
}
.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 20px !important;
  position: relative;
  max-width: 1264px !important;
}

html .header .container,
body .header .container {
  max-width: 1304px !important;
  padding: 0 40px !important;
}
/* button style */

.btn-black-style a {
  border-radius: 5px;
  font-size: 16px;
  display: inline-flex;
  padding: 14px 32px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  font-family: "KlavikaWeb";
  margin-top: 3px;
  font-weight: 700;
  transition: color 0.3s, background 0.3s, border 0.3s;
  background-color: #080808;
  color: #00fd92;
  border: 1.5px solid #00a323;
}
.btn-black-style a:hover {
  background: rgba(0, 253, 146, 0.5);
  border: 1.5px solid #00774c;
  color: #080808;
}
.btn-green-style a {
  background-color: #00fd92;
  border-radius: 5px;
  color: #000000;
  font-size: 16px;
  display: inline-flex;
  padding: 12px 32px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: 1.5px solid #006616;
  text-transform: uppercase;
  font-family: "KlavikaWeb";
  margin-top: 3px;
  font-weight: 700;
  line-height: 1.5 !important;
  transition: color 0.3s, background 0.3s, border 0.3s;
}
.btn-green-style a:hover {
  background: #00774c;
  border: 1.5px solid #080808;
  color: #ffffff;
}

/* Header and Navigation */
.ms-ignite-header.header {
  background-color: black !important;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: fixed !important;
  width: 100%;
  top: 0;
  z-index: 1000;
  display: block;
  opacity: 1;
  visibility: visible;
  height: auto;
}
.ms-ignite-header.header .container {
  justify-content: center;
}
.ms-ignite-header .navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0 14px;
  position: relative;
  height: 80px;
  left: 0;
  top: 0;
  background: transparent;
  overflow-y: hidden;
  width: 100%;
  margin-top: 0 !important;
}
.ms-ignite-header nav::before {
  display: none;
}
.ms-ignite-header .nav-brand h1 {
  color: #00fd92;
  font-size: 1.8rem;
  font-weight: bold;
}

.ms-ignite-header .nav-menu {
  display: flex;
  list-style: none;
  gap: 3rem;
  margin-top: 13px;
  padding-left: 6px;
}

.ms-ignite-header .nav-link {
  color: white;
  text-decoration: none;

  font-weight: 500 !important;
  transition: color 0.3s ease;
  font-family: "KlavikaWeb";
  font-size: 16px !important;
  padding: 0.5rem;
  position: relative;
}

.ms-ignite-header .nav-link:hover {
  color: #00fd92;
}
.ms-ignite-header .nav-link:hover:after {
  content: "";
  position: absolute;
  bottom: -2px;

  left: 0;
  height: 4px;
  width: 100%;
  background-color: #00fd92;
}

.ms-ignite-header .nav-link.active {
  color: #00fd92;
}
.ms-ignite-header .nav-link.active:after {
  content: "";
  position: absolute;
  bottom: -2px;

  left: 0;
  height: 4px;
  width: 100%;
  background-color: #00fd92;
}

.ms-ignite-header .hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.ms-ignite-header .bar {
  width: 25px !important;
  height: 3px !important;
  background-color: white !important;
  margin: 3px 0 !important;
  transition: 0.3s;
}

.ms-ignite-header .btn-wrap a {
  background-color: #00fd92;
  border-radius: 5px;
  color: #000000;
  font-size: 16px;
  display: inline-flex;
  padding: 11px 32px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: 1.5px solid #006616;
  text-transform: uppercase;
  font-family: "KlavikaWeb";
  margin-top: 3px;
  font-weight: 700;
  line-height: 1.6 !important;
  transition: color 0.3s, background 0.3s, border 0.3s;
}
.ms-ignite-header .btn-wrap a:hover {
  background: #00774c;
  border: 1.5px solid #080808;
  color: #ffffff;
}
/* Hero Section */
.ms-ignite-hero-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  max-height: 821px;
  margin-top: 55px;
}

/* Background Image */
.ms-ignite-hero-banner .bg-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Hero Content */
.ms-ignite-hero-banner .hero-content {
  position: relative;
  z-index: 3;
  max-width: 840px;
  margin-top: 3px;
  padding: 0 20px;
}

.ms-ignite-hero-banner .event-logo img {
  width: 430px;
  margin-bottom: 64px;
}

.ms-ignite-hero-banner .event-title {
  font-size: 100px !important;
  line-height: 1 !important;
  margin-bottom: 63px;
  color: #080808;
  text-transform: uppercase;
}

.ms-ignite-hero-banner .event-details p {
  font-size: 30px !important;
  margin: 8px 0;
  color: #080808;
  line-height: 32px !important;
  letter-spacing: 0;
}
.ms-ignite-hero-banner .event-details p span {
  font-weight: 300;
  margin: 0 6px;
}
/* CTA Button */
.ms-ignite-hero-banner .event-cta {
  margin-top: 58px;
}

/* ms-ignite-video-section */
.ms-ignite-video-section {
  text-align: center;
  padding: 80px 0;
  position: relative;
  /* z-index: 9999; */
  background-color: #00fd92;
}
.ms-ignite-video-section .bg-image {
  display: none;
}
.ms-ignite-video-section .bg-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.ms-ignite-video-section .video-content {
  position: relative;
  z-index: 3;
}
.ms-ignite-video-section h2 {
  font-size: 56px !important;
  line-height: 58px !important;
  font-weight: 500 !important;
  margin-bottom: 13px;
  color: #080808;
  letter-spacing: 0 !important;
}

.ms-ignite-video-section p {
  font-size: 20px;
  line-height: 26px !important;
  max-width: 950px;
  margin: 0 auto 15px;
  color: #080808;
  letter-spacing: -0.2px;
}

/* Thumbnail */
.ms-ignite-video-section .video-active {
  display: inline-block;
  position: relative;
  cursor: pointer;
}

.ms-ignite-video-section .video-active img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 818px;
}

/* Play button overlay */
.ms-ignite-video-section .video-active::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #6a6a6a;
  background: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.ms-ignite-video-section .video-active::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-33%, -50%);
  border-style: solid;
  border-width: 12px 0 12px 22px;
  border-color: transparent transparent transparent #6a6a6a;
  z-index: 2;
  transition: all 0.3s ease;
}
.ms-ignite-video-section .video-active:hover::before {
  border-color: transparent transparent transparent #000000;
}
.ms-ignite-video-section .video-active:hover::after {
  background: rgba(255, 255, 255, 1);
}

/* Modal */
.ms-ignite-video-section .video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  /* display: flex; */
  align-items: center;
  justify-content: center;
  z-index: 999;
}
.ms-ignite-video-section .video-modal .vedio-wrap {
  width: 90%;
  max-width: 900px;
  height: 60%;
  border: none;
  border-radius: 10px;
  position: relative;
}
.ms-ignite-video-section .video-modal iframe {
  border: none;
  width: 100%;
  height: 100%;
}

.ms-ignite-video-section .video-modal .close {
  position: absolute;
  top: -25px;
  right: 0;
  cursor: pointer;
  opacity: 1 !important;
}

/* ====== SECTION STYLING ====== */
.leaders-section {
  text-align: center;
  padding: 80px 20px;
  position: relative;
  background: #004540;
}
.leaders-section .container {
  z-index: 3;
  position: relative;
}
.leaders-section .bg-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.leaders-section h2 {
  font-size: 56px !important;
  margin-bottom: 18px;
  color: white;
  font-weight: 500 !important;
  line-height: 58px !important;
  letter-spacing: 0 !important;
}

.leaders-section .intro p {
  margin: 10px 0 39px;
  color: white;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px !important;
  letter-spacing: -0.4px;
  font-family: "KlavikaWeb";
  padding: 0 40px;
}

/* ====== GRID ====== */
.leaders-grid {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  min-height: 383px;
}

.leader-card {
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  width: 287px;
  flex-direction: column;
  border-radius: 5px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 6px 6px 12px 0 rgba(0, 0, 0, 0.15);
}
.leader-card .img-wrap {
  overflow: hidden;
}
.leader-card:hover {
  border-bottom: 2px solid #00774c;
}
.leader-card:hover .img-wrap img {
  transform: scale(1.05);
}
.leader-card img {
  width: 100%;
  height: 289px;
  transform: scale(1);
  transition: all 0.3s ease;
  object-fit: cover;
}
.leader-card .content-wrap {
  background: black;
  width: 100%;
  padding: 8px 15px;
}
.leader-card h3 {
  color: #fff;
  font-family: "KlavikaWeb";
  font-size: 22px !important;
  font-style: normal;
  font-weight: 500 !important;
  line-height: 28px !important;
  letter-spacing: -0.22px !important;
}

.leader-card p {
  color: white;
  font-family: "KlavikaWeb";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px !important;
  letter-spacing: -0.36px;
}

.leaders-section .btn-wrap .btn {
  margin-top: 39px;
}

/* Hide the bio content inside cards */
.leader-overlay-content {
  display: none;
}

/* ====== MODAL OVERLAY ====== */
.bio-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.bio-overlay.active {
  display: flex;
  animation: fadeIn 0.3s ease forwards;
}

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

/* ====== MODAL CONTENT ====== */
.bio-content {
  background: #fff;
  color: #000;
  width: 90%;
  max-width: 1018px;
  transform: none !important;
  flex-direction: row;
  border-radius: 14px;
  padding: 64px 7px 3px 64px;
  position: relative;
  gap: 30px;
  border-radius: 5px;
  /* Card shadow */
  box-shadow: 6px 6px 12px 0 rgba(0, 0, 0, 0.15);
  animation: slideUp 0.35s ease forwards;
}
.bio-dynamic-content {
  display: flex;
  justify-content: space-between;
}
@keyframes slideUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Close Button */
.close-bio {
  position: absolute;
  top: -50px;
  right: 0;
  font-size: 32px;
  cursor: pointer;
  background: transparent;
  border: none;
  color: #00fd92;
  transition: color 0.2s ease;
}

.close-bio:hover {
  color: #00fd92;
}

/* ====== LEFT SIDE ====== */
.bio-left {
  width: 34%;
  text-align: center;
  max-width: 288px;
}
.bio-basic {
  text-align: left;
}
.bio-left img {
  width: 100%;
  max-width: 288px;
  margin-bottom: 6px;
}

.bio-basic h3 {
  margin: 10px 0 9px;
  font-size: 30px !important;
  font-weight: 500 !important;
  line-height: 32px !important;
  letter-spacing: 0 !important;
}

.bio-basic p {
  margin: 8px 0;
  color: black;
  font-family: "KlavikaWeb";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px !important;
  letter-spacing: -0.36px;
}

/* ====== RIGHT SIDE ====== */
.bio-right {
  width: 65%;
  overflow-y: auto;
  max-height: 570px;
  padding-right: 43px;
}
.bio-right p {
  font-family: "KlavikaWeb";
  font-size: 22px !important;
  font-style: normal;
  font-weight: 400;
  line-height: 28px !important;
  letter-spacing: -0.66px;
  margin-bottom: 20px;
}
.bio-right::-webkit-scrollbar {
  width: 6px;
}

.bio-right::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

.bio-right::-webkit-scrollbar-track {
  background: #eee;
}

/* ====== NAVIGATION BUTTONS ====== */
.bio-nav {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding-top: 20px;
  border-top: 1px solid #ddd;
  display: none;
}

.bio-nav button {
  background: #00b46e;
  border: none;
  color: #fff;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.bio-nav button:hover {
  background: #00995a;
}

.bio-nav button:disabled {
  background: #bbb;
  cursor: not-allowed;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
  .bio-content {
    flex-direction: column;
    padding: 25px;
  }

  .bio-left,
  .bio-right {
    width: 100%;
  }

  .bio-left img {
    max-width: 200px;
  }

  .bio-nav {
    flex-direction: column;
    gap: 15px;
  }

  .bio-nav button {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .leader-card {
    width: 90%;
  }
}

/* event Section */
/* ====== Section Wrapper ====== */
.event-section {
  width: 100%;
  display: flex;
  justify-content: center;
  min-height: 707px;
  max-height: 900px;
  padding: 0;
}

.event-container {
  display: grid;
  grid-template-columns: 52.5% 47.5%;
  width: 100%;
}

/* ====== LEFT COLUMN ====== */
.event-left {
  position: relative;
  color: #fff;
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: end;
}

/* Green overlay */
.event-left .overlay {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.event-left .overlay img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
/* Content above overlay */
.event-content {
  padding-top: 9px;
  position: relative;
  z-index: 2;
  max-width: 616px;
  padding-left: 13px;
}
.event-content .btn-green-style {
  margin-top: 42px;
}
.event-content h2 {
  color: white;
  margin-bottom: 16px;
  font-size: 56px !important;
  font-weight: 500 !important;
  line-height: 44px !important;
  letter-spacing: 0 !important;
}

.event-info {
  list-style: none;
  margin-bottom: 39px;
  padding: 0;
}

.event-info li {
  margin: 8px 0;
  display: flex;
}
.event-info li:last-child img {
  width: 12px;
  margin-right: 14px;
  position: relative;
  left: 4px;
}
.event-info li::before {
  display: none;
}
.event-info li img {
  margin-right: 8px;
  width: 18px;
}
.event-info li span {
  font-family: "KlavikaWeb";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.36px;
}
.event-content h3 {
  margin: 20px 0 9px;
  color: white;
  font-size: 22px !important;
  font-style: normal;
  font-weight: 500 !important;
  line-height: 28px !important;
  letter-spacing: -0.22px !important;
  font-family: "KlavikaWeb";
}

.event-content p {
  margin-bottom: 16px;
  color: white;
  font-family: "KlavikaWeb";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px !important;
  letter-spacing: -0.36px;
}

/* Sponsors logos */
.sponsors {
  display: flex;
  gap: 16px;
  margin: 16px 0;
  align-items: center;
}

.sponsors img {
  max-height: 100px;
  max-width: 180px;
}

/* CTA button */
/* .cta-button {
  display: inline-block;
  background: #080808;
  padding: 14px 30px;
  text-decoration: none;
  color: #00a323;
  font-weight: bold;
  font-size: 16px;
  transition: background 0.3s ease;
  border-radius: 5px;
  border: 1.5px solid #00a323;
}

.cta-button:hover {
  background: #00e676;
  color: #080808;
} */

/* ====== RIGHT COLUMN ====== */
.event-right {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.event-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ====== Responsive ====== */
@media (max-width: 1024px) {
  .event-container {
    grid-template-columns: 100%;
  }

  .event-left,
  .event-right {
    width: 100%;
    min-height: auto;
  }

  .event-left {
    padding: 40px 20px;
    min-height: auto;
    justify-content: left;
  }
}

@media (max-width: 600px) {
  .sponsors {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .event-content {
    max-width: 100% !important;
  }
  /* .cta-button {
    width: 100%;
    text-align: center;
  } */
}

/* eaders-section.cyberattacks */
.leaders-section.cyberattacks .intro {
  max-width: 1070px;
  margin: 0 auto;
}
.leaders-section.cyberattacks h3 {
  color: #080808;
  font-family: "KlavikaWeb";
  font-size: 22px !important;
  font-style: normal;
  font-weight: 500 !important;
  line-height: 28px !important;
  letter-spacing: -0.22px !important;
}
.leaders-section.cyberattacks h3 span {
  margin: 0 7px;
}
.leaders-section.cyberattacks h2 {
  color: #080808;
}
.leaders-section.cyberattacks .intro p {
  color: #080808;
  font-family: "KlavikaWeb";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px !important;
  letter-spacing: -0.4px;
  padding: 0;
}
.leaders-section.cyberattacks .leader-card .content-wrap {
  background: #b1ffbe;
}
.leaders-section.cyberattacks .leader-card p {
  color: #080808;
}

/* ===== Giveaway Section ===== */
.giveaway-section {
  width: 100%;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.giveaway-section .container {
  z-index: 3;
  position: relative;
}
.giveaway-section .bg-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.giveaway-container {
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: center;
  gap: 32px;
}

/* ===== Left Column ===== */
.giveaway-left {
  position: relative;
  z-index: 2;
  padding-left: 22px;
}

.giveaway-heading img {
  max-width: 507px;
  width: 100%;
  display: block;
  margin-bottom: 25px;
}

/* Subtitle */
.giveaway-left .content-wrap {
  padding-left: 40px;
}
.giveaway-left .content-wrap h3 {
  font-weight: 500;
  font-size: 30px;
  line-height: 32px;
}
.giveaway-subtitle {
  color: #080808;
  margin-bottom: 8px;
  font-size: 56px !important;
  font-weight: 500 !important;
  line-height: 58px !important;
  letter-spacing: 0 !important;
}
.giveaway-left .content-wrap .btn-black-style {
  margin-top: 30px;
}
.giveaway-subtitle span {
  text-transform: uppercase;
}

/* CTA Button */
/* .cta-btn {
  display: inline-block;
  background: #080808;
  color: #fff;
  padding: 14px 30px;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: bold;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s ease;
  margin-bottom: 30px;
}

.cta-btn:hover {
  background: #222;
} */
/* Disclaimer */
.disclaimer {
  color: #080808;
  font-family: "KlavikaWeb";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px !important;
  letter-spacing: -0.32px;
  margin-top: 94px;
  padding-left: 22px;
}

/* ===== Right Column ===== */
.giveaway-right {
  text-align: right;
  position: relative;
  max-width: 667px;
  height: 463px;
  right: 60px;
}

.giveaway-right img {
  height: 100%;
  transform: scale(1);
  transition: transform 0.4s ease;
  object-fit: cover;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .giveaway-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .giveaway-left {
    order: 1;
  }

  .giveaway-right {
    order: 2;
    text-align: center;
    margin: 20px auto 0;
    right: 0;
  }
  .disclaimer {
    margin-top: 30px;
    padding-left: 0;
  }
  .giveaway-subtitle .content-wrap {
    padding-left: 0;
  }
  .giveaway-subtitle {
    margin-bottom: 20px;
    font-size: 40px !important;
    line-height: 42px !important;
  }

  .giveaway-heading img {
    margin: 0 auto 20px;
    max-width: 350px;
  }
  .giveaway-section {
    padding: 40px 0;
  }
}

@media (max-width: 600px) {
  .giveaway-right img {
    max-width: 100%;
  }
}

/* ====== BOOTH MAP SECTION ====== */
.booth-map-section {
  background: linear-gradient(180deg, #009e60 0%, #00fd92 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.booth-map-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ====== TOP INTRO TEXT ====== */
.booth-intro {
  margin-bottom: 20px;
}

.booth-title {
  margin-bottom: 6px;
  font-size: 56px !important;
  font-weight: 500 !important;
  line-height: 58px !important;
  color: #080808;
  letter-spacing: 0 !important;
}

.booth-subtitle {
  color: #080808;
  max-width: 760px;
  margin: 0 auto;
  font-size: 34px !important;
  font-weight: 500 !important;
  line-height: 36px !important;
  letter-spacing: 0 !important;
}

/* ====== MAP IMAGE ====== */
.booth-map-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.booth-map-image {
  width: 100%;
  max-width: 920px;
  height: auto;
  display: block;
}

@media (max-width: 600px) {
  .booth-title {
    font-size: 2rem;
  }
  .booth-subtitle {
    font-size: 0.95rem;
  }
}
/* ====== Resources Section ====== */
.resources-section {
  background: #004540;
  padding: 100px 20px;
  color: #fff;
}

/* ====== Two Column Layout ====== */
.resources-grid {
  display: grid;
  grid-template-columns: 23.5% 74.2%;
  align-items: flex-start;
  gap: 27px;
  min-height: 322px;
}

/* ====== Left Column ====== */
.resources-left {
  position: relative;
}

.resources-title {
  font-size: 56px !important;
  font-weight: 500 !important;
  line-height: 58px !important;
  color: white;
  letter-spacing: 0 !important;
}

.resources-section .underline {
  width: 213px;
  height: 10px;
  background: #d00169; /* pink line */
  margin-top: 7px;
}

/* ====== Right Column (3 Grid Cards) ====== */
.resources-right {
  display: flex;
  /* grid-template-columns: repeat(3, 1fr);
  gap: 26px; */
}

.resources-section .resource-card {
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  /* transition: transform 0.3s ease, box-shadow 0.3s ease; */
  position: relative;
  box-shadow: 6px 6px 12px 0 rgba(0, 0, 0, 0.15);
  transition: all 0.5s ease;
  width: 285px;
  margin: 0 13px;
}
.resources-section .resource-card > a {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  text-indent: -99999px;
}
/* .resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
} */

/* ====== Card Image ====== */
.resources-section .card-image {
  position: relative;
  width: 100%;
  height: 120px;
}
.resources-section .card-image .img-wrap {
  height: 100%;
  width: 100%;
}
.resources-section .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: all 0.3s ease;
}

.resources-section .badges {
  position: absolute;
  bottom: -28px;
  left: 0;
  background: #fc0080;
  font-family: "KlavikaWeb";
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  text-transform: uppercase;
  color: black;
  padding: 10px 20px 8px;
}
.resources-section .badges:after {
  content: "";
  position: absolute;
  top: 0;
  right: -5px;
  width: 6px;
  height: 7px;
  background: url("images/Polygon.svg") no-repeat center/contain;
}
/* ====== Card Content ====== */
.resources-section .card-content {
  padding: 40px 16px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.resources-section .card-content h4 {
  color: white;
  margin-bottom: 16px;
  text-transform: uppercase;
  font-size: 22px !important;
  font-weight: 400 !important;
  line-height: 22px !important;
  letter-spacing: 2.2px !important;
}
.wow {
  visibility: hidden;
}
.resources-section .card-content p {
  color: #fff;
  margin-bottom: 16px;
  font-family: "KlavikaWeb";
  font-size: 18px;
  font-weight: 500;
  line-height: 24px !important;
  letter-spacing: -0.18px;
}
.resources-section .btn-wrap {
  align-self: flex-end;
  display: inline-block;
  margin-top: auto;
}
.resources-section .btn-wrap span {
  /* color: rgb(0, 89, 68) !important;
  font-size: 1.8rem;
  display: inline-block;
  position: relative;
  font-size: 22px; */
}
.resources-section .btn-wrap span::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 42px;
  height: 42px;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  background-image: url(images/white-with-black-arrow.svg);
  background-size: contain;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
/* .resources-section .btn-wrap:hover span::after {
  margin-left: 20px;
  background-image: url(images/black-with-green-arrow.svg);
  background-size: cover;
  width: 25px;
} */
.resources-section .resource-card:hover .btn-wrap span::after {
  background-image: url(images/black-with-green-arrow.svg);
  background-size: cover;
  width: 42px;
}
.resources-section .resource-card:hover .card-image img {
  transform: scale(1.05);
}
.resources-section .resource-card:hover {
  border-bottom: 2px solid #00fd92;
  transition: all 0.3s ease;
}

.resources-right {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, transform 0.4s ease;
  overflow: hidden;
}

.resources-right.slick-initialized {
  opacity: 1;
  visibility: visible;
}
.resources-right:not(.slick-initialized) {
  opacity: 0;
  visibility: hidden;
}

.resources-right.ready {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s ease;
}

/* When not initialized, show as a normal flex row */
.resources-right.no-slick {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  max-height: inherit;
}

/* Keep equal height for static cards too */
.resources-right.no-slick .resource-card {
  flex: 1 1 calc(33.333% - 26px);
  max-width: calc(33.333% - 26px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
/* ---- ARROWS ABOVE ---- */
.resources-section .resources-arrows {
  display: flex;
  gap: 16px;
  justify-content: end;
  margin-bottom: 26px;
}

.resources-right .slick-track {
  display: flex !important;
}

.resources-right .slick-slide {
  height: inherit !important;
  display: flex !important;
}
.resources-section .arrow-btn {
  background: transparent;
  border: 2px solid white;
  border-radius: 4px;
  color: white;
  font-size: 1.2rem;
  position: absolute;
  right: 20px;
  bottom: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Slick reset: remove default arrows */
.resources-section .slick-prev,
.resources-section .slick-next {
  display: none !important;
}
.resources-arrows button {
  background: transparent;
  border: none;
  color: #000;
  width: 42px;
  height: 42px;
  border-radius: 4px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}
.resources-arrows .resource-prev {
  transform: rotate(180deg);
}
.resources-arrows button:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-image: url(images/black-with-green-arrow.svg);
  background-size: cover;
  width: 42px;
  height: 42px;
  transition: all 0.3s ease;
  opacity: 0;
}
.resources-arrows button:hover:after {
  opacity: 1;
}
/* Disabled state (when at end/start) */
.resources-arrows button:disabled {
  opacity: 0.5;
  pointer-events: none;
}

/* ====== Responsive ====== */
@media (max-width: 1024px) {
  .resources-grid {
    grid-template-columns: 100%;
  }
  .resources-arrows {
    position: absolute;
    top: 0;
    right: 30px;
    z-index: 1;
  }
  /* .resources-right {
    grid-template-columns: 1fr 1fr;
  } */
}
@media (max-width: 991px) {
  .resources-right.no-slick .resource-card {
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
    margin: 10px 10px;
  }
}
@media (max-width: 768px) {
  /* .resources-right {
    grid-template-columns: 1fr;
  } */
  .resources-right.no-slick .resource-card {
    flex: 1 1 calc(100% - 20px);
    max-width: calc(100% - 20px);
    margin: 10px 10px;
  }
  .resources-title {
    font-size: 2rem;
  }
  .resources-left.no-slick .resources-title {
    text-align: center;
  }

  .resources-section .resources-left.no-slick .underline {
    margin: 0 auto;
  }
  .resources-section .resources-left .underline {
    margin: inherit;
  }
  .resources-left.no-slick {
    text-align: center;
  }
}

/* ===== CTA Module Section ===== */
.cta-module {
  position: relative;
  width: 100%;
  text-align: center;
  padding: 80px 0;
  overflow: hidden;
  background-color: #00fd92;
}
.cta-module .bg-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.cta-container {
  position: relative;
  z-index: 2;
  max-width: 960px;
  margin: 0 auto;
}

/* Title */
.cta-title {
  color: black;
  margin-bottom: 9px;
  font-size: 56px !important;
  font-weight: 500 !important;
  line-height: 58px !important;
  letter-spacing: 0 !important;
}

/* Subtitle */
.cta-subtitle {
  color: black;
  max-width: 760px;
  margin: 0 auto;
  font-size: 30px !important;
  font-weight: 500 !important;
  line-height: 32px !important;
  letter-spacing: 0 !important;
}
.cta-container .btn-wrap {
  margin-top: 34px;
}
/* CTA Button */
/* .cta-button {
  display: inline-block;
  background: #00ff7f;
  color: #000;
  padding: 16px 40px;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  border: 2px solid #00c85e;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #00c85e;
  color: #fff;
  transform: translateY(-2px);
} */

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

  .cta-subtitle {
    font-size: 1.2rem;
  }

  /* .cta-button {
    font-size: 1rem;
    padding: 14px 30px;
  } */
}

@media (max-width: 480px) {
  .cta-title {
    font-size: 1.8rem;
  }

  .cta-subtitle {
    font-size: 1rem;
  }
}

/* ====== Footer ====== */
.site-footer {
  background: #161c22;
  padding: 50px 0 20px;
  font-size: 0.95rem;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* ====== Top Row: Logo ====== */
.footer-top {
  display: flex;
  justify-content: flex-start;
}

.footer-logo img {
  width: 142px;
}

/* ====== Bottom Row ====== */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-left p {
  color: white;
  font-family: "KlavikaWeb";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px !important;
  letter-spacing: -0.6px;
}

/* ====== Right Links ====== */
.footer-right {
  display: flex;
}

.footer-links {
  list-style: none;
  display: flex;
  gap: 27px;
  margin: 0;
  padding: 0;
}

.footer-links li a {
  color: white;
  font-family: "KlavikaWeb";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px !important;
  letter-spacing: -0.6px;
  transition: color 0.3s ease;
}

.footer-links li a:hover {
  color: #00fd92;
}

/* ====== Responsive ====== */
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .footer-links {
    gap: 20px;
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .footer-logo img {
    height: 28px;
  }

  .footer-links {
    gap: 15px;
  }

  .footer-links li a {
    font-size: 0.9rem;
  }
}

.gradient-section {
  padding: 19px 0;
  /* background: linear-gradient(107deg, #00dd68 -25.12%, #f90 101.2%); */
  background-color: #004540;
}
.gradient-section h2 {
  text-align: center;
  font-weight: 500 !important;
  font-size: 38px !important;
  letter-spacing: 0 !important;
  color: #00fd92;
}
/* ====== Agenda Section ====== */
.agenda-section {
  padding: 0;
  color: #fff;
  overflow: hidden;
}

/* ====== Top Pink Header ====== */
.agenda-header {
  background: #d922c7;
  text-align: center;
  padding: 82px 20px 95px;
  position: relative;
  z-index: 1;
}

.agenda-title {
  font-size: 56px !important;
  margin-bottom: 9px;
  color: white;
  font-weight: 500 !important;
  line-height: 58px !important;
  letter-spacing: 0 !important;
}

.agenda-subtitle {
  color: white;
  font-size: 30px;
  line-height: 1 !important;
  letter-spacing: 0;
}

/* ====== Schedule Container ====== */
.agenda-schedule {
  padding: 40px;
  max-width: 1304px;
  margin: -69px auto 0; /* pull it slightly under pink header */
  border-radius: 8px;
  z-index: 1;
  position: relative;
  overflow: hidden;
}
.agenda-background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #00774c;
}
.agenda-outer {
  position: relative;
  padding-bottom: 80px;
}
.agenda-outer .bg-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
/* ====== Day Header ====== */
.agenda-day {
  margin-bottom: 16px;
  /* background: #00774c; */
  overflow: hidden;
  position: relative;
}
.agenda-day:last-child {
  margin-bottom: 0;
}
.agenda-day-title {
  background: #009e60;
  padding: 20px 40px;
  font-size: 30px !important;
  font-weight: 500 !important;
  color: #fff;
  font-family: "KlavikaWebCondensed";
  letter-spacing: 0 !important;
}

/* ====== Agenda Items ====== */
.agenda-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 17px 40px 15px;
  background: #004540;
  position: relative;
}
.agenda-item:after {
  bottom: 0;
  left: 40px;
  content: "";
  position: absolute;
  width: calc(100% - 80px);
  height: 1px;
  background: #00774c;
}
.agenda-item:last-child:after {
  display: none;
}
.agenda-item:last-child {
  border-bottom: none;
}

.agenda-item .time {
  width: 26%;
  color: white;
  display: flex;
  align-items: center;
  min-width: 228px;
}
.agenda-item .time span {
  font-family: "KlavikaWeb";
  font-size: 20px !important;
  font-weight: 500 !important;
  letter-spacing: -0.2px;
}
.agenda-item .time img {
  max-width: 18px;
  margin-right: 8px;
}

.agenda-item .details {
  width: 74%;
}
.agenda-item .details .btn-wrap {
  margin-top: 8px;
}
.agenda-item .details h4 {
  margin: 0 0 5px;
  color: #fff;
  font-family: "KlavikaWeb";
  font-size: 22px !important;
  font-weight: 500 !important;
  line-height: 1.3 !important;
}

.agenda-item .details p {
  color: #fff;
  font-family: "KlavikaWeb";
  font-size: 20px !important;
  font-weight: 400 !important;
  display: flex;
}
.agenda-item .details p img {
  margin-right: 7px;
  max-width: 12px;
}

/* ====== Responsive ====== */
@media (max-width: 768px) {
  .agenda-title {
    font-size: 2rem;
  }
  .agenda-item {
    flex-direction: column;
    gap: 8px;
  }
  .agenda-item .time,
  .agenda-item .details {
    width: 100%;
  }
  .agenda-schedule {
    margin-top: -20px;
  }
}

@media (max-width: 480px) {
  .agenda-title {
    font-size: 1.8rem;
  }
  .agenda-subtitle {
    font-size: 1rem;
  }
}

/* Responsive Design */
html .header .container,
body .header .container {
  max-width: 1304px !important;
  padding: 0 40px !important;
}
@media screen and (max-width: 1400px) {
  html .header .container,
  body .header .container {
    padding: 0 20px !important;
  }
  .event-left {
    display: flex;
    align-items: center;
    justify-content: left;
  }
  .btn-green-style a {
    font-size: 14px;
    padding: 10px 24px;
    margin-top: 0;
  }
  .btn-black-style a {
    font-size: 14px;
    padding: 10px 24px;
    margin-top: 0;
  }

  .ms-ignite-hero-banner {
    max-height: 700px;
  }
  .leader-card h3 {
    font-size: 20px !important;
    line-height: 26px !important;
  }
  .leaders-section .btn-wrap .btn {
    margin-top: 35px;
  }
  .site-footer {
    padding: 60px 0;
  }
  .cta-module {
    padding: 60px 0;
  }
  .cta-container .btn-wrap {
    margin-top: 25px;
  }
  .cta-subtitle {
    font-size: 26px !important;
    line-height: 28px !important;
  }
  .cta-title {
    font-size: 46px !important;
    line-height: 48px !important;
  }
  .resources-section .underline {
    width: 165px;
    height: 7px;
    margin-top: 4px;
  }
  .resources-title {
    font-size: 46px !important;
    line-height: 48px !important;
  }
  .resources-section .resource-card:hover .btn-wrap span::after {
    width: 30px;
  }
  .resources-section .btn-wrap span::after {
    width: 30px;
    height: 30px;
  }
  .resources-section .card-content p {
    font-size: 16px;
    line-height: 22px !important;
  }
  .resources-section .card-content h4 {
    font-size: 18px !important;
    line-height: 16px !important;
  }
  .resources-section .badges {
    bottom: -24px;
    font-size: 12px;
  }
  .resources-section {
    padding: 60px 0;
  }
  .booth-map-section {
    padding: 60px 0;
  }
  .booth-subtitle {
    font-size: 30px !important;
    line-height: 32px !important;
  }
  .booth-title {
    font-size: 46px !important;
    line-height: 48px !important;
  }
  .event-content h2 {
    font-size: 46px !important;
    line-height: 48px !important;
  }
  .event-content {
    padding-top: 0;
    max-width: 80%;
    padding-left: 0;
  }
  .event-info {
    margin-bottom: 35px;
  }
  .sponsors img {
    max-width: 125px;
  }
  .event-content .btn-green-style {
    margin-top: 35px;
  }
  .ms-ignite-hero-banner .event-title {
    font-size: 80px !important;
    margin-bottom: 35px;
  }
  .ms-ignite-video-section h2 {
    font-size: 46px !important;
    line-height: 48px !important;
  }
  .ms-ignite-hero-banner .event-details p {
    font-size: 28px !important;
    line-height: 30px !important;
  }
  .ms-ignite-video-section p {
    font-size: 20px;
    line-height: 26px !important;
  }
  .ms-ignite-video-section .video-active::before {
    border-width: 8px 0 8px 16px;
  }
  .ms-ignite-video-section .video-active::after {
    width: 60px;
    height: 60px;
  }
  .ms-ignite-video-section {
    padding: 60px 0;
  }
  .gradient-section h2 {
    font-size: 34px !important;
  }
  .agenda-title {
    font-size: 46px !important;
    line-height: 48px !important;
  }
  .agenda-subtitle {
    font-size: 30px;
  }
  .agenda-header {
    padding: 62px 20px 95px;
  }
  .agenda-schedule {
    padding: 30px;
    margin: -69px 20px 0;
  }
  .agenda-day-title {
    padding: 16px 30px;
    font-size: 24px !important;
  }
  .agenda-item {
    padding: 17px 30px 15px;
  }
  .agenda-item .time span {
    font-size: 16px !important;
  }
  .agenda-item:after {
    left: 30px;
    width: calc(100% - 60px);
  }
  .agenda-item .details h4 {
    font-size: 18px !important;
  }
  .agenda-item .details p {
    font-size: 16px !important;
  }
  .agenda-item .time img {
    max-width: 16px;
  }
  .agenda-outer {
    padding-bottom: 60px;
  }
  .leaders-section {
    padding: 60px 0;
  }
  .leaders-section h2 {
    font-size: 46px !important;
    margin-bottom: 10px;
    line-height: 48px !important;
  }
  .leaders-section .intro p {
    margin: 10px 0 28px;
    font-size: 20px;
    line-height: 26px !important;
    padding: 0 20px;
  }
  .leaders-section.cyberattacks h3 {
    font-size: 20px !important;
    line-height: 26px !important;
  }
  .leaders-section.cyberattacks .intro p {
    font-size: 18px;
    line-height: 24px !important;
  }
  .leaders-grid {
    min-height: auto;
  }
  .giveaway-left {
    padding-left: 0;
  }
  .ms-ignite-hero-banner .event-logo img {
    width: 350px;
    margin-bottom: 35px;
  }
  .ms-ignite-hero-banner .event-cta {
    margin-top: 35px;
  }
}
@media screen and (max-width: 1280px) {
  .bio-right {
    width: 70%;
    padding-right: 30px;
  }
  .bio-left {
    width: 26%;
    max-width: 250px;
  }
  .bio-basic h3 {
    font-size: 24px !important;
    line-height: 26px !important;
  }
  .bio-content {
    padding: 40px 20px 3px 40px;
    min-height: 500px;
  }
  .bio-right p {
    font-size: 18px !important;
    line-height: 26px !important;
    margin-bottom: 14px;
  }
}
@media (min-width: 1025px) and (max-width: 1200px) {
  .ms-ignite-header .nav-menu {
    gap: 2rem;
    margin-top: 2px;
  }
}
@media screen and (max-width: 1024px) {
  .ms-ignite-header .nav-brand {
    max-width: 150px;
  }
  .btn-green-style a {
    font-size: 14px;
    padding: 10px 24px;
    margin-top: 0;
  }
  .btn-black-style a {
    font-size: 14px;
    padding: 10px 24px;
    margin-top: 0;
  }
  .ms-ignite-hero-banner .hero-content {
    margin-top: 0;
    padding: 40px 20px;
  }
  .ms-ignite-hero-banner {
    max-height: 650px;
  }
  .leader-card h3 {
    font-size: 18px !important;
    line-height: 24px !important;
  }
  .leader-card p {
    font-size: 16px;
    line-height: 22px !important;
  }
  .leaders-section .btn-wrap .btn {
    margin-top: 30px;
  }
  .site-footer {
    padding: 40px 0;
  }
  .cta-module {
    padding: 40px 0;
  }
  .cta-container .btn-wrap {
    margin-top: 20px;
  }
  .cta-subtitle {
    font-size: 24px !important;
    line-height: 26px !important;
  }
  .cta-title {
    font-size: 40px !important;
    line-height: 42px !important;
  }
  .resources-section .underline {
    width: 145px;
    height: 6px;
    margin-top: 3px;
  }
  .resources-title {
    font-size: 40px !important;
    line-height: 42px !important;
  }
  .resources-section .resource-card:hover .btn-wrap span::after {
    width: 30px;
  }
  .resources-section .btn-wrap span::after {
    width: 30px;
    height: 30px;
  }
  .resources-section .card-content p {
    font-size: 16px;
    line-height: 22px !important;
  }
  .resources-section .card-content h4 {
    font-size: 16px !important;
    line-height: 16px !important;
  }
  .resources-section .badges {
    bottom: -24px;
    font-size: 12px;
  }
  .resources-section {
    padding: 40px 0;
  }
  .booth-map-section {
    padding: 40px 0;
  }
  .booth-subtitle {
    font-size: 26px !important;
    line-height: 28px !important;
  }
  .booth-title {
    font-size: 40px !important;
    line-height: 42px !important;
  }
  .event-content h2 {
    font-size: 40px !important;
    line-height: 42px !important;
  }
  .event-content {
    padding-top: 0;
    max-width: 80%;
    padding-left: 0;
  }
  .event-info {
    margin-bottom: 30px;
  }
  .sponsors img {
    max-width: 125px;
  }
  .event-content .btn-green-style {
    margin-top: 30px;
  }
  .ms-ignite-hero-banner .event-title {
    font-size: 60px !important;
    margin-bottom: 30px;
  }
  .ms-ignite-video-section h2 {
    font-size: 40px !important;
    line-height: 42px !important;
  }
  .ms-ignite-hero-banner .event-details p {
    font-size: 24px !important;
    line-height: 26px !important;
  }
  .ms-ignite-video-section p {
    font-size: 18px;
    line-height: 24px !important;
  }
  .ms-ignite-video-section .video-active::before {
    border-width: 8px 0 8px 16px;
  }
  .ms-ignite-video-section .video-active::after {
    width: 50px;
    height: 50px;
  }
  .ms-ignite-video-section {
    padding: 40px 0;
  }
  .gradient-section h2 {
    font-size: 28px !important;
  }
  .agenda-title {
    font-size: 40px !important;
    line-height: 42px !important;
  }
  .agenda-subtitle {
    font-size: 24px;
  }
  .agenda-header {
    padding: 42px 20px 95px;
  }
  .agenda-schedule {
    padding: 24px;
    margin: -69px 20px 0;
  }
  .agenda-day-title {
    padding: 16px 20px;
    font-size: 24px !important;
  }
  .agenda-item {
    padding: 17px 20px 15px;
  }
  .agenda-item .time span {
    font-size: 16px !important;
  }
  .agenda-item .details h4 {
    font-size: 18px !important;
  }
  .agenda-item .details p {
    font-size: 16px !important;
  }
  .agenda-item .time img {
    max-width: 16px;
  }
  .agenda-outer {
    padding-bottom: 40px;
  }
  .leaders-section {
    padding: 40px 0;
  }
  .leaders-section h2 {
    font-size: 40px !important;
    margin-bottom: 8px;
    line-height: 42px !important;
  }
  .leaders-section .intro p {
    margin: 10px 0 28px;
    font-size: 18px;
    line-height: 24px !important;
    padding: 0 20px;
  }
  .leaders-section.cyberattacks h3 {
    font-size: 18px !important;
    line-height: 24px !important;
  }
  .leaders-section.cyberattacks .intro p {
    font-size: 16px;
    line-height: 22px !important;
  }
  .leaders-grid {
    min-height: auto;
  }
  .giveaway-left {
    padding-left: 0;
  }
  .ms-ignite-hero-banner .event-logo img {
    width: 250px;
    margin-bottom: 30px;
  }
  .ms-ignite-hero-banner .event-cta {
    margin-top: 30px;
  }
  .ms-ignite-header .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: rgba(0, 69, 64, 1);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
  }
  .ms-ignite-header .navbar {
    padding: 28px 0 !important;
  }
  .ms-ignite-header .nav-menu {
    margin-top: 10px;
    gap: 2rem;
  }
  .navbar.active .nav-menu {
    left: 0;
  }

  .ms-ignite-header .hamburger {
    display: flex !important;
  }
  .ms-ignite-header .btn-wrap {
    display: none;
  }
  .ms-ignite-header .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .ms-ignite-header .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .ms-ignite-header .hamburger.active .bar:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }

  .features {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 767px) {
  .close-bio {
    top: -30px;
    max-width: 30px;
    right: 0;
  }
  .bio-content {
    padding: 30px 20px 3px 30px;
    min-height: auto;
  }
  .bio-basic {
    text-align: center;
  }
  .bio-left {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
  .bio-right {
    width: 100%;
    padding-right: 10px;
    overflow: hidden;
    max-height: fit-content;
  }
  .bio-basic p {
    font-size: 16px;
    line-height: 16px !important;
  }
  .bio-dynamic-content {
    display: block;
    max-height: calc(100vh - 100px);
    overflow: auto;
  }
  .ms-ignite-hero-banner .event-title {
    font-size: 47px !important;
  }
}
/* Animations */
/* @keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content > * {
  animation: fadeInUp 0.8s ease;
}

.feature-card {
  animation: fadeInUp 0.8s ease;
}

.feature-card:nth-child(2) {
  animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
  animation-delay: 0.4s;
} */
