@charset "UTF-8";
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css");
@import url("https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  scrollbar-width: thin;
  scrollbar-color: #7e57c2 rgba(126, 87, 194, 0.2);
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #f2f2f2;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #004377, #00c6ff);
  border-radius: 10px;
  border: 2px solid #f2f2f2;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/* Hover Effect */
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #00345c, #0099cc);
}

/* Corner */
::-webkit-scrollbar-corner {
  background: transparent;
}

/* Modern gradient selection */
::-moz-selection {
  color: white;
  background: #7e57c2;
  text-shadow: 0 0 0 #7e57c2, 0 0 0 #d1b7ff;
}
::selection {
  color: white;
  background: #7e57c2;
  text-shadow: 0 0 0 #7e57c2, 0 0 0 #d1b7ff;
}

body {
  font-family: "Barlow", sans-serif;
  margin: 0;
  color: #222;
  background: #fff;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  background: #fff;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 18px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(208, 178, 211, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.logo {
  font-size: 28px;
  font-weight: 700;
  color: #7e57c2;
  letter-spacing: 1px;
}
.logo img {
  width: 200px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 35px;
  list-style: none;
}
.nav-links li {
  list-style: none;
}
.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  transition: 0.3s ease;
  white-space: nowrap;
}
.nav-links a:hover {
  color: #ee63a4;
}
.nav-links a.active {
  color: #ee63a4;
}
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: #ee63a4;
  border-radius: 20px;
}

.register-btn-wrap-nav {
  display: flex;
  justify-content: center;
}

.register-btn-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 27px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: #fff;
  background: linear-gradient(135deg, #404195, #ee66a5);
  box-shadow: 0 12px 30px rgba(139, 92, 246, 0.35);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid #ee63a4;
}
.register-btn-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%);
  transition: 0.7s;
}
.register-btn-nav:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 18px 40px rgba(238, 99, 164, 0.4);
}
.register-btn-nav:hover::before {
  transform: translateX(120%);
}

.menu-toggle {
  display: none;
  font-size: 30px;
  color: #a80054;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.slide.active {
  opacity: 1;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255, 255, 255, 0.35), rgba(214, 51, 132, 0.59));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 20px;
}
@media (max-width: 480px) {
  .hero-content img {
    width: 400px;
  }
}
.hero-content h1 {
  font-size: 70px;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
.hero-content p {
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 1px;
}

.top-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
  padding: 12px 22px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(14px);
  border-radius: 50px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}
.top-logos img {
  width: 55px;
  height: 55px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 50%;
  background: white;
  padding: 1px;
  transition: all 0.3s ease;
}
.top-logos img:hover {
  transform: translateY(-4px) scale(1.08);
}
@media (max-width: 768px) {
  .top-logos {
    gap: 12px;
    padding: 10px 16px;
    margin-top: 22px;
  }
  .top-logos img {
    width: 42px;
    height: 42px;
    padding: 6px;
  }
}
@media (max-width: 480px) {
  .top-logos {
    gap: 10px;
    padding: 8px 14px;
    margin-top: 18px;
  }
  .top-logos img {
    width: 34px;
    height: 34px;
    padding: 5px;
  }
}

.content-section {
  scroll-margin-top: 80px;
}

.content-section {
  min-height: 100vh;
  padding: 45px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: left;
  background: #f7f7f7;
}
.content-section h2 {
  font-size: 50px;
  margin-bottom: 20px;
  color: #111;
}
.content-section p {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
}
.content-section.dark {
  background: rgb(61, 66, 148);
}
.content-section.dark h2 {
  color: #ee63a4;
}
.content-section.dark p {
  color: #ddd;
}

@media (max-width: 991px) {
  .header {
    padding: 18px 30px;
  }
  .nav-links {
    gap: 20px;
  }
  .hero-content h1 {
    font-size: 52px;
  }
  .hero-content p {
    font-size: 18px;
  }
  .content-section h2 {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .header {
    padding: 16px 20px;
  }
  .menu-toggle {
    display: block;
  }
  .nav-links {
    position: absolute;
    top: 75px;
    right: -100%;
    width: 230px;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    padding: 30px;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
  }
  .nav-links.show {
    right: 15px;
  }
  .nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    transition: 0.3s ease;
    white-space: nowrap;
    padding-left: 22px;
  }
  .nav-links a::before {
    content: "➜";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #ff4da6;
    transition: 0.3s ease;
  }
  .nav-links a:hover {
    color: #ff4da6;
  }
  .nav-links a:hover::before {
    left: 4px;
    color: #fff;
  }
  .hero-content h1 {
    font-size: 38px;
    line-height: 1.2;
  }
  .hero-content p {
    font-size: 16px;
  }
  .content-section {
    padding: 45px 20px;
  }
  .content-section h2 {
    font-size: 32px;
  }
  .content-section p {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .logo {
    font-size: 22px;
  }
  .hero-content h1 {
    font-size: 30px;
  }
  .hero-content p {
    font-size: 14px;
  }
  .content-section h2 {
    font-size: 28px;
  }
}
.organising-team {
  max-width: 1450px;
  margin: auto;
  padding: 20px 16px;
}

.section-header {
  text-align: center;
  margin-bottom: 45px;
}

.tag {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(214, 51, 132, 0.12);
  color: #7e57c2;
  border-radius: 30px;
  font-size: 13px;
  margin-bottom: 16px;
  font-weight: 600;
}

.section-header h2 {
  font-size: 3rem;
  margin-bottom: 12px;
  color: #ee63a4;
  font-weight: 700;
}

.section-header p {
  color: #64748b;
  font-size: 1rem;
}

/* ROW */
.team-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 35px;
  align-items: start;
}

/* GROUP */
.team-group {
  background: #fff;
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  height: 100%;
}

.team-group h3 {
  font-size: 1.2rem;
  color: #ee63a4;
  margin-bottom: 18px;
  padding: 12px 16px;
  background: rgba(126, 87, 194, 0.12);
  border-left: 4px solid #ee63a4;
  border-radius: 12px;
}

/* MEMBER GRID */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

/* CARD */
.member-card {
  background: #ffffff;
  border: 1px solid #eef2ff;
  border-radius: 18px;
  padding: 18px 12px;
  text-align: center;
  transition: 0.3s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.member-card:hover {
  transform: translateY(-6px);
  border-color: #7e57c2;
  box-shadow: 0 14px 24px rgba(126, 87, 194, 0.12);
}

.member-card img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  -o-object-fit: contain;
     object-fit: contain;
  border: 3px solid #ee63a4;
  background: #a4e5eb;
  margin-bottom: 12px;
}

.member-card h4 {
  font-size: 0.95rem;
  color: #334155;
  margin-bottom: 8px;
  line-height: 1.4;
  font-weight: 600;
}

.member-card span {
  display: inline-block;
  padding: 6px 12px;
  font-size: 0.78rem;
  color: #ee63a4;
  background: rgba(238, 99, 164, 0.2039215686);
  border-radius: 20px;
  font-weight: 500;
}

/* ================= TABLET ================= */
@media (max-width: 991px) {
  .section-header h2 {
    font-size: 2.3rem;
  }
  .team-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .member-card img {
    width: 85px;
    height: 85px;
  }
}
/* ================= MOBILE ================= */
@media (max-width: 767px) {
  .organising-team {
    padding: 20px 12px;
  }
  .section-header {
    margin-bottom: 30px;
  }
  .section-header h2 {
    font-size: 1.9rem;
  }
  .section-header p {
    font-size: 0.9rem;
  }
  .team-row {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 20px;
  }
  .team-group {
    padding: 14px;
    border-radius: 18px;
  }
  .team-group h3 {
    font-size: 1rem;
    padding: 10px 14px;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .member-card {
    padding: 14px 8px;
    border-radius: 16px;
  }
  .member-card img {
    width: 70px;
    height: 70px;
    -o-object-fit: contain;
       object-fit: contain;
    padding: 3px;
  }
  .member-card h4 {
    font-size: 0.78rem;
    line-height: 1.3;
  }
  .member-card span {
    font-size: 0.7rem;
    padding: 5px 10px;
  }
}
/* EXTRA SMALL */
@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
  .member-card h4 {
    font-size: 0.72rem;
  }
  .member-card img {
    width: 62px;
    height: 62px;
    -o-object-fit: contain;
       object-fit: contain;
    padding: 3px;
  }
}
.message-highlight-wrapper {
  padding: 0px 4%;
  position: relative;
}

.split-container {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* LEFT MESSAGE */
.message-box {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px);
  padding: 20px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.section-tag,
.tag {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(238, 99, 164, 0.1490196078);
  border: 1px solid #ee63a4;
  color: #ee63a4;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
}

.message-box h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 24px;
  color: #0f172a;
}

.message-box p {
  font-size: 16px;
  line-height: 1.9;
  color: #475569;
}

.author-info {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
}

.author-info h4 {
  font-size: 22px;
  margin-bottom: 5px;
  color: rgb(250, 230, 240);
}

.author-info span {
  color: #ee63a4;
  font-size: 14px;
  font-weight: 600;
}

.highlights-box {
  background: #fff;
  padding: 20px;
  border-radius: 28px;
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
}

.section-title {
  margin-bottom: 30px;
}

.section-title h2 {
  font-size: 34px;
  font-weight: 800;
  color: #0f172a;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.highlight-card {
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  min-height: 110px;
  position: relative;
  border: 1px solid #edf2f7;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
  transition: 0.3s ease;
  overflow: hidden;
}

.highlight-card::before {
  content: "";
  position: absolute;
  height: 4px;
  width: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, #7e57c2, #f472b6);
}

.highlight-card:hover {
  transform: translateY(-6px);
}

.number {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(126, 87, 194, 0.4392156863);
}

.highlight-card h3 {
  margin-top: 35px;
  font-size: 1rem;
  line-height: 1.5;
  color: #1e293b;
  font-weight: 700;
}

@media (max-width: 992px) {
  .split-container {
    grid-template-columns: 1fr;
  }
  .message-box h2 {
    font-size: 34px;
  }
}
@media (max-width: 576px) {
  .message-highlight-wrapper {
    padding: 10px 15px;
  }
  .message-box,
  .highlights-box {
    padding: 25px 20px;
  }
  .message-box h2 {
    font-size: 28px;
  }
  .highlights-grid {
    grid-template-columns: 1fr;
  }
  .section-title h2 {
    font-size: 1.8rem;
  }
}
.scientific-program {
  padding: 0px 20px;
}
.scientific-program .container {
  max-width: 1200px;
  margin: auto;
}
.scientific-program .section-header {
  text-align: center;
  margin-bottom: 50px;
}
.scientific-program .section-header .tag {
  display: inline-block;
  background: rgba(238, 99, 164, 0.1490196078);
  color: #ee63a4;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 15px;
}
.scientific-program .section-header h2 {
  font-size: 42px;
  color: #222;
  margin-bottom: 12px;
  font-weight: 800;
}
.scientific-program .section-header p {
  color: #666;
  font-size: 17px;
  max-width: 650px;
  margin: auto;
  line-height: 1.7;
}
.scientific-program .program-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.scientific-program .program-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;
  border: 1px solid #eee;
}
.scientific-program .program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(126, 87, 194, 0.18);
}
.scientific-program .program-card .card-title {
  padding: 18px 22px;
  font-size: 20px;
  font-weight: 700;
  color: white;
}
.scientific-program .program-card .purple {
  background: linear-gradient(90deg, #3f3f95, #f161a2);
}
.scientific-program .program-card ol {
  padding: 25px 28px 28px 45px;
  margin: 0;
}
.scientific-program .program-card ol li {
  margin-bottom: 18px;
  color: #444;
  line-height: 1.7;
  font-size: 16px;
}
.scientific-program .program-card .highlight {
  font-weight: 700;
  color: #7e57c2;
}
.scientific-program .program-card .pink {
  color: #e91e63;
}
.scientific-program .program-card .green {
  color: #00a86b;
}
.scientific-program .program-card .red {
  color: #e53935;
}
.scientific-program .program-card .orange {
  color: #fb8c00;
}

/* Tablet */
@media (max-width: 991px) {
  .scientific-program .section-header h2 {
    font-size: 34px;
  }
  .scientific-program .program-grid {
    grid-template-columns: 1fr;
  }
}
/* Mobile */
@media (max-width: 576px) {
  .scientific-program {
    padding: 10px 15px;
  }
  .scientific-program .section-header h2 {
    font-size: 28px;
  }
  .scientific-program .section-header p {
    font-size: 15px;
  }
  .scientific-program .program-card .card-title {
    font-size: 17px;
    padding: 16px;
  }
  .scientific-program .program-card ol {
    padding: 20px 20px 20px 35px;
  }
  .scientific-program .program-card ol li {
    font-size: 14px;
    margin-bottom: 14px;
  }
}
.registration-tariff {
  padding: 0px 0px 70px 0px;
}
.registration-tariff .container {
  max-width: 1250px;
  margin: auto;
}
.registration-tariff .section-header {
  text-align: center;
  margin-bottom: 50px;
}
.registration-tariff .section-header .tag {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 30px;
  background: rgba(238, 99, 164, 0.1490196078);
  border: 1px solid #ee63a4;
  color: #ee63a4;
  backdrop-filter: blur(10px);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
}
.registration-tariff .section-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
}
.registration-tariff .section-header p {
  max-width: 620px;
  margin: auto;
  color: #cbd5e1;
  line-height: 1.7;
  font-size: 16px;
}
.registration-tariff {
  /* DESKTOP TABLE */
}
.registration-tariff .desktop-table {
  overflow-x: auto;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}
.registration-tariff .desktop-table table {
  width: 100%;
  border-collapse: collapse;
}
.registration-tariff .desktop-table thead {
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
}
.registration-tariff .desktop-table thead th {
  padding: 22px;
  color: white;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}
.registration-tariff .desktop-table thead th small {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  opacity: 0.9;
  font-weight: 400;
}
.registration-tariff .desktop-table thead .popular {
  background: rgba(255, 255, 255, 0.08);
}
.registration-tariff .desktop-table tbody tr {
  border-bottom: 1px solid #e5e7eb;
  transition: 0.3s;
}
.registration-tariff .desktop-table tbody tr:hover {
  background: #faf5ff;
}
.registration-tariff .desktop-table tbody td {
  padding: 18px;
  text-align: center;
  color: #334155;
  font-size: 15px;
}
.registration-tariff .desktop-table tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: #111827;
}
.registration-tariff .desktop-table tbody .highlight {
  background: #f5f3ff;
  color: #ee63a4;
  font-weight: 700;
}
.registration-tariff {
  /* MOBILE CARDS */
}
.registration-tariff .mobile-cards {
  display: none;
}
.registration-tariff .price-card {
  background: rgba(255, 255, 255, 0.97);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}
.registration-tariff .price-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1e1b4b;
  margin-bottom: 18px;
}
.registration-tariff .price-card .price-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.registration-tariff .price-card .price-list div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-radius: 14px;
  background: #f8fafc;
}
.registration-tariff .price-card .price-list div span {
  color: #64748b;
  font-size: 14px;
}
.registration-tariff .price-card .price-list div strong {
  color: #111827;
  font-size: 16px;
  font-weight: 700;
}
.registration-tariff .price-card .price-list .featured {
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
}
.registration-tariff .price-card .price-list .featured span,
.registration-tariff .price-card .price-list .featured strong {
  color: white;
}
.registration-tariff .gst-note {
  text-align: center;
  margin-top: 25px;
  color: #cbd5e1;
  font-size: 14px;
  font-style: italic;
}

.register-btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.register-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 38px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: #fff;
  background: linear-gradient(135deg, #404195, #ee66a5);
  box-shadow: 0 12px 30px rgba(139, 92, 246, 0.35);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid #ee63a4;
}
.register-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.35) 50%, transparent 80%);
  transform: translateX(-120%);
  transition: 0.7s;
}
.register-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 18px 40px rgba(238, 99, 164, 0.4);
}
.register-btn:hover::before {
  transform: translateX(120%);
}

@media (max-width: 768px) {
  .register-btn {
    width: 100%;
    max-width: 280px;
    padding: 15px 28px;
    font-size: 15px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.17);
    border: 1px solid #ee63a4;
  }
  .register-btn-wrap {
    margin-top: 24px;
  }
}
@media (max-width: 992px) {
  .registration-tariff {
    padding: 70px 18px;
  }
  .registration-tariff .section-header h2 {
    font-size: 34px;
  }
  .registration-tariff .desktop-table th,
  .registration-tariff .desktop-table td {
    padding: 16px;
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .registration-tariff {
    padding: 10px 15px;
  }
  .registration-tariff .section-header h2 {
    font-size: 28px;
    line-height: 1.3;
  }
  .registration-tariff .section-header p {
    font-size: 14px;
    padding: 0 10px;
  }
  .registration-tariff .desktop-table {
    display: none;
  }
  .registration-tariff .mobile-cards {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .registration-tariff .price-card {
    padding: 20px 18px;
    border-radius: 18px;
  }
  .registration-tariff .price-card h3 {
    font-size: 17px;
    line-height: 1.4;
  }
  .registration-tariff .price-card .price-list div {
    padding: 13px 14px;
  }
  .registration-tariff .price-card .price-list div span {
    font-size: 13px;
  }
  .registration-tariff .price-card .price-list div strong {
    font-size: 15px;
  }
}
.important-dates {
  padding: 45px 40px;
  position: relative;
  overflow: hidden;
  background: rgba(238, 99, 164, 0.2);
}
.important-dates .container {
  max-width: 1350px;
  margin: auto;
}
.important-dates .section-header {
  text-align: center;
  margin-bottom: 60px;
}
.important-dates .section-header .tag {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 30px;
  background: rgba(126, 87, 194, 0.12);
  color: #ee63a4;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 15px;
}
.important-dates .section-header h2 {
  font-size: 42px;
  font-weight: 800;
  color: #3e4094;
  margin-bottom: 14px;
}
.important-dates .section-header p {
  max-width: 650px;
  margin: auto;
  font-size: 17px;
  color: #ee63a4;
  line-height: 1.7;
}
.important-dates .dates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.important-dates .date-card {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: 0.35s ease;
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.important-dates .date-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(126, 87, 194, 0.18);
}
.important-dates .date-card.featured {
  border: 2px solid #7e57c2;
  background: linear-gradient(135deg, #ffffff, #f7f3ff);
}
.important-dates .date-badge {
  min-width: 95px;
  height: 95px;
  border-radius: 24px;
  background: linear-gradient(135deg, #7e57c2, #5c6bc0);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 25px rgba(126, 87, 194, 0.3);
}
.important-dates .date-badge .month {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}
.important-dates .date-badge .day {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.1;
}
.important-dates .date-badge.highlight {
  background: linear-gradient(135deg, #00bcd4, #009688);
}
.important-dates .date-badge.warning {
  background: linear-gradient(135deg, #ff9800, #ff5722);
}
.important-dates .date-badge.event {
  background: linear-gradient(135deg, #e91e63, #9c27b0);
}
.important-dates .date-content {
  flex: 1;
}
.important-dates .date-content h3 {
  font-size: 21px;
  font-weight: 700;
  color: #1e1e2f;
  margin-bottom: 8px;
}
.important-dates .date-content p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 991px) {
  .important-dates {
    padding: 40px 35px;
  }
  .important-dates .section-header h2 {
    font-size: 34px;
  }
  .important-dates .dates-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
@media (max-width: 576px) {
  .important-dates {
    padding: 70px 15px;
  }
  .important-dates .section-header {
    margin-bottom: 40px;
  }
  .important-dates .section-header h2 {
    font-size: 28px;
  }
  .important-dates .section-header p {
    font-size: 15px;
  }
  .important-dates .date-card {
    flex-direction: column;
    text-align: center;
    padding: 22px 18px;
    gap: 18px;
  }
  .important-dates .date-badge {
    min-width: 85px;
    height: 85px;
  }
  .important-dates .date-badge .day {
    font-size: 28px;
  }
  .important-dates .date-content h3 {
    font-size: 18px;
  }
  .important-dates .date-content p {
    font-size: 14px;
  }
}
.contact-footer {
  padding: 60px 20px 25px;
  width: 100%;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 2;
}

.footer-heading {
  text-align: center;
  margin-bottom: 35px;
}
.footer-heading span {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #fff;
  padding: 10px 22px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: 0.35s ease;
}
.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25);
}
.contact-card .icon {
  min-width: 55px;
  height: 55px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
}
.contact-card .icon img {
  width: 34px;
  height: 34px;
  -o-object-fit: contain;
     object-fit: contain;
}
.contact-card .details h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}
.contact-card .details p {
  margin: 5px 0 0;
  font-size: 15px;
  color: #fbcfe8;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr;
  gap: 50px;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-about h3 {
  font-size: 24px;
  margin-bottom: 18px;
  color: #fff;
}
.footer-about p {
  line-height: 1.8;
  color: #e9d5ff;
  font-size: 15px;
}
.footer-about .contact-info {
  margin-top: 20px;
}
.footer-about .contact-info p {
  margin-bottom: 8px;
  color: #fff;
}

.footer-links h3 {
  font-size: 20px;
  margin-bottom: 18px;
  color: #fff;
}
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links ul li {
  margin-bottom: 12px;
}
.footer-links ul li a {
  color: #e9d5ff;
  text-decoration: none;
  transition: 0.3s ease;
  position: relative;
}
.footer-links ul li a:hover {
  color: #fff;
  padding-left: 8px;
}

.footer-branding h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #fff;
}
.footer-branding .main-logo {
  height: 140px;
  margin-bottom: 22px;
  padding: 14px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.46);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.footer-branding .main-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer-branding .sub-logos {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.footer-branding .sub-logos img {
  width: 62px;
  height: 62px;
  padding: 8px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: 0.3s ease;
}
.footer-branding .sub-logos img:hover {
  transform: translateY(-5px) scale(1.05);
}
.footer-branding .social-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-branding .social-icons a {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: 0.3s ease;
}
.footer-branding .social-icons a:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, #ec4899, #8b5cf6);
  box-shadow: 0 12px 24px rgba(236, 72, 153, 0.25);
}

.footer-bottom {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: #d8b4fe;
}

@media (max-width: 991px) {
  .contact-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }
  .footer-about {
    grid-column: 1/-1;
  }
  .footer-branding {
    grid-column: 1/-1;
  }
}
@media (max-width: 767px) {
  .contact-footer {
    padding: 45px 15px 20px;
  }
  .footer-heading {
    margin-bottom: 28px;
  }
  .footer-heading span {
    font-size: 12px;
    padding: 8px 18px;
  }
  .contact-list {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 40px;
  }
  .contact-card {
    padding: 18px;
    border-radius: 18px;
  }
  .contact-card .details h4 {
    font-size: 16px;
  }
  .contact-card .details p {
    font-size: 14px;
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  .footer-branding .main-logo {
    margin: 0 auto 20px;
    width: 120px;
    height: 120px;
  }
  .footer-branding .sub-logos {
    justify-content: center;
  }
  .footer-branding .social-icons {
    justify-content: center;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}
#backToTop {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 52px;
  height: 52px;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.9);
  transition: all 0.35s ease;
  background: linear-gradient(135deg, #7f5af0, #ff4ecd);
}
#backToTop span {
  transition: transform 0.3s ease;
}
#backToTop:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 30px rgba(127, 90, 240, 0.35);
}
#backToTop:hover span {
  transform: translateY(-3px);
}
#backToTop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

@media (max-width: 768px) {
  #backToTop {
    width: 46px;
    height: 46px;
    bottom: 18px;
    right: 18px;
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  #backToTop {
    width: 42px;
    height: 42px;
    bottom: 15px;
    right: 15px;
    font-size: 18px;
  }
}/*# sourceMappingURL=style.css.map */