/* ========================= base style starts ========================= */

:root {
  --black-color: #002151;
  --amber: #f4a811;
  --border: #dfe5ee;
  --text-primary: #002151;
  --error: #d22222;
  --error-bg: #ededed;
  --chip-bg: #ededed;
  --border-check: #dde3ed;
  --inactive: #60728a;
  --inputBorder: #dde3ed;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
}


/* *:focus-visible{
  outline: 1px solid #fff;
  border: 1px solid #000;
  outline-offset: 4px;
} */

body {
  color: var(--black-color);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  font-size: 16px;
  line-height: 1.2;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  padding: 100px 80px;
  width: 100%;
  max-width: 1440px;
  margin: 0px auto;
  position: relative;
}

section {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1024px) {
  .container {
    padding: 60px 40px;
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .container {
    padding: 64px 20px;
    width: 100%;
  }
}

/* ========================= base style ends ========================= */

/* Banner Section */


.banner {
  position: relative;
  width: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  /* cursor: pointer; */
  /* background-image: url("../../images/navigate-26/navigate-banner-night.webp"); */
  background-size: cover;
  background-position: center;
  transition: background-image 0.5s ease-in-out;
}

/* Toggled Background Image */
.banner.toggled {
  /* background-image: url("../../images/navigate-26/navigate-banner-day.webp"); */
}

.banner .dayimg {
  display: none;
}

.banner.toggled .dayimg {
  display: block;
}

.banner .nightimg {
  display: block;
}

.banner.toggled .nightimg {
  display: none;
}

.banner-desk {
  display: block;
}

.banner-mob {
  display: none;
}

@media (max-width: 660px) {
  .banner-desk {
    display: none !important;
  }

  .banner-mob {
    display: block !important;
    ;
  }
}


/* Dark Gradient Overlay */
.overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(270deg,
      rgba(0, 0, 0, 0) 68.32%,
      rgba(11, 23, 40, 0.2) 89.63%),
    linear-gradient(97.73deg,
      rgba(10, 22, 40, 0.95) 9.15%,
      rgba(10, 22, 40, 0.85) 33.51%,
      rgba(10, 22, 40, 0.4) 57.86%,
      rgba(10, 22, 40, 0.15) 75.7%);

  z-index: 1;
  transition: all 0.3s;
}

.banner.toggled .overlay {
  transition: all 0.3s;
  background: linear-gradient(116.7deg,
      rgba(174, 222, 248, 0.71) 9.47%,
      rgba(122, 182, 214, 0.732346) 26.84%,
      rgba(7, 96, 139, 0.15) 78.93%);
}

/* Content Layout */
.banner-container {
  position: relative;
  z-index: 2;
  max-width: 730px !important;
}

.title {
  font-size: 64px;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 12px;
}

.highlight {
  color: #fca311;
}

.subtitle {
  font-size: 20px;
  color: #c9d1d9;
  margin-bottom: 25px;
}

/* Badges */
.badge-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.badge {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Buttons */
.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.btn {
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
}

.btn-primary {
  background-color: #fca311;
  color: #000000;
}

.btn-primary:hover {
  background-color: #e5930e;
  /* transform: translateY(-2px); */
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  /* transform: translateY(-2px); */
}

/* Responsive Styles for Smaller Screens */
@media (max-width: 768px) {
  .banner {
    min-height: 500px;
  }

  .title {
    font-size: 42px;
  }

  .subtitle {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .banner {
    padding: 0px 20px;
  }

  .title {
    font-size: 32px;
  }

  .cta-group {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    text-align: center;
  }
}

/* Banner Styling ends*/

/* Accordion styles  */

.accordion-wrapper {
  display: flex;
  gap: 184px;
}

@media screen and (max-width: 1380px) {
  .accordion-wrapper {
    display: flex;
    gap: 90px;
  }
}

.accordion-left {
  width: 35%;
}

.accordion-right {
  width: 70%;
}

.accordion-container {
  border-radius: 20px;
  overflow: hidden;
  background-color: #e0eaf3;
  padding: 24px 40px;
}

.accordion-item {
  border-bottom: 1px solid #33405980;
  padding: 24px 0;
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  color: #002151;
  text-align: left;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    padding 0.2s ease;
  padding: 0;
}

.accordion-header span {
  font-family: "Inter", sans-serif;
}

.accordion-content.active {
  padding-top: 12px;
  visibility: visible;
}

.accordion-icon {
  font-size: 24px;
  font-weight: 600;
  margin-left: 12px;
  user-select: none;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.2s ease;
  visibility: hidden;
}

.accordion-body {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: #282b3e;
}

.accordion-body a {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: #282b3e;
  text-decoration: none;
}

.accordion-left h2 {
  font-weight: 800;
  font-size: 42px;
  line-height: 1.2;
  position: sticky;
  top: 110px;
}

@media screen and (max-width: 1024px) {
  .accordion-wrapper {
    gap: 45px;
  }

  .accordion-left h2 {
    font-size: 32px;
  }

  .accordion-container {
    padding: 20px 28px;
  }
}

@media screen and (max-width: 768px) {
  .accordion-left h2 {
    position: relative;
    top: unset !important;
  }

  .accordion-header {
    align-items: baseline;
  }

  .accordion-wrapper {
    gap: 32px;
    flex-direction: column;
  }

  .accordion-container {
    padding: 24px 16px;
  }

  .accordion-left,
  .accordion-right {
    width: 100%;
  }
}

/* Accessibility (ADA) Enhancements */
.accordion-header:focus-visible {
  outline: 2px solid #002151;
  outline-offset: 4px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {

  .accordion-header,
  .accordion-content {
    transition: none !important;
  }
}

/* Accordion styles ends */

/* Attend styles  */

.attend_section.program-section {
  background: #ededed;
}

.attend_cards h2 {
  font-size: 42px;
  padding-bottom: 32px;
  line-height: 52px;
  letter-spacing: -1px;
  color: #002151;
  font-weight: 800;
}

.attend_section.program-section .day-two-grid {
  grid-template-columns: repeat(3, 1fr);
}

.attend_section.program-section .card_1 {
  background: rgba(0, 173, 239, 0.15);
  text-align: center;
  box-shadow: 0px 8px 24px 0px #00215108;
}

.attend_section.program-section .card_2 {
  background: rgba(54, 21, 88, 0.15);
  text-align: center;
  box-shadow: 0px 8px 24px 0px #00215108;
}

.attend_section.program-section .card_3 {
  background: rgba(255, 114, 0, 0.15);
  text-align: center;
  box-shadow: 0px 8px 24px 0px #00215108;
}

.attend_section.program-section .blue-card .card-header {
  justify-content: center;
  padding-bottom: 24px;
}

.attend_section.program-section .program-card {
  padding: 32px;
}

.attend_section.program-section .card-title {
  margin-bottom: 12px;
}

.attend_section .cards-grid {
  gap: 24px !important;
}

.attend_section .program-card {
  border-radius: 12px !important;
}

@media (max-width: 1024px) {
  .attend_section.program-section .program-card {
    padding: 26px;
  }
}

/* Responsive Styles for Smaller Screens */
@media (max-width: 768px) {
  .attend_section.program-section .day-two-grid {
    grid-template-columns: 1fr;
  }

  .attend_cards h2 {
    font-size: 32px;
  }

  .attend_section.program-section .card-title {
    font-size: 20px;
    line-height: 28px;
  }

  .attend_section.program-section .card-desc {
    font-size: 16px;
    line-height: 1.2;
  }

  .attend_section.program-section .program-card {
    padding: 32px;
  }

  .attend_section .cards-grid {
    gap: 16px !important;
  }
}

/* Attend styles ends */

/* Award styles  */

.award-section {
  background-color: #e0eaf3;
}

.award-main {
  display: flex;
  gap: 90px;
  align-items: center;
}

.award-content {
  width: 42% !important;
  height: 415px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.award-content,
.award-img {
  width: 50%;
}

.award-img {
  overflow: hidden;
  border-radius: 20px;
  height: 487px;
}

.award-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.award-content h2 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  color: #002151;
  margin-bottom: 20px;
}

.award-content p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  color: #002151;
}

@media screen and (max-width: 1024px) {
  .award-content h2 {
    font-size: 32px;
  }
}

@media screen and (max-width: 768px) {
  .award-content {
    height: auto;
  }

  .award-content h2 {
    margin-bottom: 32px;
  }

  .award-content p {
    font-size: 16px;
    margin: 0;
    line-height: 28px;
  }

  .award-main {
    flex-direction: column;
    gap: 32px;
  }

  .award-content,
  .award-img {
    width: 100% !important;
  }

  .award-img {
    border-radius: 10px;
    height: 100%;
  }
}

/* Award styles ends */

/* Banner styles  */

.banner {
  position: relative;
  width: 100%;
  min-height: 600px;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  /* Keeps scaled GSAP image within bounds */
  /* cursor: pointer; */

  /* background: linear-gradient(270deg, rgba(0, 0, 0, 0) 68.32%, rgba(11, 23, 40, 0.2) 89.63%),
linear-gradient(97.73deg, rgba(10, 22, 40, 0.95) 9.15%, rgba(10, 22, 40, 0.85) 33.51%, rgba(10, 22, 40, 0.4) 57.86%, rgba(10, 22, 40, 0.15) 75.7%);  */
}

.banner:focus-visible {
  outline: 3px solid #fca311;
  outline-offset: -3px;
}

/* Image Wrapper */
.banner-bg {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* <img> styling inside banner-bg */
.banner-bg img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  object-position: center;
  display: block;
  transition: opacity 0.4s ease-in-out;
}

/* Dark Gradient Overlay */
.form-model .overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8) !important;
  /* background: linear-gradient(270deg, rgba(0, 0, 0, 0) 68.32%, rgba(11, 23, 40, 0.2) 89.63%),
linear-gradient(97.73deg, rgba(10, 22, 40, 0.95) 9.15%, rgba(10, 22, 40, 0.85) 33.51%, rgba(10, 22, 40, 0.4) 57.86%, rgba(10, 22, 40, 0.15) 75.7%); */

  z-index: 1;
  /* transition: background 0.4s ease-in-out; */
}

.banner-container {
  max-width: 700px;
}

.title {
  font-size: 110px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 16px;
  color: #ffffff;
}

.highlight {
  color: #f4a811;
}

.subtitle {
  font-weight: 300;
  font-size: 26px;
  color: #e0eaf3;
  margin-bottom: 22px;
}

.badge-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.badge {
  backdrop-filter: blur(12px);
  background: #00000027;

  border: 1px solid #ffffff1a;
  /* padding: 9px 19px; */
  border-radius: 100px;
  font-size: 14px;
  line-height: 17px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  width: 200px;
  height: 37px;
  justify-content: center;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.btn {
  padding: 17px 39px;
  font-size: 16px;
  /* line-height: 28px; */
  font-weight: 700;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  font-family: "Inter", sans-serif;
}

.btn-primary {
  background-color: #f4a811;
  color: #002151;
}

.btn-primary:hover {
  background-color: #002151;
  color: #f4a811;
  transition: all 0.3s;
}

.btn-secondary {
  padding: 16px 20px;
  background: #e0eaf326;
  color: #ffffff;
  display: flex;
  justify-content: center;
  gap: 8px;
  line-height: 20px;
}

.btn-secondary span svg {
  display: inline;
  vertical-align: middle;
}

.btn-secondary:hover {
  color: #002151;
  background-color: #f4a811;
  transition: all 0.3s;
}

.btn-secondary svg path {
  transition: stroke 0.3s;
}

.btn-secondary:hover svg path {
  stroke: #002151;
}

/* ===================================================
   TOGGLED LIGHT THEME STYLES (Parent: .toggled)
=================================================== */

.banner.toggled .overlay {
  /*   
 background: linear-gradient(116.7deg, rgba(174, 222, 248, 0.71) 9.47%, rgba(122, 182, 214, 0.732346) 26.84%, rgba(7, 96, 139, 0.15) 78.93%); */
}

.banner.toggled .title {
  color: #fff;
  text-shadow: 3px 3px 8px #00000026;
}

.banner.toggled .highlight {
  color: #002151;
}

.banner.toggled .subtitle {
  color: #002151;
  font-weight: 500;
}

.banner.toggled .badge {
  color: #002151;
  background: #ffffff40;
  border: 1px solid #ffffff1a;
  backdrop-filter: blur(12px);
}

.banner.toggled .badge svg path {
  stroke: #002151;
}

.banner .btn-secondary {
  background: #e0eaf326;
}

.banner.toggled .btn-secondary {
  background: #0021512e;
  /* background: rgba(0, 33, 81, 0.5); */
  color: #ffffff;
}

.banner .btn-secondary:hover {
  color: #002151;
  background-color: #f4a811;
  transition: all 0.3s;
}

.badge2 .icon,
.badge1 .icon {
  height: 16px;
}

/* ===================================================
   ACCESSIBILITY: REDUCED MOTION PREFERENCE
=================================================== */
@media (prefers-reduced-motion: reduce) {

  .banner-bg img,
  .overlay,
  .btn {
    transition: none !important;
  }
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .banner.toggled .btn-secondary {
    background: #E0EAF326;
  }

  .overlay {
    background:
      linear-gradient(270deg,
        rgba(0, 0, 0, 0) 68.32%,
        rgba(11, 23, 40, 0.2) 89.63%),
      linear-gradient(97.73deg,
        rgba(10, 22, 40, 0.95) 9.15%,
        rgba(10, 22, 40, 0.85) 33.51%,
        rgba(10, 22, 40, 0.4) 57.86%,
        rgba(10, 22, 40, 0.15) 75.7%);
  }

  .banner.toggled .overlay {
    background: linear-gradient(214deg,
        rgba(174, 222, 248, 0.1) 9.47%,
        rgba(122, 182, 214, 0.2) 5.84%,
        rgba(7, 96, 139, 0.5) 28.93%);
  }

  .banner-bg img {
    object-fit: cover;
    object-position: right;
  }

  .title {
    font-size: 82px;
  }

  .subtitle {
    font-size: 22px;
  }

  .badge-group {
    margin-bottom: 28px;
  }
}

@media (max-width: 660px) {
  .overlay {
    display: none;
  }

  .banner {
    padding: 0;
    align-items: flex-end;
  }

  .title {
    font-size: 50px;
  }

  .subtitle {
    font-size: 20px;
    line-height: 1.4;
  }

  .badge {
    padding: 10px 23px 10px 16px;
    width: 202px;
    line-height: 1.2;
    justify-content: flex-start;
  }

  .badge-group {
    margin-bottom: 32px;
  }

  .cta-group .btn.btn-primary {
    padding: 12px 38px;
    height: 52px;
    width: fit-content;
  }

  .cta-group .btn.btn-secondary {
    padding: 14px 16px;
    height: 52px;
    width: fit-content;
    align-items: center;
    gap: 14px;
  }

  .cta-group,
  .badge-group {
    flex-direction: column;
  }

  .badge2 .icon {
    height: 100%;
    height: -webkit-fill-available;
    height: -moz-available;
    height: stretch;
  }

  .banner-bg img {
    object-position: center;
  }
}

/* Banner Styling ends*/

/* footer banner section */
/* Hero Section Container */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 80px;
  color: #ffffff;
  text-align: center;
}

.hero-banner-bg {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

/* <img> styling inside banner-bg */
.hero-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* object-position: 85%; */
  display: block;
  transition: opacity 0.4s ease-in-out;
}

/* Dark Gradient Overlay for Contrast & Readability */
.hero-overlay {
  position: absolute;
  inset: 0px;
  background: radial-gradient(circle at center,
      rgba(10, 20, 35, 0.75) 0%,
      rgba(5, 10, 20, 0.92) 100%);
  z-index: 1;
}

/* Inner Layout Container */
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Tagline */
.hero-tagline {
  color: #f4a811;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

/* Main Heading */
.hero-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;

  margin-bottom: 16px;
}

/* Paragraph Description */
.hero-description {
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  color: #e0eaf3;
  max-width: 875px;
  margin-bottom: 40px;
}

/* Event Metadata Badges Wrapper */
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

/* Badges */
.meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #ffffff1a;
  background: #ffffff0d;
  line-height: 21px;
}

.meta-badge .icon {
  color: #f5a623;
  flex-shrink: 0;
}

.hero-content .btn-primary {
  padding: 17px 49px;
}

@media (max-width: 1024px) {
  .hero {
    padding: 60px 40px;
  }
}

@media (max-width: 768px) {
  .hero-tagline {
    margin-bottom: 16px;
  }

  .hero {
    padding: 64px 20px;
  }

  .hero-title {
    font-size: 32px;
    margin-bottom: 32px;
  }

  .hero-description {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 24px;
  }

  .hero-meta {
    flex-direction: column;
    margin-bottom: 32px;
    align-items: center;
  }

  .meta-badge {
    width: max-content;
  }
}

/* footer banner section ends */

/* Banner styles ends */

/* Media partner  */

.media_partner {
  background: url("../../images/navigate-26/media_partner_bg.webp") no-repeat;
  min-height: 465px;
  background-size: cover;
}

.media_partner_part {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.media_partner_part_left {
  align-content: center;
}

.media_partner_part_left .top_small_heading {
  font-size: 14px;
  line-height: 100%;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #f4a811;
  padding-bottom: 32px;
  display: block;
}

.media_partner_part_left .top_heading {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  padding-bottom: 32px;
  display: block;
}

.media_partner_list {
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: flex-start;
  align-items: flex-start;
  padding-bottom: 20px;
}

.media_partner_list:last-child {
  padding-bottom: 0px;
}

.media_partner_list p {
  color: #e0eaf3;
  font-size: 16px;
  line-height: 28px;
  font-weight: 500;
  padding-left: 16px;
  margin: 0px;
}

.media_partner_part_right {
  /* width: 484px; */
  background: #00000033;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid #e0eaf333;
  border-radius: 24px;
  backdrop-filter: blur(16px);
  justify-self: flex-end;
  padding: 139px 50px;
  margin-left: 20px;
}

.media_partner_part_right p {
  font-size: 14px;
  color: #e0eaf3;
  padding-bottom: 28px;
}

.media_partner_part_right img {
  width: 384px;
}

.media_partner_part_left {
  width: 102%;
}

@media (max-width: 1400px) {
  .media_partner_part_left {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .media_partner_part_left .top_heading {
    font-size: 36px;
    padding-bottom: 28px;
  }

  .media_partner_part_left .top_small_heading {
    padding-bottom: 28px;
  }
}

/* Responsive Styles for Smaller Screens */
@media (max-width: 768px) {
  .media_partner_part {
    grid-template-columns: 1fr;
  }

  .media_partner_part_left {
    margin-bottom: 20px;
  }

  .media_partner_part_right {
    margin: 0 auto;
    padding: 30px;
  }

  .media_partner_part_left .top_heading {
    font-size: 32px;
    padding-bottom: 32px;
  }

  .media_partner_part_right {
    padding: 35px 16px;
  }

  .media_partner_list {
    padding-right: 0px;
  }

  .media_partner_list p {
    padding-left: 15px;
  }

  .media_partner_part_left .top_small_heading {
    padding-bottom: 16px;
  }
}

/* Media partner ends */

/* Partner styles  */

.partner_section {
  background: #e0eaf3;
}

.partner_section h2 {
  font-size: 42px;
  padding-bottom: 40px;
  line-height: 100%;
  color: #002151;
  font-weight: 800;
  text-align: center;
}

.partner_section .partner_cards {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 40px;
}

.partner_section .partner_card {
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  border: 1px solid #ffffff1a;
}

.partner_section .partner_card img {
  padding-bottom: 24px;
}

.partner_section .partner_card p {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0px;
}

@media (max-width: 1380px) {
  .partner_section .partner_cards {
    padding: 0;
  }
}

@media (max-width: 1024px) {
  .partner_section .partner_cards {
    gap: 20px;
  }

  .partner_section .partner_card {
    padding: 26px;
  }

  .partner_section .partner_card p {
    font-size: 18px;
  }
}

/* Responsive Styles for Smaller Screens */
@media (max-width: 768px) {
  .partner_section .partner_cards {
    grid-template-columns: 1fr;
  }

  .partner_section h2 {
    font-size: 32px;
    padding-bottom: 32px;
  }

  .partner_section .partner_card p {
    font-size: 20px;
  }

  .partner_section .partner_card {
    padding: 32px;
  }

  .partner_section .partner_cards {
    gap: 16px;
  }
}

/* Partner styles ends */

/* Program styles   */

.program-section {
  background-color: #002151;
  width: 100%;
}

.program-section .main-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 20px;
}

.program-section .sub-title {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 32px;
}

/* Day Structural Container */
.program-section .day-group {
  margin-bottom: 32px;
}

.program-section .day-group:last-child {
  margin-bottom: 0;
}

.program-section .day-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid #e2e8f033;
  padding-bottom: 16px;
}

.program-section .date-badge {
  background-color: #fbe9c6;
  color: #002151;
  font-size: 20px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
}

.program-section .day-text {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  line-height: 100%;
  letter-spacing: 0.5px;
}

/* Responsive CSS Grids */
.program-section .cards-grid {
  display: grid;
  gap: 20px;
}

.program-section .day-one-grid {
  grid-template-columns: repeat(2, 1fr);
}

.program-section .day-two-grid {
  grid-template-columns: repeat(3, 1fr);
}

/* Component Cards base styling */
.program-section .program-card {
  border-radius: 16px;
  padding: 24px;
  /* display: flex;
  flex-direction: column; */
  /* min-height: 148px; */
}

/* Color palettes extracted exactly from layout colors */
.program-section .pink-card {
  background-color: #f8dfe0;
  color: #031b4e;
  padding: 32px 24px;
}

.program-section .blue-card {
  background-color: #E0EAF3;
  color: #031b4e;
  margin-bottom: 4px;
  padding: 20px;
}

.program-section .blue-card:last-child {
  margin-bottom: 0;
}

.program-section .blue-card .card-header {
  padding-bottom: 38px;
}

/* Inner card structural details */
.program-section .card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  /* margin-bottom: 28px; */
  gap: 36px;
}

.program-section .time-tag {
  background-color: #002151;
  color: #e0eaf3;
  font-size: 16px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 8px;
  text-transform: uppercase;
  width: fit-content;
  margin-bottom: 8px;
  line-height: normal;
}

.program-section .card-title {
  font-size: 18px;
  font-weight: 700;
  color: #002151;
  margin-bottom: 8px;
  line-height: 1.2;
}

.program-section .card-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  color: #002151;
  width: 81%;
}

.card-header-main {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  text-transform: uppercase;
  padding: 12px;
  width: 100%;
  background-color: #F4A811;
  color: #002151;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 16px;
}

.c-timer {
  background: #0021511A;
  border: 1px solid #0021511A;
  padding: 7.5px 10px;
  font-weight: 700;
  font-size: 14px;
  line-height: normal;
  text-transform: uppercase;
  color: #002151;
  border-radius: 8px;
  width: fit-content;
  margin-bottom: 8px;
}

.c-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  color: #002151;
}

.c-desc {
  font-weight: 400;
  font-size: 13px;
  line-height: 1.2;
  color: #002151CC;
  margin-top: 8px;
}

.split-times {
  border-left: 2px solid #F4A811;
  padding-left: 10px;
  margin-bottom: 12px;
}

.split-times:last-child {
  margin-bottom: 0;
}

.split-times.t-1 .s-badge {
  color: #002151;
  background: #F4A811;
}

.split-times.t-2 .s-badge {
  color: #E0EAF3;
  background: #002151;
}

.split-times.t-2 {
  border-left: 2px solid #00215133;
}


.split-times .s-badge {
  border-radius: 4px;
  padding: 4px 8px;
  font-weight: 300;
  font-size: 12px;
  line-height: normal;
  margin-bottom: 8px;
  width: fit-content;
}

.split-times .s-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  color: #002151;
}

.program-section .blue-card.v2 {
  padding: 16px;
}

.program-section .blue-card.v2 .c-timer {
  margin-bottom: 12px;
}

/* Mobile Breakpoints */
@media (max-width: 1024px) {

  .program-section .card-desc {
    width: 100%;
  }

  .program-section .pink-card {
    padding: 20px;
  }

  .program-section .day-two-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .program-section .main-title {
    font-size: 36px;
    line-height: 44px;
  }

  .program-section .card-header {
    gap: 20px;
  }


  .program-section .blue-card .card-header {
    padding-bottom: 28px;
  }
}

@media (max-width: 768px) {

  .program-section .sub-title {
    font-size: 16px;
    line-height: 1.6;
  }

  .program-section .day-one-grid,
  .program-section .day-two-grid {
    grid-template-columns: 1fr;
  }

  .program-section .main-title {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 32px;
  }

  .program-section .date-badge {
    padding: 4px 10px;
  }

  .program-section .blue-card .card-header {
    padding-bottom: 0;
  }

  .program-section .pink-card {
    padding: 16px;
  }

  .program-section .program-card {
    border-radius: 12px;
  }

  .program-section .card-header {
    gap: 12px;
  }

  .program-section .blue-card .card-header {
    align-items: center;
    margin-bottom: 16px;
  }

  .program-section .card-title {
    margin-bottom: 6px;
    font-size: 16px;
  }

  .program-section .time-tag {
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 4px;
    margin-bottom: 6px;
  }

  .program-section .card-desc {
    font-size: 12px;
  }

  .program-section .cards-grid {
    gap: 16px;
  }

  .card-header-main {
    padding: 6px 16px;
    font-size: 13px;
    text-align: left;
    border-radius: 6px;
    margin-bottom: 8px;
  }

  .program-section .blue-card {
    padding: 12px;
    margin-bottom: 8px;
    border-radius: 8px;
  }

  .c-timer {
    font-size: 12px;
    padding: 4.5px 10px;
    margin-bottom: 4px;
  }

  .c-title {
    font-size: 14px;
  }

  .c-desc {
    margin-top: 4px;
    font-size: 12px;
  }

  .program-section .blue-card.v2 {
    padding: 12px;
  }

  .program-section .blue-card.v2 .c-timer {
    margin-bottom: 10px;
  }

  .split-times {
    padding-left: 8px;
    margin-bottom: 10px;
  }

  .split-times .s-badge {
    border-radius: 4px;
    padding: 2px 6px;
    font-size: 9px;
    margin-bottom: 4px;
  }

  .split-times .s-title {
    font-size: 13px;
  }

  .split-times.t-2 .s-badge {
    color: #fff;
  }

}

/* Program styles ends  */

/* Shape with content styles  */

.shape_section {
  background: #002151;
}

.shape_content_part {
  /* display: grid;
  grid-template-columns: repeat(2, 1fr); */
  display: flex;
  gap: 120px;
  width: 84%;
  margin: 0 auto;
}

@media screen and (max-width: 1380px) {
  .shape_content_part {
    width: 90%;
  }
}

@media screen and (max-width: 1280px) {
  .shape_content_part {
    width: 100%;
  }
}

.shape_content_part_left {
  display: flex;
  align-items: center;
  min-width: 244px;
}

.shape_content_part_right {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: center;
  border-left: 1px solid #d9d9d933;
  padding-left: 120px;
}

.shape_section h2 {
  font-size: 42px;
  line-height: 1.2;
  color: #f4a811;
  font-weight: 800;
}

.shape_content_part_right p {
  color: #e0eaf3;
  font-weight: 500;
  letter-spacing: -1%;
}

.shape_content_part_right .top_content {
  font-size: 22px;
  line-height: 32px;
  padding-bottom: 24px;
  margin: 0px;
}

.shape_content_part_right .bottom_content {
  font-size: 16px;
  line-height: 28px;
  margin: 0px;
}

/* Responsive Styles for Smaller Screens */

@media (max-width: 1024px) {
  .shape_content_part_right {
    padding-left: 80px;
  }

  .shape_content_part {
    gap: 80px;
  }
}

@media (max-width: 768px) {
  .attend_section.program-section {
    padding: 0px;
  }

  .shape_content_part {
    flex-direction: column;
    gap: 0;
  }

  .shape_content_part_left {
    justify-content: flex-start;
    padding-bottom: 32px;
    min-width: unset;
  }

  .shape_section h2 {
    font-size: 32px;
  }

  .shape_content_part_right .top_content {
    line-height: 30px;
    border-top: 1px solid #d9d9d933;
    padding-top: 32px;
  }

  .shape_content_part_right {
    border: none;
    text-align: left;
    padding-left: 0px;
  }
}

/* Shape with content styles ends */

/* Swiper styles  */

.speakers-section .swiper-wrapper {
  height: auto !important;
}

.speakers-section {
  background-color: #ededed;
  overflow-x: hidden;
}

/* Header Elements */
.speakers-section .section-header {
  margin-bottom: 40px;
}

.speakers-section .section-header h2 {
  color: #002151;
  font-size: 42px;
  line-height: 52px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.speakers-section .section-header p {
  color: #002151;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}

/* Swiper Container Wrapper setup */
.speakers-section .swiper-container-wrapper {
  position: relative;
  width: 100%;
}

.speakers-section .speakerSwiper {
  width: 100%;
  overflow: visible;
}

/* Card Styling */
.speakers-section .speaker-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  height: auto;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  width: 413px;
  height: 427px;
}

.speakers-section .image-wrapper {
  width: 100%;
  aspect-ratio: 1.15 / 1;
  overflow: hidden;
  /* Clips the image so it doesn't overflow when scaling */
  position: relative;
  /* Structural addition for the absolute positioning of the overlay */
}

.speakers-section .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  /* Controls the speed and smoothness of the zoom */
}

/* Image zoom effect on card hover */
.speakers-section .speaker-card:hover .image-wrapper img {
  transform: scale(1.08);
  /* Adjust scale value to control zoom level */
}

/* Golden warmth color wash overlay */
.speakers-section .image-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(240, 230, 215, 0.25),
      rgba(248, 204, 147, 0.35));
  /* background: linear-gradient(rgba(229, 193, 88, 0.35), rgba(197, 149, 44, 0.45)); */
  mix-blend-mode: multiply;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

/* Trigger overlay visibility change simultaneously with image scale */
.speakers-section .speaker-card:hover .image-wrapper::after {
  opacity: 1;
}

.speakers-section .card-content {
  padding: 24px;
  background: #ffffff;
}

.speakers-section .name-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.speakers-section .name-row h3 {
  color: #002151;
  font-size: 20px;
  line-height: 100%;
  font-weight: 700;
}

.speakers-section .linkedin-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.speakers-section .linkedin-icon svg {
  width: 24px;
  height: 24px;
  fill: #0077b5;
}

.speakers-section .role {
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  color: #002151;
}

/* Relative positioning anchor for navigation placement */
.speakers-section .controls-relative-box {
  position: relative;
  width: 100%;
  margin-top: 24px;
  min-height: 44px;
  /* padding-right: 4%; */
}

/* Target left pagination dots placement */
.speakers-section .controls-relative-box .swiper-pagination,
.speakers-section .controls-relative-box .swiper-pagination-bullets-dynamic {
  position: absolute;
  left: 0 !important;
  bottom: 0 !important;
  top: auto !important;
  transform: none !important;
  width: auto !important;
  display: flex;
  align-items: center;
  gap: 6px;
}

.speakers-section .controls-relative-box .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: #cbd5e0;
  opacity: 1;
  margin: 0 !important;
  border-radius: 50%;
  cursor: pointer;
}

.speakers-section .controls-relative-box .swiper-pagination-bullet-active {
  background-color: #002151;
}

/* Force standard inline wrapper container to bottom right layout */
.speakers-section .navigation-buttons {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

/* Custom round clear arrows style overriding default styling blocks */
.speakers-section .custom-arrow {
  position: static !important;
  width: 40px !important;
  height: 40px !important;
  border: 2px solid #002151 !important;
  border-radius: 50% !important;
  color: #002151 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer;
  margin: 0 !important;
  transition: all 0.2s ease;
}

.speakers-section .custom-arrow::after {
  display: none !important;
}

.speakers-section .custom-arrow svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Button Container Hover State */
.speakers-section .navigation-buttons .custom-arrow:hover:not(.swiper-button-disabled) {
  background-color: #002151 !important;
}

/* Target ONLY the inner arrow path (2nd path) to turn white on hover */
.speakers-section .navigation-buttons .custom-arrow:hover:not(.swiper-button-disabled) svg path:nth-child(2) {
  stroke: #ffffff !important;
}

/* Optional: Hide the SVG's outer stroke circle on hover since the button background fills it */
.speakers-section .navigation-buttons .custom-arrow:hover:not(.swiper-button-disabled) svg path:nth-child(1) {
  stroke: transparent !important;
}

.speakers-section .custom-arrow:hover {
  background-color: #002151 !important;
  border-color: #002151 !important;
  color: #ffffff !important;
}

/* Dim visual presentation on boundary locks */
.speakers-section .swiper-button-disabled {
  opacity: 0.3 !important;
  pointer-events: none !important;
}

/* Fix & Override Arrow Controls */
.speakers-section .navigation-buttons .custom-arrow {
  position: static !important;
  width: 32px !important;
  height: 32px !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer;
  border: none !important;
  background: transparent;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
  padding: 0;
}

/* Hide Swiper's default icon fonts */
.speakers-section .navigation-buttons .custom-arrow::after {
  display: none !important;
}

/* Make SVGs fluid inside button container */
.speakers-section .navigation-buttons .custom-arrow svg {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

/* Disabled state on boundary limits */
.speakers-section .navigation-buttons .swiper-button-disabled {
  opacity: 0.35 !important;
  pointer-events: none !important;
}

/* Enable image zoom & glow when focused via Tab key */
.speakers-section .speaker-card:hover .image-wrapper img,
.speakers-section .image-wrapper:focus-visible img {
  transform: scale(1.08);
}

.speakers-section .speaker-card:hover .image-wrapper::after,
.speakers-section .image-wrapper:focus-visible::after {
  opacity: 1;
}

.speakers-section .speaker-card:hover h3 {
  color: #000087;
}

/* Clear visual focus outline for accessibility */
.speakers-section .image-wrapper:focus-visible {
  outline: 2px solid #002151;
  outline-offset: -2px;
}

/* ==========================================
   MOBILE & TABLET RESPONSIVE MEDIA QUERIES
   ========================================== */

@media screen and (max-width: 1024px) {
  .speakers-section .section-header h2 {
    font-size: 36px;
    line-height: 44px;
  }
}

@media screen and (max-width: 768px) {
  .speakers-section .section-header {
    padding-right: 0;
    margin-bottom: 32px;
  }

  .speakers-section .section-header h2 {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 32px;
  }

  .speakers-section .section-header p {
    font-size: 16px;
    line-height: 28px;
  }

  .speakers-section .card-content {
    padding: 24px 20px;
  }

  .speakers-section .name-row h3 {
    font-size: 20px;
  }

  .speakers-section .controls-relative-box {
    display: none;
  }

  .speakers-section .navigation-buttons {
    right: 0;
  }

  .swiper-container-wrapper .swiper-wrapper {
    justify-content: center;
  }
}

/* Swiper styles ends */

/* Venue styles  */

.venue-content {
  height: 100%;
  align-content: center;
}

.venue-section {
  /* width: 100%; */
  /* max-width: 1200px; */
  background-color: #002151;
  /* border-radius: 16px; */
}

.venue-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: start;
  box-sizing: border-box;
  position: relative;
}

/* Left Content Styles */
.venue-tag {
  color: #f4a811;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 24px;
}

.venue-title {
  color: #fff;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  max-width: 90%;
}

.section-subtitle {
  color: #e0eaf3;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 12px;
  line-height: 1.2;
}

/* Info Cards Grid */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.info-card {
  border: 1px solid #ffffff1a;
  border-radius: 16px;
  padding: 16px;
  background-color: #002151;
}

.info-card-content {
  /* border-left: 4px solid #f4a811;
  border-radius: 2px; */
  position: relative;
}

.info-card-content::before,
.address-card-content::before {
  content: '';
  width: 4px;
  height: 100%;
  background-color: #f4a811;
  border-radius: 2px;
  position: absolute;
  top: 0;
  left: 0;
}

.info-card h3 {
  color: #ffffff;
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
  margin-bottom: 4px;
  padding-left: 20px;
  letter-spacing: -2%;
}

.info-card p {
  color: #f4a811;
  font-size: 18px;
  line-height: 30px;
  padding-left: 20px;
  margin-bottom: 0;
}

/* Address & Map Card */
.address-card {
  border: 1px solid #ffffff1a;
  border-radius: 16px;
  padding: 16px;
  background-color: #002151;
  /* margin-bottom: 24px; */
}

.address-card-content {
  /* border-left: 4px solid #f4a811;
  border-radius: 2px; */
  position: relative;
}

.address-card h3 {
  color: #ffffff;
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
  margin-bottom: 4px;
  padding-left: 20px;
}

.address-text {
  color: #f4a811;
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 4px;
  padding-left: 20px;
}

.map-container {
  width: 100%;
  height: 180px;
  border-radius: 8px;
  overflow: hidden;
}

.map-placeholder {
  padding-left: 16px;
}

.map-placeholder iframe {
  border-radius: 12px;
  height: 200px;
}

/* Action Buttons */
.action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.tag {
  /* background-color: rgba(30, 41, 59, 0.5); */
  background: #ffffff12;
  border: 1px solid #ffffff26;
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s ease;
}

/* Right Image Layout */
.venue-image-box {
  width: 100%;
  height: 100%;
  min-height: 450px;
  overflow: hidden;
  position: relative;
  border-radius: 16px;
}

.venue-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  will-change: transform, opacity;
}

/* Responsive Layout */

@media (max-width: 1024px) {
  .address-card {
    margin-bottom: 0;
  }

  .venue-tag,
  .section-subtitle {
    margin-bottom: 16px;
  }

  .info-card h3 {
    font-size: 20px;
  }

  .info-card p {
    font-size: 16px;
    line-height: 28px;
  }

  .info-grid {
    margin-bottom: 24px;
  }

  .action-buttons {
    gap: 8px;
  }

  .venue-container {
    grid-template-columns: 1fr;
    padding: 64px 20px;
  }

  .venue-title {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 32px;
    max-width: 100%;
  }

  .tag {
    justify-content: center;
    width: max-content;
    box-sizing: border-box;
  }

  .venue-container {
    gap: 32px;
  }

  .venue-image-box {
    min-height: unset;
    max-height: 550px;
  }

  .venue-image-box img {
    object-fit: cover;
    object-position: top;
  }
}

@media screen and (max-width: 768px) {
  .action-buttons {
    flex-direction: column;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .venue-image-box {
    min-height: unset;
    max-height: 330px;
  }
}

.venue-image-box .venue-night {
  display: block;
}

.venue-image-box .venue-day {
  display: none;
}

.venue-image-box.sessionToggled .venue-night {
  display: none;
}

.venue-image-box.sessionToggled .venue-day {
  display: block;
}

@media screen and (max-width: 410px) {
  .venue-title br {
    display: none;
  }
}

/* Venue styles ends */

/* Form model styles  */

input::placeholder,
select::placeholder {
  color: #6A778F !important;
  opacity: 1;
  font-weight: 500;
  font-size: 14px;
}

/* Standard syntax for modern browsers */
::placeholder {
  color: #6A778F !important;
  opacity: 1;
  font-weight: 500;
  font-size: 14px;
}

/* Specific Vendor Prefixes for older browsers */
::-webkit-input-placeholder {
  color: #6A778F !important;
}

/* Chrome, Safari, Opera */
::-moz-placeholder {
  color: #6A778F !important;
  opacity: 1;
}

/* Firefox 19+ */
:-ms-input-placeholder {
  color: #6A778F !important;
}

/* IE 10-11 */
:-moz-placeholder {
  color: #6A778F !important;
  opacity: 1;
}

/* Firefox 18- */


.nvg-card {
  width: 100%;
  max-width: 960px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(18, 35, 73, 0.12);
  padding: 32px;
  z-index: 1000;
}

.nvg-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.nvg-title {
  color: var(--text-primary);
  margin: 0;
   font-family: "Inter", sans-serif;
  font-weight: 700;
  font-style: Bold;
  font-size: 32px;
  line-height: 42px;
  text-align: left;
  vertical-align: middle;
}

.nvg-close {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: #f4f6f9;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0;
}

.nvg-close:hover {
  background: var(--chip-bg);
}

.nvg-steps {
  display: flex;
  align-items: flex-start;
  margin-bottom: 22px;
}

.nvg-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
  min-width: 0;
}

.nvg-step-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  border: 2px solid var(--border);
  color: var(--inactive);
  background: #fff;
  z-index: 1;
  line-height: 1;
}

.nvg-step-circle.active {
  border-color: var(--amber);
  color: var(--text-primary);
  /* box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.18); */
}

.nvg-step-circle.done {
  background: var(--amber);
  border-color: var(--amber);
  color: #fff;
}

.nvg-step-label {
  font-size: 10px;
  margin-top: 8px;
  text-align: center;
  color: var(--inactive);
  font-weight: 500;
  line-height: 1.25;
  padding: 0 2px;
  white-space: nowrap;
}

.nvg-step-label.active,
.nvg-step-label.done {
  color: var(--text-primary);
  font-weight: 700;
}

.nvg-step-line {
  position: absolute;
  top: 50%;
  left: 75%;
  width: 50%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

[data-step-index="3"] .nvg-step-line,
[data-step-index="5"] .nvg-step-line {
  top: 40%;
}

.nvg-step-line.done {
  background: var(--amber);
}

.nvg-step:last-child .nvg-step-line {
  display: none;
}

.nvg-panel {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  min-height: 422px;
  max-height: 422px;
  overflow-y: auto;
}

.nvg-panel-title {
   font-family: "Inter", sans-serif;
  font-weight: 500;
  font-style: Medium;
  font-size: 22px;
  line-height: 32px;
  color: var(--text-primary);
  margin: 0 0 24px;
}

.nvg-panel-title.mt-32 {
  margin-top: 32px;
}

.nvg-section-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-primary);
  margin: 20px 0 12px;
}

.nvg-hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 16px 0;
}

.nvg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.nvg-grid-section00{
  grid-template-columns: repeat(2, 1fr);

}

.nvg-grid.cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.nvg-grid.cols-1 {
  grid-template-columns: repeat(1, 1fr);
  margin: 24px 0;
}

.nvg-step-panel[data-step="2"] .nvg-grid.cols-2 {
  display: flex;
  margin-top: 24px;
  gap: 40px;
}

.nvg-step-panel[data-step="2"] .nvg-grid.cols-2 .nvg-field:last-child {
  width: 272px;
}

@media (max-width: 768px) {

  .nvg-grid,
  .nvg-grid.cols-2 {
    grid-template-columns: 1fr;
  }

  .nvg-step-panel[data-step="2"] .nvg-grid.cols-2 .nvg-field:last-child {
    width: 100%;
  }

  .nvg-step-panel[data-step="2"] .nvg-grid.cols-2 {
    gap: 24px;
  }

  .nvg-card {
    padding: 20px 16px 18px;
  }

  .nvg-step-label {
    display: none;
  }

  .nvg-grid.cols-2 {
    display: flex;
    flex-direction: column;
    margin-top: 24px;
    gap: 24px;
  }
}

.nvg-field {
  display: flex;
  flex-direction: column;
  min-width: 0;
  margin-top: 14px;
}

.nvg-grid .nvg-field,
.nvg-grid.cols-2 .nvg-field {
  margin-top: 0;
}

.nvg-label {
   font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 13px;
  line-height: 1;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.nvg-required {
  color: var(--error) !important;
  margin-left: 2px;
  font-weight: 700;
}

.nvg-optional-tag {
  font-size: 12px;
  font-weight: 400;
  color: #6a778f;
  background: transparent;
  border-radius: 4px;
  padding: 1px 6px;
  margin-left: 4px;
}

.optionalBG.nvg-optional-tag {
  background: #f4f6f9;
  color: #60728a;
  border-radius: 34px;
  padding: 4.5px 8px;
  font-size: 10px;
}

.nvg-input,
.nvg-select,
.nvg-textarea {
  border: 1.5px solid var(--inputBorder);
  border-radius: 7px;
  padding: 9px 11px;
  font-size: 14px;
  color: var(--text-primary);
  background: #fff;
  width: 100%;
  outline: none;
  transition: border-color 0.12s ease;
    font-family: "Inter", sans-serif;
  height: 44px;
}

.nvg-input::placeholder,
.nvg-select::placeholder,
.nvg-textarea::placeholder {
  color: var(--inactive);
}

.nvg-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("../../images/navigate-26/selectArrow.png");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 8px;
}

.nvg-textarea {
  resize: none;
  max-height: 100px;
}

.nvg-input:focus,
.nvg-select:focus,
.nvg-textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.15);
}

.nvg-input.err,
.nvg-select.err,
.nvg-textarea.err {
  border-color: var(--error);
}

.nvg-textarea {
  resize: vertical;
  min-height: 64px;
}

.nvg-phone-row {
  display: flex;
  gap: 8px;
}

.nvg-phone-row .nvg-select {
  width: 72px;
  flex-shrink: 0;
}

.nvg-error-msg {
  font-size: 11.5px;
  color: var(--error);
  margin-top: 5px;
  font-weight: 600;
}

.nvg-checkbox-row,
.nvg-radio-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-primary);
  cursor: pointer;
  padding: 3px 0;
}

.nvg-checkbox-row input,
.nvg-radio-row input {
  width: 16px;
  height: 16px;
  accent-color: var(--amber);
  margin-top: 1px;
  flex-shrink: 0;
  cursor: pointer;
}

.nvg-radio-row input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid var(--border-check);
  border-radius: 50%;
  outline: none;
  background-color: #fff;
  cursor: pointer;
  place-content: center;
}

.nvg-radio-row input[type="radio"]:checked {
  border: 6px solid var(--amber);
}

/*  */
.nvg-consent-item input[type="checkbox"],
.nvg-single-check input[type="checkbox"],
.nvg-checkbox-row input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid var(--border-check);
  border-radius: 4px;
  background-color: #ffffff;
  cursor: pointer;
  display: inline-grid;
  place-content: center;
  position: relative;
}

.nvg-consent-item input[type="checkbox"]:checked,
.nvg-single-check input[type="checkbox"]:checked,
.nvg-checkbox-row input[type="checkbox"]:checked {
  background-color: var(--amber);
  border-color: var(--amber);
}

.nvg-consent-item input[type="checkbox"]::before,
.nvg-single-check input[type="checkbox"]::before,
.nvg-checkbox-row input[type="checkbox"]::before {
  content: url("../../images/navigate-26/checkbox.svg");
  width: 12px;
  height: 12px;
  scale: 0;
  transition: scale 0.1s ease-in-out;
  display: flex;
  top: 3px;
  left: 1.75px;
  align-items: center;
  position: absolute;
  justify-content: center;
}

.nvg-consent-item input[type="checkbox"]:checked::before,
.nvg-single-check input[type="checkbox"]:checked::before,
.nvg-checkbox-row input[type="checkbox"]:checked::before {
  scale: 1;
}

/*  */

.nvg-check-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.nvg-check-grid.nvg-checkbox-grid {
  grid-template-columns: repeat(2, 1fr);
}

@media all and (min-width: 769px) and (max-width: 991px) {
  .nvg-check-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.nvg-radio-inline {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.nvg-radio-inline.g-60 {
  gap: 60px;
}

.nvg-consent-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  /* border-bottom: 1px solid var(--border); */
  font-size: 14px;
}

.nvg-consent-item span {
  color: #282b3e;
}

.nvg-consent-item:last-child {
  border-bottom: none;
}

.nvg-consent-item a {
  color: var(--text-primary);
  font-weight: 700;
  text-decoration: underline;
}

.nvg-consent-item input {
  width: 16px;
  height: 16px;
  accent-color: var(--amber);
  margin-top: 2px;
  flex-shrink: 0;
}

.nvg-single-check {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-primary);
  cursor: pointer;
  background: var(--chip-bg);
  border-radius: 7px;
  padding: 9px 10px;
  margin-top: 24px;
}

.nvg-single-check input {
  width: 16px;
  height: 16px;
  accent-color: var(--amber);
  margin-top: 1px;
  flex-shrink: 0;
}

.nvg-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
}

.nvg-link-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 14px;
  text-decoration: underline;
  text-decoration-color: var(--text-primary);
  padding: 8px 2px;
  line-height: 1;
  display: flex;
  gap: 2px;
}

.nvg-primary-btn {
  background: var(--amber);
  border: none;
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1;
  font-size: 15px;
  padding: 12px 32px;
  border-radius: 8px;
  cursor: pointer;
  transition:
    background 0.12s ease,
    transform 0.05s ease;
}

#gotohomeBtndesk {
  margin-top: 16px;
}

.gotohomeBtnMob {
  display: none;
  margin: auto;
}

.nvg-primary-btn:hover {
  background: var(--amber);
}

.nvg-primary-btn:active {
  transform: translateY(1px);
}

.nvg-primary-btn:disabled {
  background: #f2d6a1;
  cursor: not-allowed;
}

.nvg-banner-error {
  background: var(--error-bg);
  color: var(--error);
  font-size: 12.5px;
  font-weight: 700;
  border-radius: 7px;
  padding: 9px 12px;
  margin-bottom: 14px;
  display: none;
}

.nvg-confirm-wrap {
  text-align: center;
  padding: 56px 20px 48px;
}

.nvg-confirm-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  /* border: 2.5px solid var(--amber); */
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  /* color: var(--amber); */
}

.nvg-confirm-title {
  color: var(--text-primary);
  margin: 0 0 8px;
    font-family: "Inter", sans-serif;
  font-weight: 500;
  font-style: Medium;
  font-size: 22px;
  line-height: 32px;
  text-align: center;
  vertical-align: middle;
}

.nvg-confirm-sub {
  font-size: 13px;
  color: #282b3e;
  margin: 0 auto 8px;
  line-height: 1.6;
  width: 68%;
}

.nvg-confirm-sub.nvg-confirm-sub01 {
  margin-bottom: 24px;
  font-size: 15px;
  line-height: 1.5;
}

.nvg-spinner {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-top-color: #fff;
  display: none;
  animation: nvg-spin 0.7s linear infinite;
  margin-right: 8px;
  vertical-align: -2px;
}

@keyframes nvg-spin {
  to {
    transform: rotate(360deg);
  }
}

.nvg-step-panel {
  display: none;
}

.nvg-step-panel.is-active {
  display: block;
}

[data-topic-group] {
  display: none;
  margin-top: 14px;
}

[data-accessibility-group] {
  display: none;
  margin-top: 14px;
}

.form-model {
  display: none;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 9999;
}

@media all and (min-width: 769px) and (max-width: 1600px) {
  .nvg-card {
    padding: 24px;
  }

  .nvg-grid {
    gap: 16px;
  }

  .nvg-panel {
    min-height: 340px;
    height: 340px;
  }

  ._space {
    height: 24px;
  }
}

@media all and (max-width: 768px) {
  ._space {
    height: 24px;
  }

  .nvg-radio-inline {
    gap: 12px;
    flex-direction: column;
  }

  .nvg-radio-inline.nvg-radio-inline-two {
    flex-direction: row;
  }

  .nvg-check-grid.nvg-checkbox-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .nvg-check-grid.nvg-check-grid-two {
    grid-template-columns: repeat(2, 1fr);
  }

  .nvg-step-circle,
  .nvg-step-label {
    display: none;
  }

  .nvg-step-line.active {
    background: var(--amber);
  }

  .nvg-step-line.done {
    background: var(--text-primary);
  }

  .nvg-steps {
    gap: 6px;
    width: 100%;
    padding: 0 16px;
  }

  .nvg-step {
    width: calc(100% / 6);
  }

  .nvg-step:last-child .nvg-step-line {
    display: unset;
  }

  .nvg-step-line {
    position: relative;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    height: 6px;
    background: var(--border);
    border-radius: 3px;
  }

  /*  */

  .nvg-card {
    padding: 20px 0;
    border-radius: 0px;
  }

  .nvg-header {
    padding: 0 16px;
  }

  .nvg-footer,
  .nvg-step-panel {
    padding: 0 20px;
  }

  .nvg-header {
    margin-bottom: 13px;
  }

  .nvg-title {
    font-size: 20px;
    line-height: 26px;

  }

  .nvg-close {
    width: 28px;
    height: 28px;

  }

  .nvg-panel {
    border: none;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    padding: 20px 0;
    /*  */
    height: calc(100vh - 170px);
    max-height: fit-content;
  }

  .nvg-panel-title {
    font-size: 20px;
    line-height: 1;
    margin: 0 0 24;
  }

  .nvg-phone-row {
    gap: 6px;
  }

  .nvg-consent-item {
    border-bottom: 1px solid var(--border);
    padding: 24px 0;
    align-items: flex-start;
  }

  .nvg-consent-item:first-of-type {
    padding-top: 0;
  }

  .nvg-consent-span {
    display: flex;
  }

  .nvg-consent-span span.optionalBG {
    height: fit-content;
    margin: auto;
  }

  .gotohomeBtnDesktop {
    display: none;
  }

  .nvg-card {
    height: 100%;
    overflow: auto;
  }
}

/* Form model styles ends  */

.nvg-panel {
  /* scrollbar-width: thin; */
  scrollbar-color: #00000000;
}

.nvg-panel::-webkit-scrollbar {
  width: 4px;
}

.nvg-panel::-webkit-scrollbar-track {
  background: #ececec;
  border-radius: 20px;
  margin-right: 10px;
}

.nvg-panel::-webkit-scrollbar-thumb {
  background: #b1b1b1;
  border-radius: 20px;
}


/* .nvg-panel::-webkit-scrollbar-thumb:hover {
  background: #B1B1B1;
} */


.attend_section .card-desc {
  width: 100% !important;
}

main svg {
  fill: none;
}

main button {
  text-transform: none;
}

main button:hover,
main button:active,
main button:focus,
main button:focus-visible {
  background: none;
}

.btn {
  line-height: 1.2;
}

.hero-title {
  color: #ffffff;
}

#dietaryDetailsId {
  display: none;
}

@media all and (min-width: 769px) and (max-width: 1600px) {
  .nvg-confirm-wrap {
    text-align: center;
    padding: 12px 0 0 0;
  }
}

.speakers-section .role,
.program-section .card-desc,
.attend_section .card-desc,
.media_partner_part_right p {
  margin-bottom: 0 !important;
}

.accordion-left h2 {
  top: 130px;
}

.nvg-input,
.nvg-select,
.nvg-textarea {
  line-height: 100% !important;
}

/* Form styles  */
.attending-no .nvg-confirm-sub.nvg-confirm-sub01 {
  width: 80%;
  margin-bottom: 0;
}

.attending-no .nvg-confirm-sub.nvg-confirm-sub01 a {
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .attending-no .nvg-confirm-sub.nvg-confirm-sub01 {
    width: 100%;
  }
}

/* Form styles ends */

main .hero .btn-primary:focus  {
    background-color: #f4a811 !important;
}

main .banner .btn-primary:focus  {
    background-color: #f4a811 !important;
}

 main .form-model button:focus{
   background-color: #f4a811 !important;
 }

main .form-model button.nvg-link-btn:focus{ 
   background-color: none !important;
 }

 

@media (max-width: 660px) {
    .banner .badge {
   justify-content: center;
    }
  }


@media (max-width: 768px) {
  .nvg-radio-inline.g-60 {
        gap: 12px;
        flex-direction: column;
    }
}
 
label[for="breakoutAckCapacity"] {
cursor:auto !important;
}

.navigate-link{
  text-decoration: underline;
  transition: all 0.3s;
}
.navigate-link:hover{
  text-decoration: none;
  color: #F4A811;
    transition: all 0.3s;
}

a.nvg-primary-btn{
  display: inline-block;
    margin-top: 16px;
}


main .hero .btn-primary:focus:hover,
main .banner .btn-primary:focus:hover {
    color: #002151;
}