/* -------------------------------- nav css ---------------------------- */
.crm-navbar-wrap {
  background: linear-gradient(90deg, #050817 0%, #070d24 40%, #0b1230 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
}

.crm-navbar {
  min-height: 82px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.crm-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.crm-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.crm-brand-text {
  line-height: 1.1;
}

.crm-brand-title {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.crm-brand-subtitle {
  color: #b7bfdc;
  font-size: 11px;
  margin: 2px 0 0;
  font-weight: 400;
}

.crm-navbar .nav-link {
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 10px 14px !important;
  position: relative;
  transition: 0.3s ease;
}

.crm-navbar .nav-link:hover,
.crm-navbar .nav-link.active {
  color: #7fd9ff;
}

.crm-navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  bottom: 4px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #8b5cf6, #22d3ee);
  transition: 0.3s ease;
  border-radius: 10px;
}

.crm-navbar .nav-link:hover::after,
.crm-navbar .nav-link.active::after {
  width: calc(100% - 28px);
}

.crm-register-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  border: 0;
  text-decoration: none;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  background: linear-gradient(90deg, #a855f7 0%, #22d3ee 100%);
  box-shadow: 0 8px 20px rgba(34, 211, 238, 0.18);
  transition: 0.3s ease;
  white-space: nowrap;
}

.crm-register-btn:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(168, 85, 247, 0.22);
}

.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 6px 10px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  filter: brightness(0) invert(1);
}

@media (max-width: 991.98px) {
  .crm-navbar .navbar-collapse {
    margin-top: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 16px;
  }

  .crm-navbar .nav-link {
    padding: 10px 0 !important;
  }

  .crm-navbar .nav-link::after {
    left: 0;
    bottom: 2px;
  }

  .crm-navbar .nav-link:hover::after,
  .crm-navbar .nav-link.active::after {
    width: 60px;
  }

  .crm-register-btn {
    margin-top: 12px;
    width: 100%;
  }
}

.nav-badge {
  position: absolute;
  top: -4px;
  right: -18px;
  background: #ff3b3b;
  color: #fff;
  font-size: 9px;
  padding: 2px 6px;
  border-radius: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  animation: blink 1s infinite;
}

.department {
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -1px;
  color: #854dff;
}

/* Optional Blink Animation */
@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

/* ---------------------------------------------hero section css--------------------------- */
.crm-hero {
  min-height: 70vh;
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(3, 8, 28, 0.70), rgba(3, 8, 28, 0.78)),
    url('./slider-bg.png') center center/cover no-repeat;
  padding: 120px 0 80px;
}

.crm-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(0, 174, 255, 0.18), transparent 30%),
    radial-gradient(circle at 85% 35%, rgba(174, 0, 255, 0.18), transparent 28%);
  z-index: 1;
}

.crm-hero .container {
  z-index: 2;
}

.crm-hero-content {
  color: #fff;
  max-width: 620px;
}

.crm-hero-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #d6ddff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  margin-bottom: 22px;
}

.crm-hero-title {
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -1px;
  color: #3c54ff;
}

.crm-hero-title span {
  color: #19c2ff;
}

.crm-hero-subtitle {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 22px;
  color: #ffffff;
}

.crm-hero-text {
  font-size: 17px;
  line-height: 1.8;
  color: #d7dcf3;
  margin-bottom: 28px;
  max-width: 560px;
}

.crm-btn-primary,
.crm-btn-secondary {
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  transition: all 0.35s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.crm-btn-primary {
  background: linear-gradient(90deg, #3c54ff, #8b4dff);
  color: #fff;
}

.crm-btn-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(201, 60, 255, 0.35);
}

.crm-btn-secondary {
  background: linear-gradient(90deg, #1fa2ff, #12d8fa);
  color: #fff;
}

.crm-btn-secondary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(18, 216, 250, 0.35);
}

.crm-hero-info {
  margin-top: 35px;
}

.crm-info-item {
  min-width: 220px;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.crm-info-label {
  display: block;
  font-size: 13px;
  color: #9cb0d9;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.crm-info-item strong {
  font-size: 16px;
  color: #fff;
  font-weight: 600;
}

@media (max-width: 991.98px) {
  .crm-hero {
    min-height: auto;
    padding: 100px 0 70px;
    background-position: 68% center;
  }

  .crm-hero-title {
    font-size: 54px;
  }

  .crm-hero-subtitle {
    font-size: 30px;
  }

  .crm-hero-text {
    font-size: 15px;
  }
}

@media (max-width: 767.98px) {
  .crm-hero {
    padding: 85px 0 60px;
    background-position: 72% center;
  }

  .crm-hero-title {
    font-size: 42px;
  }

  .crm-hero-subtitle {
    font-size: 24px;
  }

  .crm-hero-badge {
    font-size: 12px;
    padding: 7px 14px;
  }

  .crm-btn-primary,
  .crm-btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .crm-info-item {
    width: 100%;
    min-width: 100%;
  }
}

/* ----------------------------------------------date css---------------------------------------------- */

.important-dates-v2 {
  background: #02134a;
  position: relative;
  overflow: hidden;
}

.important-dates-v2 .container {
  max-width: 1280px;
}

.important-title .title-wrap {
  display: inline-flex;
  align-items: center;
  gap: 22px;
}

.important-title h2 {
  margin: 0;
  color: #fff;
  font-size: 46px;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1;
}

.important-title .title-line {
  width: 120px;
  height: 2px;
  border-radius: 50px;
  background: linear-gradient(90deg, transparent, #7d4dff, #31d5ff, transparent);
  opacity: 0.95;
}

.timeline-wrapper {
  position: relative;
  padding-top: 35px;
}

.timeline-line {
  position: absolute;
  top: 82px;
  left: 8%;
  right: 8%;
  height: 3px;
  border-radius: 30px;
  background: linear-gradient(90deg, #13e5d0 0%, #3cc3ff 20%, #9d5cff 40%, #ff4fcb 60%, #ff9d14 80%, #ffc529 100%);
  z-index: 1;
}

.timeline-item {
  position: relative;
  z-index: 2;
  padding: 0 12px;
}

.timeline-icon {
  width: 86px;
  height: 86px;
  margin: 0 auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  background: rgba(255, 255, 255, 0.03);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  box-shadow:
    0 0 0 8px rgba(255, 255, 255, 0.02),
    0 0 18px rgba(255, 255, 255, 0.04);
}

.timeline-dot {
  width: 14px;
  height: 14px;
  display: block;
  border-radius: 50%;
  margin: 18px auto 14px;
  box-shadow: 0 0 14px currentColor;
}

.timeline-item h5 {
  color: #ffffff;
  font-size: 22px;
  line-height: 1.4;
  font-weight: 700;
  margin-bottom: 14px;
  min-height: 92px;
}

.timeline-date {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
}

.teal {
  color: #18e8d2;
}

.sky {
  color: #45c5ff;
}

.violet {
  color: #b96bff;
}

.pink {
  color: #ff58c8;
}

.orange {
  color: #ffa11a;
}

.gold {
  color: #ffc62e;
}

.teal-bg {
  background: #18e8d2;
  color: #18e8d2;
}

.sky-bg {
  background: #45c5ff;
  color: #45c5ff;
}

.violet-bg {
  background: #b96bff;
  color: #b96bff;
}

.pink-bg {
  background: #ff58c8;
  color: #ff58c8;
}

.orange-bg {
  background: #ffa11a;
  color: #ffa11a;
}

.gold-bg {
  background: #ffc62e;
  color: #ffc62e;
}

.teal-text {
  color: #18e8d2;
}

.sky-text {
  color: #45c5ff;
}

.violet-text {
  color: #b96bff;
}

.pink-text {
  color: #ff58c8;
}

.orange-text {
  color: #ffa11a;
}

.gold-text {
  color: #ffc62e;
}

@media (max-width: 1199.98px) {
  .important-title h2 {
    font-size: 38px;
  }

  .timeline-item h5 {
    font-size: 19px;
    min-height: 82px;
  }

  .timeline-date {
    font-size: 18px;
  }
}

@media (max-width: 991.98px) {
  .timeline-line {
    display: none;
  }

  .important-title .title-line {
    width: 70px;
  }

  .important-title h2 {
    font-size: 30px;
  }

  .timeline-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 24px 14px;
    height: 100%;
  }

  .timeline-item h5 {
    min-height: auto;
    font-size: 20px;
    margin-bottom: 10px;
  }

  .timeline-date {
    font-size: 18px;
  }
}

@media (max-width: 575.98px) {
  .important-title .title-wrap {
    gap: 12px;
  }

  .important-title .title-line {
    width: 35px;
  }

  .important-title h2 {
    font-size: 24px;
  }

  .timeline-icon {
    width: 72px;
    height: 72px;
    font-size: 28px;
  }

  .timeline-item h5 {
    font-size: 18px;
    line-height: 1.35;
  }

  .timeline-date {
    font-size: 16px;
  }
}

/* --------------------------------proceeding css------------------------------- */

.cfp-section {
  background: #02134a;
  padding-top: 60px;
  padding-bottom: 60px;
}

.cfp-wrapper {
  background: linear-gradient(180deg, rgba(10, 21, 72, 0.96) 0%, rgba(7, 17, 60, 0.96) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 38px 38px 34px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.20);
  position: relative;
  overflow: hidden;
}

.cfp-heading {
  margin-bottom: 28px;
}

.cfp-title-wrap {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.cfp-line {
  width: 92px;
  height: 2px;
  border-radius: 20px;
  background: linear-gradient(90deg, transparent, #8a4dff, #25d0ff, transparent);
  display: inline-block;
}

.cfp-heading h2 {
  margin: 0;
  color: #fff;
  font-size: 27px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.cfp-heading p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  margin: 10px 0 0;
  font-weight: 500;
}

.cfp-card {
  background: linear-gradient(180deg, rgba(4, 13, 54, 0.96) 0%, rgba(2, 10, 42, 0.96) 100%);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 16px;
  min-height: 205px;
  padding: 20px 16px 20px;
  text-align: center;
  transition: all 0.35s ease;
  height: 100%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.cfp-card:hover {
  transform: translateY(-6px);
  border-color: rgba(72, 189, 255, 0.35);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.topic-image-btn {
  background: transparent;
  border: 0;
  padding: 0;
  margin-bottom: 16px;
  cursor: pointer;
}

.topic-thumb {
  width: 84px;
    height: 108px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
  transition: all 0.35s ease;
}

.topic-image-btn:hover .topic-thumb {
  transform: scale(1.06);
  border-color: rgba(37, 208, 255, 0.45);
  box-shadow: 0 10px 22px rgba(37, 208, 255, 0.14);
}

.cfp-card h5 {
  color: #fff;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
  margin: 0;
}

.cfp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  height: 54px;
  padding: 0 28px;
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  background: linear-gradient(90deg, #b13cff 0%, #1fb6ff 100%);
  box-shadow: 0 10px 24px rgba(34, 185, 255, 0.20);
  transition: all 0.35s ease;
}

.cfp-btn:hover {
  color: #fff;
  transform: translateY(-2px);
}

.custom-modal {
  max-width: fit-content;
  width: auto;
  margin: auto;
}

/* make modal content reference point */
.topic-modal-content {
  position: relative;
  background: transparent;
  border: none;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* image */
.topic-popup-image {
  max-width: 70vw;
  max-height: 80vh;
  width: auto;
  height: auto;
  display: block;
  margin: auto;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* 🔥 CLOSE BUTTON ON IMAGE */
.topic-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  padding: 8px;
  filter: invert(1);
}



@media (min-width: 992px) {
  .col-lg-2-4 {
    flex: 0 0 20%;
    max-width: 20%;
  }
}

@media (max-width: 991.98px) {
  .cfp-wrapper {
    padding: 30px 20px 26px;
  }

  .cfp-line {
    width: 55px;
  }

  .cfp-heading h2 {
    font-size: 24px;
  }

  .cfp-card {
    min-height: 190px;
  }
}

@media (max-width: 575.98px) {
  .cfp-line {
    width: 28px;
  }

  .cfp-heading h2 {
    font-size: 22px;
  }

  .topic-thumb {
    width: 56px;
    height: 78px;
  }

  .cfp-card h5 {
    font-size: 16px;
  }

  .cfp-btn {
    width: 100%;
    min-width: 100%;
  }
}

/* ------------------------------committee css--------------------------------- */

.keynote-speakers-section {
  background: #02134a;
  position: relative;
  overflow: hidden;
}

.speaker-heading {
  margin-bottom: 42px;
}

.speaker-title-wrap {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.speaker-line {
  width: 110px;
  height: 2px;
  border-radius: 30px;
  background: linear-gradient(90deg, transparent, #8b4dff, #23d3ff, transparent);
  display: inline-block;
}

.speaker-heading h2 {
  margin: 0;
  color: #ffffff;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.7px;
}

.speaker-card {
  color: #fff;
}

.speaker-image-wrap {
  width: 210px;
  height: 210px;
  margin: 0 auto 20px;
  border-radius: 50%;
  padding: 7px;
  background: linear-gradient(135deg, #2ed8ff, #4ceeff, #6f3cff);
  box-shadow:
    0 0 0 3px rgba(173, 90, 255, 0.15),
    0 0 24px rgba(74, 162, 255, 0.20);
  position: relative;
}

.speaker-image-wrap::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.10);
  pointer-events: none;
}

.speaker-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  background: #1e2438;
}

.speaker-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}

.speaker-card p {
  font-size: 16px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
  min-height: 46px;
}

.speaker-dots .dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: inline-block;
  margin: 0 5px;
  background: rgba(255, 255, 255, 0.35);
  transition: all 0.3s ease;
}

.speaker-dots .dot.active {
  background: #b06cff;
  box-shadow: 0 0 12px rgba(176, 108, 255, 0.55);
}

@media (max-width: 1199.98px) {
  .speaker-image-wrap {
    width: 190px;
    height: 190px;
  }

  .speaker-card h4 {
    font-size: 18px;
  }

  .speaker-card p {
    font-size: 15px;
  }
}

@media (max-width: 991.98px) {
  .speaker-line {
    width: 60px;
  }

  .speaker-heading h2 {
    font-size: 24px;
  }

  .speaker-image-wrap {
    width: 180px;
    height: 180px;
  }
}

@media (max-width: 575.98px) {
  .speaker-title-wrap {
    gap: 10px;
  }

  .speaker-line {
    width: 28px;
  }

  .speaker-heading h2 {
    font-size: 22px;
  }

  .speaker-image-wrap {
    width: 160px;
    height: 160px;
    margin-bottom: 16px;
  }

  .speaker-card h4 {
    font-size: 18px;
  }

  .speaker-card p {
    font-size: 14px;
    min-height: auto;
  }
}



/* --------------------------------------inner pages----------------------------- */
/* section background */
.section-dark {
  background: radial-gradient(circle at top right, #0b1a4a, #020d2f 70%);
  position: relative;
  overflow: hidden;
}

/* glow effect */
.section-dark::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(0, 183, 255, 0.15);
  filter: blur(120px);
  top: -50px;
  right: -50px;
}

/* max width control */
.content-width {
  max-width: 900px;
}

/* gradient heading */
.gradient-text {
  background: linear-gradient(90deg, #c84cff, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* glass effect */
.backdrop-box {
  background: rgb(255 255 255 / 89%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: 0.3s ease;
}

.backdrop-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(0, 212, 255, 0.2);
}

/* gradient button */
.btn-gradient {
  background: linear-gradient(90deg, #c84cff, #00d4ff);
  border: none;
  color: #fff;
  border-radius: 30px;
  padding: 8px 18px;
  transition: 0.3s;
}

.btn-gradient:hover {
  box-shadow: 0 0 15px rgba(200, 76, 255, 0.6);
}

/* -----------------------------------footer css---------------------------------- */

/* MAIN FOOTER */
.crm-pro-footer {
  background: linear-gradient(180deg, #03195f 0%, #010d38 100%);
  padding: 60px 0 20px;
  position: relative;
  overflow: hidden;
}

.crm-pro-footer .container {
  max-width: 1380px;
}

/* MAIN BOX */
.footer-main-box {
  background: linear-gradient(180deg, rgba(8, 22, 92, 0.98), rgba(5, 16, 73, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  padding: 40px 30px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.25);
  position: relative;
}

/* GLOW EFFECT */
.footer-main-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 26px;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 10%, rgba(130, 88, 255, 0.12), transparent 25%),
    radial-gradient(circle at 85% 0%, rgba(38, 201, 255, 0.10), transparent 22%);
}

/* BLOCK */
.footer-block {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 0 15px;
}

/* BORDER ONLY ON DESKTOP */
@media (min-width: 992px) {
  .crm-pro-footer .col-lg-3:not(:first-child) .footer-block {
    border-left: 1px solid rgba(255, 255, 255, 0.10);
  }
}

/* BRAND */
.footer-brand {
  gap: 16px;
  margin-bottom: 24px;
}

.footer-logo {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 12px;
}

.footer-brand-text h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
}

.footer-brand-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}

/* INFO */
.footer-info {
  margin-bottom: 24px;
}

.footer-info li,
.footer-contact li {
  display: flex;
  gap: 10px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 12px;
}

.footer-info li i,
.footer-contact li i {
  font-size: 17px;
  margin-top: 3px;
}

/* SOCIAL */
.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: 0.3s;
}

.footer-social a:hover {
  background: linear-gradient(135deg, #9b48ff, #2ccfff);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(44, 207, 255, 0.25);
}

/* HEADINGS */
.footer-block h4 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 18px;
}

/* LINKS */
.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
  display: inline-flex;
  gap: 6px;
}

.footer-links a i {
  font-size: 11px;
  margin-top: 6px;
  color: #b94cff;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(4px);
}

.footer-links.no-arrow a i {
  display: none;
}

/* CONTACT TEXT */
.footer-contact-text {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 18px;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 18px;
  color: rgba(255, 255, 255, 0.9);
}

.footer-bottom p {
  font-size: 15px;
}

.footer-bottom span {
  color: #ff4c74;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .footer-block {
    padding: 0;
  }
}

@media (max-width: 768px) {
  .crm-pro-footer {
    padding-top: 40px;
  }

  .footer-main-box {
    padding: 25px 18px;
    border-radius: 18px;
  }

  .footer-brand-text h3 {
    font-size: 24px;
  }

  .footer-brand-text p,
  .footer-info li,
  .footer-links a,
  .footer-contact-text {
    font-size: 14px;
  }

  .footer-social a {
    width: 40px;
    height: 40px;
  }

  .footer-bottom {
    text-align: center;
  }
}

/* --------------------------------award pages----------------------------- */
.head {
  color: rgb(16 137 161) !important;
}

p {
  text-align: justify;
  color: #02134a;
}

/* -------------------------------list css--------------------- */
.registration-section {
  background: linear-gradient(135deg, #02152f, #022c53);
}

.section-heading h2 {
  color: #fff;
  font-weight: 700;
  font-size: 40px;
}

.section-heading span {
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, #00d4ff, #7b2cff);
  display: block;
  margin: 15px auto 0;
}

.step-item {
  display: flex;
  gap: 25px;
  border-bottom: 1px solid #e8e8e8;
  margin-bottom: 10px;
}

.step-number {
  min-width: 27px;
  height: 27px;
  background: linear-gradient(135deg, #022c53, #0a4f8f);
  color: #fff;
  border-radius: 50%;
  text-align: center;

}

.step-content h6 {
  color: #022c53;
  font-weight: 500;
}

.step-content p {
  color: #555;
  margin: 0;
}

.step-content a {
  color: #007bff;
  font-weight: 600;
}

.upload-list {
  padding-left: 20px;
  margin-top: 10px;
}

.upload-list li {
  color: #555;
}

.deadline-box {
  background: linear-gradient(90deg, #022c53, #0b5aa4);
  color: #fff;
  padding: 20px 25px;
  border-radius: 12px;
  font-size: 17px;
  margin-top: 20px;
}

.deadline-box span {
  color: #00e5ff;
  font-weight: 700;
}

@media(max-width:768px) {
  .step-item {
    flex-direction: column;
    gap: 15px;
  }

  .section-heading h2 {
    font-size: 28px;
  }
}

/* --------------------------------call for paper------------------------ */

.conference-content p {
  margin-bottom: 10px;
  line-height: 1.7;
}

.info-box {
  background: #f8fbff;
  border-left: 4px solid #022c53;
  padding: 12px 15px;
  margin: 15px 0;
}

.topic-heading {
  color: #022c53;
  font-weight: 700;
  margin-bottom: 15px;
}

.topic-box {
  background: #f8fbff;
  border: 1px solid #e5edf5;
  border-radius: 10px;
  padding: 12px;
  height: 100%;
}

.topic-box h5 {
  color: #022c53;
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 700;
}

.topic-box ul {
  padding-left: 18px;
  margin-bottom: 0;
  color: #022c53;
}

.topic-box ul li {
  margin-bottom: 4px;
  font-size: 14px;
  line-height: 1.5;
}

/* ---------------------------------table css--------------------------- */
.registration-table {
  margin-bottom: 0;
  background: #fff;
  border: 1px solid #dbe5f1;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
}

.registration-table thead th {
  background: linear-gradient(135deg, #02152f, #022c53);
  color: #fff;
  text-align: center;
  border: none !important;
  padding: 15px 10px !important;
  font-size: 15px;
  font-weight: 700;
  vertical-align: middle !important;
}

.registration-table thead small {
  color: #cfe6ff;
  font-size: 12px;
}

.registration-table td {
  padding: 12px !important;
  vertical-align: middle !important;
  border: 1px solid #e5edf5 !important;
}

.registration-table tbody tr:nth-child(even) {
  background: #f8fbff;
}

.registration-table tbody tr:hover {
  background: #eef7ff;
  transition: .3s;
}

.registration-table .category {
  color: #022c53;
  font-weight: 700;
}

.registration-table .price {
  color: #e74c3c;
  font-weight: 700;
  text-align: center;
}

.registration-table .note {
  color: #666;
  font-size: 13px;
}

.registration-table a {
  color: #0a5ca8;
  font-weight: 600;
  text-decoration: none;
}

.registration-table a:hover {
  color: #022c53;
}

.registration-table .speaker-row {
  background: linear-gradient(135deg, #022c53, #0a5ca8);
}

.registration-table .speaker-row td {
  color: #fff;
  border-color: rgba(255, 255, 255, .15) !important;
}

.registration-table .speaker-row a {
  color: #fff;
  text-decoration: underline;
}

@media(max-width:767px) {
  .registration-table {
    min-width: 700px;
  }
}
.speaker-card p {text-align:center}