@import url('https://fonts.googleapis.com/css2?family=Parkinsans:wght@300..800&family=Play:wght@400;700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


html{
    scroll-behavior: smooth;
}


html::-webkit-scrollbar-track{
    background: transparent;
}


html {
  /* For Firefox */
  scrollbar-width: thin;
  scrollbar-color: #3c096c transparent;
}

/* For Chrome, Edge, Safari */
html::-webkit-scrollbar {
  width: 0.5rem;
}

html::-webkit-scrollbar-thumb {
  background: #3c096c;
  border-radius: 5rem;
}


body {
  font-family: "Poppins", sans-serif;
  color: #333;
  background-color: #f9f9f9!important;
  line-height: 1.6;
}



.section {
  background-color: #fff;
  padding: 32px;
  width: 100%;
  margin-bottom: 24px;
  border-bottom: 1px solid #ccc;
  scroll-margin-top: 70px;
}

/*font colors*/
.section h2{
  font-size: 1.5rem;
  color: #5a189a;
  margin-bottom: 32px;
  text-align: center;
  font-weight: 600;
}



.section-wrapper{
  width: 90%;
  margin: auto;
}

.about-content{
  display: flex;
}



.about-content .image-wrapper{
  width: 35%;
}


.about-text{
  flex: 1;
  padding-left: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.about-content .image-wrapper img{
  max-width: 100%;
  height: auto;
}


.about-field li{
  list-style: none;
}





/* Tablet (768px to 1023px) */
@media screen and (max-width: 1023px) {
  .about-content {
    flex-direction: column;
  }

  .about-content .image-wrapper {
    width: 80%;
    margin-bottom: 24px;
  }

  .about-text {
    padding-left: 0;
  }
}

/* Mobile (0 to 767px) */
@media screen and (max-width: 767px) {
  .section {
    padding: 20px;
  }

  .section h2 {
    font-size: 1.25rem;
  }

  .about-text {
    padding-left: 0;
  }

  .about-content .image-wrapper {
    width: 100%;
    margin-bottom: 16px;
  }

  .about-field {
    padding-left: 0;
  }
}





.date-wrapper{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
    gap: 1rem;
}

.date-wrapper .date-box{
  border: 1px solid #004080;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  text-align: center;
}


.date-svg-wrapper{
  height: 80px;
  width: 80px;
}

.date-box h3{
  margin-bottom: 16px;
}


.theme-wrapper{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: 1rem;
  
}


.theme-box{
  border: 1px solid #004080;
  padding: 32px 24px;
  text-align: left;
}

.theme-box img{
  width: 100%;
  height: auto; /* Let the height adjust based on width */
  object-fit: contain; /* Or use cover if you want cropping */
  display: block;
  margin-bottom: 1rem;
}



@media screen and (min-width: 1024px) {
  .theme-box img {
    height: 400px;
    object-fit: cover;
  }
}

.theme-box h3{
  margin: 16px 0;
}


.theme-box ul{
  list-style-position: inside;
}

.theme-box ul li{
  list-style-type: square;
}


.theme-box ul li::marker {
  color: #004080;
}

/* Nav  */
nav{
  position: fixed;
  top: 0!important;
  z-index: 1000;
  padding: 16px 0 ; 
  background: #240046;
  /*background: #004080;*/
  color: white;
  width: 100%;
}

.nav-container{
  width: 90%;
  margin: auto;
}

.logo-wrapper{
  display: flex;
}

.logo-wrapper img{
  height: 51.066px;
  width: 128px;
}

.nav-container{
  display: flex;
  justify-content: space-between!important;
  align-items: center;
}

.link-wrapper{
  transition: all 0.3s ease;
}


.link-wrapper ul{
  display: flex;
  margin: 0;
}

.link-wrapper ul li{
  margin-left: 16px;
  cursor: pointer;
  list-style: none;
  padding: 5px 0;
}

.link-wrapper ul li a{
  color: white;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
}

.link-wrapper ul li a:hover{
  
  border-bottom: 1px solid white;
}


.menu-toggle {
  display: none;
}





@media screen and (max-width: 768px) {
  .nav-container {
    flex-direction: row;
    align-items: flex-start;
  }

  .link-wrapper {
    width: 100%;
    /* display: none; hide by default */
    flex-direction: column;
    margin-top: 10px;
  }

  .link-wrapper ul {
    flex-direction: column;
    width: 100%;
  }

  .link-wrapper ul li {
    margin: 8px 0;
  }

  .menu-toggle {
    display: block;
    cursor: pointer;
    color: white;
    font-size: 1.5rem;
  }


  .nav-container{
    display: block;
  justify-content: unset!important;
  align-items: unset;
}


 /* .pc {
    display: none !important;
  }

  .mobile {
    display: block !important;
  } */

  /* #mobile{
    display: none;
  }

  #pc{
    display: none!important;
  } */


   #pc {
    display: none !important;
  }

  #mobile {
    display: none;
  }

  #mobile.show {
    display: block;
  }
}



#mobile{
  display: none;
}












.fee-table {
    border-collapse: collapse;
    width: 100%;
    max-width: 400px;
    margin: 20px auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  }

  .fee-table th, .fee-table td {
    border: 1px solid #ddd;
    padding: 12px 15px;
    text-align: center;
  }

  .fee-table th {
    background-color: #f4f6f9;
    font-weight: 600;
    color: #333;
  }

  .fee-table tr:nth-child(even) {
    background-color: #fafafa;
  }

  .fee-table tr:hover {
    background-color: #f1f1f1;
  }


/* Nav End */









.guidlinebutton {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 300px;
    height: 35px;

    margin: 0 auto 5px auto; /* 5px bottom gap */

    background-color: #3c096c;
    color: white;

    text-align: center;
    text-decoration: none;

    box-sizing: border-box;
    padding: 0;

    border-radius: 10px;
    font-weight: 600;

    overflow: hidden;
}



















/* Header Section */
header {
  height: 55vh;
  position: relative;
  color: #fff;
  text-align: center;
  border-bottom: 1px solid #ccc;
  margin-top: 64px;
  scroll-margin-top: 70px!important;
}

header .main {
  height: 100%;
  background: url('Images/top.jpg') center/cover no-repeat;
  position: relative;
}

header .overlay {
  background: rgba(0, 0, 0, 0.7);
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

header .content {
  max-width: 800px;
  padding: 20px;
}

header h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  font-weight: bold;
}

header .title {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

header .date {
  font-style: italic;
  margin-bottom: 20px;
  font-size: 1rem;
}

.btn {
  display: inline-block;
  background: #ffb400;
  color: #000;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #e0a800;
}

/* Countdown Section */
.countdown-section {
  background: #fff;
  padding:0!important;
  text-align: center;
  width: 100%!important;
  margin-bottom: 24px;
  padding: 30px 0;
  border-bottom: 1px solid #ccc;
}


.countdown-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 20px 0;
}

#countdown-title {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: #5a189a;
  font-weight: 600;
}

#countdown {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.time-box {
  background-color: #f0f0f0;
  border: 2px solid #ddd;
  width: 110px;
  height: 110px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.time-box span {
  font-size: 2rem;
  font-weight: bold;
  color: #004080;
}

.time-box small {
  font-size: 1rem;
  color: #666;
}

/* Responsive */
@media (max-width: 768px) {
  header h1 {
    font-size: 2rem;
  }

  header .subtitle {
    font-size: 1rem;
  }

  .time-box {
    width: 80px;
    height: 80px;
  }

  .time-box span {
    font-size: 1.5rem;
  }

  #countdown-title {
    font-size: 1.2rem;
  }
}





.about-wrapper{
  width: 100%;
  height: 20vh;
  background-color: #e0a800;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-outer{
  width: 50%;
  height: auto;
}

.image-outer img{
  width: 100px;
  height: 200px;

}

.content-outer{
  width: 50%;
  height: auto;
}
/* Sections */

/* 

ul {
  list-style: none;
  padding-left: 20px;
}

ul li {
  padding: 5px 0;
} */

/* Footer */
footer {
  background: #5a189a;
  color: #ccc;
  text-align: center;
  padding: 15px 0;
  font-size: 0.9em;


}





.track {
  margin-bottom: 30px;
}

.track h3 {
  color: #333;
  margin-bottom: 10px;
}

.committee h3 {
  margin-top: 20px;
  color: #004080;
}

.committee ul li {
  padding: 5px 0;
}

.comittee-wrapper{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 250px));
    justify-content: center;
    gap: 24px;
}

.comittee-box{
    border: 1px solid #004080;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden;
    width: 250px;
    background: #fff;
}

.comittee-box img{
    width: 100%;
    height: 300px;       /* fixed height */
    object-fit: cover;   /* crops nicely */
    display: block;
}

.comittee-box .name{
    margin-top: 12px;
    font-weight: 600;
    padding: 0 10px;
}

.comittee-box p{
    padding: 0 10px;
    margin-bottom: 10px;
}






.contact-list {
    list-style: none !important;
    padding-left: 0;
    margin-left: 0;
}

.contact-list li {
    list-style: none !important;
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
}

.contact-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);

    width: 8px;
    height: 8px;

    background: #004080;
    border-radius: 50%;
}


/*.comittee-wrapper{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
    gap: 1rem;
}
*/

/*
.comittee-box{
  border: 1px solid #004080;
          /* padding: 16px; */
  /*display: flex;
  flex-direction: column;
  align-items: center;*/
          /* box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); */
 /* text-align: center;
}
*/
/*
.comittee-box .name{
  margin-top: 8px;
  font-weight: 600;
}

.comittee-box img{
  width: 100%!important;
  object-fit: contain;
  display: block;
}

#comittee .comittee-wrapper {
    justify-content: center;
}

#comittee .comittee-box {
    width: 250px;
}
*/

