/* Regular */
@font-face {
  font-family: 'IndeedSans';
  src: url('../font/IndeedSans_Rg.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

/* Medium */
@font-face {
  font-family: 'IndeedSans';
  src: url('../font/IndeedSans_Md.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
}

/* Italic */
@font-face {
  font-family: 'IndeedSans';
  src: url('../font/IndeedSans_It.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
}

/* Light Italic */
@font-face {
  font-family: 'IndeedSans';
  src: url('../font/IndeedSans_LtIt.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
}

/* Bold Italic */
@font-face {
  font-family: 'IndeedSans';
  src: url('../font/IndeedSans_BdIt.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
}

/* Extra Bold Italic */
@font-face {
  font-family: 'IndeedSans';
  src: url('../font/IndeedSans_XBdIt.woff2') format('woff2');
  font-weight: 800;
  font-style: italic;
}

/* Light */
@font-face {
  font-family: 'IndeedSans';
  src: url('../font/IndeedSans_Lt.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
}

/* Bold */
@font-face {
  font-family: 'IndeedSans';
  src: url('../font/IndeedSans_Bd.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}

/* Extra Bold */
@font-face {
  font-family: 'IndeedSans';
  src: url('../font/IndeedSans_XBd.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
}

body{
  font-family: 'IndeedSans', sans-serif;
}
img{
  width: 100%;
}

/* Mobile Header Bar */
.mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background-color: #bbeaef;
}
.logo-text {
  font-size: 1.2rem;
  color: #001845;
}
.menu-toggle-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.mobilePastEvent{
  display: none;
}
.displayBlock{
  display: block;
}
/* Mobile Menu Fullscreen Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #cbebf2; /* Light Cyan color matching screenshot */
  z-index: 9999;
  
  /* Hidden state */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

/* Active Open State */
.mobile-menu-overlay.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mobile-menu-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 24px 24px 40px;
  max-width: 100%;
  margin: 0 auto;
}
/* Menu Top Header */
.menu-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 32px;
}
.menu-logo {
  display: flex;
  flex-direction: row;
  line-height: 1;
  width: 500px;
  gap: 20px;
}
.header-logo{
  display: flex;
  flex-direction: row;
  line-height: 1;
  width: 100%;
  gap: 10px;
}
.logo-sub {
  font-size: 1.1rem;
  font-weight: 500;
  color: #001845;
  margin-bottom: 2px;
}
.logo-main {
  font-size: 1.8rem;
  font-weight: 900;
  color: #001845;
  letter-spacing: -0.5px;
}
.menu-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #001845;
}
.menu-pills-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 0;
}
.pill-nav-item {
  display: inline-block;
  padding: 6px 28px;
  border: 1.5px solid #001845;
  border-radius: 50px;
  color: #001845;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  background-color: transparent;
  transition: background-color 0.2s ease, transform 0.15s ease;
}
.pill-nav-item:active {
  transform: scale(0.97);
  background-color: rgba(0, 24, 69, 0.05);
}
.mobilePastEvent .pill-nav-item {
  font-size: 12px;
  margin-bottom: 5px;
  width: 70%;
  text-align: center;
}
/* Bottom CTA Group */
.menu-cta-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  margin-top: 32px;
}
.cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  padding: 18px 24px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  color: #001845;
  text-align: center;
  transition: opacity 0.2s ease, transform 0.15s ease;
}
.cta-btn:active {
  transform: scale(0.98);
  opacity: 0.9;
}
/* Button Colors */
.btn-teal {
  background-color: #55c4d4; /* Teal/Cyan from screenshot */
}
.mobile-header{
  top: -100px;
}
.mobileFix{
  position: fixed;
  z-index: 99;
  top:0;
  transition: top 0.5s ease;
  width: 100%;
}
/*.mobileFix img{
  width: 50%;
}*/

/* Desktop Header */
.header{
  background-color: #bceaef;
  padding: 1rem 1.3rem;
  transition: top 0.5s ease;
  position: static;
  top: -100px;
}
.sticky {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #bceaef;
  padding: 1rem 1.3rem;
  z-index: 999;
  width: 100%;
  transition: all 0.5s ease;
}
.hbtn{
  margin-left: 10px;
  display: none;
}
.header .hbtn a{
  border: none;
   padding: 8px 35px 11px 35px;
}
.headerLogo{
  width: 100%;
}
.desktopMenu{
  text-align: right;
  list-style: none;
  text-decoration: none;
  margin:0;
  padding-left: 0;
}
.desktopMenu .link{
  display: inline-block;
  margin-left: 10px;
  position: relative;
}
.desktopMenu li a{
  text-decoration: none;
  display: block;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 7px 20px 10px 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50px;
    border: 1px solid #00123c;
    color: #00123c;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.4px;
}
.headerBtn{
  display: none;
}
.pastEvent{
    position: absolute;
    z-index: 9;
    width: 210px;
    height: auto;
    right: 0;
    top: 45px;
    display: none;
    padding-top: 60px;
    transition: top 0.5s ease;
    background: #cff1f4;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
}
.pastEvent li{
  margin:5px 0 5px 0;
  background: #66c6d3;
  border-radius: 50px;
}
.pastEvent li a{
  font-size: 14px;
  border:none;
}
.dropdown:hover .pastEvent{
  display: block;
  transition: top 0.5s ease;
  height: auto;
}
.bannerSection {
    background: #bceaef;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}
.caption{
  padding: 0 50px;
  position: absolute;
  top: 10%;
  width: 100%;
  overflow: hidden;
}
.caption h1{
    text-transform: uppercase;
    font-size: MIN(16cqw, 250px);
    line-height: 90%;
    font-weight: 800;
    color: #fff;
    opacity: 0.3;
    max-width: 1600px;
    margin: 0 auto;
    font-weight: bold;
}
.dateTime{
  position: absolute;
  bottom: 10px;
  padding: 0 50px;
  width: 100%;
}
.dateTime h3{
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
}
.dateTime h4{
  font-size: 18px;
  line-height: 21px;
  font-weight: normal;
}
.sliderBox{
    max-height: 300px;
    max-width: 52%;
    overflow: hidden;
    display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease;
  margin: auto;
  border-radius: 1000px;
  margin-top: 60px;
  margin-bottom: 100px;
}
.carousel-item img{
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}
.scrollSlider .sliderBox{
    max-height: 100%;
    max-width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease;
    border-radius: 0px;
    margin-bottom: 0;
}
.scrollSlider .carousel-item img{
  border-radius: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}
.bannerBtn{
  background: #e867a8;
  border: none;
  border-radius: 50%;
  position: absolute;
  top: 23%;
  z-index: 9;
  left: 23%;
  height: 100px;
  width: 100px;
  rotate: 0deg;
  transition: all 1s ease;
}
.bannerBtnDown{
  top: 80%;
  left: 48%;
  rotate: 40deg;
  transition: all 1s ease;
}

.slider-pin-section {
  height: 170vh;
  position: relative;
  background-color: #00123c;
}

.aboutLogo{
  position: absolute;
  top: 70px;
  left: 50%;
  width: 370px;
}

/* Sticky Container */
.slider-container {
  position: sticky;
  top: 0;
  width: 100%;
  margin: 0 auto;
  padding: 180px 0 40px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  overflow: hidden;
}

/* Left Image Column */
.image-column {
    background: #003a9b;
    border-radius: 0 999px 999px 0;
    padding-left: 20px;
    width: 50%;
}

.image-frame {
  width: 100%;
  height: 350px;
  border-radius: 200px; /* Stadium/pill frame */
  overflow: hidden;
  /*box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);*/
}
.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Right Text Column */
.text-column {
  /*flex: 1;*/
  height: 220px;
  overflow: hidden;
  position: relative;
  width: 40%;
}
.text-wrapper {
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.text-slide {
  height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 480px;
  opacity: 0.2;
  transform: scale(0.95);
  transition: opacity 0.4s ease, transform 0.4s ease, filter 0.4s ease;
  filter: blur(2px);
}
.text-slide.active {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}
.slide-title {
  color: #fff;
    font-size: 50px;
    font-style: normal;
    font-weight: 400;
    line-height: 55px;
    letter-spacing: -1px;
}
.slide-description {
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    line-height: 24px;
}
.dots-navigation {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-left: 10px;
  width: 10%;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.dot.active {
  background-color: #ffffff;
  transform: scale(1.3);
}

/* Responsive Styles */
@media (max-width: 900px) {
  .slider-container {
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    align-items: normal;
  }

  .image-column {
    max-width: 100%;
    width: 100%;
  }

  .image-frame {
    height: 250px;
    border-radius: 125px;
  }

  .text-column, .text-slide {
    height: 220px;
  }

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

  .dots-navigation {
    flex-direction: row;
    padding-left: 0;
  }
  .aboutLogo {
      position: static;
      top: 35px;
      left: 0;
      width: 370px;
      padding: 0 0;
  }
}

.speakers a{
  text-decoration: none;
 }
 .speakers .speaker-wrapper {
    height: 660px;
    background: #fff;
    border-radius: 1000px;
    transition: 2s;
}
.speaker-wrapper:hover{
  background-color: rgb(243, 243, 243);
}
.speakers .speaker-image {
    border-radius: 1000px;
    overflow: hidden;
}
.speakers:nth-of-type(2) .speaker-image img {
    background-color: #e867a8;
}
.speakers:nth-of-type(3) .speaker-image img {
    background-color: #66c6d3;
}
.speakers:nth-of-type(4) .speaker-image img {
    background-color: #1a3fd6;
}
.speakers .speaker-image img {
    border-radius: 1000px;
    width: 100%;
    height: auto;
    display: block;
    -webkit-transition: unset;
    transition: unset;
}
.speakers .speaker-details h3
 {
    color: #00123c;
    text-align: center;
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.9px;
    max-width: unset;
}
.speaker-title{
    color: #00123c;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    line-height: normal;
    margin: 5px 0 5px 0;
    padding:0 30px;
} 

.speaker-employer {
    color: #00123c;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    line-height: normal;
    font-weight: bold;
}
.speaker-image{
  transition: all .5s ease;
  height: 500px;
}
.speakers:hover .speaker-image{
  border-radius: 100%;
  height: 360px;
  transition: .5s;
}
.speakers:hover .speaker-image{
    transform: translate(0px, -20px);
    transition: 0.5s;
}
.speaker-description{
  opacity: 0;
  padding:0 30px;
  color: #00123c;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  line-height: normal;
}
.speakers:hover .speaker-description{
  opacity: 1;
}
.spkTitle{
    color: #00123c;
    font-size: 3rem;
    line-height: 3.5rem;
    font-weight: 400;
    margin: 0 0 30px 0;
}
.spk26{
  padding: 50px 0;
}

/* Testimonial Start */
.testimonial-section {
  position: relative;
  /*width: 100vw;*/
  height: 90vh;
  background-color: #DCEEF5;
  transition: background-color 0.8s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.mosaic-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 170px;
  padding: 0px;
  pointer-events: none;
  width: 110%;
    left: 50%;
    transform: translateX(-50%);
}
.grid-col {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: 100%;
  will-change: transform;
  transition: transform 0.9s cubic-bezier(0.25, 1, 0.5, 1);
}
.photo-card {
  width: 100%;
  height: 300px;
  border-radius: 20px;
}
.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}
video{
  border-radius: 20px;
  height: 300px;
  object-fit:cover;
}
/* Outer White Box Wrapper & Animation */
.testimonial-card-wrapper {
  position: relative;
  z-index: 10;
  max-width: 580px;
  width: 90%;
  /* Transition for sliding up from bottom to center */
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease;
  will-change: transform, opacity;
}
/* Trigger Class for Sliding Box Up from Bottom */
.testimonial-card-wrapper.slide-up {
  transform: translateY(280px); /* Start lower down */
  opacity: 0;
}
/* The White Box */
.testimonial-card {
  background: #ffffff;
  padding: 48px 56px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  position: relative;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.quote-slide {
  position: absolute;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.quote-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.quote-text {
  font-size: 22px;
  line-height: 30px;
  color: #0d1b3e;
  font-weight: normal;
  margin-bottom: 20px;
  letter-spacing: 0;
  padding: 0 10px;
}

.quote-author {
  font-size: 0.95rem;
  color: #5a6e85;
}
.quote-author strong {
  color: #0d1b3e;
}
/* Controls */
.control-panel {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 20;
}
.control-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid rgba(13, 27, 62, 0.15);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    color: #0d1b3e;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    rotate: -90deg;
}
.control-btn:hover:not(:disabled) {
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: scale(1.05);
}
.control-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}
.leftImg1{
  margin-top: -100px;
}
.leftImg2{
  margin-top: 200px;
}
.leftImg3{
  margin-top:200px;
}
.rightImg1{
  margin-top: -100px;
}
.rightImg2{
  margin-top: 200px;
}
.rightImg3{
  margin-top:200px;
}
.middleImg1{
  margin-top:-300px;
}
.middleImg2{
  margin-top:300px;
}
.leftM1{
  margin-top: 50px;
}
.leftM2{
  margin-top: 0px;
}
.scroll-spacer {
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #64748b;
  background-color: #e2e8f0;
}
/* Outer Section */
.stacked-schedule-section {
  position: relative;
  margin: 0 auto;
  padding: 60px 40px 60px;
}
.cards-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 80px; /* Space needed to allow scroll distance */
}
/* Common Sticky Card Styles */
.schedule-card {
  position: sticky;
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05), 0 20px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
/* Sticky Offset Positioning */
.card-day-1 {
  top: 80px; /* Day 1 pins here */
  z-index: 1;
}
.card-day-2 {
  top: 50px; /* Day 2 pins slightly lower, sliding smoothly over Day 1 */
  z-index: 2;
  margin-top: 40vh; /* Scroll distance trigger */
}
/* Card Typography & Grid */
.card-title {
  font-size: 3rem;
  font-weight: normal;
  color: #0b1a3e;
  margin-bottom: 24px;
}
.schedule-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
/* Track Columns & Colored Top Borders */
.track-header {
  font-size: 1rem;
  color: #0b1a3e;
  padding-bottom: 8px;
  margin-bottom: 16px;
  border-top: 10px solid transparent;
  border-radius: 10px 10px 0 0;
  padding-top: 8px;
}
.pink-accent {
  border-color: #e867a8; /* Pink accent matching screenshot */
}

.blue-accent {
  border-color: #65c6d3; /* Teal/blue accent matching screenshot */
}
/* Individual Session Card */
.session-card {
  background: #f5f5fa;
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 12px;
  height: 100px;
}
.session-time {
  font-size: 0.85rem;
  color: #64748b;
  display: block;
  margin-bottom: 4px;
}
.session-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #0b1a3e;
  margin-bottom: 6px;
  line-height: 1.3;
}
.session-speakers {
  font-size: 0.88rem;
  color: #64748b;
}
/* Responsive Mobile Layout */
@media (max-width: 768px) {
  .schedule-grid {
    grid-template-columns: 1fr;
  }
  .schedule-card {
    padding: 24px;
    border-radius: 16px;
  }
  .card-title {
    font-size: 1.8rem;
  }
  .card-day-1 {
    top: 40px;
  }
  .card-day-2 {
    top: 70px;
  }
}
.pill-btn {
  /* Button Styling */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 14px 50px;
  background-color: transparent;
  color: #030f37; /* Dark navy color matching screenshot */
  border: 2px solid #030f37;
  border-radius: 50px; /* Fully rounded pill shape */
  
  /* Typography */
  font-family: 'IndeedSans', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  overflow: hidden;
  
  /* Smooth transition for hover effects */
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
/* Button Text Styling */
.btn-text {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

/* Right Arrow Icon Styling */
.btn-icon {
  position: absolute;
  right: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  
  /* Initially hidden & offset to the right */
  opacity: 0;
  transform: translateX(12px);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform, opacity;
}

/* --- HOVER STATES --- */

/* Slide text slightly to the left */
.pill-btn:hover .btn-text {
  transform: translateX(-10px);
}

/* Reveal and slide in the right arrow */
.pill-btn:hover .btn-icon {
  opacity: 1;
  transform: translateX(0);
}

/* Optional: Subtle background hover effect */
.pill-btn:hover {
  background-color: rgba(3, 15, 55, 0.04);
}



/* Outer Footer Container */
.site-footer {
  width: 100%;
  background-color: #003a9b; /* Deep royal blue matching the image */
  color: #ffffff;
  padding: 32px 48px;
}

/* Inner Flex Layout */
.footer-container {
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

/* Left Group: Logo + Address Text */
.footer-info {
  display: flex;
  /*align-items: center;*/
  gap: 16px;
  flex-wrap: wrap;
}

.footer-logo-link {
  height: 60px;
  width: auto;
  display: block;
  width: 110px;
}

.copyright-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #e0e8f9; /* Soft white/light blue for address text */
  max-width: 320px;
}

/* Right Group: Navigation Links */
.footer-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: normal;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.footer-link:hover {
  text-decoration: underline;
  opacity: 0.85;
}

/* --- RESPONSIVE STYLES --- */

/* Medium Screens (Tablets) */
@media (max-width: 1024px) {
  .site-footer {
    padding: 28px 32px;
  }
  
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .footer-nav {
    gap: 20px;
  }
}

/* Small Screens (Mobile) */
@media (max-width: 600px) {
  .site-footer {
    padding: 24px 20px;
  }

  .footer-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .copyright-text {
    font-size: 0.85rem;
  }

  .footer-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .footer-link {
    font-size: 0.95rem;
  }
}
.mobileHeader{
  display: none;
}
.aboutIndeed {
    background: #001C40;
    padding: 80px 50px;
    color: white;
    position: relative;
    overflow: hidden;
}
@keyframes float {
    0%, 100% {
      transform: translateY(0px) translateX(0px)
    }
    25% {
      transform: translateY(-20px) translateX(10px)
    }
    50% {
      transform: translateY(-30px) translateX(-5px)
    }
    75% {
      transform: translateY(-10px) translateX(-15px)
    }
  }
.aboutIndeed::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, rgba(232, 103, 171, 0.1), rgba(63, 115, 211, 0.1));
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    top: 10%;
    right: 5%;
    animation: float 6s ease-in-out infinite;
}
.aboutIndeed::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(0, 58, 155, 0.1), rgba(254, 248, 244, 0.2));
    border-radius: 50%;
    bottom: 10%;
    left: 5%;
    animation: float 8s ease-in-out infinit
}
.aboutIndeed h1 {
    font-size: 40px;
    font-weight: normal;
    margin-bottom: 30px;
    color: #fff;
}
.aboutIndeed p {
    font-size: 18px;
    line-height:25px;
    margin:0 0 20px 0;
    color: #E8F3FC;
}
.aboutUs{
  padding: 80px 0;
}
.abtCaps{
  text-align: center;
  background: #f5f5fa;
  padding:36px 40px;
  border-radius: 1000px;
  min-height: 200px;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.abtCaps:hover{
  transform: scale(1.05);
  transition: transform 0.3s ease;
}
.abtCaps h3{
  color: #003a9b;
  margin: 10px 0 0;
  font-size: 50px;
  line-height: 1;
}
.abtCaps .stat-unit{
  color: #003a9b;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  margin: 0 0 10px;
}
.abtCaps h5{
  margin: 0;
  color: #353535;
  font-weight: normal;
  font-size: 18px;
  line-height: 1.35;
  max-width: 220px;
}
.aboutUs p{
  margin: 25px 30px 10px 30px;
  font-size: 14px;
  color: #67686a;;
}
.footnote-item{
  margin: 0 30px !important;
  padding-left: 16px;
  position: relative;
  line-height: 1.4;
}
.footnote-item:first-of-type{
  margin-top: 25px !important;
}
.footnote-item::before{
  content: "•";
  position: absolute;
  left: 0;
}
/*Home page css end*/

.innerTop{
    background-color: #003a9b;
    padding: 80px 0 60px 0;
}
.innerTop h2{
  font-size: 50px;
  line-height: 60px;
  color: #fff;
  font-weight: normal;
}
.innerTop h5{
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  font-weight: normal;
}
a {
  text-decoration: none;
}
.fullSpeakers{
  padding: 100px 40px 50px 40px;
}
.fullSpeakers .speaker-images {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 325 / 350;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.speaker-wrappers{
  margin-bottom: 50px;
}
.speaker-wrappers:nth-of-type(4n+1) .speaker-images {
    background: #4472db;
}
.speaker-wrappers:nth-of-type(4n+2) .speaker-images {
    background: #e8f1fd;
}
.speaker-wrappers:nth-of-type(4n+3) .speaker-images {
    background: #8fb0ec;
}
.speaker-wrappers:nth-of-type(4n) .speaker-images {
    background: #c7dafa;
}
.fullSpeakers .speaker-images img {
    width: 100%;
    height: auto;
    display: block;
    -ms-flex-item-align: end;
    -ms-grid-row-align: end;
    align-self: end;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    transition: transform 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out;
}
.fullSpeakers .speaker-details {
    position: relative;
    padding-top: 2rem;
}
.fullSpeakers .speaker-names {
    color: #00123c;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.6px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding: 10px 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 4px;
    border-radius: 30px;
    background: #fcebe5;
    position: absolute;
    top: -26px;
    left: -15px;
    -webkit-transition: background-color 0.15s ease-in-out;
    transition: background-color 0.15s ease-in-out;
}
.fullSpeakers .speaker-titles, .fullSpeakers .speaker-employer{
    font-size: 1rem;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    letter-spacing: -0.48px;
    color: #001c40;
    text-align: left;
    margin:0;
}
.fullSpeakers .speaker-employer{
    font-weight: 700;
    margin-top: 10px;
}
/*speaker css end*/


/* Wrapper Section */
.agenda-section {
  padding: 100px 40px 100px 40px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.agenda-container{
  border-radius: 20px;
  overflow: hidden;
}
.agenda-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #001845;
}

/* Accordion Container */
.accordion-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Accordion Card */
.accordion-item {
  background-color: #f4f5f9; /* Soft light gray/purple tint */
  border-radius: 20px;
  overflow: hidden;
  background-color: #f5f5fa;
  border: 1px solid #e6e6f3;
  transition: border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Active State Top Highlight Bar (Pink accent from screenshot) */
.accordion-item.active {
  background-color: #f7f8fc;
  box-shadow: 0 8px 24px rgba(0, 24, 69, 0.05);
}

/* Interactive Header Button */
.accordion-header {
  width: 100%;
  display: grid;
  grid-template-columns: 180px 1fr 40px;
  align-items: center;
  padding: 16px 28px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  outline: none;
  gap: 16px;
}

/* Time Column */
.accordion-time {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.5rem;
  font-weight: normal;
  white-space: nowrap;
}

/* Main Content Area */
.accordion-main-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.accordion-heading {
  font-size: 1.8rem;
  font-weight: normal;
  color: #001845;
  line-height: 1.4;
}

.accordion-speakers {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.5rem;
  font-weight: normal;
  white-space: nowrap;
  color: #002054;
}
.indeed-agenda-2026__item-date{
  color: #00123c;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: normal;
  margin: 0 0 0px 0;
}
.agenda-section h6{
  color: rgba(0, 18, 60, 0.6);
  font-size: 16px;
  font-style: italic;
  font-weight: normal;
  line-height: 26px;
  margin: 0 0 30px 0;
}
/* Plus/Minus Animated Icon */
.accordion-icon {
  position: relative;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
}

.icon-line {
  position: absolute;
  background-color: #001845;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.line-h {
  width: 20px;
  height: 2.5px;
}

.line-v {
  width: 2.5px;
  height: 20px;
}

/* Rotate vertical line to hide it when open (turns '+' into '-') */
.accordion-item.active .line-v {
  transform: rotate(180deg);
  opacity: 0;
}
.accordion-item.active .line-h {
  transform: rotate(180deg);
}

/* Collapsible Content Area */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-body {
  padding: 0 28px 24px 224px; /* Align text with title column */
  color: #3b4d68;
  font-size: 1.05rem;
  line-height: 1.6;
}
.firstAccBtn{
  border-top: 20px solid #e867a8;
  border-radius: 20px;
}
.agendaSpeaker{
  background: #fff;
  border-radius: 10px;
  margin-bottom: 20px;
}
.agendaSpeaker img{
  background: #65c6d3;
  border-radius: 10px;
}
.agendaSpeaker h4{
  margin: 0;
  font-size: 16px;
  font-weight: normal;
}
.agendaLine{
  height: 1px;
  width: 100%;
  background-color: #cfcfcf;
  margin-bottom: 20px;
}
/* --- RESPONSIVE BREAKPOINTS --- */

@media (max-width: 868px) {
  .accordion-header {
    grid-template-columns: 1fr 32px;
    grid-template-areas:
      "time icon"
      "info icon";
    padding: 20px;
    gap: 10px;
  }

  .accordion-time {
    grid-area: time;
    font-size: 0.95rem;
  }

  .accordion-main-info {
    grid-area: info;
  }

  .accordion-icon {
    grid-area: icon;
    align-self: start;
    margin-top: 4px;
  }

  .accordion-heading {
    font-size: 1.15rem;
  }

  .accordion-speakers {
    font-size: 0.95rem;
  }

  .accordion-body {
    padding: 0 20px 20px 20px; /* Full width on smaller screens */
    font-size: 0.98rem;
  }
}
/*agenda css end*/
.w80{
  width: 80%;
  margin: auto;
  margin-bottom: 50px;
}
.spkDetails{
  padding: 80px 50px;
}
.spkInner{
  border-bottom: 1px solid #00123c;
  padding-bottom: 20px;
  margin-bottom:30px;
}
.spkInner a{
    color: #00123c;
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    position: relative;
    padding-left: 0;
    overflow: visible;
    margin: 0;
}
.spkImg{
  background: #66c6d3;
  border-radius: 30px;
  margin-bottom: 20px;
}
.spkImg img{
  border-radius: 30px;
}
.rightSpkBox{
  background: #f5f5fa;
  padding: 50px;
  border-radius: 30px;
}
.rightSpkBox h2{
  color: #00123c;
  font-size: 3rem;
  font-weight: normal;
  margin: 0;
}
.rightSpkBox h5{
  color: #00123c;
  font-size: 16px;
  font-weight: normal;
  line-height: 20px;
  margin: 5px 0 10px 0;
}
.rightSpkBox p{
  color: #47536e;
  font-size: 16px;
  font-weight: normal;
  line-height: 24px;
  margin: 10px 0 0px 0;
}





@media only screen and (max-width: 1920px) {
  .image-frame{
    height: 400px;
  }
}
@media only screen and (max-width: 1440px) {
  .image-frame{
    height: auto;
  }
}
@media only screen and (max-width: 1199px) {
  .speaker-image {
      height: 400px;
  }
  .speakers .speaker-wrapper{
    height: 550px;
  }
  .desktopMenu li a {
    padding: 7px 15px 7px 15px;
    font-size: 12px;
  }
  .desktopMenu .link {
    margin-left: 5px;;
  } 
}
@media only screen and (max-width: 992px) {

  .header{
    display: none;
  }
  .mobileHeader{
    display: block;
  }
  .caption {
    padding: 0 20px;
    position: static;
    top: 0%;
    width: 100%;
    overflow: hidden;
  }
  .caption h1 {
    text-transform: uppercase;
    font-size: MIN(15cqw, 250px);
    line-height: 100%;
  }
  .bannerSection{
    padding-top: 0;
  }
  .sliderBox{
    max-width: 90%;
    max-height: 300px;
    margin-top: 15px;
    margin-bottom: 0;
  }
  .bannerBtn {
    top: 0%;
    left: 8%;
    height: 50px;
    width: 50px;
  }
  .bannerBtnDown{
    rotate: 0deg;
  }
  .dateTime{
    position: static;
    padding: 20px;
  }
  .scrollSlider .carousel-item img{
    max-width: 90%;
    max-height: 300px;
    margin-top: 15px;
  }
  .scrollSlider .sliderBox{
    max-width: 90%;
    max-height: 250px;
    margin-top: 15px;
    border-radius: 1000px;
  }
  .scrollSlider .carousel-item img{
    border-radius: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
  }
  .speaker-image {
      height: auto;
  }
  .speaker-description{
    display: none;
  }
  .speakers .speaker-wrapper{
    height: auto;
  }
  .mosaic-grid{
    gap: 30px;
  }
  .text-column {
    width: 100%;
    padding: 0 10px;
  }
  .slide-title{
    line-height: 2.5rem;
  }
  .image-frame {
        height: 200px;
  }
  .w80{
    width: 100%;
    margin: auto;
  }
  .abtCaps{
    margin-bottom: 20px;
  }
  .session-card{
    height: 130px;
  }
}
@media only screen and (max-width: 767px) {
  
  .sliderBox{
    max-width: 90%;
    max-height: 150px;
    margin-top: 15px;
  }
  .scrollSlider .carousel-item img{
    max-width: 90%;
    max-height: 150px;
    margin-top: 15px;
  }
  .scrollSlider .sliderBox{
    max-width: 90%;
    max-height: 150px;
    margin-top: 15px;
    border-radius: 1000px;
  }
  .stacked-schedule-section{
    padding: 60px 10px 60px;
  }
  .quote-text{
    font-size: 20px;
    line-height: 28px;
  }
  .testimonial-card{
    height: 180px;
  }
  .control-btn{
    width: 40px;
    height: 40px;
  }
  .control-panel {
    position: absolute;
    top: 72%;
    transform: translateY(0%);
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 20;
    rotate: -90deg;
    right: 46%;
  }
   .aboutLogo {
      width: 300px;
  }
  .abtCaps h3 {
    font-size: 24px;
  }
  .session-card{
    height: auto;
  }
  .aboutIndeed{
    padding: 50px 20px;
  }

}
@media only screen and (max-width: 575px) {
  .speakers .speaker-wrapper{
    padding:0 30px;
  }
}









