/* assets/css/registration.css */

.registration-banner {
  padding: 165px 0 95px;
  background:
    linear-gradient(135deg, rgba(7, 26, 47, 0.94), rgba(15, 118, 110, 0.9)),
    url("https://images.unsplash.com/photo-1554224155-6726b3ff858f?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.registration-banner::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: 8%;
  top: 75px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.28);
  animation: regFloat 6s infinite ease-in-out;
}

@keyframes regFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-22px); }
}

.registration-banner .container {
  position: relative;
  z-index: 2;
}

.registration-badge {
  display: inline-block;
  padding: 9px 20px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--icsis-accent);
  font-weight: 900;
  margin-bottom: 18px;
}

.registration-banner h1 {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 900;
  margin-bottom: 14px;
}

.registration-banner p {
  font-size: 22px;
  max-width: 760px;
  color: #dbeafe;
}

.registration-section {
  padding: 90px 0;
  background:
    radial-gradient(circle at top left, rgba(15, 118, 110, 0.08), transparent 34%),
    radial-gradient(circle at bottom right, rgba(37, 99, 235, 0.08), transparent 34%),
    #f8fbfd;
}

.registration-intro {
  max-width: 760px;
  margin: auto;
  color: #64748b;
  font-size: 17px;
}

.registration-table-wrap {
  background: #fff;
  border-radius: 26px;
  overflow-x: auto;
  box-shadow: 0 18px 55px rgba(15, 23, 42, 0.1);
  border: 1px solid #e4eaf1;
}

.registration-table {
  margin: 0;
  min-width: 850px;
  text-align: center;
}

.registration-table thead th {
  background: var(--icsis-dark);
  color: #fff;
  padding: 18px;
  font-weight: 900;
  border: 0;
}

/*.registration-table thead th {
  background: var(--icsis-gradient);
  color: #fff;
  padding: 18px;
  font-weight: 900;
  border: 0;
}*/

.registration-table tbody td {
  padding: 20px;
  vertical-align: middle;
  color: #64748b;
  font-weight: 600;
  border-color: #e4eaf1;
}

.registration-table tbody td strong {
  color: var(--icsis-dark);
  font-weight: 900;
}

.registration-table tbody td span {
  color: #7788a5;
}

.registration-card,
.deadline-box,
.download-box,
.mode-card,
.registration-final-note {
  border-radius: 28px;
}

.registration-card {
  background: #fff;
  border: 1px solid #e4eaf1;
  padding: 35px;
  box-shadow: 0 16px 45px rgba(15, 23, 42, 0.08);
}

.registration-card h3 {
  color: var(--icsis-dark);
  font-weight: 900;
  margin-bottom: 24px;
}

.registration-card h3 i {
  color: var(--icsis-primary);
  margin-right: 8px;
}

.registration-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.registration-list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 14px;
  color: #475569;
  font-weight: 600;
  line-height: 1.6;
}

.registration-list li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--icsis-primary);
}

.registration-list a {
  color: var(--icsis-primary);
  font-weight: 900;
}

.deadline-box {
  background: var(--icsis-gradient-dark);
  color: #fff;
  padding: 35px;
  box-shadow: 0 20px 60px rgba(7, 26, 47, 0.22);
  text-align: center;
}

.deadline-box i {
  width: 70px;
  height: 70px;
  border-radius: 22px;
  background: var(--icsis-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 22px;
}

.deadline-box h3 {
  font-weight: 900;
}

.deadline-box h2 {
  color: var(--icsis-accent);
  font-weight: 900;
  margin: 15px 0;
}

.deadline-box p {
  color: #dbeafe;
  font-weight: 600;
}

.download-box {
  background: #fff;
  padding: 30px;
  box-shadow: 0 16px 45px rgba(15, 23, 42, 0.08);
  border: 1px solid #e4eaf1;
}

.download-box h4 {
  color: var(--icsis-dark);
  font-weight: 900;
  margin-bottom: 20px;
}

.download-box h4 i {
  color: var(--icsis-primary);
  margin-right: 8px;
}

.download-box a {
  display: block;
  padding: 14px 16px;
  border-radius: 16px;
  background: #f8fbfd;
  color: var(--icsis-dark);
  font-weight: 800;
  margin-bottom: 12px;
  transition: 0.3s ease;
}

.download-box a:hover {
  background: var(--icsis-gradient);
  color: #fff;
  transform: translateX(5px);
}

.mode-card {
  height: 100%;
  background: #fff;
  border: 1px solid #e4eaf1;
  padding: 35px;
  box-shadow: 0 16px 45px rgba(15, 23, 42, 0.08);
  transition: 0.35s ease;
}

.mode-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 65px rgba(15, 23, 42, 0.14);
}

.mode-card i {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: var(--icsis-gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 22px;
}

.mode-card h3 {
  color: var(--icsis-dark);
  font-weight: 900;
  margin-bottom: 15px;
}

.mode-card p {
  color: #64748b;
  font-weight: 600;
  line-height: 1.7;
}

.mode-card.online i {
  background: linear-gradient(135deg, #2563eb, #0f766e);
}

.registration-final-note {
  background: #fff;
  padding: 35px;
  box-shadow: 0 18px 55px rgba(15, 23, 42, 0.09);
  border: 1px solid #e4eaf1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

.registration-final-note h3 {
  color: var(--icsis-dark);
  font-weight: 900;
  margin-bottom: 8px;
}

.registration-final-note p {
  margin: 0;
  color: #64748b;
  font-weight: 600;
}

@media (max-width: 991px) {
  .registration-banner {
    padding: 140px 0 75px;
    text-align: center;
  }

  .registration-banner p {
    margin-left: auto;
    margin-right: auto;
  }

  .registration-section {
    padding: 70px 0;
  }
}

@media (max-width: 575px) {
  .registration-banner {
    padding: 125px 0 60px;
  }

  .registration-banner h1 {
    font-size: 38px;
  }

  .registration-banner p {
    font-size: 18px;
  }

  .registration-section {
    padding: 55px 0;
  }

  .registration-card,
  .deadline-box,
  .download-box,
  .mode-card,
  .registration-final-note {
    padding: 24px;
  }

  .registration-final-note {
    text-align: center;
    justify-content: center;
  }
}