/*
:root {
    --lighterblue: #6EBFEB;
    --lightblue: #2EA3DE;
    --blue: #176BB5;
    --darkblue: #1C4596;
    --niceblue: #383acc;
}
*/

:root {
    --darkblue: #07314A;
    --lightblue: #9574AE;
    --niceblue: #9574AE;
    --green: #9574AE;
    --bage: #E6E9AF;
    --light: #F5F6F7;
    --othergreen: #1EB1C2;
    
}

.bg-darkblue{ background: var(--darkblue);}
.bg-lightblue{ background: var(--lightblue);}
.bg-niceblue{ background: var(--niceblue);}
.bg-green{ background: var(--green);}
.bg-bage{ background: var(--bage);}

body {
      font-family: 'Sora', sans-serif;
      scroll-behavior: smooth; font-style: normal; background: #FFF;
    }


/* TEXT AND IMAGE EFFECTS*/

.glow {
      filter: drop-shadow(0 0 10px #0ff) drop-shadow(0 0 20px #00f);
      animation: pulseGlow 3s infinite alternate;
    }
    @keyframes pulseGlow {
      0% { filter: drop-shadow(0 0 5px #0ff) drop-shadow(0 0 10px #0ff); }
      100% { filter: drop-shadow(0 0 25px #00f) drop-shadow(0 0 40px #0ff); }
    }

    /* === Effect 2: Energy Waves === */
    

    /* === Effect 3: Shiny Light Sweep === */
 .shiny {
      position: relative;
      overflow: hidden;
    }
.shiny::after {
      content: "";
      position: absolute;
      top: 0; left: -100%;
      width: 100%; height: 100%;
      background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.6) 50%, transparent 100%);
      animation: shine 3s infinite;
    }
@keyframes shine {
  0% { left: -100%; }
  100% { left: 100%; }
}
      
      
.robot.float {
  animation: floaty 4s ease-in-out infinite;
}
@keyframes floaty {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-20px); }
  100% { transform: translateY(0); }
}
      
.robot.breath {
  animation: breath 3s ease-in-out infinite;
}
@keyframes breath {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.05); }
}    
      
.robot.rotate {
  animation: rotatey 5s ease-in-out infinite;
}
@keyframes rotatey {
  0%   { transform: rotate(0deg); }
  50%  { transform: rotate(5deg); }
  100% { transform: rotate(0deg); }
}  
      
.robot.wobble {
  animation: wobble 6s ease-in-out infinite;
}
@keyframes wobble {
  0%, 100% { transform: rotate(0deg) scale(1); }
  25%      { transform: rotate(-3deg) scale(1.02); }
  50%      { transform: rotate(3deg) scale(0.98); }
  75%      { transform: rotate(-2deg) scale(1.01); }
}  
      
.robot.shake {
  animation: shake 0.8s infinite;
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
} 
      
.robot.bounce {
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-30px); }
} 
.flip {
  animation: flip 4s linear infinite;
}
@keyframes flip {
  0% { transform: rotateY(0deg); }
  100% { transform: rotateY(360deg); }
}  
@keyframes pulseBorder {
  0%   { transform: scale(0.8); opacity: 0.7; }
  100% { transform: scale(1.5); opacity: 0; }
}      
.swing {
  transform-origin: top center;
  animation: swing 3s ease-in-out infinite;
}
@keyframes swing {
  0%   { transform: rotate(0deg); }
  25%  { transform: rotate(10deg); }
  50%  { transform: rotate(0deg); }
  75%  { transform: rotate(-10deg); }
  100% { transform: rotate(0deg); }
}  
.spin {
  animation: spin 25s linear infinite;
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}  
      
.typing {
  overflow: hidden;
  white-space: nowrap;
  border-right: 3px solid #0ff;
  font-family: monospace;
  display: inline-block;

  animation: typing .5s steps(18, end), blink 0.7s step-end infinite; /* 18 = # of chars */
}

@keyframes typing {
  from { width: 0ch; }
  to   { width: 18ch; } /* match number of characters */
}

@keyframes blink {
  50% { border-color: transparent; }
}
.fade-in span {
  opacity: 0;
  display: inline-block;
  animation: fadeWord 1s forwards;
}
.fade-in span:nth-child(1) { animation-delay: 0s; }
.fade-in span:nth-child(2) { animation-delay: 0.5s; }
.fade-in span:nth-child(3) { animation-delay: 1s; }

@keyframes fadeWord {
  to { opacity: 1; transform: translateY(0); }
  from { opacity: 0; transform: translateY(20px); }
}   

     
      
.shiny {
  background: linear-gradient(90deg, #fff, #00f, #fff);
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: shine 3s linear infinite;
}

@keyframes shine {
  to { background-position: 200% center; }
}

.falling {
  display: inline-block;
  transform: translateY(-50px);
  opacity: 0;
  animation: dropText 1s ease forwards;
}

@keyframes dropText {
  0%   { transform: translateY(-50px); opacity: 0; }
  50%  { transform: translateY(10px); opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}
.fade {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
  to { opacity: 1; transform: translateY(0); }
} 
      
.word {
  display: inline-block;
  opacity: 0;
  transform: translateY(-50px);
  animation: drop 1s ease forwards;
}

@keyframes drop {
  0%   { transform: translateY(-50px); opacity: 0; }
  80%  { transform: translateY(10px); opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}

/*END EFFECTS*/


.resp{ width: 100%;}
h1, h2, h4, h5, h6, h7{ color: var(--green); font-weight: 300 !important; letter-spacing: -1px;}

h1 {
  font-size: 5vw; /* 5% of the viewport width */
}
h2 {
  font-size: 4.5vw; /* 5% of the viewport width */
}
h4 {
  font-size: 3.5vw; /* 5% of the viewport width */
}
h5 {
  font-size: 3vw; /* 5% of the viewport width */
}
h6 {
  font-size: 2.5vw; /* 5% of the viewport width */
}
h7 {
  font-size: 2vw; /* 5% of the viewport width */
}
h8 {
  font-size: 1.2vw; font-weight: 500; color: var(--darkblue);
}

h1 span, h2 span, h4 span, h5 span, h6 span, h7 span{ font-weight: 600 !important; color: var(--darkblue);}


.glass {
  background: rgba(255, 255, 255, 0.15); /* transparent white */
  border-radius: 20px;
  padding: 20px;
  backdrop-filter: blur(10px);   /* the blur magic ✨ */
  -webkit-backdrop-filter: blur(10px); /* Safari support */
  border: 1px solid rgba(255, 255, 255, 0.2); /* subtle border */
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); /* soft shadow */
  color: white;
}

.extra-space{ padding-top: 100px !important; padding-bottom: 100px !important;}    
nav.navbar {
      background: transparent;
      transition: background-color 0.4s ease, box-shadow 0.4s ease;
      backdrop-filter: blur(10px);
     -webkit-backdrop-filter: blur(10px);
      padding: 1rem 0;
      font-weight: 500;
      letter-spacing: 0.03em;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    /* Navbar solid background on scroll */
    nav.navbar.scrolled {
      background-color: var(--nicekblue);
      padding: 0.6rem 0;
    }
.scrolled .hamburger-btn span {
  display: block;
  height: 3px;
  background: var(--darkblue);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

    .navbar-brand {
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--lighterblue);
      letter-spacing: 0.05em;
      transition: color 0.3s ease;
    }
    .navbar-brand:hover {
      color: var(--lightblue);
      text-decoration: none;
    }

    .logo { width:100%; max-width:220px !important;
    }
    
.hero-section h1{ display:inline-block; padding:10px 16px; line-height:32px; background: var(--darkblue); font-size: 1.7rem; margin:0; color: #FFF; text-shadow: 0 0 3px #000; font-weight: 600 !important; text-transform: uppercase;}
.hero-section h1 sup{ color: #FFF; font-size: 12px;}

.hero-section h2{ display:inline-block;  color: #FFF; padding:8px 16px; line-height:22px; background: var(--blue); font-size: 1.4rem; font-weight: 500 !important; clear: both;}

.hero-section p{ display:inline-block; padding:6px 16px; line-height:22px; background: var(--lighterblue); font-size:1rem; font-weight: 500; color: var(--darkblue);}

.hero-section h6{ font-weight: 600; color: #333;}
.hero-section h4{ font-weight: 700;}

.note { font-size: 18px; line-height: 32px !important; font-weight: 600; letter-spacing: inherit;}
.note span{ font-size: 16px; font-weight: 500; display: block; color: #333; line-height: 16px;}

.countdown{
  display: flex; position: absolute; right: 22%; top: 78%;
  justify-content: center;
  gap: 4px; color: #FFF;
  font-size:12px; z-index: 9;
}

.countdown div {
  border: 2px solid #FFF;    
  padding:10px 10px; text-align: center;
  border-radius: 10px;
}

.countdown span {
  display: block;
  font-size:24px;
  margin-bottom: 0px;
  color: #FFF;
}

.swal2-icon {
  transform: scale(0.7) !important;
}

.table th { background-color: #00324d; color: #fff; }
.table td { vertical-align:middle;}
.table td:last-child { vertical-align: top;}
.table td { padding:15px 6px; font-size: 14px;}

.table tr.break td{ background: #00b4c5; color: #FFF; font-weight: 600;}
.table tr.session td{ background: #9b73b2; color: #FFF; font-weight: 600;}



/* Make table responsive */
.table {
  width: 100%;
  border-collapse: collapse;
}

/* Normal desktop view (unchanged) */
@media (min-width: 768px) {
  .table th, .table td {
    padding: 12px 16px;
    text-align: left;
  }
}
.list li{padding: 5px;}
/* Mobile optimization */
.pull-right{ float: right !important;}
p{ text-align: justify; font-size: 16px !important;}
@media (max-width: 900px) {
p{ text-align: justify; font-size: 12px !important;}    
    .list li{padding: 2px;}
  .table thead {
    display: none; /* Hide table headers */
  }

  .table tr {
    display: block;
    margin-bottom: .8rem;
    padding: 0px 0px;
  }

  .table td {
    display: flex;
    align-items: flex-start;
    padding: 3px 10px;
    border: none; font-size: 11px;
  }

  .table td::before {
    content: attr(data-label);
    flex-basis: 20%;
    text-align: left; padding: 0 6px; font-weight: 600;
  }

  .table td:last-child {
    border-bottom: none;
  }

  
}



@media (max-width:900px){
    h7{ font-size: 18px;}
    .countdown{
        display: flex; position: absolute; right: 2%; top:86%; font-size:9px; color: #FFF; 
    }
    .countdown div {
      border: 0;    
      padding:10px; text-align: center;
      border-radius: 10px; background:rgba(0, 0, 0, 0.4);
    }
        .countdown span {
      display: block;
      font-size:18px;
      margin-bottom: 0px;
      color: #FFF;
    }
    .xs{ font-size: 11px !important;}
    .title{ text-align: center;}
    .note{ font-size: 16px;}
    .note span{font-size: 12px;}
    .logo { width:100%; max-width: 100px !important; margin-left: 25px;
    }
    .hero-section{ padding:0 !important;}
    .hero-section h1{ font-size: 1.3rem; display: block; border-radius: 10px 10px 0 0;}
    .hero-section h2{ font-size: 1.3rem; display: block;  border-radius:0 0 10px 10px;}
    .hero-section p{ font-size: 1.1rem !important; background: transparent; color: #FFF;}
    .hero-section h4{ font-size: 18px;}
    .hero-section h6{ font-size: 12px;}
    .pull-right{ float: right !important;}
    #form1 span, #form2 span, #form3 span{ font-size: 10px !important; width: 100%; display: flex !important; border-radius:0 !important; padding: 0; !important; margin: 0; !important; line-height: 12px  !important;}
    
    
    .form-label, label{ font-size: 10px !important; width: 100%; display: flex !important; border-radius:12px 12px 0 0 !important; padding: 0; !important; margin: 0; !important; line-height: 12px  !important;}
    .custom-card-title{ font-size: 14px !important; padding: 0 15px !important;}
    
}
.nav-item .nav-link{
    text-align: center !important;
    justify-content: center !important;
    align-items: center !important;
    flex-direction: column; /* stack icon and text if needed */
  }

  .nav-item .nav-link img {
    display: block;
    margin: 0 auto 5px; /* center image */
  }
    /* Navbar links */
    .scrolled .navbar-nav .nav-link {
      color: #FFF;
      font-size: .8rem;
      font-weight: 500 !important;    
      margin: 0 0.0rem;
      border:0px solid var(--darkblue);    
      border-radius: 35px 0 35px 0;        
      position: relative;
      padding: 0.5rem 1rem;
      transition: color 0.3s ease;
          
    }
    /* Hover underline effect */
    .navbar-nav .nav-link::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      display: block;
      margin-top: 4px;
      right: 0;
      transition: width 0.3s ease;
      -webkit-transition: width 0.3s ease;
      left: 0;
      bottom: 0;
    }
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link:focus {
      color:#FFF;
      background: var(--lightblue);
      border:0px solid var(--lightblue);    
    }
    .navbar-nav .nav-link:hover::after,
    .navbar-nav .nav-link:focus::after {
      width: 100%;
    }


    /* Mobile menu background */
    .navbar-collapse {
      background-color:var(--lightblue);
      padding: 1rem;
      border-radius: 8px;
      margin-top: 10px; 
    }

    @media(min-width: 992px) {
      .navbar-collapse {
        background: transparent !important;
        margin-top: 0;
        padding: 0;
      } 
        
    }  

.objectives{ background: #9574AE;}



#form1 .form-label{ float: left; background: #1F3973; color: #FFF; padding: 3px 8px; border-radius: 6px;}
#form1 span{ float: right; background: #1F3973; color: #FFF;  padding: 3px 8px; border-radius: 6px;}

#form2 .form-label{ float: left; background: #FF924E; color: #FFF; padding: 3px 8px; border-radius: 6px;}
#form2 span{ float: right; background: #FF924E; color: #FFF;  padding: 3px 8px; border-radius: 6px;}

#form3 .form-label{ float: left; background: #666; color: #FFF; padding: 3px 8px; border-radius: 6px;}
#form3 span{ float: right; background: #666; color: #FFF;  padding: 3px 8px; border-radius: 6px;}


.custom-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  background:rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 2px; /* for animated border */
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease-in-out;
  backdrop-filter: blur(12px);
  animation: fadeInUp 1s ease forwards;
  opacity: 0; cursor: pointer;
}

.custom-card.active {
  transform: scale(1.05);
  box-shadow: 0;
  background: rgba(31, 57, 115, 0.9); backdrop-filter: blur(2px);
}

.custom-card.active::before {
  animation: none;
  background: conic-gradient(
    from 0deg,
    #28a745,
    #3cc47c,
    #b2f7c1,
    #28a745
  );
}
.custom-card-body {
  position: relative;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 18px;
  padding: 25px 10px;
  z-index: 1;
  flex: 1; /* makes body stretch evenly */
}

.custom-card:hover{
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 5px 20px rgba(0, 123, 255, 0.3);
}

/* Title */
.custom-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #073763;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Icon Box */
.icon-box {
  width: 45px;
  height: 45px;
  border-radius: 50%;
 /* background: linear-gradient(135deg, #F00, #FF924E);*/
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.4rem; margin: 0 auto;
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}
.custom-card-body a{ text-decoration: none;}
/* List */
.custom-list {
  padding-left: 18px;
  margin: 0;
}

.custom-list li {
  margin-bottom: 10px;
  line-height: 1.5;
  font-size: 0.95rem;
  color: #333;
}

/* Animations */
@keyframes rotateBorder {
  to {
    transform: rotate(360deg);
  }
}

@keyframes fadeInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.vision .card{ border-color:#9574AE !important;}
.speaker-details h5{ font-size: 1vw !important; font-weight: 500 !important; color: var(--darkblue); letter-spacing: inherit !important;}
@media (max-width: 992px){
    .cdetails h5{ font-size:2.7vw !important; text-shadow: none !important; letter-spacing: inherit !important;}
    .speaker-details h5{ font-size:2.7vw !important; letter-spacing: inherit !important;}
    .navbar-nav .nav-link{ margin-bottom: 5px !important; transition: all, .5s;}
    .navbar-nav .nav-link:hover {
          color:#fff !important; 
        }
    
}
      
    
    .section {
      padding: 80px 0;
    }
    .section h2 {
      font-weight: 700;
      margin-bottom: 30px;
    }
    .navbar-nav .nav-link { 
        background: var(--darkblue);
        color: #FFF; border-radius:25px 0 25px 0 !important;
        padding:8px 18px !important;
        font-family: 'Sora', sans-serif;
      font-weight: 500 !important; font-size: 15px; letter-spacing: 0px;
      margin: 0 !important; text-transform:capitalize;
    }
    .navbar-nav .nav-link:hover { 
        background:#66c; border: 0px solid #66c; color: #FFF;
    }
    .slider img {
      max-height: 300px;
      object-fit: contain;
    } 
.hero-section {
  min-height: auto; background-color: #FFF;
  /*background: linear-gradient(to right, #b6e6f8, #6fc3e0); /* or use your own image */
  /*background: url('../../slider.jpg?v=1') no-repeat center top;
  background-size: cover; */   
  padding:0;
  position: relative;
  overflow: hidden;
}

.hero-slider-images {
  max-width: 450px;
}

.hero-slider-images img {
  height: 450px;
  object-fit: contain;
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}


.slide-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-up.active {
  opacity: 1;
  transform: translateY(0);
}


.scroll-bg-section {
  position: relative;
  min-height: auto;
  background: none;
  overflow: hidden;
  z-index: 1;
}



/* Content on top of background */
.scroll-bg-section .container {
  position: relative;
  z-index: 1;
}

.scroll-bg-section .bg-holder::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background:url('../../sp-bg.jpg?v=2');
}

.parallax-section {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 100vh; /* full screen height */
  position: relative;
  display: flex;
  align-items: center;
  z-index: 1;
}

.parallax-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.6); /* dark overlay for text readability */
  z-index: 0;
}
.parallax-section .container {
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .parallax-section {
    background-attachment: scroll;
  }
}


.hamburger-btn {
  width: 32px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 0; 
}

.hamburger-btn span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--darkblue) !important;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger-btn.open span:nth-child(1) {
  transform: translateY(7px) rotate(50deg); 
}

.hamburger-btn.open span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.open span:nth-child(3) {
  transform: translateY(-14px) rotate(-50deg);
}

.speaker-box {
  background: linear-gradient(125deg, #FFFFFF, #EAEAEA);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0px 8px rgba(0, 0, 0, 0.05);
  padding: 1rem;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  color: #fff;
}

.speaker-image {
  overflow: hidden;
  border-radius: 16px; background: linear-gradient(145deg, #07314A, #9574AE); margin-bottom: 15px;
}

.speaker-image img {
  width: 100%;
  object-fit: cover; 
  transition: transform 0.4s ease; 
}

.speaker-box:hover .speaker-image img {
  transform: scale(1.05);
}

.flag-badge {
  position: absolute;
  top: 5px;
  right: 5px; background: #FFF;
  padding: 3px; border: 0px solid var(--niceblue); 
  border-radius: 100px;
  z-index: 10;
}
.flag-badge img{ width:32px; height: 32px; border-radius: 100px;}

.cdetails{ background: #f1f1f1; padding: 15px 0;}
.cdetails p{ margin: 0; padding: 0 10px;}
.cdetails h8{ font-weight: 500; font-size: 1rem;}
.committee{ text-align: center; border-radius: 6px; }
.committee .footer{ background: #ddd;}
.speaker-details .title {
  font-size: 0.9rem;
  color: #bbb;
}
.committee a, .committee p{ color: #333; font-size: 12px !important; text-decoration: none; cursor: pointer;}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.agenda-card {
  background: #fff;
  padding: 1.5rem;
  border-left: 5px solid var(--niceblue);
  border-radius: 8px;
  border-top: 1px solid #cfcfcf;
  border-right: 1px solid #cfcfcf;
  border-bottom: 1px solid #cfcfcf;
  box-shadow:0 0px 12px rgba(0,0,0,0.05);
  animation: fadeInUp 0.6s ease;
  margin-bottom: 10px;    
}

.agenda-block {
  padding: 1rem 1.5rem; border: 1px solid #cfcfcf;
  border-radius: 6px; box-shadow: 0 4px 4px rgba(0,0,0,0.05);
  /*box-shadow: inset 0 2px 8px rgba(0,0,0,0.08);*/
  animation: fadeInUp 0.4s ease; margin-bottom: 10px !important;
}
.tab-pane h6{ font-size: 1vw; color: #333; font-weight: 500 !important; letter-spacing:0;}
.tab-pane h6 b{ font-size: 1vw; color: #333; font-weight: 700;}
.tab-pane .bg-session h6{ font-size: 1.2vw; margin-top: 6px; margin-bottom: 5px !important;}
.tab-pane p{ font-size: 1vw; margin: 0;}
.bg-faq{ background: #dfdfdf !important; color: #333;}
.bg-break{ background: #6ebfeb !important; color: #FFF;}
.bg-session{ background: var(--niceblue) !important; color: #FFF;}
.bg-sessions{ background: var(--darkblue) !important; color: #FFF;}

.btn-primary{ background: var(--darkblue) !important;}
.btn-primary:hover{ background: var(--niceblue) !important;}
.bold{ font-weight: 600 !important;}
.spc { width: 60px; height: 60px; background: #e5e5e5; border-radius: 100%; border: 2px solid var(--niceblue); padding: 3px;}

.committee{ border: 1px solid #cfcfcf; background: linear-gradient(145deg, #07314A, #1EB1C2); border-radius: 6px;  box-shadow: 0 4px 4px rgba(0,0,0,0.05);}
.committee img{ width: 100%;}



.btn-reg { position: absolute; left: 45%; bottom: 10%;}

@media (max-width:900px){
.btn-reg { position: absolute; left: 30%; bottom: 10%;}
h1{ font-size: 6vw;} 
h2{ font-size: 5.5vw;}    
h4{ font-size: 4.8vw;}     
h5{ font-size: 4.6vw;}      
h6{ font-size: 4.5vw;}    
h7{ font-size: 3.8vw;}   
h8{ font-size: 3.3vw;}  
footer .xs{ font-size: 10px !important;}
.hamburger-btn { margin-right: 15px !important;
}

.hamburger-btn span {
  display: block;
  height: 3px;
  background: var(--darkblue) !important;
  border-radius: 0px;
  transition: all 0.3s ease;
  transform-origin: center;
}    
.tab-pane h6, .tab-pane h6 b{ font-size: 2.5vw;} 
.tab-pane .bg-session h6{ font-size: 2.7vw; margin-top: 6px; margin-bottom: 5px !important;}
.tab-pane .bg-session p{ margin: 0 !important;}  
.tab-pane p strong{ font-size: 2.5vw !important;}    
.spc{ margin-bottom: 10px;}     
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}






.agenda-entry {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  flex-wrap: wrap;
  transition: transform 0.3s ease;
}

.agenda-entry:hover {
  transform: translateY(-3px);
}

.agenda-entry .time {
  font-weight: bold;
  width: 120px;
  color: #333;
}

.agenda-entry .lecture {
  flex: 1;
}

.agenda-entry .lecture h5 {
  margin: 0 0 5px;
  font-size: 1rem;
}

.agenda-entry .speaker {
  font-size: 0.9rem;
  color: #666;
  display: flex;
  align-items: center;
  gap: 10px;
}

.agenda-entry .speaker img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

/* Colors */
.agenda-entry.session {
  background: #f8f9fa;
  border-left: 5px solid #007bff;
}
.agenda-entry.break {
  background: #eaf7ff;
  border-left: 5px solid var(--green);
}
.agenda-entry.faq {
  background: #fff3cd;
  border-left: 5px solid #ffc107;
}

.agenda-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap; /* prevent wrapping */
  overflow-x: auto; /* allow scroll if needed */
  text-align: center;
  white-space: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
  border-bottom: 2px solid #eee;
  gap: 0; /* ensures no odd spacing */
}

.agenda-tabs::-webkit-scrollbar {
  display: none;
}

.agenda-tabs .nav-item {
  flex: 0 0 auto;
  text-align: center;
}

.agenda-tabs .nav-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #666;
  font-weight: 600;
  font-size: 1.2rem;
  padding: 0.75rem 1.5rem;
  background: #eee;
  border: none;
  border-radius: 0;
  transition: all 0.3s ease;
  white-space: nowrap;
}

/* Active tab style */
.agenda-tabs .nav-link.active {
  background: #fff;
  color: var(--green);
}

/* Animation underline */
.agenda-tabs .nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 6px;
  background: var(--green);
  transition: width 0.3s ease;
}
.agenda-tabs .nav-link.active::after {
  width: 100%;
}
.agenda-tabs .nav-link:hover,
.agenda-tabs .nav-link.active {
  color: #fff; background: var(--green);
}
/* Fix text scaling issue in Safari */
@supports (-webkit-touch-callout: none) {
  .agenda-tabs {
    -webkit-text-size-adjust: 100%;
  }
}
.nav-link img{ width:54px; display: block; margin:0 auto 3px auto;}
.nav-link span { font-size: .8rem; display: block; color: #dadada; font-weight: 500;}

/* Responsive */
@media (max-width: 768px) {
.agenda-tabs .nav-link{font-size: 14px !important;}    
.nav-link img{ width:24px !important; display: block; margin:0 auto 3px auto;}
.nav-link span { font-size: 10px; display: block; color: #dadada; font-weight: 400 !important;}
    
  .agenda-entry {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
  }
  .agenda-entry .time {
    width: 100%;
    margin-bottom: 8px;
  }
  .agenda-entry .speaker {
    flex-direction: row;
  }
}


.text-gray { color: #999;}


.footer-section {
  background-color: var(--darkblue);
  color: #ddd;
  font-size: 0.95rem;
}

.footer-section h5 {
  color: #fff;
  font-weight: 600;
}

.footer-section .footer-link {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section .footer-link:hover {
  color: #007bff;
  text-decoration: none;
}

.footer-section ul {
  padding-left: 0;
  list-style: none;
}

.footer-section p {
  margin-bottom: 0.5rem; font-size: 12px;
}
.xs { font-size: 11px;}
@media (max-width: 767px) {
    .xs { font-size: 10px;}
  .footer-section {
    text-align: center;
  }
}




.sponsor-card {
  background: #222;
  color: #fff;
  border-radius: 15px;
  padding: 25px 20px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}
.sponsor-card:hover {
  transform: translateY(-5px);
}
.sponsor-card h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.sponsor-card h5 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #ccc;
}
.sponsor-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}
.sponsor-card ul li {
  margin-bottom: 10px;
}

/* Color themes */
.sponsor-card.platinum {
  background: linear-gradient(135deg, #e5e4e2, #d4af37);
  color: #000;
}
.sponsor-card.gold {
  background: linear-gradient(135deg, #FFD700, #e6c200);
  color: #000;
}
.sponsor-card.silver {
  background: linear-gradient(135deg, #C0C0C0, #b8b8b8);
  color: #000;
}
.sponsor-card.bronze {
  background: linear-gradient(135deg, #cd7f32, #b87333);
  color: #fff;
}



.modal-content {
  border-radius: 12px;
  border: none;
}

.modal-header {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
label{ font-weight: 400 !important;}
.form-control{ font-weight: 400 !important; padding: 12px; margin-bottom: 10px;}
::placeholder { color: #bbb !important; font-weight: 300 !important;}

