/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  --color2: #457bcb;
  --primary-color: #f39c12;
  --secondary-color: #1a1a2e;
  --text-color: #444444;
  /* --dark-blue: #1e1b2e; */
  --bg-light: #f8f9fa;
  --dark-blue: radial-gradient(circle at center, #1a1a2e 0%, #0a0a0a 100%);
}

body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
  overflow-x: hidden;
}

a {
  color: #f19238;
  text-decoration: none;
}
a:hover {
  color: #fc8129;
  text-decoration: none;
}

a:link,
a:visited,
a:hover,
a:active,
a:focus {
  text-decoration: none;
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
}

.highlight {
  color: var(--color2) !important;
}

.text-justify {
  text-align: justify;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  /* bottom: 15px; */
  bottom: 60px;
  z-index: 996;
  background: #f19238;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #fc7c1f;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/* ****** CHAT ICON ****** */
.chat-icon {
  position: fixed;
  right: 15px;
  /* bottom: 70px; */
  bottom: 15px;
  z-index: 996;
  background: #fff;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  /* width: 40px;
  height: 40px; */
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* font-size: 20px; */
  /* transition: all 0.4s; */
  font-size: 14px;
  transition: all 0.4s;
  font-weight: 600;
  padding: 5px 10px;
}
/* .chat-box {
  position: fixed;
  right: 70px;
  bottom: 70px;
  max-width: 200px;
  z-index: 1;
  display: none;
} */
.chat-box {
  position: fixed;
  right: 120px;
  bottom: 20px;
  max-width: 200px;
  z-index: 99999;
  display: none;
}
.chat-box.active {
  display: block;
}
.chat-box-inner {
  padding: 10px;
  background-color: #fff;
  border-radius: 10px 10px 0 10px;
  margin-bottom: 10px;
  box-shadow: 0px 0px 5px 0px #bcbcbc;
  font-size: 14px;
  font-weight: 600;
}
.chat-box-inner a {
  display: inline-block;
  border: 2px solid #e63a6069;
  padding: 3px 8px;
  border-radius: 30px;
  margin-top: 5px;
  transition: 0.5s ease-in-out;
}
.chat-box-inner a:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}
.pop-in {
  opacity: 0;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-name: pop-in;
  animation-name: pop-in;
  -webkit-animation-duration: 0.2s;
  animation-duration: 0.2s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  transform-origin: right;
  height: 0;
  padding: 0;
}
.pop-in:nth-of-type(2) {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
.pop-in:nth-of-type(3) {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

@-webkit-keyframes pop-in {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
    padding: 10px;
    height: auto;
  }
}
@keyframes pop-in {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
    padding: 10px;
    height: auto;
  }
}
/* ****** // CHAT ICON ****** */

.column-count-2 {
  column-count: 2;
}

.column-count-3 {
  column-count: 3;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  /* height: 70px; */
  /* transition: all 0.5s; */
  /* padding: 10px 0; */
  z-index: 997;
  transition: all 0.5s;
  /* background: #f19238; */
  background: radial-gradient(circle at center, #1a1a2e 0%, #0a0a0a 100%);
  /*  box-shadow: 0px 0px 6px 0px #e5e1e1; */
  /* top: 43px; */
}

#header .d-flex {
  padding: 5px 0;
}

#header.header-transparent {
  /* background-color: #f19238;  */
  background: radial-gradient(circle at center, #1a1a2e 0%, #0a0a0a 100%);

  /* margin-top: -120px;
  box-shadow: none; */
}

#header.header-scrolled {
  margin-top: 0;
  box-shadow: 0px 0px 6px 0px #e5e1e1;
  /* position: fixed;
  top: 0; */
  /* background: #f19238; */
  background: radial-gradient(circle at center, #1a1a2e 0%, #0a0a0a 100%);
  /* background: rgba(255, 255, 255, 0.9); */
  /* margin-top: 0;
  box-shadow: 0px 0px 6px 0px #e5e1e1; */
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 95px;
}

#header.header-scrolled .header-top-container {
  display: none;
}

#header .logo{
    min-width: 97px;
}

/* Base container styling matching the navy tone from the banner */
.header-top-container {
  background: #1a1a2e;
  /* Dark Navy tone from ATMS banner */
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  color: #fff;
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  position: relative;
  z-index: 1000;
}

.alert-label {
  letter-spacing: 1px;
  font-size: 0.85rem;
}

.flashing-text {
  font-size: 1.1rem;
  margin-left: 5px;
}

/* Specific styling for the date */
.final-date {
  background: #f39c12;
  /* Brand Orange from ATMS banner */
  margin-left: 3px;
}

/* Defining the core flashing animation */
@keyframes attentionFlash {
  0% {
    opacity: 1;
  }

  40% {
    opacity: 0;
  }

  50% {
    opacity: 0;
  }

  /* Slight delay while off */
  90% {
    opacity: 1;
  }

  100% {
    opacity: 1;
  }
}

/* Applying the animation */
.flashing-text {
  animation-name: attentionFlash;
  animation-duration: 2.2s;
  /* Gentle but noticeable flash */
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.4, 0, 0.6, 1);
}

.view-details a {
  font-size: 0.9rem;
  transition: opacity 0.3s;
}

.view-details a:hover {
  opacity: 0.8;
}

/* Bootstrap specific text utility for font weight */
.fw-extrabold {
  font-weight: 800;
}

/* Responsive adjustment for small screens */
@media (max-width: 768px) {
  .flashing-text {
    font-size: 0.9rem;
  }

  .final-date {
    padding: 0 5px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* padding: 5px 15px 7px 15px; */
  padding: 5px 6px 7px 6px;
  /* margin-left: 45px; */
  margin-left: 8px;
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
  transition: 0.3s;
  border-radius: 50px;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  background: #f19238;
  color: white;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 5px;
  top: calc(100% + 30px);
  margin: 5px 0 0 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 15px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  color: black;
  margin: 0 5px;
  font-size: 14px;
}
.navbar .dropdown ul a.active {
  color: #ffffff;
  background: #f19238;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: #fff;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.c-bg-parallax {
  background-image: url("../img/home/abstract-bg.jpg");
  background-attachment: fixed;
  background-position: center center;
  background-size: cover;
  background-color: transparent;
  min-height: 100%;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: var(--primary-color);
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

/* @media (max-width: 991px) { */
@media (max-width: 1199.98px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(20, 21, 28, 0.9);
  transition: 0.3s;
  z-index: 9999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  margin: 5px;
  font-size: 15px;
  color: #2a2c39;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #fff;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: #fff;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

.cont {
  position: relative;
  margin: auto;

  overflow: hidden;
  width: 573px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 0;
  margin-top: 155px;
  /* margin-top: 50px; */
}
#hero .hero-image {
  /* min-height: calc(100vh - 130px); */
  object-fit: cover;
  object-position: left;
}

#hero h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
}

#hero p {
  width: 80%;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #fff;
}

#heroCarousel .carousel-item {
  transition: transform 2s ease-in-out;
}
#heroCarousel .carousel-control-next-icon,
#heroCarousel .carousel-control-prev-icon {
  background-color: #f19238;
  background-size: 20px 20px;
  border-radius: 3px;
}
#heroCarousel .carousel-inner {
  min-height: 400px;
  background: #eaeaea;
}

@media (min-width: 1024px) {
  #hero p {
    width: 60%;
  }
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
}

/* ======== MARQUEE ========== */
marquee {
  padding: 10px;
  /* background-color: #f19238; */
  color: white;
  font-size: 17px;
  background-color: #f19238;
}

/* ========= Waves Design =========== */
.hero-waves {
  display: block;
  width: 100%;
  height: 60px;
  position: absolute;
  bottom: 0;
  left: 0;
  /* position: relative; */
}
.wave1 use {
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
}

.wave2 use {
  animation: move-forever2 8s linear infinite;
  animation-delay: -2s;
}

.wave3 use {
  animation: move-forever3 6s linear infinite;
  animation-delay: -2s;
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

/* ========= // Waves Design =========== */

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 30px 0;
  overflow: hidden;
}

/* Heading */
.text-gradient {
  background: linear-gradient(to right, var(--primary-color), #e67e22);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* letter-spacing: 2px; */
}
.text-navy {
  background: var(--dark-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-orange {
  color: var(--primary-color);
}

.section-title {
  /* padding-bottom: 40px; */
  font-size: 40px;
  font-weight: 600;
}
.section-title + .line {
  display: block;
  width: 48px;
  height: 3px;
  background: linear-gradient(to right, var(--primary-color), #e67e22);
  border-radius: 3px;
  margin-bottom: 1.25rem;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #2a2c39;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

#about h2 {
  font-size: 30px;
}
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-left: 28px;
  position: relative;
}

.about .content ul li + li {
  margin-top: 10px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #f19238;
  line-height: 1;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .btn-learn-more {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 5px;
  transition: 0.3s;
  line-height: 1;
  color: #f19238;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #f19238;
}

.about .content .btn-learn-more:hover {
  background: #f19238;
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------------------
# About Conference
--------------------------------------------------------------*/
.about-conf .bottom-content p {
  /* text-align: justify;
  padding: 20px; */
}

.about-conf p {
  text-align: justify;
}

.about-conf h2 {
  font-size: 30px;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: #f8f9fa;
  padding: 55px 0;
}

.cta.cta-index2 {
  background: #f19238;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  /* text-transform: uppercase; */
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  background: #f19238;
}

.cta .cta-btn:hover {
  background: var(--secondary-color);
  color: #ffffff;
}

/* Buttons */
.btn-default {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  background: #f19238;
  border: 2px solid #f19238;
}
.btn-default:hover {
  background: #fff;
  color: #f19238;
  border-color: #f19238;
}
.btn-default.btn2 {
  background: var(--color2);
  border: 2px solid var(--color2);
}
.btn-default.btn2:hover {
  background: #fff;
  color: var(--color2);
  border-color: var(--color2);
}

/* ****** BUTTONS GROUP SECTION ******** */
#cta .section-title {
  /* font-weight: 600; */
}
#cta .cta-btn {
  display: flex;
  align-items: center;
  justify-content: start;
  height: 100%;
  padding: 8px 30px;
  font-size: 18px;
  border-radius: 0 15px;
  text-align: left;
  letter-spacing: 0.5px;
  margin: 0;
  position: relative;
}
#cta .row > * {
  margin-bottom: 20px;
}
#cta .num {
  position: absolute;
  font-family: "Open Sans";
  top: -18px;
  left: -15px;
  color: #fff;
  background: var(--primary-color);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

/* ------------------------------------------------------------
# Speaker
--------------------------------------------------------------*/
.speaker-section {
  padding: 80px 0;
}
.speaker-container {
  box-shadow: 0px 0px 10px 0px #e3e3e3;
  border-radius: 10px;
  overflow: hidden;
}
.speaker-section .content {
  padding: 20px 25px 20px 0;
}
.speaker-section .image {
  height: 100%;
}
.speaker-section .image img {
  height: 100%;
  object-fit: cover;
}
.speaker-section .content p {
  text-align: justify;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  color: #f19238;
  float: left;
  width: 44px;
  height: 44px;
  background: #ffecde;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #2a2c39;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #555974;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #f19238;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
  background: #f19238;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #fc8129;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  margin-top: 70px;
  background: #f7f8f9;
  min-height: 40px;
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
  margin: 0;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

@media (max-width: 992px) {
  .breadcrumbs ol {
    margin-top: 10px;
  }
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #404356;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  /* background: #14151c;
	color: #fff; */
  /* background: #ebebeb; */
  background: var(--secondary-color);
  color: #ffffff;
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
}

#footer .footer-title {
  font-size: 40px;
  margin-top: 30px;
}

#footer h3 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  position: relative;
  font-family: "Poppins", sans-serif;
  padding: 0;
  margin: 0 0 15px 0;
}

#footer p {
  font-size: 15;
  font-style: italic;
  padding: 0;
  margin: 0 0 40px 0;
}

#footer .social-links {
  margin: 0 0 40px 0;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #f19238;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #bd5102;
  color: #fff;
  text-decoration: none;
}

#footer .copyright {
  margin: 0 0 5px 0;
}

#footer .credits {
  font-size: 13px;
}

/* Footer media partners */
#footer .sponsor-logos {
  margin: 30px 0 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ccc;
}

#footer .footer-logo-item {
  margin: 0 10px;
  text-align: center;
}

#footer .footer-logo-item a img {
  width: 180px;
  height: 80px;
  object-fit: contain;
  background: #fff;
  border: 1px solid #fff;
  transition: 0.5s ease-in-out;
}

#footer .footer-logo-item a:hover img {
  border-color: var(--primary-color);
}

#footer .footer-logo-item p {
  font-size: 15px;
  font-style: normal;
  color: #f19238;
  font-weight: 600;
  margin: 10px 0 0;
}

/* //Footer media partners */

.slick-track * {
  outline: none;
}

.property-wrapper {
  /* text-align: center; */
  padding-bottom: 45px;
}

.property-container {
  padding: 50px 0 0;
  /* background-color: #ebebeb; */
  position: relative;
  /* height:350px; */
}

.property-container p {
  text-align: justify;
}

.hero-waves .wave1 use {
  fill: #1a1a2e69;
}
.hero-waves .wave2 use {
  fill: #1a1a2e4f;
}
.hero-waves .wave3 use {
  fill: var(--secondary-color);
}

.sponsor-section {
  text-align: center;
  padding: 50px 20px;
  background: #6b789b;
}
.sponsor-section h2 {
  font-size: 30px;
}
.sponsor-section h2,
.sponsor-section h4 {
  color: #fff;
}

.logo-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.logo-item {
  /* background: linear-gradient(145deg, #ffffff, #e6e6e6); */
  background: linear-gradient(145deg, #e6e6e6d4, #e6e6e6);
  /* box-shadow: 5px 5px 10px #cccccc, -5px -5px 10px #ffffff; */
  margin: 10px;
  padding: 20px;
  border-radius: 10px;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.logo-item:hover {
  transform: translateY(-10px);
  /* box-shadow: 5px 5px 20px #cccccc, -5px -5px 20px #ffffff; */
}

.logo-item img {
  width: 200px;
  height: 112px;
  object-fit: contain;
  filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s;
}
#mediaPartners + .partners-section .logo-item img {
  filter: none;
}

.mediaPartner-container h2.text-uppercase {
  font-size: 30px;
}
.partners-section .row > .col-md-6:nth-child(2) .mediaPartner-container {
  border-left: 1px solid #5a6890;
}

.logo-item:hover img {
  transform: rotate(5deg) scale(1.05);
}

.partners-section {
  /* background: #fff6ef; */
  background: #f19238;
  padding: 50px 0;
}
.partners-section h2 {
  color: #fff;
  font-size: 30px;
}
.partners-section .logo-item {
  background: #fff;
  box-shadow: none;
  /* box-shadow: -5px 0px 25px #ebe2db, -5px -5px 10px #ffffff; */
}
.partners-section .logo-item:hover {
  /* box-shadow: 5px 5px 20px #cccccc, -5px -5px 20px #ffffff; */
  box-shadow:
    5px 5px 0px #cccccc,
    0px 0px 5px #ffffff;
}

@media (max-width: 767px) {
  .quote-icon-left,
  .quote-icon-right {
    font-size: 20px;
  }
}

.main-gallery-wrapper {
  box-sizing: border-box;
  /* background-color: rgb(24, 27, 30); */
  color: #fff;
  /* font-size: 62.5%; */
  font-size: 10px;
  display: grid;
  place-items: center;
  /* min-height: 100vh; */
  min-height: 30rem;
}

#galleryCarousel {
  position: relative;
  font-size: 1rem;
}

#galleryCarousel .carousel__item {
  position: relative;
  height: 28rem;
  width: 20rem;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 1rem 2rem #0000004a;
  position: absolute;
  transform: translate(-50%, -50%) scale(0.1);
  z-index: 0;
  transition: all 0.2s linear;
}

#galleryCarousel .carousel__item img {
  width: 100%;
  min-height: 100%;
  object-fit: cover;
}

#galleryCarousel .carousel__item--main {
  transform: translate(-50%, -50%) scale(1);
  z-index: 2;
  cursor: pointer;
}

#galleryCarousel .carousel__item--left {
  transform: translate(-110%, -50%) scale(0.9);
  z-index: 1;
}

#galleryCarousel .carousel__item--right {
  transform: translate(10%, -50%) scale(0.9);
  z-index: 1;
}

#galleryCarousel .carousel__item--left img,
.carousel__item--right img {
  filter: grayscale(80%);
}

#galleryCarousel .carousel__item--right:hover {
  transform: translate(10%, -50%) scale(1.2);
  z-index: 3;
  cursor: pointer;
}

#galleryCarousel .carousel__item--left:hover {
  transform: translate(-110%, -50%) scale(1.2);
  z-index: 3;
  cursor: pointer;
}

#galleryCarousel .carousel__item--main:hover {
  transform: translate(-50%, -50%) scale(1.2);
}

#galleryCarousel .carousel__item:hover > .carousel__text {
  opacity: 1;
}

#galleryCarousel .carousel__item:hover img {
  filter: grayscale(0%);
}

#galleryCarousel .carousel__text {
  position: absolute;
  bottom: 0;
  z-index: 4;
  opacity: 0;
  transition: opacity 0.2s;
  width: 100%;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 2rem 1rem;
  color: #fff;
}

#galleryCarousel .carousel__btns {
  position: absolute;
  transform: translate(-50%, 18rem);
  display: flex;
  gap: 2rem;
  z-index: 9;
}

#galleryCarousel .carousel__btn {
  /* background-color: #f19238; */
  border: 1px solid #f19238;
  background-color: transparent;
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 50%;
  /* border:1px solid currentColor; */
  color: #f19238;
  /* color: #fff; */
  cursor: pointer;
  transition: 0.5s ease-in-out;
}

#galleryCarousel .carousel__btn svg {
  height: 1.2rem;
  width: 1.2rem;
}

#galleryCarousel .carousel__btn:hover {
  transform: scale(1.1);
}

/* ************ ISNT ************* */
.innerpage-banner {
  position: relative;
  /* background-color: #fff4ee; */
  background-color: #f8f9fa;
  margin-top: 145px;
  height: 350px;
  display: flex;
  align-items: center;
}
.sub-banner.innerpage-banner {
  height: auto;
  padding: 50px 0;
}
.sub-banner.innerpage-banner .breadcrumb {
  width: max-content;
  margin: auto;
}
.sub-banner .ele2 {
  position: absolute;
  left: 10%;
  bottom: 0;
}
.sub-banner .ele1 {
  position: absolute;
  right: 10%;
  top: 0;
}

.innerpage-banner .banner-ele {
  position: absolute;
  right: 0;
  top: 0;
}
.innerpage-banner .banner-title {
  color: var(--color2);
  font-size: 40px;
  font-weight: 600;
  font-family: "Raleway", sans-serif;
}
.innerpage-banner .banner-sub-title {
  color: var(--text-color);
  font-size: 18px;
  font-family: "Poppins", sans-serif;
}

.sec-padding {
  padding: 50px 0;
}

.sec-padding1 {
  padding: 30px 0;
}

.section-heading {
  font-size: 30px;
  font-weight: 600;
  color: var(--text-color);
  position: relative;
  width: max-content;
  margin: 0 auto 35px;
  font-family: "Raleway", sans-serif;
}
.section-heading::after {
  content: "";
  position: absolute;
  width: 50%;
  transform: translateX(-50%);
  height: 4px;
  bottom: -10px;
  left: 50%;
  max-width: 100px;
  background-color: var(--primary-color);
}
.section-heading.text-left {
  margin-left: 0;
}
.section-heading.text-left::after {
  left: 0;
  transform: none;
}
.section-heading .sub-text {
  color: var(--primary-color);
  font-family: "Raleway", sans-serif;
}
.section-heading .main {
  font-size: 48px;
  font-weight: 700;
  color: #f19238;
  font-family: "Poppins", sans-serif;
}
.section-heading.sub-heading .main {
  font-size: 30px;
}
h3.section-heading.sub-heading {
  font-size: 28px;
}

/* about isnt */
.about-isnt .sec-img {
  padding-right: 50px;
}
.about-isnt .sec-img img {
  border-radius: 10px;
  box-shadow: 0px 0px 20px 0px #0000002b;
}
.about-isnt .more-content {
  background-image: url("../img/isnt/about-bg.jpg");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px 0;
  color: #ffffff;
  margin-top: 50px;
  position: relative;
  z-index: 1;
}
#aboutISNT .more-content::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #041a5770;
  z-index: -1;
}
.about-isnt p {
  font-size: 15px;
  text-align: justify;
  font-family: "Poppins", sans-serif;
}

.about-isnt .read-more {
  font-size: 18px;
  font-weight: 500;
  color: var(--primary-color);
  font-family: "Poppins", sans-serif;
}

.about-isnt .read-more i {
  vertical-align: middle;
}

.about-isnt .more-info-section p {
  color: #021347;
  font-family: "Poppins", sans-serif;
  font-size: 35px;
  margin: 0;
  padding: 50px 0;
  text-align: center;
}

/* ICNDT */
#icndt_section .sec-img {
  padding-right: 0;
  margin-top: 120px;
}
#icndt_section .sec-img img,
#visaSection .sec-img img {
  box-shadow: none;
}
#icndt_section .more-content {
  background-image: url("../img/bg-image1.png");
  color: var(--text-color);
  padding-top: 40px;
  margin-top: 20px;
}
#icndt_section .more-content p {
  position: relative;
  z-index: 1;
}
.moving-element {
  position: absolute;
  left: 6%;
  top: 460px;
  animation: topBottom 30s ease-in-out infinite;
}
@keyframes topBottom {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-50px);
  }
  50% {
    transform: translateY(50px);
  }
  75% {
    transform: translateY(-50px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Message Section */
.message-section .inner-box {
  box-shadow: 0px 0px 10px 0px #ccc;
  border-radius: 20px;
  overflow: hidden;
  padding: 30px 60px 0 0;
}
.message-section p {
  text-align: justify;
}
.message-section .content {
  padding-left: 50px;
}
.message-section .more-content {
  padding: 20px 0px 30px 60px;
}
.message-section .icndt-logo {
  max-width: 340px;
  float: right;
  margin-right: -25px;
  margin-top: -25px;
  padding: 0 0 10px 25px;
}

/* ********* Organising Committees ********* */
.organising-committees {
  padding-bottom: 30px;
}
.committee-div {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0px 0px 10px 0px #ccc;
  padding: 15px;
  text-align: center;
  font-family: "Poppins", sans-serif;
  height: 100%;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.committee-div .heading {
  display: block;
  width: 90%;
  margin: -35px auto 0;
  border-radius: 50px;
  padding: 10px;
  background-color: #f19238;
  color: #ffffff;
}
.committee-div .name {
  /* font-size: 20px;
    font-weight: 500;
    color: var(--text-color); */
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  margin: 25px 0 20px;
}
.committee-div .desg {
  font-size: 15px;
}
.committee-row2.bg-image {
  background-image: url("../img/bg-image1.png");
  background-attachment: fixed;
}
.committee-row2 .section-heading {
  margin-bottom: 60px;
}
.committee-row2 .committee-div {
  /* padding: 25px 15px; */
  position: relative;
  overflow: hidden;
}
.committee-row2 .committee-div::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 100%;
  left: 0;
  background-color: #f19238;
  transform: skewY(40deg);
}
.committee-row2 .committee-div .name {
  margin: 0 0 5px;
  /* color: var(--primary-color); */
}

/* ********* Past Conference *********** */
.past-conferences .conference-item {
  /* display: flex;
    align-items: center;
    gap: 20px; */
  position: relative;
}
.past-conferences .conference-image img {
  max-height: 300px;
  border-radius: 10px;
  /* box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%); */
}
.conference-item.left {
  margin-top: 40%;
}
.year-count {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  background: var(--color2);
  color: #fff;
  display: inline-block;
  padding: 3px 7px;
  border-radius: 32px;
  font-size: 14px;
}
.year-count::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  background-color: #ffffff;
  border: 3px solid var(--color2);
}
.left .year-count {
  right: -20%;
}
.right .year-count {
  left: -20%;
}
.left .year-count::before {
  right: -30%;
}
.right .year-count::before {
  left: -30%;
}
.separator {
  width: 1px;
  height: 100%;
  border: 1px dashed var(--color2);
  margin: auto;
}

/* Keydates Speaker */
.keydates-wrapper {
  font-family: "Poppins", sans-serif;
}
.keydates-wrapper .date {
  font-weight: 500;
  /* background: #F7F7F7;
    color: var(--text-color); */
  padding: 12px 20px;
  height: 100%;
  border-radius: 8px;
  background: #f19238;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.keydate-item {
  border: 1px solid #dddddd;
  padding: 12px 10px;
  border-radius: 8px;
  display: flex;
  gap: 10px;
  font-weight: 500;
}
.keydate-item:not(:last-child) {
  margin-bottom: 10px;
}
.keydate-item:hover {
  background-color: #fff;
  color: black;
  box-shadow:
    #ffffff -1px 1px,
    #ededed -2px 2px,
    #ededed -3px 3px,
    #dddddd -4px 4px,
    #ededed -5px 5px,
    #dddddd -6px 6px;
  transform: translate3d(6px, -6px, 0);
  transition-delay: 0s;
  transition-duration: 0.4s;
  transition-property: all;
  transition-timing-function: ease-in-out;
}
.keydate-item .bg {
  display: inline-block;
  width: 3px;
  transform: skewY(38deg);
}
.keydate-item .bg-1 {
  background-color: var(--primary-color);
}
.keydate-item .bg-2 {
  background-color: #f19238;
}
.keydate-item .bg-3 {
  background-color: var(--color2);
}
.keydates-wrapper:not(:last-child) {
  margin-bottom: 35px;
}

/* Fixed Sidebar */
.fixed-sidebar {
  position: fixed;
  z-index: 9;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.fixed-sidebar span {
  position: absolute;
  width: 125px;
  background: inherit;
  z-index: 9;
  left: 0;
  opacity: 0;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  padding: 3px 0px;
  border-radius: 4px;
  z-index: -1;
  transition: 0.5s ease-in-out;
}
.fixed-sidebar a:hover > span {
  left: -132px;
  opacity: 1;
}
.fixed-sidebar a {
  display: block;
  position: relative;
  color: #fff;
  padding: 10px;
  font-size: 14px;
  transition: 0.5s ease-in-out;
}
.fixed-sidebar a:hover {
  /* border-radius: 40px; */
  /* background-color: #fff;
	color: #f19238; */
}
.fixed-sidebar a img {
  width: 30px;
}
.fixed-sidebar a:nth-child(1) {
  background-color: #1e2c32;
}
.fixed-sidebar a:nth-child(2) {
  background-color: #264653;
}
.fixed-sidebar a:nth-child(3) {
  background-color: #2a9d8f;
}
.fixed-sidebar a:nth-child(4) {
  background-color: #e9c46a;
}
.fixed-sidebar a:nth-child(5) {
  background-color: #f4a261;
}
/* ********** Speaker *********** */
.team-area {
  position: relative;
  overflow: hidden;
  padding: 50px 0;
}

.team-item {
  border-radius: 15px;
  margin-bottom: 65px;
  box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
  position: relative;
  z-index: 1;
  background: #eaeaea;
  transition: all 0.5s ease-in-out;
}

.team-item:hover {
  transform: translateY(-10px);
}

.team-item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #ebebeb;
  top: 0;
  left: 0;
  border-radius: 15px;
  z-index: -1;
  transition: 0.5s ease-in-out;
}

.team-item:hover::after {
  top: -10px;
  left: 10px;
}

.team-item img {
  border-radius: 10px;
  width: 100%;
  height: auto;
}

.team-content {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: -35px;
  background: #fff;
  border-radius: 10px;
  padding: 1px 10px 1px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
}

.team-content i {
  width: 45px;
  height: 45px;
  line-height: 45px;
  background: #f19238;
  text-align: center;
  color: #fff;
  border-radius: 50px;
  transition: all 0.5s ease-in-out;
}

.team-item:hover .team-content i {
  background: #10539a;
}

.team-bio {
  padding-top: 15px;
  padding-bottom: 10px;
}

.team-bio h5 {
  font-size: 22px;
  margin-bottom: 0;
}

.team-bio h5 a:hover {
  color: #f19238;
}

.team-bio span {
  text-transform: capitalize;
  font-size: 15px;
  /* color: #f19238; */
  /* font-weight: 500; */
  font-weight: 600;
}

.team-social {
  position: absolute;
  margin-bottom: 10px;
  background: #f19238;
  padding: 20px 0;
  border-radius: 50px;
  text-align: center;
  bottom: 80px;
  right: -20px;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.team-item:hover .team-social {
  opacity: 1;
  right: 20px;
}

.team-social a {
  display: block;
  color: #fff;
  padding: 4px 15px;
}

.team-social a:hover {
  background: #fff;
  color: #f19238;
}

/* ******** Speaker Modal********* */
.speaker-modal .speaker-img {
  width: 130px;
  float: left;
  margin-right: 30px;
  position: relative;
  z-index: 1;
}
.speaker-modal .speaker-img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #f19238;
  top: 5px;
  right: -5px;
  border-radius: 10px;
  z-index: -1;
}
.speaker-modal .speaker-img img {
  border-radius: 10px;
}
.speaker-modal .modal-title {
  font-size: 20px;
  font-weight: 600;
  margin: 0 45px 0 30px;
}
.speaker-modal .modal-content {
  padding: 15px 0;
  border-top: 5px solid var(--color2);
}
.speaker-modal .modal-body {
  padding: 20px 30px;
}
.speaker-modal .sub-heading {
  font-family: "Dancing Script", cursive;
  color: var(--primary-color);
  font-size: 22px;
  margin-bottom: 4px;
}
.speaker-modal .btn-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #c1c1c1;
  opacity: 1;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: #fff;
  z-index: 1;
  font-size: 12px;
}

/* *********** Agenda ********** */
.agenda-div {
  font-family: "Poppins", sans-serif;
  box-shadow: 0px 0px 10px 0px #e3e3e3;
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
}
.agenda-date {
  background-color: #f19238;
  padding: 25px;
  border-bottom: 1px solid #e2e2e2;
  color: #ffffff;
  position: relative;
  display: grid;
  gap: 3px;
  justify-content: center;
  text-align: center;
  /* margin-bottom: 30px; */
}
.agenda-date::before {
  position: absolute;
  content: "";
  border-top: 15px solid #f19238;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  bottom: -15px;
  left: 50%;
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  opacity: 0;
}
.agenda-div .day-name {
  font-size: 25px;
  text-transform: uppercase;
  line-height: 1.2;
  font-weight: 600;
}
.agenda-div .date,
.agenda-div .weekday {
  font-size: 15px;
  text-transform: uppercase;
  line-height: 1.2;
}
.agenda-div .agenda-detail .time,
.agenda-div .agenda-detail .agenda-title {
  font-size: 14px;
  display: flex;
}
.agenda-div .agenda-detail .time {
  margin-bottom: 5px;
}
.agenda-div .agenda-detail i {
  font-size: 15px;
  margin-right: 10px;
  color: var(--primary-color);
}
.agenda-div .agenda-detail {
  padding: 18px;
}
.agenda-item:not(:last-child) {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #ccc;
}

.conference-details {
  box-shadow: 0px 0px 10px 0px #ccc;
  background: #f19238;
  color: #fff;
  padding: 30px;
  border-radius: 20px;
  margin-top: 50px;
}

/* ********* Call For Papers ********* */
.custom-list li {
  margin-bottom: 10px;
}
.custom-list > li {
  list-style-type: none;
}
.custom-list > li::before {
  content: "\eddb";
  font-family: boxicons !important;
  font-weight: 400;
  font-style: normal;
  /* color: var(--primary-color); */
  color: #f19238;
  margin-left: -30px;
  margin-right: 10px;
  position: absolute;
}

/* ************* Bengaluru ************/
.host-city-banner .glightbox {
  display: block;
  overflow: hidden;
  height: 100%;
}
.host-city-banner .glightbox img {
  transition: 0.8s ease-in-out;
}
.host-city-banner .glightbox:hover img {
  transform: scale(1.2);
}
.how-to-get-there .map iframe {
  width: 100%;
  border-radius: 15px;
}
.how-to-get-there .destination-guide {
  background-color: #f19238;
  color: #ffffff;
  padding: 30px 50px;
  margin: 60px 0 0 -60px;
  text-align: justify;
  border-radius: 15px;
  position: relative;
}
.in-around {
  /* margin-top: -45px; */
  text-align: justify;
  padding-bottom: 50px;
}
.in-around .section-heading {
  margin-bottom: 50px;
}
.in-around .inner-div {
  padding-top: 50px;
}
.in-around .inner-div h5 {
  font-weight: 600;
  color: #f19238;
}
.in-around .inner-div .col-md-6:nth-child(1) {
  border-right: 1px solid #cfcbcb;
}
.in-around .inner-div .col-md-6:nth-child(3) {
  border-right: 1px solid #cfcbcb;
  border-top: 1px solid #cfcbcb;
  padding-top: 20px;
  border-bottom: 1px solid #cfcbcb;
}
.in-around .inner-div .col-md-6:nth-child(4) {
  padding-top: 20px;
  border-top: 1px solid #cfcbcb;
  border-bottom: 1px solid #cfcbcb;
}
.in-around .inner-div .col-md-6:nth-child(5) {
  padding-top: 20px;
}

.things-to-do {
  background-color: #fff4ee;
}
.things-to-do .section-heading {
  margin-bottom: 50px;
}
.things-to-do .flex-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.things-to-do .flex-row > div {
  flex: 0 0 32%;
  box-shadow: 0px 0px 10px 0px #ccc;
  padding: 25px;
  border-radius: 10px;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: 60px;
  background-position: bottom right;
  transition: 0.5s ease-in-out;
}
.flex-row > div::before {
  /* content: '';
	position: absolute;
	width: 200px;
	height: 200px;
	border-radius: 50%;
	bottom: -100px;
	right: -100px;
	background-color: #ffffff;
	z-index: -1;
	transition: 0.5s ease-in-out; */
}
.things-to-do p {
  font-size: 14px;
  text-align: justify;
}
.things-to-do h5 {
  font-weight: 600;
  color: #f19238;
}
.things-to-do .flex-row > div:nth-child(1) {
  background-image: url(../img/icons/golf.png);
}
.things-to-do .flex-row > div:nth-child(2) {
  background-image: url(../img/icons/eating-out.png);
}
.things-to-do .flex-row > div:nth-child(3) {
  background-image: url(../img/icons/pub.png);
}
.things-to-do .flex-row > div:nth-child(4) {
  background-image: url(../img/icons/aayurved.png);
}
.things-to-do .flex-row > div:nth-child(5) {
  background-image: url(../img/icons/shopping.png);
}
.things-to-do .flex-row > div:hover {
  /* color: #ffffff; */
}
.flex-row > div:hover::before {
  /* background: #f19238;
	width: 100%;
	height: 100%; */
}

/* Excursion */
.excusrion {
  width: 80%;
  margin: auto;
}
.excusrion .custom-list li {
  margin-bottom: 20px;
}
.excusrion .section-heading {
  margin-bottom: 50px;
}

/* By road - train */
.road-rail-ways {
  background-image: url("../img/host-city/railways-bg.jpg");
  background-attachment: fixed;
  padding: 0;
  color: #ffffff;
  background-position: bottom right;
}
.road-rail-ways .overlay {
  background-color: #041a57eb;
}
.road-rail-ways .inner-div {
  padding-right: 15px;
  border-right: 1px solid #ffffff47;
}

/* Venue */
.venue .destination-guide i {
  font-size: 35px;
  margin-right: 15px;
  color: var(--primary-color);
}
.venue .venue-gallery {
  height: 100%;
  overflow: hidden;
  border-right: 3px solid #ffffff;
  border-bottom: 3px solid #ffffff;
}

.venue .venue-gallery img {
  transition: all ease-in-out 0.4s;
  height: 100%;
}

.venue .venue-gallery:hover img {
  transform: scale(1.1);
}
.venue .how-to-get-there .destination-guide p {
  text-align: left;
}
.venue .about-venue {
  text-align: justify;
}

/* Accomodation Page */
.how-to-get-there .img-container {
  height: calc(100% - 50px);
  /* height: 270px; */
  border-radius: 15px;
  overflow: hidden;
}
.how-to-get-there .img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.accommodation-section .custom-list > li::before {
  color: var(--primary-color);
}
#accommodationCarousel .carousel-item img {
  height: 350px;
  object-fit: cover;
  border-radius: 15px;
}
.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  background-color: var(--primary-color);
  border-radius: 50%;
}

.accommodation-section.alternate {
  background-color: #f8f9fa;
}
.alternate .how-to-get-there .destination-guide {
  margin-left: 0;
  margin-right: -60px;
}

/* ********* Custom Table ********** */
.custom-table {
  box-shadow: 0px 0px 20px 0px #dbdbdb;
  border-radius: 15px;
}
.custom-table .table {
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 0;
}
.custom-table .table > thead th {
  background: #f19238;
  color: #ffffff;
  text-align: center;
  vertical-align: middle;
  font-family: "Raleway", sans-serif;
}
.custom-table .table td {
  vertical-align: middle;
  text-align: center;
  font-size: 15px;
  /* font-family: 'Poppins', sans-serif;
	text-align: center; */
}
.custom-table .table-striped > tbody > tr:nth-of-type(odd) > * {
  --bs-table-color-type: var(--bs-table-striped-color);
  --bs-table-bg-type: #f3f4f9;
}
.custom-table .table tr:last-child td {
  border-bottom: 0;
}
.custom-table .table tr:last-child td:first-child {
  border-bottom-left-radius: 15px;
}
.custom-table .table tr:last-child td:last-child {
  border-bottom-right-radius: 15px;
}
/* .custom-table  .table tr td:last-child{
	text-align: left;
  } */
.custom-table .custom-list {
  margin-bottom: 0;
}
.custom-table .custom-list li::before {
  color: var(--primary-color);
}
.custom-table .custom-list li {
  margin-bottom: 5px;
}
.custom-table .table > :not(caption) > * > * {
  padding: 0.8rem 0.5rem;
}

/* ***** Exhibit Layout ****** */
.exhibit-layout .layout-div {
  box-shadow: 0px 0px 6px 0px #ccc;
}
.confirmed-exhibitors-sponsors {
  background-image: url(../img/bg-image1.png);
  background-attachment: fixed;
}
.confirmed-exhibitors-sponsors .heading-text {
  font-weight: 600;
  margin-bottom: 40px;
  color: var(--text-color);
}
.ces-table h4 {
  font-weight: 700;
  color: #f19238;
  margin-bottom: 30px;
  position: relative;
}
.ces-table h4::after {
  content: "";
  position: absolute;
  width: 50%;
  transform: translateX(-50%);
  height: 4px;
  bottom: -10px;
  left: 50%;
  max-width: 100px;
  background-color: var(--primary-color);
}

/* ****** Visa Information ***** */
#visaSection .moving-element {
  /* left: 95%; */
  top: 5%;
}

/* ********* Registration ********* */
.delegate-btns-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
  margin-bottom: 30px;
  text-align: center;
}
.delegate-btns-wrapper p {
  color: var(--text-color);
  margin: 10px 0 0;
  font-size: 16px;
  letter-spacing: 0.5px;
  font-weight: 600;
}
.registration-page .notes .custom-list li::before {
  content: "\ea41";
  font-size: 20px;
  font-weight: 800;
}

/* ************ Contact Us *********** */
.contactInfo .iconGroup {
  display: flex;
  /* align-items: center; */
  margin: 25px 0px;
}
.iconGroup .icon {
  width: 45px;
  height: 45px;
  min-width: 45px;
  border: 2px solid var(--primary-color);
  border-color: #fff;
  border-radius: 50%;
  margin-right: 20px;
  position: relative;
  margin-top: 3px;
}
.iconGroup .icon i {
  font-size: 20px;
  /* color: var(--primary-color); */
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.iconGroup .details span {
  display: block;
  /* color: var(--primary-color); */
  font-size: 18px;
}
.iconGroup .details b {
  /* text-transform: uppercase; */
  /* color: var(--primary-color); */
}
.contact-details {
  background-color: #f19238;
  color: #ffffff;
  padding: 50px;
}
.contact-details .details a {
  color: #fff;
  display: inline-block;
  position: relative;
  padding-right: 15px;
  margin-right: 5px;
  transition: 0.5s ease-in-out;
}
.contact-details .details a:hover {
  /* color: var(--primary-color); */
}
.contact-details .details a:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: 0;
  color: #ffffff;
}
.contact-us .map {
  height: 100%;
}
.contact-us .map iframe {
  height: 100%;
}
.contact-us .contact-wrapper {
  border-radius: 15px;
  overflow: hidden;
}

/* ***** Coming Soon ***** */
.coming-soon {
  min-height: calc(100vh - 250px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.coming-soon .moving-element {
  top: 50%;
}
.coming-soon .moving-element2 {
  position: absolute;
  right: 6%;
  top: 10%;
  animation: topBottom 30s ease-in-out infinite;
}
.coming-soon .text {
  font-size: 60px;
  font-weight: 800;
  text-align: center;
  color: var(--primary-color);
  letter-spacing: 8px;
  border-right: 5px solid;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  animation:
    typing 2s steps(10),
    cursor 0.4s step-end infinite alternate;
}
@keyframes cursor {
  50% {
    border-color: transparent;
  }
}
@keyframes typing {
  from {
    width: 0;
  }
}

.icnde-info {
  padding: 22px 0;
  background-color: var(--primary-color);
  color: white;
  font-size: 20px;
  margin-top: -8px;
}
.icnde-info h4 {
  /*font-size: 28px;*/
  /*margin-bottom: 0;*/
  font-size: 25px;
  line-height: 1.5;
  margin-top: 5px;
}
/* .icnde-info h4:nth-child(1), */
.icnde-info h4.text-black {
  color: #000101;
  font-weight: 600;
  font-size: 24px;
}
.icnde-info > * {
  animation: blinker 2s linear infinite;
}
@keyframes blinker {
  50% {
    opacity: 0;
  }
}

/* ********* Abstract List ************ */
.abstract-list .nav-pills {
  position: relative;
  border-radius: 8px;
  border: 1px solid #adc1de;
  margin-bottom: 40px;
  /* background-color: #ebebeb;
  box-shadow: 2px 4px 6px rgba(0, 42, 50, 0.1); */
}
.abstract-list .nav-pills .nav-link {
  width: 20%;
  z-index: 1;
  background: transparent;
  color: #f19238;
  font-weight: 600;
  font-size: 20px;
}
.abstract-list .nav-pills .nav-link.active {
  color: white;
}
.nav-tab-slider {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 3px;
  pointer-events: none;
  z-index: 0;
}
.nav-tab-slider .slider {
  width: 20%;
  height: 100%;
  background-color: #f19238;
  border-radius: 8px;
  transition: transform 0.4s;
  box-shadow: 1px 1px 3px rgba(0, 42, 50, 0.15);
}
.abstract-list table th {
  background-color: #f19238;
  color: #fff;
  font-weight: 500;
}
.abstract-list table th,
.abstract-list table td {
  vertical-align: middle;
  text-align: center;
  padding: 10px;
  font-family: "Poppins", sans-serif;
}
.abstract-list .table > tbody > tr > td,
.abstract-list th {
  border: 1px solid #ddd;
}

.accommodation-table .table {
  font-size: 15px;
}
.accommodation-table .abstract-list table th,
.accommodation-table .abstract-list table td {
  padding: 7px;
}

/*Sponsor closed*/
.sponsorship {
  background-color: #f8f9fa;
}
.sponsorship .closed-icon {
  position: absolute;
  width: 85%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.3;
  pointer-events: none;
}

/* ********* SHORT COURSE ************* */
.short-course-wrapper {
  text-align: center;
  background: #f19238;
  color: #fff;
  border-radius: 15px;
  padding: 50px 70px;
  width: 75%;
  margin: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.short-course-wrapper .element {
  position: absolute;
  z-index: -1;
}
.short-course-wrapper .element1 {
  left: 0;
  top: 30%;
  width: 55px;
}
.short-course-wrapper .element2 {
  left: -15px;
  bottom: 0;
  width: 165px;
}
.short-course-wrapper .element3 {
  right: 0;
  top: 0;
  width: 100px;
}
.short-course-wrapper .element4 {
  /* right: 10%; */
  right: -1%;
  bottom: 30%;
  width: 65px;
}
.short-course-wrapper .sub-heading,
.short-course-wrapper .sub-heading2,
.short-course-buttons .sub-heading,
.short-course-buttons .sub-heading2 {
  font-size: 28px;
  font-weight: 600;
}
.short-course-wrapper .sub-heading2,
.short-course-buttons .sub-heading2 {
  position: relative;
  width: max-content;
  margin: auto;
}
.short-course-buttons .sub-heading {
  font-size: 24px;
  height: 56px;
}
.short-course-wrapper .sub-heading2::before,
.short-course-wrapper .sub-heading2::after,
.short-course-buttons .sub-heading2::before,
.short-course-buttons .sub-heading2::after {
  content: "";
  position: absolute;
  width: 70px;
  height: 2px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--primary-color);
}
.short-course-wrapper .sub-heading2::before,
.short-course-buttons .sub-heading2::before {
  left: -85px;
}
.short-course-wrapper .sub-heading2::after,
.short-course-buttons .sub-heading2::after {
  right: -85px;
}
.short-course-wrapper .main-heading {
  font-size: 32px;
  font-weight: 500;
  opacity: 0.9;
}
.venue-time {
  width: max-content;
  margin: 20px auto;
  background: #fff4ee;
  color: var(--color2);
  padding: 10px;
  border-radius: 7px;
  font-weight: 600;
}
.short-course-sec .section-heading::after {
  display: none;
}
.short-course-sec .section-heading {
  margin-top: 50px;
  margin-bottom: 0;
}
.short-course-buttons {
  /* background-image: url('../img/bg-image-2.png'); */
  background: #f19238;
  min-height: calc(100vh - 500px);
  display: flex;
  align-items: center;
}
.short-course-buttons .btn-default {
  background-color: #fff;
  border-color: #fff;
  color: var(--primary-color);
  /* padding: 16px 50px;
  font-size: 16px;
  letter-spacing: 0px; */
}
.short-course-buttons .btn-default:hover,
.short-course-buttons .btn-default.active {
  border-color: var(--primary-color);
  background-color: var(--primary-color);
  color: #fff;
}
.short-course-buttons .delegate-btns-wrapper {
  gap: 40px;
}
.short-course-buttons .element1 {
  left: 0;
  top: 30%;
  width: 55px;
  position: absolute;
}
.short-course-buttons .element2 {
  right: -45px;
  bottom: 0;
  width: 165px;
  position: absolute;
  transform: rotateY(180deg);
}

/* Instructor */
.instructor-profile {
  background: #fff4ee;
  overflow: visible;
}
.instructor-profile .profile {
  margin-bottom: 15px;
  margin-top: -80px;
  position: relative;
  padding: 20px 0 0 20px;
}
.instructor-profile .profile::before,
.instructor-profile .profile::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--primary-color);
}
.instructor-profile .profile::before {
  width: calc(100% - 70px);
  height: 3px;
}
.instructor-profile .profile::after {
  width: 3px;
  height: calc(100% - 70px);
}
.instructor-profile .sub-title {
  font-size: 16px;
  padding: 0 15px;
  line-height: 1.5;
}
.instructor-profile .name {
  margin-bottom: 5px;
  font-size: 22px;
  font-weight: 600;
  color: #000;
}
.instructor-profile .social-icons i {
  font-size: 30px;
  color: #888585;
  transition: 0.5s ease-in-out;
}
.instructor-profile .social-icons a:hover i {
  color: var(--primary-color);
}
.instructor-profile .content {
  padding-left: 20px;
  text-align: justify;
}
.instructor-profile .title {
  font-size: 30px;
}

.instructor-section {
  background: #fff4ee;
}

.instructor-section .team-item {
  cursor: pointer;
}
.instructor-section .team-item img {
  border-radius: 10px 10px 0 0;
  height: 250px;
  object-fit: cover;
  object-position: top;
}

.instructor-section .team-content {
  left: 0;
  bottom: 0;
  border-radius: 0 0 10px 10px;
  width: 100%;
  position: relative;
}

.instructor-modal .instructor-profile .profile {
  padding: 10px 0 0 10px;
  margin-top: 0;
}
.instructor-modal .instructor-profile .name {
  font-size: 18px;
}
.instructor-modal .instructor-profile .social-icons i {
  font-size: 22px;
}
.speaker-modal.instructor-modal .modal-content {
  border: none;
}
.instructor-profile .content p {
  font-size: 15px;
}

/* ************ SPONSOR SECTION (Revised) *************** */
h2.text-uppercase {
  font-size: 36px;
  text-transform: uppercase;
}
.sponsorSection {
  /* background: #fbfcff; */
  background-color: #f4f7ff;
}
.sponsorSection h2 {
  font-size: 36px;
  text-transform: uppercase;
}
.sponsor-item {
  padding: 50px;
  margin-bottom: 50px;
  box-shadow: 5px 5px 10px 0px #ccc;
  height: calc(100% - 50px);
}
.sponsor-item.principal-group {
  background: #e4dcf3;
}
.sponsor-item.silver-group {
  background: #f8dbc8;
}
.sponsor-item.emerald-group {
  background-color: #a6d3a8;
}
.sponsor-item.ruby-group {
  background: #eecada;
}
.sponsor-item.gold-group {
  background: #f8ecc9;
}
.sponsorSection ul {
  font-size: 0;
  text-align: center;
}
.sponsorSection ul li {
  display: inline-block;
  position: relative;
  text-align: center;
  line-height: 15vw;
  margin: 2vw 0;
  height: 15vw;
  width: 15vw;
}
.sponsorSection .logos-wrapper {
  display: flex;
  gap: 35px;
  justify-content: center;
}
.sponsorSection .logo-div {
  /* width: 240px;
  padding: 25px; */
  width: 225px;
  padding: 15px 25px;
  display: flex;
  align-items: center;
  border-top: 10px solid;
  background-color: #ffffff;
  box-shadow: 2px 2px 15px 6px rgba(0, 0, 0, 0.06);
}
.sponsorSection .logo-div img {
  max-height: 105px;
  object-fit: contain;
}
.sponsorSection .logo-div.oms-logo {
  border-color: #ff6600;
  width: 285px;
  height: 165px;
  justify-content: center;
}
.sponsorSection .logo-div.ge-aerospace-logo {
  width: 270px;
  border-color: #00003d;
  padding: 15px 0px;
}
.sponsorSection .logo-div.mqs-logo {
  /* width: 275px; */
  border-color: #00a9e8;
}
.sponsorSection .logo-div.brahmos-logo {
  border-color: #244596;
}
.sponsorSection .logo-div.CNDE-logo {
  border-color: #fbad4a;
}

.sponsor-item.silver-plus-group {
  /* background: #cedfdf; */
  background: #e0eaf5;
}
.sponsorSection .logo-div.fill-logo {
  border-color: #b70e2d;
}
.sponsorSection .logo-div.ooga-logo {
  border-color: #000000;
}
.sponsorSection .logo-div.modsonic-logo {
  border-color: #264796;
}
.sponsorSection .logo-div.peekay-logo {
  border-color: #ed1b24;
  width: 190px;
}
.sponsorSection .logo-div.utex-logo {
  border-color: #b08800;
  width: 190px;
}

/* Technical Program */
.technical-program .nav-pills {
  justify-content: center;
  flex-wrap: nowrap;
  /* width: max-content;
  margin: auto; */
}
.technical-program .nav-pills .nav-link.active,
.technical-program .nav-pills .show > .nav-link {
  /* background-color: var(--color2); */
  color: #ffffff;
}
.technical-program .nav-pills .nav-link {
  color: var(--color2);
  border-radius: 4px;
  font-size: 20px;
  flex: 0 0 33.33%;
  /* padding: 7px 45px; */
}
.technical-program .break {
  background: #cfdbfc;
  padding: 8px;
  border-radius: 6px;
}
.technical-program .nav-tab-slider .slider {
  width: 33.33%;
  background-color: var(--color2);
}
.technical-program .custom-table .table td b {
  font-weight: 600;
}

/* Announcement */
.annoucement-section {
  background: #f8f8f8;
  padding: 18px 0;
  margin-top: -6px;
}
.annoucement-section .icon {
  width: 100px;
}
.annoucement-section h4 a {
  font-size: 32px;
  font-weight: 700;
  margin: 0;
  color: inherit;
}
.annoucement-section h4 a:hover {
  color: var(--primary-color);
}

/* .abstract-list .nav-pills .nav-link{

} */
/* .nav-pills .nav-link{
  border-radius: 4px;
  padding: 7px 45px;
} */

@media screen and (orientation: landscape) {
  .sponsorSection ul li {
    line-height: 9vh;
    margin: 2vh 0;
    height: 9vh;
    width: 7vh;
  }
}
.sponsorSection ul li:before,
.sponsorSection ul li:after {
  transition: transform 0.5s ease-in-out;
  content: attr(data-letter);
  font-family: sans-serif;
  font-weight: 600;
  font-size: 2vw;
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}
/*@media screen and (orientation: landscape) {*/
/*  .sponsorSection ul li:before,*/
/*  ul li:after {*/
/*    font-size: 3vh;*/
/*  }*/
/*}*/
.sponsorSection ul li[data-letter=" "] {
  opacity: 0;
}
.sponsorSection ul li:before {
  transform-origin: top center;
  transform: translate(0, 100%) rotateX(-90deg);
  background-color: black;
  z-index: 1;
  color: white;
}
.sponsorSection ul li:after {
  transform: translate(0, 0) rotateX(0deg);
  transform-origin: bottom center;
  background-color: #041a57;
  z-index: 1;
  color: #ffffff;
}
.sponsorSection .principal-group ul li:before {
  background-color: #002487;
}
.sponsorSection .principal-group ul li:after {
  background-color: #041a57;
}
.sponsorSection .silver-plus-group ul li:after {
  background: linear-gradient(to bottom, #bcc6cc, #eee, #bcc6cc);
  color: #434343;
}
.sponsorSection .silver-plus-group ul li:before {
  background: linear-gradient(to bottom, #d5d7e5, #eee, #d5d7e5);
  color: #00003d;
}
.sponsorSection .diamond-group ul li:after {
  background: #dce1e3;
  color: #434343;
}
.sponsorSection .diamond-group ul li:before {
  background: #cbd2d5;
  color: #00003d;
}
.sponsorSection .emerald-group ul li:after {
  background-color: #2e8a57;
}
.sponsorSection .emerald-group ul li:before {
  background-color: #51c878;
}
.sponsorSection .silver-group ul li:before {
  background-color: #c4c4c4;
}
.sponsorSection .silver-group ul li:after {
  background-color: #c0c0c0;
}
.sponsorSection .ruby-group ul li:before {
  background-color: #b81351;
}
.sponsorSection .ruby-group ul li:after {
  background-color: #e0115f;
}
.sponsorSection .gold-group ul li:after {
  background-color: #a67c00;
}
.sponsorSection .gold-group ul li:before {
  background-color: #bf9b30;
}

.sponsorSection ul li:nth-of-type(10n + 1):before {
  transition-delay: 0s;
}
.sponsorSection ul li:nth-of-type(10n + 2):before {
  transition-delay: 0.05s;
}
.sponsorSection ul li:nth-of-type(10n + 3):before {
  transition-delay: 0.1s;
}
.sponsorSection ul li:nth-of-type(10n + 4):before {
  transition-delay: 0.15s;
}
.sponsorSection ul li:nth-of-type(10n + 5):before {
  transition-delay: 0.2s;
}
.sponsorSection ul li:nth-of-type(10n + 6):before {
  transition-delay: 0.25s;
}
.sponsorSection ul li:nth-of-type(10n + 7):before {
  transition-delay: 0.3s;
}
.sponsorSection ul li:nth-of-type(10n + 8):before {
  transition-delay: 0.35s;
}
.sponsorSection ul li:nth-of-type(10n + 9):before {
  transition-delay: 0.4s;
}
.sponsorSection ul li:nth-of-type(10n + 10):before {
  transition-delay: 0.45s;
}
.sponsorSection ul li:nth-of-type(10n + 1):after {
  transition-delay: 0s;
}
.sponsorSection ul li:nth-of-type(10n + 2):after {
  transition-delay: 0.05s;
}
.sponsorSection ul li:nth-of-type(10n + 3):after {
  transition-delay: 0.1s;
}
.sponsorSection ul li:nth-of-type(10n + 4):after {
  transition-delay: 0.15s;
}
.sponsorSection ul li:nth-of-type(10n + 5):after {
  transition-delay: 0.2s;
}
.sponsorSection ul li:nth-of-type(10n + 6):after {
  transition-delay: 0.25s;
}
.sponsorSection ul li:nth-of-type(10n + 7):after {
  transition-delay: 0.3s;
}
.sponsorSection ul li:nth-of-type(10n + 8):after {
  transition-delay: 0.35s;
}
.sponsorSection ul li:nth-of-type(10n + 9):after {
  transition-delay: 0.4s;
}
.sponsorSection ul li:nth-of-type(10n + 10):after {
  transition-delay: 0.45s;
}
html.active .sponsorSection ul li:before {
  transform: translate(0, 0) rotateX(0deg);
  z-index: 2;
}
html.active .sponsorSection ul li:after {
  transform: translate(0, -100%) rotateX(90deg);
  z-index: 1;
}
html.active .sponsorSection ul li:after[data-letter=" "] {
  opacity: 0;
}

/* ********* Invitation PDF ******* */
#invitee_modal .modal-content,
#souvenir_modal .modal-content {
  /* width: 285px;
  margin: 51vh auto 0;
  background: transparent;
  border: none; */
}
#souvenir_modal {
  pointer-events: none;
}
#invitee_modal .modal-content {
  /* margin-right: -4rem; */
  /* margin-right: 19rem; */
  /* margin-left: -5rem; */
}
#souvenir_modal .modal-content {
  /* margin-left: -4rem; */
  /* margin-left: 20rem; */
  /* margin-right: -5rem; */
}
#invitee_modal .btn-close,
#souvenir_modal .btn-close {
  position: absolute;
  width: 25px;
  height: 25px;
  background: var(--primary-color);
  right: -18px;
  z-index: 1;
  --bs-btn-close-color: #fff;
  border-radius: 50%;
  top: -12px;
  opacity: 1;
  box-shadow: none;
  font-size: 21px;
  padding: 0px 2px 5px;
}
#invitee_modal .modal-body,
#souvenir_modal .modal-body {
  padding: 0;
}
#invitee_modal .modal-body img,
#souvenir_modal .modal-body img {
  border-radius: 3px;
}

/* ************ // SPONSOR SECTION (Revised) *************** */

/* á¹¢ponsor Detail - Homepage */
.general-sponsor .site-title {
  margin-bottom: 100px;
}
.table-row {
  display: flex;
  background: #fff;
  box-shadow: 0px 0px 10px 0px #ccc;
  border-radius: 15px 0 15px 15px;
}

.table-column.sponsor-plan-column {
  box-shadow: -5px 0px 5px 0px #dcdcdc;
  text-align: center;
  /* width: 16%; */
}
.table-row .title {
  margin-top: -64px;
  background: #f19238;
  padding: 10px;
}

.table-row {
  --tableHeadWidth: 135px;
}
.table-row .title h3 {
  /* color: #fff; */
  font-size: 18px;
  font-weight: 600;
  color: #182333;
  min-width: var(--tableHeadWidth);
}
.table-column.first-column {
  width: calc(100% - var(--tableHeadWidth) * 3);
}
.table-row .content {
  padding: 15px 20px;
  height: 58px;
  font-weight: 500;
  font-size: 18px;
}
.content.confirm-tickets {
  font-size: 22px;
  font-weight: 600;
  /* color: #3bb86c; */
  color: var(--primary-color);
}
.table-row .bg-gray {
  background-color: #f7f7f7;
}

/* **************** .agenda-tab-item ************ */
/* .agenda-area .site-title {
  margin-top: 35px;
} */
.agenda-tab-item {
  position: relative;
  line-height: 24px;
  font-weight: 800;
  cursor: pointer;
  width: calc(100% - 20px);
  margin: 0px 12px;
  text-align: left;
  display: inline-block;
  padding-top: 12px;
  font-size: 18px;
  text-transform: uppercase;
  transition: all 500ms ease;
  border-radius: 0px 20px 20px 0px;
  /* padding-left: 55px; */
  padding-left: 0;
  text-align: center;
  background-color: #f6f6f6;
  padding-bottom: 15px;
}

.agenda-tabs > div:nth-child(even) .left-ele {
  background-color: #f19238;
}

.agenda-tab-item .left-ele {
  position: absolute;
  left: -56px;
  top: 55px;
  display: block;
  font-weight: 700;
  padding: 5px 46px;
  letter-spacing: 1px;
  font-size: 12px;
  text-transform: uppercase;
  color: #ffffff;
  transform: rotate(-90deg);
  background-color: var(--primary-color);
  margin-bottom: 15px;
}

.agenda-tab-item .date-detail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--primary-color);
}

.agenda-tab-item .date {
  font-size: 60px;
  margin: 12px 0;
  color: var(--orange);
}

.agenda-tab-item .year {
  /* color: var(--orange); */
}

.agenda-list {
  line-height: 1.3;
  margin-top: 25px;
}
.agenda-list .num {
  font-family: "Open Sans";
  color: #fff;
  background: var(--primary-color);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  margin-right: 5px;
}

.col-md-4:not(:last-child) .agenda-list {
  border-right: 1.5px solid #2e64b5;
}

.agenda-list li {
  position: relative;
}

.agenda-list li:not(:last-child) {
  margin-bottom: 12px;
}

.agenda-list .line-ele {
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 10px;
  background-color: var(--primary-color);
  background: linear-gradient(179deg, #0e4496, transparent);
  margin-left: -10px;
}

.agenda-list .line-ele::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  margin-top: -4px;
  border-radius: 50%;
  background: var(--primary-color);
}
.agenda-list .agenda-list-ul {
  list-style: none;
  padding-left: 10px;
}
.agenda-list .entry-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* *********** SUPPORTED BY ************ */
.sponsored-by {
  background: #f5f7fc;
  padding-top: 50px;
}
.sponsored-by .sponsor-div {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  margin: 0 15px;
  box-shadow: rgb(204, 204, 204) 0px 0px 10px 0px;
  background-color: rgb(255, 255, 255);
  border-radius: 10px;
  overflow: hidden;
  height: 155px;
}
.sponsor-wrapper {
  padding: 35px;
  border-radius: 15px;
}
.sponsor-wrapper:not(:last-child) {
  margin-bottom: 35px;
}
.sponsor-wrapper.bronze-sponsor {
  background-color: #f8eedf;
}
.sponsor-wrapper.silver-sponsor {
  background-color: #e7e7e7;
}
.sponsored-by .silver-sponsor .sponsor-div {
  max-width: 300px;
}
.sponsored-by .bronze-sponsor .sponsor-div {
  max-width: 290px;
  height: 140px;
  padding: 40px;
}
.sponsored-by .sponsor-row {
  /* gap: 20px; */
  flex-wrap: wrap;
  justify-content: center;
}

/* TAB - Programme */

@media (max-width: 1199.98px) {
  #heroCarousel .carousel-inner {
    min-height: auto;
  }
  .innerpage-banner .banner-ele {
    width: 60%;
  }
  .innerpage-banner .banner-title {
    font-size: 34px;
  }
  .innerpage-banner {
    height: 250px;
  }
  .section-heading .main {
    font-size: 40px;
  }
  .past-conferences .conference-image img {
    width: 95%;
  }
  .past-conferences .conference-item.right a {
    text-align: right;
  }
  .call-for-papers .custom-list li {
    width: 94%;
  }
  .in-around {
    margin-top: 25px;
  }
  .how-to-get-there .destination-guide {
    padding: 30px;
  }
  .in-around .section-heading {
    margin-bottom: 35px;
  }
  .things-to-do .flex-row {
    gap: 18px;
  }

  .innerpage-banner {
    margin-top: 65px;
  }
}

@media (max-width: 991.98px) {
  .innerpage-banner .banner-title {
    font-size: 30px;
  }
  .innerpage-banner .banner-sub-title {
    font-size: 16px;
  }
  .about-isnt .align-items-center {
    align-items: start !important;
  }
  .about-isnt .sec-img {
    padding-right: 10px;
  }
  .about-isnt p {
    font-size: 14px;
  }
  .about-isnt .more-info-section p {
    font-size: 28px;
  }
  marquee {
    padding: 7px;
    font-size: 16px;
  }
  .section-title p {
    font-size: 32px;
  }
  #about h2 {
    font-size: 26px;
  }
  .logo-item img {
    width: 175px;
  }
  #footer .footer-title {
    font-size: 28px;
  }
  .section-heading .main {
    font-size: 38px;
  }
  .section-heading .sub-text {
    font-size: 25px;
  }
  .committee-div .heading {
    font-size: 14px;
    width: 100%;
  }
  .message-section .icndt-logo {
    max-width: 220px;
    margin-right: -45px;
    margin-top: 0;
    padding-left: 10px;
  }
  .message-section .content {
    padding-left: 0;
  }
  .year-count {
    font-size: 13px;
  }
  .past-conferences .conference-image img {
    width: 85%;
  }
  .agenda-section .col-lg-3 {
    margin-bottom: 20px;
  }
  .speaker-modal .modal-body {
    padding: 20px 20px 0;
  }
  .speaker-modal .modal-title {
    margin-left: 20px;
  }
  .call-for-papers .custom-list li {
    width: 93%;
    margin-left: auto;
    margin-right: auto;
  }
  .things-to-do .flex-row {
    gap: 12px;
  }
  .excusrion {
    width: 100%;
    margin: auto;
  }
  .short-course-wrapper {
    width: 100%;
  }

  .accommodation-section .column-count-3 {
    column-count: 2;
  }

  .instructor-profile .content {
    padding-left: 0;
  }

  .icnde-info h4 {
    font-size: 20px;
    line-height: 1.3;
  }
  .about .section-title {
    padding-bottom: 0;
  }
  .about .section-title p {
    font-size: 30px;
    line-height: 1.2;
  }
  .cta {
    padding: 30px 0;
  }
  h2.text-uppercase {
    font-size: 30px;
  }
  #cta .cta-btn {
    padding: 20px 25px;
    font-size: 16px;
  }

  /* SHORT COURSE */
  .short-course-buttons .sub-heading {
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
  }
  .short-course-wrapper .sub-heading2::before,
  .short-course-buttons .sub-heading2::before {
    left: -70px;
  }
  .short-course-wrapper .sub-heading2::after,
  .short-course-buttons .sub-heading2::after {
    right: -70px;
  }
  .short-course-wrapper .sub-heading2::before,
  .short-course-wrapper .sub-heading2::after,
  .short-course-buttons .sub-heading2::before,
  .short-course-buttons .sub-heading2::after {
    width: 55px;
  }

  .sponsored-by .sponsor-div {
    margin-bottom: 20px;
  }
}

@media (max-width: 767.98px) {
  .innerpage-banner .banner-title {
    font-size: 24px;
  }
  .innerpage-banner {
    height: 160px;
  }
  .innerpage-banner .banner-sub-title {
    font-size: 15px;
  }
  .about-isnt .sec-img {
    padding-right: 0;
    width: 65%;
    margin: 0 auto 30px;
  }
  .about-isnt .read-more {
    display: none;
  }
  .about-isnt .more-content {
    display: block !important;
  }
  .days,
  .hours,
  .minutes,
  .seconds {
    width: 100px;
    padding: 25px 0;
    text-align: center;
  }
  .section-title p {
    font-size: 28px;
  }
  #timer {
    margin-top: 30px;
  }
  #about h2 {
    font-size: 26px;
  }
  #about .section-title {
    padding-bottom: 0;
  }
  .cta {
    padding: 30px 0;
  }
  .cta .cta-btn-container {
    margin-top: 15px;
  }
  .cta .cta-btn {
    padding: 10px 25px;
  }

  .testimonials .testimonial-item {
    margin: 0;
  }
  .swiper-slide {
    padding: 0;
  }
  #hero .hero-waves {
    height: 20px;
  }
  .fixed-sidebar a img {
    width: 22px;
  }
  .fixed-sidebar a {
    padding: 6px;
  }
  .about-conf .bottom-content p {
    padding: 0;
  }
  .team-bio h5 {
    font-size: 18px;
  }
  .team-bio span {
    font-size: 14px;
    display: block;
  }
  .main-gallery-wrapper {
    min-height: 28rem;
  }
  #icndt_section .sec-img {
    margin-top: 0;
  }
  .organising-committees .col-md-4:not(:last-child) .committee-div {
    height: auto;
    margin-bottom: 50px;
  }
  .committee-row2 .col-md-4:not(:last-child) .committee-div {
    margin-bottom: 10px;
    height: 100%;
  }
  .message-section .img-div {
    width: 70%;
    margin: 0 auto 20px;
  }
  .message-section .inner-box {
    padding: 30px;
  }
  .message-section .more-content {
    padding: 0;
  }
  .conference-item.left {
    margin-top: 0;
    margin-bottom: 20px;
  }
  .past-conferences .conference-image img {
    width: 75%;
  }
  .left .year-count {
    right: 0%;
  }
  .right .year-count {
    left: 0;
  }
  .right .year-count::before {
    left: 95px;
  }
  .left .year-count::before {
    right: 95px;
  }
  .keydates-wrapper .date {
    margin-bottom: 15px;
    height: auto;
  }
  .sec-padding {
    padding: 50px 0;
  }
  .keydate-item {
    font-size: 15px;
  }
  .coming-soon .text {
    font-size: 40px;
  }
  .how-to-get-there .map iframe {
    height: 350px;
  }
  .how-to-get-there .destination-guide {
    margin-left: 0;
  }
  .in-around .inner-div .col-md-6:nth-child(n) {
    border: 0;
    padding-top: 0;
  }
  .things-to-do .flex-row > div {
    flex: 0 0 48%;
  }
  .short-course-sec .section-heading.sub-heading .main {
    font-size: 25px;
  }
  .short-course-wrapper {
    padding: 30px;
  }
  .short-course-wrapper .sub-heading,
  .short-course-wrapper .sub-heading2 {
    font-size: 22px;
  }
  .short-course-wrapper .main-heading {
    font-size: 25px;
  }
  .short-course-wrapper p {
    font-size: 15px;
  }
  .short-course-wrapper .element1 {
    width: 30px;
  }
  .short-course-wrapper .element3 {
    width: 55px;
  }
  .short-course-wrapper .element4 {
    width: 45px;
    opacity: 0.7;
  }
  .short-course-wrapper .element2 {
    width: 115px;
  }
  .how-to-get-there .img-container {
    height: 100%;
    border-radius: 15px 15px 0 0;
  }
  .accommodation-section .how-to-get-there .destination-guide {
    margin-top: 0;
    border-radius: 0 0 15px 15px;
  }
  .accommodation-section .inclusions {
    margin-top: 25px;
  }
  .accommodation-section .abstract-list table th,
  .accommodation-section .abstract-list table td {
    padding: 5px;
    font-size: 14px;
  }

  .instructor-profile .profile {
    width: max-content;
    margin: 0 auto 20px;
  }

  .about-conf .content {
    margin-top: 10px;
  }

  .partners-section .row > .col-md-6:nth-child(2) .mediaPartner-container {
    border: none;
    margin-top: 30px;
  }
  .mediaPartner-container h2.text-uppercase {
    font-size: 25px;
  }

  .sponsorSection .logos-wrapper {
    flex-wrap: wrap;
  }
  .sponsorSection .logo-div {
    width: 180px;
    min-width: 180px;
  }
  .sponsorSection .logo-div.oms-logo {
    width: 225px;
    height: auto;
  }
  .sponsorSection .logo-div.ge-aerospace-logo {
    width: 210px;
  }
  .sponsorSection .logo-div img {
    max-height: auto;
  }
  .sponsorSection .logo-div.brahmos-logo {
    min-width: 170px;
    width: 170px;
  }
  .sponsorSection .logo-div img {
    max-height: 95px;
  }
  .sponsorSection .logo-div.peekay-logo,
  .sponsorSection .logo-div.utex-logo {
    width: 160px;
    min-width: 160px;
  }

  /* Short Course */
  .short-course-buttons .sub-heading {
    height: auto;
  }
  .short-course-buttons .btn-default {
    padding: 8px 22px;
  }
  .short-course-wrapper .content.text-justify {
    text-align: center;
  }

  /*Conference Announcement*/
  .annoucement-section .icon {
    width: 60px;
  }
  .annoucement-section h4 a {
    font-size: 22px;
  }

  .icnde-info h4 {
    font-size: 16px;
    margin-top: 0;
  }
  .icnde-info {
    padding: 12px 0;
  }

  /* Popup Modal */
  #invitee_modal .modal-content,
  #souvenir_modal .modal-content {
    /* width: 110px;
    margin-top: calc(100vh - 130px); */
  }
  #invitee_modal .btn-close,
  #souvenir_modal .btn-close {
    width: 20px;
    height: 20px;
    right: -12px;
    top: -12px;
    font-size: 18px;
  }
  #invitee_modal .modal-content {
    width: 90%;
    margin: 3rem auto;
    /* margin-left: 1rem;
    margin-right: 0; */
  }
  #souvenir_modal .modal-content {
    margin-right: 1rem;
    margin-left: auto;
  }
  #invitee_modal.modal .modal-dialog {
    /* margin-left: 0; */
  }
  #souvenir_modal.modal .modal-dialog {
    margin-right: 0;
  }
  .contact-us .map iframe {
    height: 235px;
    width: 100%;
  }

  .col-md-4:not(:last-child) .agenda-list {
    border-right: 0;
    /* border-bottom: 1.5px solid #2e64b5; */
  }

  .innerpage-banner {
    margin-top: 155px;
  }

  .sponsor-wrapper {
    padding: 35px 10px;
  }
  .sponsored-by .sponsor-div {
    height: 110px;
    padding: 5px;
    margin: 0 10px 15px;
  }
  .sponsored-by .silver-sponsor .sponsor-div {
    max-width: 138px;
  }
  .sponsored-by .bronze-sponsor .sponsor-div {
    max-width: 125px;
    height: auto;
    padding: 15px;
  }
}

@media (max-width: 575.98px) {
  .innerpage-banner.isnt-banner .content {
    margin-top: 65px;
  }
  .innerpage-banner .banner-ele {
    width: 75%;
  }
  .innerpage-banner {
    height: 250px;
    align-items: flex-start;
  }
  .sec-padding {
    padding: 50px 0;
  }
  .section-heading {
    font-size: 26px;
  }
  .section-heading::after {
    width: 50%;
    bottom: -8px;
  }
  .about-isnt .sec-img {
    width: 75%;
    margin: 0 auto 25px;
  }
  .about-isnt .more-info-section p {
    font-size: 20px;
    padding: 30px 0;
  }
  .fixed-sidebar {
    display: none;
  }

  #hero .hero-image {
    min-height: auto;
  }
  marquee {
    font-size: 15px;
    padding: 7px;
  }
  .section-title h2::after {
    width: 95px;
    margin-left: 215px;
  }
  #about h2 {
    font-size: 24px;
  }
  .section-title p {
    font-size: 25px;
  }
  .cta h2 {
    /* font-size: 25px; */
  }
  .cta .cta-btn {
    letter-spacing: 0.5px;
  }
  .team-item {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  .logo-container {
    margin-top: 20px;
  }
  .logo-item {
    padding: 10px;
  }
  .logo-item img {
    border-radius: 5px;
  }
  .c-content-box h3 {
    font-size: 20px;
    margin: 0;
  }
  .about-conf h2 {
    font-size: 25px;
  }
  .sponsor-section h2,
  .partners-section h2 {
    font-size: 25px;
  }
  .sponsor-section h4 {
    font-size: 20px;
  }
  .property-container h2 {
    font-size: 25px;
  }
  #galleryCarousel .carousel__btns {
    gap: 1rem;
  }
  #galleryCarousel .carousel__btn {
    height: 2rem;
    width: 2rem;
  }
  #galleryCarousel .carousel__btn svg {
    height: 1rem;
    width: 1rem;
  }
  .section-heading .main {
    font-size: 30px;
  }
  .section-heading .sub-text {
    font-size: 20px;
  }
  .innerpage-banner.icndt-banner .banner-title {
    padding-top: 60px;
  }
  #icndt_section .more-content {
    margin-top: 0;
    padding: 35px 0;
  }
  #icndt_section .more-content p:last-child {
    margin-bottom: 0;
  }
  .committee-row2 .col-md-4:not(:last-child) .committee-div {
    margin-bottom: 0;
    height: auto;
  }
  .committee-row2 .section-heading {
    margin-bottom: 40px;
    width: auto;
  }
  .section-heading.sub-heading .main {
    font-size: 25px;
  }
  .section-heading::after {
    width: 60px;
    bottom: -10px;
    height: 3px;
  }
  .committee-div .name {
    margin: 15px 0 10px;
  }
  .message-section .img-div {
    width: auto;
  }
  .message-section p {
    text-align: left;
    font-size: 14px;
  }
  .message-section .inner-box {
    padding: 30px 15px;
  }
  .message-section .icndt-logo {
    max-width: 200px;
    margin-right: -14px;
    margin-top: -26px;
    padding-left: 0px;
  }
  .year-count::before {
    display: none;
  }
  .coming-soon .text {
    font-size: 30px;
    letter-spacing: 4px;
  }
  .speaker-modal .modal-title {
    font-size: 18px;
  }
  .speaker-modal .btn-close {
    width: 16px;
    height: 16px;
    font-size: 10px;
  }
  .speaker-modal .modal-title {
    margin-right: 35px;
  }
  .speaker-modal p {
    font-size: 15px;
  }
  .speaker-modal .speaker-img {
    width: 110px;
    margin-right: 20px;
  }
  .column-count-2 {
    column-count: 1;
  }
  .custom-list li {
    width: 100%;
    font-size: 15px;
  }
  .host-city p {
    font-size: 15px;
  }
  .how-to-get-there .destination-guide {
    text-align: left;
    padding: 20px;
    margin: 50px 0 0 0;
  }
  .alternate .how-to-get-there .destination-guide {
    margin: 50px 0 0 0;
  }
  .things-to-do .flex-row > div {
    flex: 0 0 100%;
  }
  .things-to-do .flex-row > div {
    background-size: 45px;
  }
  h3.section-heading.sub-heading {
    font-size: 25px;
  }
  .road-rail-ways .inner-div {
    padding: 0 0 25px;
    border: none;
  }

  .abstract-list table th,
  .abstract-list table td {
    font-size: 14px;
    padding: 4px;
  }
  .short-course-wrapper .sub-heading,
  .short-course-wrapper .sub-heading2 {
    font-size: 20px;
  }
  .short-course-wrapper .sub-heading2::before,
  .short-course-wrapper .sub-heading2::after {
    width: 40px;
  }
  .short-course-wrapper .sub-heading2::before {
    left: -50px;
  }
  .short-course-wrapper .sub-heading2::after {
    right: -50px;
  }
  .short-course-wrapper .main-heading {
    font-size: 22px;
  }
  .short-course-wrapper {
    padding: 30px 15px;
  }
  .short-course-sec .section-heading {
    width: auto;
  }
  .accommodation-section .how-to-get-there .destination-guide {
    font-size: 14px;
  }
  .accommodation-section .column-count-3 {
    column-count: 1;
  }
  .section-heading {
    width: auto;
  }
  .instructor-profile .profile {
    width: 80%;
  }
  .instructor-profile .content {
    margin-top: 20px;
    text-align: center;
  }
  .instructor-profile .title {
    font-size: 25px;
  }
  .about .section-title p {
    font-size: 22px;
  }
  .sponsorSection ul li:before,
  .sponsorSection ul li:after {
    font-size: 14px;
  }
  .sponsorSection ul li {
    line-height: 50px;
    height: 50px;
    width: 30px;
  }
  .sponsor-item {
    padding: 35px 25px;
  }
  .sponsorSection .logos-wrapper {
    gap: 20px;
  }
  .sponsor-item.silver-group {
    margin-bottom: 25px;
  }
  #accommodationCarousel .carousel-item img {
    border-radius: 15px 15px 0 0;
  }

  h2.text-uppercase {
    font-size: 26px;
  }
  #cta .cta-btn {
    margin-left: 15px;
  }

  .agenda-tab-item {
    width: calc(100% - 95px);
    margin: 0 auto 10px;
    display: block;
  }
  .agenda-list {
    margin-bottom: 25px;
  }

  /* Contact */
  .contact-details {
    padding: 25px;
  }
  .iconGroup .details span {
    font-size: 15px;
  }
  .iconGroup .icon {
    width: 35px;
    height: 35px;
    min-width: 35px;
    margin-right: 15px;
    border-width: 1px;
  }
  .iconGroup .icon i {
    font-size: 14px;
  }
  .iconGroup .details h5 {
    font-size: 20px;
    margin-bottom: 3px;
  }

  /* **** Tabs **** */
  .abstract-list .nav-pills .nav-link {
    font-size: 14px;
    padding: 5px;
  }
}
.reg-header {
  background: #f19238;
  color: #fff;
  padding: 12px 15px;
  font-weight: 600;
  border-radius: 6px 6px 0 0;
}

.reg-content {
  background: #fff;
  padding: 20px;
  border-radius: 0 0 6px 6px;
}

.reg-desc {
  margin-bottom: 20px;
}

.reg-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.reg-left {
  flex: 2;
}
.reg-right {
  flex: 1;
}

.reg-box {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-bottom: 15px;
}

.reg-title {
  background: #f19238;
  color: #fff;
  padding: 8px 12px;
  font-weight: 600;
  border-radius: 6px 6px 0 0;
}

.reg-table div {
  display: flex;
  justify-content: space-between;
  padding: 8px 12px;
  border-bottom: 1px solid #eee;
}

.reg-note {
  font-size: 13px;
  margin-top: 10px;
}

.bank-box {
  border: 1px solid #ddd;
  border-radius: 6px;
}

.bank-title {
  background: #f19238;
  color: #fff;
  padding: 10px;
  font-weight: 600;
}

.bank-content {
  padding: 10px;
}

.reg-contact h4 {
  margin-top: 20px;
}

/* MOBILE */
@media (max-width: 768px) {
  .reg-row {
    flex-direction: column;
  }
}

/* **************** COUNTDOWN SECTION ************* */
.countdown-section {
  position: relative;
  background: var(--dark-blue);
  padding: 50px 0;
  overflow: hidden;
  color: #fff;
  margin-top: -6px;
}

#starfield {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.countdown-section .content-wrapper {
  position: relative;
  z-index: 2;
  text-align: center;
}

/* Glassmorphism Cards */
.countdown-section .glass-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(243, 156, 18, 0.2);
  border-radius: 20px;
  padding: 20px 10px;
  /* min-width: 120px; */
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.8);
  margin-bottom: 5px;

  /*.countdown-section .countdown-box { */
  /* background: rgba(255, 255, 255, 0.05);
         border: 1px solid rgba(243, 156, 18, 0.3);
         border-radius: 15px;
         padding: 20px;
         backdrop-filter: blur(5px);
         transition: transform 0.3s ease;
         box-shadow: 0 0 15px rgba(0, 0, 0, 0.5); */
  /* } */
}

.countdown-section .number {
  font-size: 3.8rem;
  font-weight: 800;
  font-family: "Courier New", monospace;
  /* Tech vibe */
  color: #fff;
}

.countdown-section .number-highlight {
  /* font-size: 3.5rem;
         font-weight: 800;
         color: #ff9d00;
         text-shadow: 0 0 15px rgba(255, 157, 0, 0.7); */
}

.countdown-section .label {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.75rem;
  color: var(--primary-color);
}

.countdown-section .text-orange-glow {
  font-weight: 800;
  color: var(--primary-color);
  text-shadow: 0 0 10px rgba(243, 156, 18, 0.8);
  animation: pulse-glow 1s infinite alternate;
}

@keyframes pulse-glow {
  from {
    opacity: 0.8;
  }

  to {
    opacity: 1;
    text-shadow: 0 0 20px rgba(243, 156, 18, 1);
  }
}

/* Animations */
/*.countdown-section .tracking-in-expand {
         
         margin-bottom: 40px;
         text-transform: uppercase;
         font-weight: 300;
      } */

/* @keyframes tracking-in-expand {
         0% {
            letter-spacing: -0.5em;
            opacity: 0;
         }

         40% {
            opacity: 0.6;
         }

         100% {
            opacity: 1;
         }
      } */

.countdown-section .timer-grid {
  /* display: flex;
         justify-content: center;
         gap: 20px; */
  flex-wrap: wrap;
  margin: 0 5%;
}

.countdown-section .time-block {
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}
/* **************** //COUNTDOWN SECTION ************* */

/* ************* ABOUT SECTION **************** */
.about-section {
  background-color: #ffffff;
  position: relative;
}

.about-section .image-stack {
  position: relative;
  padding: 20px;
}

.about-section .main-img-wrapper {
  z-index: 2;
  position: relative;
}

.about-section .small-img-wrapper {
  position: absolute;
  /* bottom: -30px; */
  bottom: -25%;
  right: -10px;
  width: 60%;
  z-index: 3;
}
.orbital-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  border: 1px dashed var(--primary-color);
  border-radius: 50%;
  opacity: 0.2;
  z-index: 1;
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.border-top {
  border-color: rgba(0, 0, 0, 0.05) !important;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .about-section .image-stack {
    margin-bottom: 50px;
  }
}
/* ************* // ABOUT SECTION **************** */

/* *************** SPONSOR SECTION **************** */
.sponsors-section {
  background-color: #f8f9fa;
  padding-bottom: 80px;
}

.sponsors-section .header-line {
  width: 60px;
  height: 4px;
  background: #f39c12;
  /* Brand Orange from banner */
  margin-top: 10px;
  border-radius: 2px;
}

.sponsors-section .row-title {
  text-transform: uppercase;
  font-size: 1.1rem;
  letter-spacing: 2px;
  font-weight: 700;
  position: relative;
  display: inline-block;
  width: 100%;
}

/* row Specific Colors */
.sponsors-section .silver {
  color: #95a5a6;
}

.sponsors-section .bronze {
  color: #cd7f32;
}

.sponsors-section .table-space {
  color: #1a1a2e;
}

.sponsors-section .sponsor-card {
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.sponsors-section .sponsor-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Card Sizing based on row */
.sponsors-section .silver-card {
  height: 100px;
  border-top: 3px solid #95a5a6;
}

.sponsors-section .bronze-card {
  height: 80px;
  border-top: 3px solid #cd7f32;
}

.sponsors-section .table-card {
  /* height: 60px; */
  border-top: 2px solid #1a1a2e;
  padding: 5px;
}

.sponsors-section .table-card img {
  max-height: 70px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .sponsors-section .sponsor-card {
    height: 70px;
  }
}

.sponsors-section .logo-track {
  display: flex;
  width: calc(250px * 10);
  /* Adjust based on logo count */
  animation: scroll 40s linear infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-250px * 5));
  }
}

.sponsors-section .logo-item {
  width: 250px;
  padding: 20px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* filter: brightness(0) invert(1); */
  /* Makes all logos white for dark theme */
  /* opacity: 0.6; */
  background: transparent;
  transition: 0.3s;
  margin: 0;
}

.sponsors-section .logo-item:hover {
  filter: none;
  /* Shows original colors on hover */
  opacity: 1;
}

.sponsors-section .bronze-row .logo-item {
  width: 220px;
  height: 100px;
}

.sponsors-section .bronze-row .logo-item img {
  max-height: 70px;
}

.sponsors-section .logo-item img {
  filter: none;
}
/* *************** // SPONSOR SECTION **************** */

/* *************** ABSTRACT SUBMISSION DATES ************** */
.abstract-submission-dates {
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.abstract-submission-dates .roadmap-wrapper {
  position: relative;
  padding: 40px 0;
}

.abstract-submission-dates .roadmap-item {
  position: relative;
  text-align: center;
  padding: 20px;
}

.abstract-submission-dates .date-circle {
  width: 100px;
  height: 100px;
  background: var(--secondary-color, #1a1a2e);
  color: #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
  border: 4px solid #fff;
  box-shadow: 0 0 0 2px var(--secondary-color, #1a1a2e);
  position: relative;
  z-index: 2;
}

.abstract-submission-dates .date-circle span {
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: 400;
}

.abstract-submission-dates .roadmap-text h5 {
  font-weight: 700;
  color: var(--secondary-color, #1a1a2e);
  margin-bottom: 5px;
}

.abstract-submission-dates .roadmap-text p {
  color: #666;
  font-size: 0.95rem;
}

.abstract-submission-dates .roadmap-line {
  position: absolute;
  top: 70px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    #ccc,
    #ccc 5px,
    transparent 5px,
    transparent 10px
  );
  z-index: 1;
}

.pulse-orange {
  background: #f39c12;
  box-shadow: 0 0 0 2px #f39c12;
  animation: pulse-deadline 2s infinite;
}

@keyframes pulse-deadline {
  0% {
    box-shadow: 0 0 0 0px rgba(243, 156, 18, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(243, 156, 18, 0);
  }

  100% {
    box-shadow: 0 0 0 0px rgba(243, 156, 18, 0);
  }
}

@media (max-width: 767.98px) {
  .abstract-submission-dates .roadmap-line {
    display: none;
  }

  .abstract-submission-dates .roadmap-item {
    border-bottom: 1px dashed #ccc;
    margin-bottom: 20px;
  }

  .abstract-submission-dates .roadmap-item:last-child {
    border-bottom: none;
  }
}

/* *************** // ABSTRACT SUBMISSION DATES ************** */

/* *************** CONFERENCE VENUE *************** */
.bg-pattern-radial {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgb(243 156 18 / 21%) 0%, #00000000 70%);
  pointer-events: none;
  /* z-index: 7; */
}

.bg-pattern-radial.radial-2 {
  left: -10%;
  bottom: -10%;
  top: auto;
  right: auto;
}

.venue-section .venue-image-stack {
  position: relative;
  padding-bottom: 150px;
}

.venue-section .main-image-frame {
  border: 10px solid white;
  border-radius: 20px;
  overflow: hidden;
  transform: rotate(-2deg);
  transition: transform 0.3s ease;
}

.venue-section .main-image-frame:hover {
  transform: rotate(0deg);
}

.venue-section .map-overlay-card {
  position: absolute;
  bottom: 0;
  right: -20px;
  width: 250px;
  background: white;
  border-radius: 15px;
  padding: 10px;
  z-index: 5;
  transform: translateY(20px);
}

.venue-section .icon-circle {
  width: 45px;
  height: 45px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bg-navy {
  background-color: var(--secondary-color);
}

.btn-orange {
  background-color: var(--primary-color);
  color: white;
  border: none;
  transition: all 0.3s ease;
}

.btn-orange:hover {
  background-color: #d68910;
  color: white;
  transform: scale(1.05);
}

.venue-section .cta-box {
  transition: transform 0.3s ease;
  cursor: pointer;
}

.venue-section .cta-box:hover {
  transform: translateX(10px);
}
/* *************** // CONFERENCE VENUE *************** */

/* *************** OUR VALUED SPONSORS ************** */

.z-index-2 {
  position: relative;
  z-index: 2;
}

.valued-sponsors-section .sponsor-glow-1 {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(243, 156, 18, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.valued-sponsors-section .sponsor-glow-2 {
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(26, 26, 46, 0.5) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.valued-sponsors-section .tier-badge {
  display: inline-block;
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.valued-sponsors-section .main-badge {
  background: linear-gradient(135deg, var(--primary-color), #e67e22);
  color: #fff;
  box-shadow: 0 0 15px rgba(243, 156, 18, 0.4);
}

.valued-sponsors-section .diamond-badge {
  background: #e5e5e5;
  color: #333;
}

.valued-sponsors-section .gold-badge {
  background: #ffd700;
  color: #333;
}

.valued-sponsors-section .silver-badge {
  background: #c0c0c0;
  color: #333;
}

.valued-sponsors-section .bronze-badge {
  background: #cd7f32;
  color: #fff;
}

.valued-sponsors-section .table-badge {
  background: #fff;
}

.valued-sponsors-section .sponsor-card {
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  margin: 0 auto;
}

.valued-sponsors-section .tier-main {
  height: 180px;
  max-width: 450px;
  border: 1.5px solid rgba(243, 156, 18, 0.3);
}

.valued-sponsors-section .tier-diamond {
  /*height: 140px;*/
  height: 175px;
  max-width: 320px;
}

.valued-sponsors-section .tier-gold {
  height: 110px;
  max-width: 260px;
}

.valued-sponsors-section .tier-silver {
  height: 90px;
  max-width: 200px;
}

.valued-sponsors-section .tier-bronze {
  height: 75px;
  max-width: 160px;
}

.valued-sponsors-section .sponsor-logo {
  max-height: 85%;
  max-width: 90%;
  object-fit: contain;
  /* filter: grayscale(30%) brightness(0.9); */
  transition: all 0.3s ease;
}

/* Card Hover Dynamics */
.valued-sponsors-section .sponsor-card:hover {
  transform: translateY(-5px);
  /* background: rgba(255, 255, 255, 0.08); */
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.valued-sponsors-section .sponsor-card:hover .sponsor-logo {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.05);
}

.valued-sponsors-section .tier-main .card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(243, 156, 18, 0.15) 0%,
    transparent 80%
  );
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.valued-sponsors-section .tier-main:hover {
  border-color: var(--primary-color);
  box-shadow: 0 0 25px rgba(243, 156, 18, 0.25);
}
/* *************** // OUR VALUED SPONSORS ************** */

/* ************* SPONSOR DEADLINE *************** */
.sponsor-payment-deadline {
  background: linear-gradient(135deg, #1a1a2e 0%, #f19238 100%);
  color: white;
  border-left: 8px solid var(--primary-color);
}

.sponsor-payment-deadline .pulse-icon {
  background: rgba(255, 255, 255, 0.2);
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse-border 2s infinite;
}

.sponsor-payment-deadline .date-badge {
  background: rgba(0, 0, 0, 0.2);
  padding: 10px 25px;
  border-radius: 12px;
  text-align: center;
  border: 1px border rgba(255, 255, 255, 0.3);
}

.sponsor-payment-deadline .fw-black {
  font-weight: 900;
}

@keyframes pulse-border {
  0% {
    box-shadow: 0 0 0 0px rgba(241, 146, 56, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(241, 146, 56, 0);
  }

  100% {
    box-shadow: 0 0 0 0px rgba(241, 146, 56, 0);
  }
}

@media (max-width: 575.98px) {
  .sponsor-payment-deadline h5 {
    font-size: 18px;
  }
}

/* ********* ACCOMMODATION PAGE ********** */
.accommodation-main {
  color: var(--text-color);
  line-height: 1.6;
}

.accommodation-main .hotel-card {
  background: #ffffff;
  border: 1px solid #e0e4e8;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.accommodation-main .hotel-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--primary-color);
}

.accommodation-main .hotel-img-container {
  height: 240px;
  overflow: hidden;
  background-color: #eee;
}

.accommodation-main .hotel-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.accommodation-main .card-body {
  padding: 1.75rem;
}

.accommodation-main .hotel-name {
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
}

.accommodation-main .location-info {
  font-size: 15px;
  color: #6c757d;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: flex-start;
  font-family: "Poppins", sans-serif;
}

.accommodation-main .location-info i {
  margin-right: 8px;
  color: var(--secondary-color);
}

.accommodation-main .badge-group {
  margin-bottom: 1.5rem;
}

.accommodation-main .dist-badge {
  display: inline-flex;
  align-items: center;
  background: #fdebd0;
  color: var(--primary-color);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-right: 8px;
  margin-bottom: 8px;
  border: 1px solid #fdebd0;
}

.accommodation-main .venue-highlight {
  background: var(--secondary-color);
  color: #fff;
  border-color: var(--secondary-color);
}

.accommodation-main .hotel-desc {
  /* font-size: 0.95rem;
    color: #555; */
  border-top: 1px solid #f0f0f0;
  padding-top: 15px;
  line-height: 1.7;
}

@media (max-width: 767.98px) {
  .accommodation-main .hotel-img-container {
    height: 180px;
  }

  .accommodation-main .card-body {
    padding: 20px;
  }

  .accommodation-main .badge-group {
    margin-bottom: 12px;
  }

  .accommodation-main .hotel-desc {
    text-align: justify;
  }

  .accommodation-main .location-info {
    margin-bottom: 12px;
  }
}

/* *************** REGISTRATION DETAILS ************** */
.bg-orange {
  background-color: var(--primary-color);
}

.bg-orange-soft {
  background-color: rgba(243, 156, 18, 0.1);
}

.border-end-md {
  border-right: 1px solid #eee;
}

@media (max-width: 767px) {
  .border-end-md {
    border-right: none;
  }
}

.border-orange {
  border-color: var(--primary-color) !important;
}

.border-navy {
  border-color: var(--secondary-color) !important;
}

/* Table Styling */
.registration-section .table thead th {
  padding: 1.5rem 1rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  /* letter-spacing: 1px; */
  border: none;
}

.registration-section .table tbody td {
  padding: 1.2rem 1rem;
}

.registration-section .icon-box {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.registration-section .contact-card {
  transition: transform 0.3s ease;
  border-left: 4px solid var(--primary-color);
}

.registration-section .contact-card:hover {
  transform: translateY(-5px);
}
/* *************** // REGISTRATION DETAILS ************** */

/* ************* TICKER TOAST CARD *************** */
.ticker-toast-card {
  width: 280px;
  border-left: 4px solid #f19238;
  box-shadow: 0 0 0 2px #f39c12;
  /* background: rgba(256, 256, 256, 0.98) !important; */
  backdrop-filter: blur(8px);
  overflow: hidden;
  /* animation: continuousToastLoop 6s cubic-bezier(0.25, 1, 0.5, 1) infinite; */
  font-size: 15px;
  position: relative;
  animation:
    continuousToastLoop 6s cubic-bezier(0.25, 1, 0.5, 1) infinite,
    toastBlinkAlert 6s ease-in-out infinite,
    pulse-deadline 2s infinite;
}

.ticker-toast-card .ticker-content-frame {
  overflow: hidden;
  width: 100%;
}

.ticker-toast-card .ticker-alert-tag {
  font-size: 14px;
}

.ticker-toast-card .live-pulse-wrapper {
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ticker-toast-card .live-pulse-dot {
  width: 10px;
  height: 10px;
  background-color: #2ec4b6;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(46, 196, 182, 0.5);
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(46, 196, 182, 0.6);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(46, 196, 182, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(46, 196, 182, 0);
  }
}

@keyframes continuousToastLoop {
  0% {
    transform: translateY(120%);
    opacity: 0;
  }

  12% {
    transform: translateY(0);
    opacity: 1;
  }

  85% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(120%);
    opacity: 0;
  }
}

@keyframes toastBlinkAlert {
  0%,
  20% {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }

  25% {
    box-shadow: 0 0 25px rgba(241, 146, 56, 0.6);
    background: rgba(35, 35, 60, 0.98) !important;
  }

  30% {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }

  35% {
    box-shadow: 0 0 20px rgba(241, 146, 56, 0.5);
  }

  40%,
  100% {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }
}

@media (max-width: 767.98px) {
  .ticker-toast-card {
    font-size: 13px;
    width: 215px;
  }
}
/* ************* //TICKER TOAST CARD *************** */

/************* EVENT HIGHLIGHT ***********/
.event-highlight-section .card-hover-effect {
        transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease;
    }
    .event-highlight-section .card-hover-effect:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(67, 97, 238, 0.08) !important;
        border-color: var(--primary-color) !important;
    }

    .event-highlight-section .tracking-wider {
        letter-spacing: 1px;
    }
    .event-highlight-section .cheif-image{
        width: 200px;
        height: 200px;
        object-fit: cover;
        border-color: var(--primary-color)!important;
    }
    .event-highlight-section .top-bar{
        height: 6px; 
        background: linear-gradient(135deg, #1a1a2e 0%, #f19238 100%);
    }
    .event-highlight-section .quote{
        font-family: serif; line-height: 0.5;
        color: var(--secondary-color);
    }
    .event-highlight-section .cheif-name{
        font-family: 'Raleway', sans-serif; 
        font-weight: 700; 
        color: #0d1b3e;
    }
    
    .networking-dinner .h2-title{
        font-family: 'Raleway', sans-serif; 
        font-weight: 800;
    }
    .networking-dinner .day2-highlight{
        background: var(--primary-color)!important; 
        font-size: 0.75rem; 
        letter-spacing: 1px;
    }
    .feature-card{
        border-color: #eef2f7 !important;
    }
   .feature-card .quote{
        top: 0; 
        left: -40px;
            font-family: serif;
    line-height: 0.5;
    color: var(--secondary-color);
    }
    .networking-dinner .meta-detail-lable{
        font-size: 0.65rem; 
        letter-spacing: 0.5px;
    }
    .networking-dinner .meta-detail-text{
         font-size: 0.9rem;
    }
/************* // EVENT HIGHLIGHT ***********/


