@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html, body{
  width:100%;
  max-width:100%;
  overflow-x:hidden !important;
  font-family:'Poppins',sans-serif;
  background:#f9f9f9;
  color:#222;
  line-height:1.6;
}

a{
  text-decoration:none;
  color:inherit;
}

/* ================== HEADER ================== */

header{
  background:#400080;
  color:#fff;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 30px;
  position:sticky;
  top:0;
  z-index:1000;
  box-shadow:0 2px 10px rgba(0,0,0,0.15);
}

.logo-title{
  display:flex;
  align-items:center;
}

.logo{
  width:50px;
  height:50px;
  border-radius:50%;
}

.logo-title h1{
  margin-left:10px;
  font-size:1.6rem;
  font-weight:700;
  color:#fff;
}

/* DESKTOP NAV */
.desktop-nav ul{
  list-style:none;
  display:flex;
  gap:20px;
}

.desktop-nav ul li a{
  color:#fff;
  font-weight:500;
  padding:6px 10px;
  border-radius:5px;
  transition:.3s;
}

.desktop-nav ul li a:hover{
  background:#fff;
  color:#000;
}

.desktop-nav ul li a.nav-active{
  background:#fff;
  color:#000;
}

/* HAMBURGER */
.menu-btn{
  display:none;
  font-size:2.2rem;
  color:#fff;
  cursor:pointer;
}

/* MOBILE PANEL */
.mobile-nav{
  position:fixed;
  top:0;
  right:-75%;
  width:75%;
  height:100vh;
  background:#400080;
  padding:25px 30px;
  display:flex;
  flex-direction:column;
  gap:25px;
  transition:.4s ease;
  z-index:9999;
}

.mobile-nav.show{
  right:0;
}

.mobile-nav-header{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap:15px;
}

.mobile-nav-header .logo{
  width:45px;
  height:45px;
}

.mobile-nav-header h2{
  font-size:1.3rem;
  color:#fff;
}

.mobile-nav ul{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:15px;
}

.mobile-nav ul li a{
  padding:12px;
  font-size:1rem;
  color:#fff;
  font-weight:500;
  border-radius:6px;
  transition:.3s;
}

.mobile-nav ul li a:hover,
.mobile-nav ul li a.nav-active{
  background:#fff;
  color:#400080;
}

/* HIDE DESKTOP NAV ON MOBILE */
@media(max-width:768px){
  .desktop-nav{
    display:none;
  }

  .menu-btn{
    display:block;
  }
}

/* SHOW DESKTOP NAV */
@media(min-width:769px){
  .desktop-nav{
    display:block;
  }

  .mobile-nav, .menu-btn{
    display:none;
  }
}

/* ================== PAGE SECTION ================== */

.SpecialSessions {
  margin: 100px auto 60px;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  list-style-type: none;
}

/* MAIN HEADING */
.ch {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
  padding-bottom: 0;   /* remove gap */
  border-bottom: none; /* removes the line */
}


/* SUB HEADING */
.section-heading {
  font-size: 4rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
  text-align: center;
}

.section-heading span {
  color: #3aa6b9;
  text-transform: uppercase;
}

/* TEXT BLOCK */
.text-block {
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

/* PARAGRAPHS */
.text-block p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #111;
}

/* BULLET LIST */
.text-block ul {
  margin-left: 2rem;
  padding-left: 0;
}

.text-block ul li {
  list-style: disc;
  font-size: 1.15rem;
  line-height: 1.8;
  color: #111;
}

/* ICON STYLE */
.text-block i {
  color: #3aa6b9;
  margin-right: 6px;
  font-weight: 600;
}

/* ================== TABLE ================== */

.kele {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 10px 0;
  overflow-x: auto;
}

table{
  width: 100%;
  max-width: 1000px;
  min-width: 700px;
  border-collapse: collapse;
  background: transparent;
  margin: auto;
  text-align: left;
}

th, td {
  padding: 12px;
  border: 1px solid #000;
  font-size: 15px;
  line-height: 1.6;
  vertical-align: top;
}

thead th {
  background: #faebd7;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
}

/* STRIPED ROWS */
tbody tr:nth-child(odd) {
  background-color: #dff7f2;
}

tbody tr:nth-child(even) {
  background-color: #faebd7;
}
.smalltite {
  color: hsl(246, 92%, 46%);
  font-weight: bold;
}
/* MOBILE TABLE */
@media(max-width:768px){
  .SpecialSessions {
    margin: 70px auto 40px;
    padding: 0 18px;
    gap: 1.8rem;
  }

  .ch {
    font-size: 2rem;
    padding-bottom: 6px;
  }

  .section-heading {
    font-size: 1.4rem;
  }

  table {
    min-width: 600px;
    font-size: 14px;
  }

  th, td {
    padding: 10px;
    font-size: 14px;
  }
}

/* TABLE SCROLLBAR */
.kele::-webkit-scrollbar {
  height: 8px;
}

.kele::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

.kele::-webkit-scrollbar-track {
  background: #ddd;
}

/* ================== FOOTER ================== */

footer{
  background:#400080;
  color:#fff;
  padding:35px 20px 20px;
  margin-top:40px;
}

.footer-container{
  max-width:1200px;
  margin:auto;
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  gap:30px;
}

.footer-box{
  flex:1 1 200px;
  min-width:200px;
}

.footer-box h4{
  font-size:1rem;
  margin-bottom:10px;
  border-bottom:1px solid rgba(255,255,255,0.5);
  padding-bottom:6px;
}

.footer-box a{
  display:block;
  color:#fff;
  font-size:.9rem;
  margin:6px 0;
  transition:.3s;
}

.footer-box a:hover{
  color:#ffdd57;
}

footer .copyright{
  text-align:center;
  border-top:1px solid rgba(255,255,255,0.3);
  margin-top:20px;
  padding-top:10px;
  font-size:.85rem;
  opacity:.9;
}

/* MOBILE FOOTER */
@media(max-width:768px){
  footer{
    padding:25px 15px;
  }

  .footer-container{
    flex-direction:column;
    text-align:center;
    gap:10px;
  }

  .footer-box h4{
    width:80%;
    margin:auto;
    font-size:.95rem;
  }

  .footer-box a,
  .footer-box p{
    font-size:.85rem;
    margin:4px 0;
  }

  footer .copyright{
    padding-top:8px;
    font-size:.75rem;
  }
}

/* ================== SCROLL BTN ================== */

#scrollTopBtn{
  position:fixed;
  bottom:30px;
  right:20px;
  width:45px;
  height:45px;
  background:#000;
  color:#fff;
  border-radius:50%;
  display:flex;
  justify-content:center;
  align-items:center;
  font-size:21px;
  cursor:pointer;
  z-index:9999;
  opacity:0;
  visibility:hidden;
  transition:.3s;
}

#scrollTopBtn.show{
  opacity:1;
  visibility:visible;
}

#scrollTopBtn:hover{
  background:#000000;
  transform:translateY(-3px);
}


.download-btn {
  background: #3aa6b9;
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: .3s ease;
  text-decoration: none;
  box-shadow: 0 3px 12px rgba(0,0,0,0.15);
}

.download-btn:hover {
  background: #2b8190;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

.download-btn:active {
  transform: scale(.97);
}


.kele {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  display: block;
}

table {
  width: 100%;
  min-width: 900px;  /* adjust if needed */
  border-collapse: collapse;
}


@media(max-width: 768px){

  .kele {
    overflow-x: auto;
    padding-bottom: 10px;
  }

  table {
    min-width: 800px; /* must be bigger than screen */
    font-size: 14px;
  }

  th, td {
    padding: 10px;
    font-size: 14px;
    white-space: nowrap; /* prevent text wrapping */
  }
}


.close-btn{
  font-size: 2.4rem;
  font-weight: 600;
  cursor: pointer;
  color: #fff;
  margin-left: auto;
  transition: .2s;
}

.close-btn:hover{
  color: #ffdddd;
}
