:root {
  --bg: #040b2c;
  --card: #0b1a4a;
  --accent: #ff5a3d;
  --cta: #f7b731;
  --text: #ffffff;
}

* {
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  margin: 0;
  background: linear-gradient(#020824, #020824);
  color: var(--text);
}

section {
  padding: 60px 8%;
  text-align: center;
}

.hero h1 {
  font-size: 42px;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 30px;
    line-height: 1.25;
  }
}

.accent {
  color: var(--accent);
}

.pill {
  position: absolute;
  margin-top: 50px;                
  left: 50%;
  transform: translateX(-50%);
  background: #0e1e5c;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 18px;
  white-space: nowrap;
}
header + .hero .pill {
  display: none;
}

@media (max-width: 768px) {
  .pill {
    top: 18px;
    font-size: 13px;
    padding: 7px 16px;
  }
}


.subtext {
  max-width: 900px;
  margin: 20px auto;
  opacity: 0.9;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  margin-top: 40px;
}
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
}

@media (max-width: 768px) {
  .hero-grid {
     justify-content: center;
    align-content: center;
    gap: 24px;
  }
}


.video-box {
  width: 100%;
  max-width: 900px; 
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
}

.video-box iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.event-hero {
  max-width: 1200px;
  margin: auto;
}


.video-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.event-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 22px;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  background: linear-gradient(145deg, #0e1b3f, #0a1532);
  border-radius: 18px;
  color: white;
}

.info-card small {
  display: block;
  font-size: 13px;
  opacity: 0.75;
}

.info-card strong {
  font-size: 16px;
  font-weight: 600;
}


.info-card .icon {
  font-size: 22px;
}


@media (max-width: 768px) {
  .event-info {
    grid-template-columns: repeat(2, 1fr);
  }
}


.info-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.info-card {
  background: var(--card);
  padding: 20px;
  border-radius: 14px;
}

.cards, .video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.card {
  background: var(--card);
  padding: 30px;
  border-radius: 18px;
  text-align: left;
}

.tag {
  background: #f1c40f;
  color: #000;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 14px;
}

.cta {
  margin-top: 40px;
  padding: 18px 42px;
  font-size: 18px;
  border-radius: 12px;
  border: none;
  background: var(--cta);
  cursor: pointer;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}

.profile {
  height: 320px;
  border-radius: 24px;
  background: linear-gradient(135deg, purple, orange);
}

.video-card {
  background: #000;
  height: 200px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-item {
  background: var(--card);
  margin: 16px auto;
  max-width: 900px;
  border-radius: 14px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  padding: 20px;
  background: none;
  color: #fff;
  border: none;
  text-align: left;
  font-size: 18px;
  cursor: pointer;
}

.faq-a {
  padding: 0 20px 20px;
  display: none;
  opacity: 0.9;
}

.faq-item.active .faq-a {
  display: block;
}


.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); 
  gap: 16px;
  max-width: 900px;
  margin: 30px auto 0;
}

@media (max-width: 1024px) {
  .info-grid {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .info-grid {
    grid-template-columns: 1fr; 
  }
}


.info-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(145deg, #0e1b3f, #0a1532);
  border: 1px solid rgba(255,255,255,0.06);
  color: #fff;
}


.icon-badge {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top:15px;
}

.icon-badge svg {
  width: 22px;
  height: 22px;
}


.icon-badge.pink {
 background: linear-gradient(135deg, #ff5aa5, #a855f7);
}

.icon-badge.orange {
  background: linear-gradient(135deg, #ff9f43, #ff5e57);
}

.icon-badge.purple {
  background: linear-gradient(135deg, #7c7cff, #4fd1ff);
}

.icon-badge.yellow {
  background: linear-gradient(135deg, #ffc83d, #ff9f1a);
}


@media (max-width: 1024px) {
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


@media (max-width: 600px) {
  .info-grid {
    grid-template-columns: 1fr;
  }

  .info-card {
    padding: 14px;
  }

  .icon-badge {
    width: 40px;
    height: 40px;
  }

  .icon-badge svg {
    width: 20px;
    height: 20px;
  }
}


.hero {
  background: linear-gradient(#020824, #020824);
  min-height: 100vh;              
  display: flex;
  align-items: center;
  position: relative;
  padding-bottom: 120px;  
           
}
.hero-about {
 
  width: 100%;
  display: flex;                 
  justify-content: center;       
  align-items: center; 
 background: #020824;    
}

.hero-grid {
  width: 100%;
  display: flex;                 
  justify-content: center;       
  align-items: center; 
  background: #020824;  

}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #020824;  
  
}

.hero-image img {
  max-height: 420px;
  width: auto;
  display: block;
   background: linear-gradient(#020824, #020824);  
  border-bottom: 1px solid rgba(247, 183, 49, 0.25);
}
@media (max-width: 768px) {
  .hero-image img {
    max-height: 260px;
    margin: 0 auto;
    max-width: 200px;
    margin-top:-255px; 
  }
}
@media (max-width: 1024px) {
  .hero-image img {
    max-width: 90%;
    height: auto;
  }
}
@media (max-width: 768px) {
  .hero {
    margin-top: -20px !important;
    padding-top: 0 !important;
  }

  .hero img,
  .hero-image img {
    margin-top: 0 !important;
    display: block;
  }
}



.top-bar {
 background: #f7f8fb;
  border-bottom: 10px solid rgba(2, 8, 36, 0.08);
  padding: 20px 0 !important;
  margin: 0 !important;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}


.top-bar .header-flex {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  height: 56px !important;       
}


.top-bar .logo {
  display: flex;
  align-items: center;
  height: 100%;
}


.top-bar .logo img {
  height: 65px !important;      
  width: auto !important;
  max-height: 65px !important;
  display: block;
}
.top-bar .since img{
  height: 50px;
}


.top-bar .logo:last-child img {
  height: 50px !important;
}

@media (max-width: 1024px) {
  .top-bar .header-flex {
    height: 52px !important;
  }

  .top-bar .logo img {
    height: 60px !important;
  }
  .top-bar .since img{
  height: 46px;
  }
}

@media (max-width: 768px) {
  .header-flex {
    flex-direction: row;          
    align-items: center;
  }

  .top-bar .logo img {
    height: 28px;                
  }

  .top-bar .logo:last-child img {
    height: 24px;                 
  }
}
@media (max-width: 1024px) {
  .hero {
    overflow: hidden;
  }
}
@media (max-width: 1024px) {
  .hero h1 {
    word-break: break-word;
  }
}
@media (max-width: 768px) {
  .hero {
    align-items: flex-start;   
    padding-top: 40px;
    padding-bottom: 80px;
    min-height: auto;      
  }
}
@media (min-width: 1025px) {
  .hero h1,
  .hero p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}
.grab-seat-wrap {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.grab-seat {
  padding: 16px 42px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 14px;
  background: var(--cta);
  color: #000;
  border: none;
  cursor: pointer;
  max-width: 420px;
  width: 100%;
  margin-bottom: 60px; 
}

@media (min-width: 1025px) {
  .hero {
    min-height: auto;      
    padding-top: 80px;
    padding-bottom: 40px; 
  }
}
@media (min-width: 1025px) {
  section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (min-width: 1025px) {
  .pill {
    top: -12px;   
  }

  .hero h1 {
    margin-top: 20px;
  }
}

@media (min-width: 1025px) {
  .hero h1 {
    margin-bottom: 20px;
  }

  .info-grid {
    margin-top: 20px;
  }
}
.learn-advanced {
  background: radial-gradient(circle at top, #0b1640, #050a24);
  padding: 90px 8%;
  text-align: center;
}

.learn-advanced h2 {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}

.learn-advanced h2 span {
  color: #ff5a3d;
}

.learn-subtext {
  max-width: 1100px;
  margin: 0 auto 50px;
  font-size: 18px;
  line-height: 1.6;
  color: #d6d9ff;
}

.learn-cards-advanced {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto 50px;
}

.learn-card-advanced {
  background: linear-gradient(145deg, #16255f, #0f1b47);
  border-radius: 18px;
  padding: 32px;
  text-align: left;
}

.secret-tag {
  display: inline-block;
  background: #ffd33d;
  color: #000;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 18px;
}

.learn-card-advanced h3 {
  color: #ff5a3d;
  font-size: 22px;
  margin-bottom: 12px;
}

.learn-card-advanced p {
  color: #e6e8ff;
  font-size: 16px;
  line-height: 1.55;
}

.learn-cta {
  width: 50%;
  max-width: 1100px;
  padding: 20px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 14px;
  border: none;
  background: linear-gradient(90deg, #ffd45c, #f5a300);
  color: #1a1a1a;
  cursor: pointer;
}


@media (max-width: 1024px) {
  .learn-cards-advanced {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .learn-cta {
    width: 100%;
    max-width: none;        
    padding: 16px 18px;     
    font-size: 16px;     
    line-height: 1.3;
    border-radius: 10px;    
    white-space: normal;   
  }
}

.speaker-section {
  background: radial-gradient(circle at top, #0b1640, #050a24);
  padding: 80px 8%;
  text-align: center;
}

.speaker-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
}

.speaker-card img {
  width: 100%;
  max-width: 260px;
  height: auto;
  border-radius: 4px;
  margin-bottom: 18px;
}

.speaker-card h3 {
  color: #ff5a3d;
  font-size: 18px;
  margin-bottom: 6px;
}

.speaker-card p {
  color: #ffffff;
  font-size: 14px;
  opacity: 0.9;
}


@media (max-width: 1024px) {
  .speaker-grid {
    gap: 50px;
  }
}


@media (max-width: 768px) {
  .speaker-section {
    padding: 60px 6%;
  }

  .speaker-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .speaker-card img {
    max-width: 220px;
  }
}
.media-coverage {
  padding: 50px 0 40px;
  background: #fff;
  text-align: center;
}

.media-title {
  color: #ff5a3d;
  font-size: 26px;
  margin-bottom: 26px;
  font-weight: 600;
}

.media-slider .media-item {
  padding: 10px 20px;
}

.media-slider img {
  max-height: 60px;
  width: auto;
  margin: 0 auto;
  transition: all 0.3s ease;
}


.media-slider,
.media-slider .slick-track,
.media-slider .slick-slide {
  display: block !important;
}

.media-slider .slick-slide {
  text-align: center;
}

.media-slider .slick-slide img {
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
.media-slider .slick-slide {
  height: auto !important;
}

.media-slider img {
  max-height: 70px;
  width: auto;
}
.media-container {
  max-width: 1200px;   
  margin: 0 auto;     
  padding: 0 20px;     
}


.stats-section {
  background: radial-gradient(circle at top, #0b1640, #050a24);
  padding: 70px 0;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
  color: #fff;
}

.stat-box h2 {
  font-size: 56px;
  
  margin-bottom: 6px;
}

.stat-box h4 {
 margin-bottom: 8px;
}

.stat-box p {
   margin: 0 auto;
  max-width: 280px;
  font-size: 14px;
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .stats-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

.partners-section {
  background: #ffffff;
  padding: 50px 0 40px;
  text-align: center;
}

.partners-title {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 26px;
  color: #1b2454;
}

.partners-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.partners-slider .partner-item {
  padding: 10px 20px;
  text-align: center;
}

.partners-slider img {
  max-height: 60px;
  width: auto;
  margin: 0 auto;
  display: block;
}

.partners-slider {
  width: 100%;
  overflow: hidden;
}

.partners-slider .slick-list {
  overflow: hidden;
}

.partners-slider .slick-track {
  display: flex !important;
  align-items: center;
}

.partners-slider .slick-slide {
  display: flex !important;
  justify-content: center;
  align-items: center;
  height: auto !important;
}

.partners-slider .partner-item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.partners-slider img {
  max-height: 60px;
  width: auto;
  display: block;
}

.success-grid {
  max-width: 1100px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr); 
  gap: 40px;
}

.success-card {
   background: radial-gradient(circle at top, #0b1640, #050a24);
  border-radius: 20px;
  padding: 24px 18px 20px;
  text-align: center;
}

.success-card img {
  width: 360px;            
  height: 360px;
  object-fit: cover;
  border-radius: 50%;
  border: 8px solid #ffffff;
  display: block;
  margin: 0 auto 18px;
  width: 300px;
  height: 300px;
}

.success-card p {
   font-size: 14px;
  color: #ffffff;
  line-height: 1.4;
  max-width: 320px;
  margin: 0 auto;
}


@media (max-width: 768px) {
  .success-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1024px) {
  .success-card img {
    width: 220px;
    height: 220px;
  }
}


.success-name {
  margin-bottom: 4px;
  color: var(--accent);      
}

.success-role {
  display: block;           
  margin-bottom: 12px;     
  font-size: 14px;
  font-weight: 600;
  color: #9fb0ff;           
}


.success-text {
  margin-top: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #ffffff;
}

.success-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.success-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

.success-card img {
  transition: transform 0.35s ease;
}

.success-card:hover img {
  transform: scale(1.04);
}
.success-name {
  color: var(--accent);
  letter-spacing: 0.3px;
}

.join-section {
  background: radial-gradient(circle at top, #0b1640, #050a24);
  padding: 70px 0 60px;
}

.join-container {
  max-width: 1100px;          
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.join-image img {
  width: 100%;
  max-width: 720px;           
  height: auto;
  border-radius: 14px;
  display: block;
  margin: 0 auto 30px;
}

.join-text h2 {
  font-size: 36px;
  line-height: 1.3;
  font-weight: 600;
  color: #ffffff;
}

.join-text h2 span {
  color: var(--accent);        
}


@media (max-width: 1024px) {
  .join-text h2 {
    font-size: 30px;
  }
}


@media (max-width: 768px) {
  .join-section {
    padding: 50px 0;
  }

  .join-text h2 {
    font-size: 24px;
  }

  .join-image img {
    margin-bottom: 22px;
  }
}
.start-earning {
  background: linear-gradient(rgba(12, 25, 70, 0.9), rgba(12, 25, 70, 0.9)),
              url("images/earning-bg.jpg") center/cover no-repeat;
  padding: 80px 20px;
  color: #fff;
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
}

.earning-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.earning-steps {
  flex: 1;
}

.earning-steps h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.step {
  display: flex;
  align-items: center;
  gap: 14px;
}
.step-box {
  width: 40px;
  height: 40px;
  border: 2px solid #ffffff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
}

.step span {
  font-size: 18px;
  font-weight: 500;
}

.step-arrow {
  margin: 12px 0 12px 18px;
  font-size: 26px;
  line-height: 1;
}

.step-icon {
  width: 40px;
  height: 40px;
  border: 2px solid #fff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.arrow {
  font-size: 26px;
  margin: 10px 0 10px 20px;
  opacity: 0.8;
}

.playstore-btn img {
  width: 170px;
  margin-top: 30px;
}

.earning-image {
  flex: 1;
  text-align: center;
}

.earning-image img {
  max-width: 280px;
  width: 100%;
}

@media (max-width: 992px) {
  .earning-container {
    flex-direction: column;
    text-align: center;
  }

  .arrow {
    margin-left: 0;
  }
}


@media (max-width: 576px) {
  .start-earning {
    padding: 60px 15px;
  }

  .earning-steps h2 {
    font-size: 26px;
  }

  .step {
    justify-content: center;
  }

  .earning-image img {
    max-width: 220px;
  }
}

.start-earning {
  background: linear-gradient(rgba(12, 25, 70, 0.9), rgba(12, 25, 70, 0.9));
  padding: 80px 20px;
  color: #fff;
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
}


.start-earning .earning-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}


.start-earning .earning-steps {
    display: flex;
  flex-direction: column;
  align-items: center;
}

.start-earning h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 40px;
}


.start-earning .step {
  display: flex;
  align-items: center;
  gap: 14px;
}

.start-earning .step-box {
  width: 40px;
  height: 40px;
  border: 2px solid #ffffff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  transition: box-shadow 0.3s ease;
}

.start-earning .step span {
  font-size: 18px;
  font-weight: 500;
}

.start-earning .step-arrow {
  margin: 12px 0 12px 18px;
  font-size: 26px;
  line-height: 1;
}

.start-earning .playstore-btn img {
  width: 170px;
  margin-top: 30px;
}

.start-earning .earning-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.start-earning .earning-image img {
  width: 280px;
  max-width: 100%;
}

@media (max-width: 768px) {
  .start-earning .earning-container {
    flex-direction: column !important;
    text-align: center;
  }

  .start-earning .step {
    justify-content: center;
  }

  .start-earning .step-arrow {
    margin-left: 0;
  }
}
.start-earning .step {
  width: 360px;           
  display: flex;
  align-items: center;
  gap: 16px;
  padding-left: 70px;
  animation: stepBlink 3.6s ease-in-out infinite;
   box-shadow: none;
}
.start-earning .step-arrow {
  font-size: 26px;
  margin: 16px 0;
  text-align: center;
  width: 360px;
}

@keyframes softBlink {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.75;
    transform: scale(1.03);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.start-earning .playstore-btn img {
  animation: softBlink 1.4s ease-in-out infinite;
}

.start-earning .earning-image img {
  animation: softBlink 2.2s ease-in-out infinite;
}


.start-earning .earning-image {
  position: relative;
}

.start-earning .earning-image::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.25),
    rgba(255, 255, 255, 0.05),
    transparent 70%
  );
  filter: blur(8px);
  z-index: 0;
}


.start-earning .earning-image img {
  position: relative;
  z-index: 1;
  width: 280px;
  max-width: 100%;
  border-radius: 28px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.45),
    0 0 25px rgba(255, 255, 255, 0.15);
}
@keyframes floatPhone {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

.start-earning .earning-image img {
  animation: softBlink 2.2s ease-in-out infinite,
             floatPhone 4.5s ease-in-out infinite;
}

@media (max-width: 992px) {

 
  .start-earning .step {
    padding-left: 0 !important;
    justify-content: center;
  }

 
  .start-earning .step-arrow {
    width: 100%;
    text-align: center;
  }


  .start-earning .earning-steps {
    align-items: center;
  }

}

@keyframes stepBlink {
  0% {
    opacity: 0.5;
    transform: scale(0.98);
  }
  20% {
    opacity: 1;
    transform: scale(1.03);
  }
  40% {
    opacity: 0.6;
    transform: scale(1);
  }
  100% {
    opacity: 0.6;
    transform: scale(1);
  }
}

.start-earning .step:nth-of-type(1) {
  animation-delay: 0s;
}


.start-earning .step:nth-of-type(3) {
  animation-delay: 1.2s;
}

.start-earning .step:nth-of-type(5) {
  animation-delay: 2.4s;
}
.start-earning .highlight {
  color: #ff5a3d; 
}

.founder-section {
  background: linear-gradient(#020824, #020824);
  padding: 80px 20px;
}

.founder-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
}

.founder-name {
  font-size: 32px;
  font-weight: 600;
  color: #ff5a3d; 
  text-align: center;
  margin-bottom: 10px;
  margin-top: 10px;
}

.founder-name .line {
 display: block;
  width: 70px;
  height: 2px;
  background: #ff5a3d;
  margin: 0 auto 18px auto; 
}

.founder-role {
 color: #9fb0ff;
  font-weight: 500;
  margin-bottom: 30px;
}

.founder-content {
  text-align: left;
  color: #ffffff;
  font-size: 15.5px;
  line-height: 1.75;
}

.founder-content p {
  margin-bottom: 18px;
}

.founder-cta {
  display: inline-block;
  margin-top: 40px;
  padding: 14px 36px;
  background: #ff8c1a;
  color: radial-gradient(circle at top, #0b1640, #050a24);
  border-radius: 30px;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.founder-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 140, 26, 0.35);
}


@media (max-width: 768px) {
  .founder-name {
    font-size: 26px;
    flex-direction: column;
  }

  .founder-name .line {
    width: 40px;
  }

  .founder-content {
    text-align: center;
  }
}


.founder-section.concise {
  padding: 70px 20px;
}

.founder-section.concise .founder-container {
  max-width: 820px;  
}

.founder-section.concise .founder-content {
  font-size: 16px;
  line-height: 1.7;
}

.founder-section.concise .founder-content p {
  margin-bottom: 18px;
}

.founder-section.concise .highlight-quote {
  font-style: italic;
  font-weight: 500;
  margin-top: 10px;
}

.founder-section.concise .founder-cta {
  margin-top: 30px;
}


.grab-seat-btn {
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.grab-seat-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.35),
    transparent
  );
  transition: left 0.6s ease;
}

.grab-seat-btn:hover::before {
  left: 100%;
}

.grab-seat-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(255, 140, 26, 0.45);
}
.countdown-wrapper {
  margin-bottom: 14px;
  text-align: center;
  color: #fff;
  font-size: 14px;
}

#countdown {
  font-size: 30px;
  font-weight: 700;
  color: #ff9f1c;
  letter-spacing: 1px;
}


#sticky-timer {
  position: fixed;
  bottom: -120px; 
  left: 0;
  width: 100%;
  background: linear-gradient(90deg, #0b1538, #08102b);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.4);
  transition: bottom 0.4s ease;
  z-index: 9999;
}

#sticky-timer.show {
  bottom: 0;
}

.sticky-timer-inner {
  max-width: 1200px;
  margin: auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.timer-text {
  color: #fff;
  font-size: 16px;
}

#countdown {
  font-size: 22px;
  font-weight: 700;
  color: #ff9f1c;
  margin-left: 8px;
}


@media (max-width: 768px) {
  .sticky-timer-inner {
    flex-direction: column;
    text-align: center;
  }

  .timer-text {
    margin-bottom: 6px;
  }
}

@keyframes alertShake {
  0%   { transform: translateX(0); }
  5%   { transform: translateX(-4px); }
  10%  { transform: translateX(4px); }
  15%  { transform: translateX(-3px); }
  20%  { transform: translateX(3px); }
  25%  { transform: translateX(0); }
  100% { transform: translateX(0); }
}



.grab-seat-btn {
  animation: alertShake 2s ease-in-out infinite;
}

#sticky-timer {
  position: fixed;
  bottom: -120px; 
  left: 0;
  width: 100%;
  background: linear-gradient(90deg, #0b1538, #08102b);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.4);
  transition: bottom 0.4s ease;
  z-index: 9999;
}

#sticky-timer.show {
  bottom: 0;
}

.sticky-timer-inner {
  max-width: 1200px;
  margin: auto;
  padding: 14px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.timer-text {
  color: #fff;
  font-size: 16px;
}

#countdown {
  font-size: 22px;
  font-weight: 700;
  color: #ff9f1c;
  margin-left: 8px;
}

#offer-bar {
  position: fixed;
  bottom: -140px; 
  left: 0;
  width: 100%;
  background: #ffffff;
  border-top: 3px solid #ffc94d;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.25);
  transition: bottom 0.4s ease;
  z-index: 99999;
}

#offer-bar.show {
  bottom: 0;
}

.offer-inner {
  max-width: 1200px;
  margin: auto;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


body.footer-active {
  padding-bottom: 130px;
}

.offer-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.offer-price {
  display: flex;
  align-items: center;
  gap: 14px;
}

.offer-price .free {
  font-size: 36px;
  font-weight: 800;
  color: #000;
}

.offer-price .cut {
  font-size: 28px;
  color: #e60000;
  font-weight: 700;
  text-decoration: line-through;
}

.offer-timer {
  font-size: 15px;
  color: #000;
}

#offer-countdown {
  font-weight: 700;
}


.offer-btn {
  min-width: 260px;
  background: linear-gradient(90deg, #ffcc4d, #f5a700);
  color: #000;
  font-size: 20px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(245,167,0,0.45);
}


@media (max-width: 768px) {
  #offer-bar.show {
    bottom: 10px;
  }

  .offer-inner {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }

  .offer-btn {
    width: 100%;
  }
}

body {
  padding-bottom: 130px;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100000;
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  background: #fff;
  width: 90%;
  max-width: 620px;
  border-radius: 18px;
  padding: 28px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  overflow: visible;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
}

.modal-box h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #0b1b3f;
}

.modal-box h2 span {
  color: #ff4d3d;
}


.register-form input {
  width: 100%;
  padding: 16px;
  margin-bottom: 14px;
  border-radius: 10px;
  border: 1.5px solid #1e3a8a;
  font-size: 16px;
}


.phone-field {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.isd-btn {
  min-width: 90px;
  padding: 14px 10px;
  border-radius: 10px;
  border: 1.5px solid #1e3a8a;
  background: #f5f7ff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}


.isd-btn span {
  color: #000;
  font-weight: 600;
}

.phone-field input {
  flex: 1;
  padding: 16px;
  border-radius: 10px;
  border: 1.5px solid #1e3a8a;
  font-size: 16px;
}


.isd-dropdown {
  position: absolute;
  top: 58px;
  left: 0;
  width: 220px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  display: none;
  z-index: 100001; 
  overflow: hidden;
}

.isd-dropdown div {
  padding: 12px 16px;
  cursor: pointer;
  font-size: 15px;
  color: #000000; 
  background: #ffffff;
}

.isd-dropdown div:hover {
  background: #f1f5ff;
}
.phone-field {
  position: relative;
  overflow: visible;
}


.country-code {
  padding: 14px 12px;
  border-radius: 10px;
  border: 1.5px solid #1e3a8a;
  font-size: 16px;
  background: #f5f7ff;
}


.form-submit {
  width: 100%;
  margin-top: 10px;
  background: #42c55c;
  color: #fff;
  padding: 18px;
  border-radius: 12px;
  border: none;
  font-size: 20px;
  font-weight: 800;
  cursor: pointer;
}

.form-submit small {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-top: 4px;
}
@media (max-width: 768px) {

  .hero h1 {
    margin-top: 116px; 
     font-size: 56px;   /* increase size */
  line-height: 1.25;
  font-weight: 700; 
  }

  .hero .subtext {
    margin-bottom: 12px;
  }

  .event-hero {
    padding-top: 10px;
  }

  .info-grid {
    margin-top: 8px;
  }

}

.founder-photo {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}

.founder-photo img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #ff5a3d; 
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}


@media (max-width: 768px) {
  .founder-photo img {
    width: 106px;
    height: 106px;
  }
}

.partners-slider {
  display: flex;
  align-items: center;
}

.partner-item {
  display: flex !important;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Prevent logo overflow */
.partner-item img {
  max-width: 160px;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
}
/* MOBILE TIMER FIX */
@media (max-width: 768px) {

  #sticky-timer {
    height: auto;
    padding: 8px 12px;
  }

  #sticky-timer .timer-wrapper,
  #sticky-timer .timer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  #sticky-timer .timer-text {
    font-size: 14px;
    line-height: 1.2;
    font-weight: 600;
  }

  #sticky-timer .timer-text span {
    font-size: 14px;
  }

  #sticky-timer .cta-btn,
  #sticky-timer .register-btn,
  #sticky-timer button {
    padding: 10px 16px;
    font-size: 14px;
    border-radius: 8px;
    min-width: auto;
  }

  #sticky-timer .price {
    font-size: 18px;
    font-weight: 700;
  }

  #sticky-timer .strike {
    font-size: 14px;
  }
}
/* ===== FIXED BOTTOM TIMER BAR ===== */
#offer-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 -6px 20px rgba(0,0,0,0.15);
  padding: 10px 14px;
  z-index: 9999;
  display: none; /* initially hidden */
}

.offer-inner {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.offer-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.offer-price {
  font-size: 20px;
  font-weight: 700;
  color: #000;
}

.offer-price .cut {
  color: red;
  text-decoration: line-through;
  margin-left: 6px;
}

.offer-timer {
  font-size: 14px;
  color: #444;
}

.offer-btn {
  background: linear-gradient(135deg, #ffb300, #ff9800);
  border: none;
  color: #000;
  padding: 12px 22px;
  font-weight: 700;
  font-size: 15px;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.offer-btn:hover {
  transform: scale(1.05);
}

/* Mobile Fix */
@media (max-width: 600px) {
  .offer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .offer-btn {
    width: 100%;
  }
}
/* ==== STICKY OFFER BAR ==== */
#offer-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  padding: 12px 15px;
  box-shadow: 0 -5px 20px rgba(0,0,0,0.15);
  z-index: 9999;
  display: none;
}

.offer-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.offer-price {
  font-size: 18px;
  font-weight: 700;
}

.offer-price .cut {
  color: #ff3b3b;
  margin-left: 6px;
  text-decoration: line-through;
}

.offer-timer {
  font-size: 14px;
  color: #333;
}

.offer-btn {
  background: #ffb000;
  border: none;
  padding: 10px 18px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
}

/* Mobile */
@media (max-width: 600px) {
  .offer-inner {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
}
/* ===== FIX MOBILE FOOTER HEIGHT ISSUE ===== */
@media (max-width: 768px) {

  #offer-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto !important;
    padding: 8px 12px !important;
    box-sizing: border-box;
    z-index: 9999;
  }

  .offer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: unset !important;
  }

  .offer-price {
    font-size: 16px !important;
    line-height: 1.2;
  }

  .offer-price .cut {
    font-size: 14px !important;
  }

  .offer-timer {
    font-size: 13px !important;
    margin-top: 2px;
  }

  .offer-btn {
    padding: 8px 14px !important;
    font-size: 14px !important;
    height: auto !important;
    white-space: nowrap;
  }
}
/* ===== MOBILE FIX FOR BOTTOM TIMER ===== */
@media (max-width: 768px) {

  #offer-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 8px 10px;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.15);
    z-index: 9999;
  }

  .offer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 0;
    margin: 0;
    height: auto;
  }

  .offer-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
    line-height: 1.2;
  }

  .offer-price {
    font-size: 18px;
    font-weight: 700;
  }

  .offer-price .cut {
    font-size: 14px;
    margin-left: 6px;
  }

  .offer-timer {
    font-size: 13px;
    opacity: 0.9;
  }

  .offer-btn {
    padding: 10px 16px;
    font-size: 14px;
    border-radius: 8px;
    white-space: nowrap;
    height: auto;
  }

  /* REMOVE EXTRA HEIGHT */
  .offer-inner *,
  .offer-inner *::before,
  .offer-inner *::after {
    max-height: none !important;
  }
}
.pill {
  margin-top: 150px;
}

@media (max-width: 768px) {
  .pill {
    margin-top: 120px;
  }
}
.pill {
  background: linear-gradient(135deg, #0b1f4b);
  color: #ffffff;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  display: inline-block;
  transition: all 0.35s ease;
  cursor: pointer;
}

/* Highlight FREE */
.pill .highlight {
  color: #ff5a3d; /* your brand orange */
  font-weight: 700;
}

/* Hover effect */
.pill:hover {
  background: linear-gradient(135deg, #0f2a68, #0b1f4b);
  
  box-shadow: 0 8px 25px rgba(255, 122, 0, 0.35);
}

/* Optional glow on hover 
.pill:hover .highlight {
  text-shadow: 0 0 8px rgba(255, 122, 0, 0.8);
} */

@media (max-width: 768px) {

  .hero h1 {
    margin-top: 116px; 
     font-size: 56px;   /* increase size */
  line-height: 1.25;
  font-weight: 700; 
  }
}
@media (max-width: 768px) {
  .pill {
    left: 50%;
    transform: translateX(-50%);
    margin-top: 350px;
  }
}
@media (max-width: 768px) {
  .hero {
    overflow: hidden;
    position: relative;
  }

  .hero img {
    width: 100vw;
    max-width: 100vw;
    height: auto;
    display: block;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .hero .container {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 768px) {
  .hero {
    overflow: hidden;
    position: relative;
  }

  .hero img {
    width: 100vw;
    max-width: 100vw;
    height: auto;
    display: block;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .hero .container {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
/* Force header to go full width on mobile */
@media (max-width: 768px) {
  .top-bar {
    width: 100vw !important;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    overflow: visible !important;
  }
}
@media (max-width: 768px) {
  .top-bar img {
    max-width: 100%;
    height: auto;
    display: block;
  }
}
/* MOBILE FIX – 2x2 GRID FOR INFO BOXES */
/* MOBILE ONLY – make info cards rectangular */
@media (max-width: 768px) {
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .info-card {
    min-height: 120px;      /* makes it rectangular */
    padding: 18px 14px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .info-card .icon-badge {
    margin-bottom: 10px;
  }
}


  .info-card strong {
    font-size: 15px;
  }

  .info-card small {
    font-size: 13px;
  }

.info-card {
  box-shadow: 0 8px 18px rgba(0,0,0,0.25);
}
/* MOBILE – horizontal info cards */
@media (max-width: 768px) {

  .info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .info-card {
    display: flex;
    flex-direction: row;          /* icon left, text right */
    align-items: center;
    padding: 16px 14px;
    gap: 14px;
    border-radius: 16px;
  }

  .info-card .icon-badge {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .info-card small {
    font-size: 13px;
    opacity: 0.85;
  }

  .info-card strong {
    font-size: 15px;
    display: block;
    margin-top: 2px;
  }
}
.info-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
/* ===== MOBILE CARD LAYOUT (EXACT MATCH) ===== */
@media (max-width: 768px) {

  .info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 0 16px;
  }

  .info-card {
    display: flex;
    align-items: center;
    gap: 14px;

    padding: 18px 16px;
    min-height: 92px;

    border-radius: 18px;
    background: linear-gradient(145deg, #0c1b3f, #091533);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
  }

  .info-card .icon-badge {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .info-card .icon-badge svg {
    width: 22px;
    height: 22px;
  }

  .info-card small {
    font-size: 13px;
    color: #cbd5ff;
    margin-bottom: 2px;
    display: block;
  }

  .info-card strong {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
  }
}
/* FIX alignment inside info cards (mobile) */
@media (max-width: 768px) {

  .info-card {
    display: flex;
    align-items: center;          /* vertically centers icon & text */
    gap: 14px;
    padding: 18px 16px;
  }

  .info-card .icon-badge {
    width: 46px;
    height: 46px;
    min-width: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }

  .info-card > div:not(.icon-badge) {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.2;
  }

  .info-card small {
    font-size: 13px;
    color: #cbd5ff;
    margin-bottom: 2px;
  }

  .info-card strong {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
  }
}
/* FORCE horizontal layout for mobile info cards */
@media (max-width: 768px) {

  .info-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }

  .info-card {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;

    padding: 16px 14px !important;
    border-radius: 18px !important;
  }

  .info-card .icon-badge {
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-right: 12px !important;
  }

  .info-card > div:last-child {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    text-align: left !important;
  }

  .info-card small {
    font-size: 13px !important;
    line-height: 1.2 !important;
    margin-bottom: 2px !important;
  }

  .info-card strong {
    font-size: 15px !important;
    font-weight: 600 !important;
  }
}
/* MOBILE – CENTER EVERYTHING INSIDE CARD */
@media (max-width: 768px) {

  .info-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }

  .info-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;

    padding: 18px 12px !important;
    border-radius: 18px !important;
  }

  .info-card .icon-badge {
    width: 46px !important;
    height: 46px !important;
    margin-bottom: 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .info-card small {
    font-size: 13px !important;
    margin-bottom: 4px !important;
  }

  .info-card strong {
    font-size: 15px !important;
    font-weight: 600 !important;
  }
}
/* MOBILE & TABLET: Show speakers side-by-side */
@media (max-width: 1024px) {

  .speaker-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
    align-items: stretch;
  }

  .speaker-card {
    width: 100%;
    text-align: center;
  }

  .speaker-card img {
    width: 100%;
    max-width: 180px;
    margin: 0 auto 10px;
    display: block;
  }
}
@media (max-width: 768px) {
  .hero {
    min-height: auto !important;
    padding-bottom: 0 !important;
    background: none !important;
  }

  .hero::after,
  .hero::before {
    display: none !important;
  }
}
.hero-content {
  background: linear-gradient(#040b2c, #040b2c);
  padding-bottom: 40px;
}










html, body {
  overflow-x: hidden;
  
}
.top-bar {
  overflow: visible !important;
}



























































