:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway", sans-serif;
  --nav-font: "Roboto", sans-serif;
}

:root {
  --background-color: #ffffff;
  --default-color: #444444;
  --heading-color: #111111;
  --accent-color: #66cc00;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

:root {
  --nav-color: #212529;
  --nav-hover-color: #66cc00;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #212529;
  --nav-dropdown-hover-color: #66cc00;
}

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #336600;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #353535;
  --contrast-color: #ffffff;
}

:root {
  scroll-behavior: smooth;
}

body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

h1 {
  padding-top: 40px;
  padding-bottom: 40px;
  text-align: center;
  margin: 0;
}

.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 50px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 32px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .logo span {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-color);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 10px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    height: 335px;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

.footer {
  color: white;
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
  background: url(../img/trac2025-footerbg.webp) repeat;
}

.footer .footer-top {
  padding-top: 20px;
  padding-bottom: 10px;
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
  color:#eec305;
  text-transform: uppercase;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.342) !important;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  display: inline-block;
  line-height: 1;
  margin-bottom: 0.3rem;
  color: white;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 10px;
  padding-bottom: 10px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  text-align: center;
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 40px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

.section-bg {
  background-color: transparent;
  padding: 160px 0;
  position: relative;
}

.section-bg:before {
  content: "";
  background-color: var(--background-color);
  position: absolute;
  bottom: 60px;
  top: 60px;
  left: 0;
  right: 0;
  transform: skewY(-3deg);
}

.section-bg .container {
  position: relative;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  text-transform: uppercase;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

#tracCarousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0px !important;
}

.carousel-inner {
  position: relative;
  width: 100%;
  height: 100vh;
}

.trac-banner {
  position: relative;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.fixed-logo-row {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
}

.fixed-logo-row img {
  max-height: 150px;
  width: auto;
  object-fit: contain;
}

.floating-icons {
  position: absolute;
  top: 20%;
  right: 20px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.float-icon {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: #ffffff;
  border-radius: 50%;
  padding: 8px;
  transition: all 0.3s ease;
}

.float-icon:hover {
  transform: scale(1.1);
  background: #66cc00;
}

.float-icon img {
  width: 100%;
  height: auto;
}

.carousel-control-prev,
.carousel-control-next {
  z-index: 3;
  width: 5%;
}

.carousel-indicators {
  z-index: 3;
}

@media (max-width: 768px) {

  .carousel-inner,
  .trac-banner {
    height: 80vh;
  }

  .fixed-logo-row {
    flex-direction: column;
    gap: 25px;
  }

  .fixed-logo-row img {
    max-height: 60px;
  }

  .fixed-logo-row .traclogo {
    max-height: 140px;
  }

  .floating-icons {
    top: 30%;
    right: 10px;
  }

  .float-icon {
    width: 50px;
    height: 50px;
    padding: 8px;
  }
}

@media (max-width: 375px) {
  .float-icon {
    width: 45px;
    height: 45px;
    padding: 8px;
  }

  .floating-icons {
    top: 30%;
    right: 2px;
  }
}
.tracdate{
  color:#b906b9;
  font-weight: bold;
}
.queries h4 {
  font-size: 30px;
  font-weight: 600;
  align-items: center;
}
.queries a{
  color:var(--default-color) !important;
}
.abstract-query span a{
color: #b906b9 !important;
}
.queries-img {
  width: 100px;
  height: 100px;
  background-color:#66cc00;
  border-radius: 50%;
  object-fit: contain;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  padding:15px;
  border: 0.5px solid rgb(209, 207, 207);
}

.welcome-section {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.welcome-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.welcome-section p {
  text-align: justify;
}

.conference-wrapper {
  transform: skewY(-3deg);
  background-color: #336600;
  overflow: hidden;
}

.conference-section {
  transform: skewY(3deg);
  padding: 80px 0;
  color: white;
  background-color: #336600;
}

.conference-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  text-transform: uppercase;
  color: white;
  text-align: center;
}

.conference-section h5 {
  color:#eec305;
  margin-bottom: 5px;
  font-weight: bold;
}

.conference-section p {
  color: rgb(243, 239, 239);
  font-size: 15px;
  margin-bottom: 0;
}

.highlight-icon {
  padding: 10px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight-icon i {
  color: #66cc00;
  font-size: 40px;
}

.about .content h3 {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.about .content p {
  margin-bottom: 30px;
}

.about .content .about-btn {
  padding: 8px 30px 9px 30px;
  color: var(--default-color);
  border-radius: 50px;
  transition: 0.3s;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--accent-color);
}

.about .content .about-btn i {
  font-size: 16px;
  padding-left: 5px;
}

.about .content .about-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.about .icon-box i {
  font-size: 40px;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.about .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.about .icon-box h4 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.about .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0;
}

.about .icon-box:hover h4 a {
  color: var(--accent-color);
}

.portfolio-info h1 {
  text-align: left;
  padding: 0;
  margin: 0;
}

.portfolio-info h3 {
  color:#b906b9;
}

.accordion {
  --bs-accordion-border-color: color-mix(in srgb, var(--default-color), transparent 85%);
  --bs-accordion-border-radius: 5px;
  --bs-accordion-inner-border-radius: 5px;
  --bs-accordion-btn-padding-x: 20px;
  --bs-accordion-btn-padding-y: 20px;
  --bs-accordion-body-padding-x: 20px;
  --bs-accordion-body-padding-y: 20px;
  --bs-accordion-active-color: var(--accent-color);
  --bs-accordion-active-bg: color-mix(in srgb, var(--accent-color), transparent 97%);
  --bs-accordion-btn-focus-border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
  --bs-accordion-btn-focus-box-shadow: none;
}

.accordion-button {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
  box-shadow: none;
}

.accordion-button:hover {
  color: var(--accent-color);
}

.accordion-item {
  margin-bottom: 15px;
  overflow: hidden;
}

.accordion-item:last-child {
  margin-bottom: 0;
}

.accordion-body p:last-child,
.accordion-body ul:last-child {
  margin-bottom: 0;
  text-align: justify;
}

.flip-clock {
  display: flex;
  justify-content: center;
  perspective: 400px;
  width: 100%;
  overflow: hidden;
}

.flip-clock * {
  box-sizing: border-box;
}

.flip-clock__piece {
  display: inline-block;
  margin: 0 5px;
}

.flip-clock__slot {
  font-size: 1.2rem;
  display: block;
  margin-top: 0.3rem;
  text-align: center;
}

.flip-clock .card {
  display: block;
  position: relative;
  padding-bottom: 0.72em;
  font-size: 4vw;
  line-height: 0.95;
  min-width: 1.8em;
}

.card__top,
.card__bottom,
.card__back::before,
.card__back::after {
  display: block;
  height: 0.72em;
  color: black;
  background: #99ee99;
  padding: 0.25em 0;
  border-radius: 0.15em 0.15em 0 0;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  width: 1.8em;
  transform: translateZ(0);
  text-align: center;
}

.card__bottom {
  color: black;
  position: absolute;
  top: 50%;
  left: 0;
  border-top: solid 1px white;
  background: #bbffdd;
  border-radius: 0 0 0.15em 0.15em;
  pointer-events: none;
  overflow: hidden;
}

.card__bottom::after {
  display: block;
  margin-top: -0.72em;
}

.card__back::before,
.card__bottom::after {
  content: attr(data-value);
}

.card__back {
  position: absolute;
  top: 0;
  height: 100%;
  left: 0%;
  pointer-events: none;
}

.card__back::before {
  position: relative;
  z-index: -1;
  overflow: hidden;
}

.flip .card__back::before {
  animation: flipTop 0.3s cubic-bezier(.37, .01, .94, .35);
  animation-fill-mode: both;
  transform-origin: center bottom;
}

.flip .card__back .card__bottom {
  transform-origin: center top;
  animation-fill-mode: both;
  animation: flipBottom 0.6s cubic-bezier(.15, .45, .28, 1);
  background: #bbffdd;
}

@keyframes flipTop {
  0% {
    transform: rotateX(0deg);
    z-index: 2;
  }

  0%,
  99% {
    opacity: 0.99;
  }

  100% {
    transform: rotateX(-90deg);
    opacity: 0;
  }
}

@keyframes flipBottom {

  0%,
  50% {
    z-index: -1;
    transform: rotateX(90deg);
    opacity: 0;
    background: #bbffdd;
  }

  51% {
    opacity: 0.99;
    background: #bbffdd;
  }

  100% {
    opacity: 0.99;
    transform: rotateX(0deg);
    z-index: 5;
    background: #bbffdd;
  }
}

@media (max-width: 768px) {
  .flip-clock {
    perspective: 400px;

    gap: 4px;
    padding: 0 8px;
  }

  .flip-clock__slot {
    font-size: 0.8rem;
  }

  .flip-clock .card {
    font-size: 7vw;
    width: 2.5em;
    min-width: unset;
    padding-bottom: 0.72em;
    line-height: 0.95;
    position: relative;
    overflow: hidden;
    text-align: center;
  }

  .card__top,
  .card__bottom,
  .card__back::before,
  .card__back::after {
    width: 100%;
    height: 0.72em;
    padding: 0.25em 0;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    box-shadow: none;

  }

  .card__bottom {
    background: #bbffdd;
    border-top: solid 1px transparent;
    transform-origin: center top;
  }

  @keyframes flipTop {
    0% {
      transform: rotateX(0deg);
      background: #99ee99;
    }

    100% {
      transform: rotateX(-90deg);
      background: #99ee99;
    }
  }

  @keyframes flipBottom {
    0% {
      transform: rotateX(90deg);
      background: #bbffdd;

    }

    100% {
      transform: rotateX(0deg);
      background: #bbffdd;
    }
  }

  .flip .card__back::before {
    animation: flipTop 0.4s cubic-bezier(0.4, 0.2, 0.3, 0.9) forwards;
    z-index: 2;
  }

  .flip .card__back .card__bottom {
    animation: flipBottom 0.4s cubic-bezier(0.4, 0.2, 0.3, 0.9) 0.2s forwards;
    z-index: 1;
  }

  .card__back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

@media (min-width: 768px) and (max-width: 965px) {
  .flip-clock {
    perspective: 600px;
    gap: 8px;
    padding: 0 15px;
  }

  .flip-clock__piece {
    margin: 0 6px;
  }

  .flip-clock__slot {
    font-size: 1.1rem;
    margin-top: 0.4rem;
  }

  .flip-clock .card {
    font-size: 3.2vw;
    min-width: 1.9em;
    padding-bottom: 0.65em;
  }

  .card__top,
  .card__bottom,
  .card__back::before,
  .card__back::after {
    height: 0.65em;
    padding: 0.2em 0.4em;
    width: 100%;
    border-radius: 0.12em;
  }

  .card__bottom {
    border-top: solid 1px rgba(255, 255, 255, 0.8);
  }

  @keyframes flipTop {
    0% {
      transform: rotateX(0deg);
      background: #99ee99;
    }

    100% {
      transform: rotateX(-90deg);
      background: #99ee99;
    }
  }

  @keyframes flipBottom {
    0% {
      transform: rotateX(90deg);
      background: #bbffdd;
    }

    100% {
      transform: rotateX(0deg);
      background: #bbffdd;
    }
  }

  .flip .card__back::before {
    animation: flipTop 0.45s cubic-bezier(0.35, 0.05, 0.7, 0.35) forwards;
    z-index: 2;
  }

  .flip .card__back .card__bottom {
    animation: flipBottom 0.45s cubic-bezier(0.35, 0.05, 0.7, 0.35) 0.225s forwards;
    z-index: 1;
  }

  .card {
    backface-visibility: hidden;
    transform-style: preserve-3d;
    transform: translateZ(0);
  }

  .card__back {
    transform: translateZ(1px);
  }
}

@media (max-width: 767.98px) {
  .tooltip {
    display: none !important;
  }
}

.executive-committee {
  background-color: #eee !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 767.98px) {
  .executive-commitee {
    margin: 10px !important;
  }
}

.org-chart {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.org-chart .level {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
}

.org-box {
  background: #fff;
  width: 250px;
  height: auto;
  display: flex;
  align-items: center;
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border: 1px solid #ccc;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  position: relative;
}

.org-box .row {
  height: 100%;
  width: 100%;
  flex-wrap: nowrap;
  margin: 0;
}

.org-box img {
  width: 58px;
  height: 58px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  position: absolute;
  z-index: 1;
}

.org-box img:hover {
  animation: wobbleImage 1.5s ease-in-out;
}

@keyframes wobbleImage {
  0% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(2deg);
  }

  50% {
    transform: rotate(-2deg);
  }

  75% {
    transform: rotate(3deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

.pink-border {
  border: 2px solid #e83e8c;
}

.purple-border {
  border: 2px solid #6f42c1;
}

.green-border {
  border: 2px solid #28a745;
}

.blue-border {
  border: 2px solid #007bff;
}

.org-details .name {
  font-size: 13px;
  padding: 8px 8px 8px 75px;
  color: #fff;
  display: inline-block;
  margin-bottom: 2px;
  line-height: 1;
  width: 100%;
  margin-left: -74px;
  position: relative;
  width: 330px;
  font-weight: 700;
}

.org-details .role {
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  padding: 8px;
  margin-left: -7px;
}

.blue {
  background-color: #007bff;
}

.green {
  background-color: #28a745;
}

.red {
  background-color: #dc3545;
}

.orange {
  background-color: #fd7e14;
}

.purple {
  background-color: #6f42c1;
}

.indigo {
  background-color: #6610f2;
}

.teal {
  background-color: #20c997;
}

.pink {
  background-color: #e83e8c;
}

.dark-blue {
  background-color: #0056b3;
}

.abstract {
  width: 100%;
  height: auto;
  overflow: hidden;
  padding-bottom: 40px;
}

.abstract-skewed-wrapper {
  position: relative;
  background-color: #eee;
  overflow: hidden;
  margin-bottom: -40px;
  padding: 0px 0px 20px 0px;
}

.abstract-inner {
  transform: skewY(3deg);
  padding: 0px 0px 30px 0px;
}

.abstract-inner>* {
  transform: skewY(-3deg);
}

.abstract-wrapper {
  transform: skewY(-3deg);
  background-color: #336600;
  overflow: hidden;
}

.abstract-guidelines {
  transform: skewY(3deg);
  padding: 50px 0;
  color: white;
  background-color: #336600;
}

.abstract-guidelines h2 {
  color: white !important;
  text-align: center;
}

.abstract-guidelines p {
  color: rgb(243, 239, 239) !important;
  text-align: justify;
}

.abstract-guidelines h4 {
  color:#eec305 !important;
  margin-top: 30px;
}

.abstract-sub {
  transform: skewY(-3deg);
  background-color: #336600;
  overflow: hidden;
}

.abstract-submit {
  transform: skewY(3deg);
  padding: 50px 0;
  color: white;
  background-color: #336600;
}

.abstract-submit h2 {
  color: white !important;
  text-align: center;
}

.abstract-submit ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  line-height: 1.9;
}

.abstract-submit ul li i {
  color: #66cc00;
  font-size: 25px;
  flex-shrink: 0;
  margin-top: -7px;
}

.registration {
  width: 100%;
  height: auto;
  overflow: hidden;
  background-color: #eee;
  padding-bottom: 40px;
}

.table-wrapper {
  border-radius: 8px;
  width: 100%;
  overflow: hidden;
}

.table-wrapper.sponstable {
  border-radius: 8px;
  width: 50%;
  overflow: hidden;
}

.table {
  border-radius: 8px;
}

.table-responsive {
  border-radius: 8px;
}

.table thead th {
  background-color: #336600;
  color: white;
  text-align: center;
  font-weight: bold;
  vertical-align: middle;
}

.table td,
.table th {
  vertical-align: middle;
  text-align: center;
}

.note {
  font-size: 0.9rem;
  margin-top: 0.5rem;
  font-style: italic;
}

.register-icon {
  width: 100px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.register-box {
  display: inline-block;
  text-align: center;
  background-color: white;
  padding: 20px;
  border-radius: 8px;
}

.register-box span {
  color: black;
  margin-top: 20px;
}

@media (max-width: 991.98px) {
  .registration h1 {
    font-size: 25px !important;
  }

  .mobile-pricing {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .pricing-card {
    border: 2px solid #336600;
    border-radius: 8px;
    overflow: hidden;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  .pricing-header {
    background-color: #336600 !important;
    text-align: center;
    padding: 12px !important;
  }

  .pricing-header h5 {
    margin: 0;
    color: white;
    font-weight: bold;
  }

  .pricing-body {
    padding: 0 !important;
  }

  .pricing-row {
    padding: 12px 16px !important;
    border-bottom: 1px solid #dee2e6 !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    font-weight: 500;
    position: relative;
  }

  .pricing-row:last-child {
    border-bottom: none !important;
  }

  .pricing-row:nth-child(even) {
    background-color: #f8f9fa;
  }

  .pricing-row::after {
    content: '';
    position: absolute;
    right: 30%;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #dee2e6;
  }

  .pricing-row span:first-child {
    flex: 1;
    text-align: left;
    padding-right: 15px;
  }

  .pricing-row span:last-child {
    flex: 1 0 25%;
    text-align: right;
    padding-left: 15px;
    font-weight: 600;
    color: #336600;
  }
}

@media (max-width: 576px) {
  .pricing-header h5 {
    font-size: 1rem;
  }

  .pricing-row {
    font-size: 0.9rem;
    padding: 10px 10px !important;
  }
}

.organising-committee {
  background-color: #eee;
  padding-bottom: 40px;
}

.organisation-box {
  position: relative;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform 0.3s ease;
  background: white;
  overflow: hidden;
}

.organisation-box.blue {
  border-bottom: 5px solid #0d6efd;
}

.organisation-box.teal {
  border-bottom: 5px solid #20c997;
}

.organisation-box.pink {
  border-bottom: 5px solid #e61796;
}

.organisation-box.purple {
  border-bottom: 5px solid #6f42c1;
}

.organisation-box.green {
  border-bottom: 5px solid #f57308;
}

.organisation-box.orange {
  border-bottom: 5px solid #b906b9;
}

.organisation-box.yellow {
  background-color: 5px solid #eec305;
}

.organisation-box:hover {
  transform: translateY(-4px);
}

.org-img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
}

.org-content h5,
.org-content h6 {
  margin: 0;
  font-weight: 600;
}

.organising-committee h3 {
  position: relative;
  display: table;
  padding-bottom: 10px;
  margin: 0 auto;
  color: black;
}

.organising-committee h3::after {
  content: "";
  display: block;
  width: 80px;
  height: 5px;
  margin: 6px auto 0 auto;
  border-radius: 1px;
}

h3.orangecolor::after {
  background-color: #b906b9;
}

h3.tealcolor::after {
  background-color: #20c997;
}

h3.purplecolor::after {
  background-color: #6f42c1;
}

h3.greencolor::after {
  background-color: #f57308;
}

h3.pinkcolor::after {
  background-color: #e61796;
}

h3.bluecolor::after {
  background-color: #0d6efd;
}

.org-content p {
  font-size: 0.9rem;
  color: #555;
  margin-top: 4px;
  margin-bottom: 0;
  text-align: left;
}

.org-content h6 {
  text-align: left;
}

@media (max-width: 767.98px) {
  .org-content p {

    text-align: center;
  }

  .org-content h6 {
    text-align: center;
  }

  .organisation-box {
    display: flex;
    justify-content: center;
    margin: 0px 20px;
  }

  .organisation-box img {
    margin-bottom: 8px;
  }

  .organisation-box .org-content {
    align-items: center;
  }

  .scientific img {
    height: 400px !important;
  }
}

.scientific-program {
  width: 100%;
  overflow: hidden;
  background-color: #eee;
}

.scientific img {
  height: 500px;
  border-radius: 8px;
}

.scientific {
  background-color: #eee;
  padding-bottom: 40px;
}

.scientific-pdf {
  width: 100%;
  overflow: hidden;
  background-color: #eee;
}

.download-cta {
  background-color: #b906b9;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.download-icon {
  width: 24px;
  height: 24px;
}

.download-wrapper {
  width: 100%;
}

.trac-sitemap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sitemap-section {
  background-color: #eee;
  padding-bottom: 40px;
}

.trac-site {
  position: relative;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 12px 16px;
  background: white;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
  border-bottom: 5px solid #336600;
  justify-content: center;
  width: 250px;
}

.trac-site:hover {
  transform: translateY(-3px);
  background-color: #336600;
  border-bottom: 5px solid white;
}

.trac-site:hover a {
  color: white;
}

.trac-site a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  width: 100%;
}

.trac-site i {
  font-size: 18px;
  color: #336600;
}

@media (max-width: 768px) {
  .trac-sitemap {
    align-items: center;
  }

  .download-icon {
    width: 50px;
    height: 50px;
  }
}

.disclaimer-section {
  width: 100%;
  overflow: hidden;
  background-color: #eee;
  padding-bottom: 20px;
}

.disclaimer-section p {
  margin-top: 20px;
  text-align: justify;
}

/* register icon home page */
/* .rotate-animation {
  animation: rotate 2s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
} */
.earth-rotate {
  animation: spinEarth 10s linear infinite;
  transform-origin: center center;
}

@keyframes spinEarth {
  from {
    transform: rotateY(0deg);
  }

  to {
    transform: rotateY(360deg);
  }
}

/* text color */
.text-green {
  color: var(--accent-color);
}

/* home page reg link */
.regscan {
  top: 35px;
  z-index: 1;
  width: 100%;
  padding: 10px 18px;
  background-color: #336600;
  border: 1px solid #336600;
  border-radius: 6px;
  font-size: 1rem;
}

.imgscan {
  left: 20px;
}

.scanqr {
  z-index: 2;
  display: block;
  width: 90%;
  /* max-width: 250px;
  margin: auto; */
}

.scnimg {
  background-color: #ffffff;
  padding: 10px;
  height: auto;
  border: 1px solid #cccccc;
  display: inline-block;
}

@media (max-width: 768px) {
  .regscan {
    top: 35px;
    left: 0;
    padding: 8px 14px;
    text-align: center;
  }

  .scanqr {
    left: 40px;
  }

  .scaner {
    padding: 12px;
  }

  .regicon {
    display: inline-block;
    width: 52px !important;
    height: 52px !important;
    background: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    transition: all 0.3s ease;
  }

  .table-wrapper.sponstable {
    width: 100%;
  }
}

@media (max-width: 1200px) {
  .regscan {
    top: 35px;
    left: 0;
    padding: 8px 14px;
    text-align: center;
  }

  .scanqr {
    left: 40px;
  }
}

@media (max-width: 576px) {
  .regscan {
    top: 35px;
  }

  .scanqr {
    left: 40px;
  }

  .scaner {
    padding: 12px;
  }

  .regicon {
    display: inline-block;
    width: 52px;
    height: 52px;
    background: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    transition: all 0.3s ease;
  }

  .table-wrapper.sponstable {
    width: 100%;
  }
}

.cursor-pointer {
  cursor: pointer !important;
}

.regicon {
  display: inline-block;
  width: 62px;
  height: 62px;
  background: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  transition: all 0.3s ease;
}

.text-justify{
  text-align: justify;
}



.error-page {
  background-color:white;
  display: flex;
  align-items: center;
  justify-content: center;
  width:100%;
}

.error-content {
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.error-title {
  font-size: 30px;
  font-weight: 600;
  color: #212529;
  animation: slideInRight 0.8s ease-out 0.4s both;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.error-description {
  font-size:18px;
  color: #6c757d;
  margin-bottom: 20px;
  animation: fadeIn 0.8s ease-out 0.6s both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.error-content img{
  object-fit: cover;
}
@media (max-width: 768px) {
  .error-title {
    font-size: 1.75rem;
  }

  .error-description {
    font-size: 1rem;
  }

  .btn-custom {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .error-title {
    font-size: 1.5rem;
  }

  .error-description {
    font-size: 0.95rem;
  }

  .btn-custom {
    padding: 10px 16px;
    font-size: 0.9rem;
  }
}
