*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: #2c2c2c;
  background-color: #ffffff;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1c1917;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

p {
  margin-bottom: 1.5rem;
  color: #44403c;
}

a {
  color: #e8472a;
  text-decoration: none;
  transition: color 0.15s ease;
}
a:hover {
  color: #f07834;
}

img {
  max-width: 100%;
  height: auto;
}

.gradient-text {
  background: linear-gradient(135deg, #2d2d9f 0%, #7b3fa0 30%, #e8472a 65%, #f07834 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-bg {
  background: linear-gradient(135deg, #2d2d9f 0%, #7b3fa0 30%, #e8472a 65%, #f07834 100%);
}

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

.text-white {
  color: #ffffff;
}

.section-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, #2d2d9f 0%, #7b3fa0 30%, #e8472a 65%, #f07834 100%);
  border-radius: 9999px;
}

.section-subtitle {
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.1rem;
  color: #78716c;
  max-width: 600px;
  margin: 2rem auto 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(232, 71, 42, 0.3);
}

.btn-primary {
  background: linear-gradient(135deg, #2d2d9f 0%, #7b3fa0 30%, #e8472a 65%, #f07834 100%);
  color: #ffffff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05), 0 10px 30px rgba(232, 71, 42, 0.35);
  color: #ffffff;
}

.btn-outline {
  background: transparent;
  color: #2c2c2c;
  border: 2px solid transparent;
  position: relative;
}
.btn-outline::before {
  content: "";
  position: absolute;
  inset: -2px;
  padding: 2px;
  background: linear-gradient(135deg, #2d2d9f 0%, #7b3fa0 30%, #e8472a 65%, #f07834 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  border-radius: 9999px;
}
.btn-outline:hover {
  background: linear-gradient(135deg, #2d2d9f 0%, #7b3fa0 30%, #e8472a 65%, #f07834 100%);
  color: #ffffff;
}
.btn-outline:hover::before {
  display: none;
}

.btn-white {
  background: #ffffff;
  color: #e8472a;
}
.btn-white:hover {
  background: #fafaf9;
  color: #e8472a;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.navbar {
  padding: 1rem 0;
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  padding: 0.5rem 0;
}
.navbar .navbar-brand {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1c1917;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.navbar .navbar-brand img {
  height: 50px;
  width: auto;
}
.navbar .navbar-brand span {
  background: linear-gradient(135deg, #2d2d9f 0%, #7b3fa0 30%, #e8472a 65%, #f07834 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.navbar .navbar-nav {
  gap: 0.5rem;
}
.navbar .navbar-nav .nav-link {
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 500;
  color: #44403c;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  transition: all 0.15s ease;
  position: relative;
}
.navbar .navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px;
  height: 2px;
  background: linear-gradient(135deg, #2d2d9f 0%, #7b3fa0 30%, #e8472a 65%, #f07834 100%);
  transition: transform 0.15s ease;
}
.navbar .navbar-nav .nav-link:hover, .navbar .navbar-nav .nav-link.active {
  color: #e8472a;
}
.navbar .navbar-nav .nav-link:hover::after, .navbar .navbar-nav .nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}
.navbar .btn-register {
  margin-left: 1rem;
  padding: 0.5rem 1.5rem;
  font-size: 0.9rem;
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.navbar-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%232c2c2c' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #fafaf9;
}
.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(circle at 35% 35%, #e8472a 0%, #7b3fa0 40%, #2d2d9f 75%, #1ca89a 100%);
  opacity: 0.08;
  filter: blur(100px);
  border-radius: 50%;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle, #f07834 0%, transparent 70%);
  opacity: 0.06;
  filter: blur(80px);
}
.hero .hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 0;
}
.hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #e8472a;
  margin-bottom: 2rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.hero .hero-badge i {
  color: #f07834;
}
.hero .hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero .hero-title .highlight {
  background: linear-gradient(135deg, #2d2d9f 0%, #7b3fa0 30%, #e8472a 65%, #f07834 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}
.hero .hero-title .highlight::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(135deg, #2d2d9f 0%, #7b3fa0 30%, #e8472a 65%, #f07834 100%);
  opacity: 0.2;
  border-radius: 9999px;
}
.hero .hero-subtitle {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 400;
  color: #78716c;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.hero .hero-tagline {
  font-size: 1.25rem;
  color: #44403c;
  margin-bottom: 3rem;
  max-width: 500px;
}
.hero .hero-tagline span {
  font-weight: 600;
  background: linear-gradient(135deg, #2d2d9f 0%, #7b3fa0 30%, #e8472a 65%, #f07834 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero .hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
}
.hero .hero-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero .hero-meta .meta-item i {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2d2d9f 0%, #7b3fa0 30%, #e8472a 65%, #f07834 100%);
  color: #ffffff;
  border-radius: 8px;
  font-size: 1rem;
}
.hero .hero-meta .meta-item .meta-content {
  display: flex;
  flex-direction: column;
}
.hero .hero-meta .meta-item .meta-content .meta-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #78716c;
}
.hero .hero-meta .meta-item .meta-content .meta-value {
  font-weight: 600;
  color: #2c2c2c;
}
.hero .hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero .hero-image {
  position: relative;
}
.hero .hero-image .logo-container {
  position: relative;
  padding: 2rem;
}
.hero .hero-image .logo-container img {
  width: 100%;
  max-width: 500px;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}
.hero .hero-image .logo-container::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle at 35% 35%, #e8472a 0%, #7b3fa0 40%, #2d2d9f 75%, #1ca89a 100%);
  opacity: 0.1;
  filter: blur(60px);
  border-radius: 50%;
  z-index: -1;
}
.hero .hero-image .hero-graphic-container {
  position: relative;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero .hero-image .hero-graphic-container .hero-svg {
  width: 100%;
  max-width: 550px;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(30, 58, 138, 0.15));
  animation: float 6s ease-in-out infinite;
}
.hero .hero-image .hero-graphic-container::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 130%;
  height: 130%;
  background: radial-gradient(circle at 35% 35%, #e8472a 0%, #7b3fa0 40%, #2d2d9f 75%, #1ca89a 100%);
  opacity: 0.08;
  filter: blur(80px);
  border-radius: 50%;
  z-index: -1;
}
.hero .hero-image .hero-graphic-container::after {
  content: "";
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 20%;
  background: radial-gradient(ellipse, rgba(232, 71, 42, 0.2) 0%, transparent 70%);
  filter: blur(20px);
  z-index: -1;
}
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
}
.shape-1 {
  width: 300px;
  height: 300px;
  background: #2d2d9f;
  opacity: 0.1;
  top: 10%;
  right: 10%;
}
.shape-2 {
  width: 200px;
  height: 200px;
  background: #e8472a;
  opacity: 0.08;
  bottom: 20%;
  left: 5%;
}
.shape-3 {
  width: 150px;
  height: 150px;
  background: #f07834;
  opacity: 0.1;
  top: 50%;
  right: 30%;
}

.welcome-section {
  padding: 6rem 0;
}
@media (max-width: 768px) {
  .welcome-section {
    padding: 4rem 0;
  }
}
.welcome-section {
  background-color: #ffffff;
  background-image: radial-gradient(circle, rgba(232, 71, 42, 0.13) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  background-position: 0 0;
  position: relative;
}
.welcome-section .welcome-content {
  margin: 0 auto;
  text-align: left;
}
.welcome-section .welcome-content .welcome-text {
  font-size: 1.15rem;
  line-height: 1.9;
  color: #44403c;
  margin-bottom: 3rem;
}
.welcome-section .pillars-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #2c2c2c;
}

.pillar-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04), 0 0 40px rgba(232, 71, 42, 0.18);
}
.pillar-card {
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
}
.pillar-card .pillar-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-size: 1.75rem;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}
.pillar-card .pillar-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2d2d9f 0%, #7b3fa0 30%, #e8472a 65%, #f07834 100%);
  opacity: 0.9;
}
.pillar-card .pillar-icon i {
  position: relative;
  z-index: 1;
}
.pillar-card .pillar-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #1c1917;
}
.pillar-card .pillar-desc {
  font-size: 0.95rem;
  color: #78716c;
  margin-bottom: 0;
}

.why-attend-section {
  padding: 6rem 0;
}
@media (max-width: 768px) {
  .why-attend-section {
    padding: 4rem 0;
  }
}
.why-attend-section {
  background-color: #fafaf9;
  background-image: linear-gradient(rgba(45, 45, 159, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(123, 63, 160, 0.06) 1px, transparent 1px);
  background-size: 36px 36px;
  background-position: center center;
  position: relative;
  overflow: hidden;
}
.why-attend-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, #2d2d9f 0%, #7b3fa0 30%, #e8472a 65%, #f07834 100%);
  opacity: 0.3;
}
.why-attend-section .feature-row {
  display: flex;
  align-items: center;
  margin-bottom: 6rem;
}
.why-attend-section .feature-row:last-child {
  margin-bottom: 0;
}
.why-attend-section .feature-row:nth-child(even) {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .why-attend-section .feature-row {
    flex-direction: column !important;
    gap: 2rem;
  }
}
.why-attend-section .feature-content {
  padding: 2rem;
}
.why-attend-section .feature-content .feature-number {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 4rem;
  font-weight: 700;
  background: linear-gradient(135deg, #2d2d9f 0%, #7b3fa0 30%, #e8472a 65%, #f07834 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 1rem;
}
.why-attend-section .feature-content .feature-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: #1c1917;
}
.why-attend-section .feature-content .feature-desc {
  color: #44403c;
  font-size: 1.05rem;
  margin-bottom: 0;
}
.why-attend-section .feature-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.why-attend-section .feature-visual .feature-icon-large {
  width: 200px;
  height: 200px;
  border-radius: 24px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  background: linear-gradient(135deg, #2d2d9f 0%, #7b3fa0 30%, #e8472a 65%, #f07834 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  position: relative;
}
.why-attend-section .feature-visual .feature-icon-large::before {
  content: "";
  position: absolute;
  inset: -3px;
  background: linear-gradient(135deg, #2d2d9f 0%, #7b3fa0 30%, #e8472a 65%, #f07834 100%);
  border-radius: 24px;
  z-index: -1;
  opacity: 0.3;
}

.committee-section {
  padding: 6rem 0;
}
@media (max-width: 768px) {
  .committee-section {
    padding: 4rem 0;
  }
}
.committee-section {
  background-color: #ffffff;
  background-image: radial-gradient(circle, rgba(232, 71, 42, 0.13) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  background-position: 0 0;
}
.committee-section .committee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.committee-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 4rem 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
  position: relative;
  overflow: visible;
  z-index: 1;
}
.committee-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(135deg, #2d2d9f 0%, #7b3fa0 30%, #e8472a 65%, #f07834 100%);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
}
.committee-card::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 5%;
  width: 90%;
  height: 30px;
  background: linear-gradient(135deg, #2d2d9f 0%, #7b3fa0 30%, #e8472a 65%, #f07834 100%);
  filter: blur(20px);
  opacity: 0;
  z-index: -2;
  transition: opacity 0.4s ease;
  border-radius: 50%;
}
.committee-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.committee-card:hover::before {
  opacity: 0.03;
}
.committee-card:hover::after {
  opacity: 0.4;
}
.committee-card:hover .member-avatar {
  transform: scale(1.08) translateY(-5px);
  box-shadow: 0 15px 25px rgba(232, 71, 42, 0.25);
}
.committee-card:hover .member-avatar::before {
  transform: rotate(180deg);
}
.committee-card .member-avatar {
  width: 120px;
  height: 120px;
  margin: 0 auto 2rem;
  position: relative;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}
.committee-card .member-avatar::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2d2d9f 0%, #7b3fa0 30%, #e8472a 65%, #f07834 100%);
  z-index: -1;
  transition: transform 0.6s ease;
}
.committee-card .member-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #ffffff;
}
.committee-card .member-name {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
  color: #1c1917;
  background: linear-gradient(135deg, #2d2d9f 0%, #7b3fa0 30%, #e8472a 65%, #f07834 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
}
.committee-card .member-role {
  font-size: 0.95rem;
  color: #44403c;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
}
.committee-card .member-contact {
  font-size: 0.95rem;
  color: #78716c;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.committee-card .member-contact i {
  font-size: 1rem;
  color: #2d2d9f;
}

.registration-section {
  padding: 6rem 0;
}
@media (max-width: 768px) {
  .registration-section {
    padding: 4rem 0;
  }
}
.registration-section {
  background: linear-gradient(135deg, #2d2d9f 0%, #7b3fa0 30%, #e8472a 65%, #f07834 100%);
  position: relative;
  overflow: hidden;
}
.registration-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}
.registration-section .section-title,
.registration-section .section-subtitle {
  color: #ffffff;
}
.registration-section .section-title::after,
.registration-section .section-subtitle::after {
  background: #ffffff;
}
.registration-section .pricing-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  padding: 3rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.registration-section .pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04), 0 0 40px rgba(232, 71, 42, 0.18);
}
.registration-section .pricing-card {
  position: relative;
  z-index: 1;
}
.registration-section .pricing-card .pricing-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, #2d2d9f 0%, #7b3fa0 30%, #e8472a 65%, #f07834 100%);
  color: #ffffff;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}
.registration-section .pricing-card .pricing-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1c1917;
}
.registration-section .pricing-card .pricing-amount {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #2d2d9f 0%, #7b3fa0 30%, #e8472a 65%, #f07834 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.registration-section .pricing-card .pricing-amount .currency {
  font-size: 1.5rem;
  vertical-align: super;
}
.registration-section .pricing-card .pricing-note {
  font-size: 0.9rem;
  color: #78716c;
  margin-bottom: 2rem;
}
.registration-section .pricing-card .pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  text-align: left;
}
.registration-section .pricing-card .pricing-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}
.registration-section .pricing-card .pricing-features li:last-child {
  border-bottom: none;
}
.registration-section .pricing-card .pricing-features li i {
  color: #e8472a;
}
.registration-section .pricing-card.featured {
  transform: scale(1.05);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
@media (max-width: 768px) {
  .registration-section .pricing-card.featured {
    transform: scale(1);
  }
}
.registration-section .registration-note {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.5rem;
  margin-top: 3rem;
  text-align: center;
  color: #ffffff;
  position: relative;
  z-index: 1;
}
.registration-section .registration-note i {
  margin-right: 0.5rem;
}

.coming-soon-section {
  margin-top: 15vh;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fafaf9;
  background-image: linear-gradient(rgba(45, 45, 159, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(123, 63, 160, 0.06) 1px, transparent 1px);
  background-size: 36px 36px;
  background-position: center center;
  position: relative;
  overflow: hidden;
}
.coming-soon-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle at 35% 35%, #e8472a 0%, #7b3fa0 40%, #2d2d9f 75%, #1ca89a 100%);
  opacity: 0.05;
  filter: blur(100px);
  border-radius: 50%;
}
.coming-soon-section .coming-soon-content {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 3rem;
}
.coming-soon-section .coming-soon-content .coming-soon-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, #2d2d9f 0%, #7b3fa0 30%, #e8472a 65%, #f07834 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #ffffff;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04), 0 0 60px rgba(232, 71, 42, 0.3);
  animation: pulse 2s ease-in-out infinite;
}
.coming-soon-section .coming-soon-content .coming-soon-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #2d2d9f 0%, #7b3fa0 30%, #e8472a 65%, #f07834 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.coming-soon-section .coming-soon-content .coming-soon-text {
  font-size: 1.25rem;
  color: #78716c;
  margin-bottom: 3rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.coming-soon-section .coming-soon-content .notify-form {
  max-width: 450px;
  margin: 0 auto;
}
.coming-soon-section .coming-soon-content .notify-form .input-group {
  background: #ffffff;
  border-radius: 9999px;
  padding: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  display: flex;
  gap: 0.5rem;
}
.coming-soon-section .coming-soon-content .notify-form .input-group input {
  flex: 1;
  border: none;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  background: transparent;
}
.coming-soon-section .coming-soon-content .notify-form .input-group input:focus {
  outline: none;
}
.coming-soon-section .coming-soon-content .notify-form .input-group input::placeholder {
  color: #78716c;
}
.coming-soon-section .coming-soon-content .notify-form .input-group button {
  padding: 1rem 2rem;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
.footer {
  background: #1c1917;
  color: #ffffff;
  padding: 6rem 0 2rem;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #2d2d9f 0%, #7b3fa0 30%, #e8472a 65%, #f07834 100%);
}
.footer .footer-brand {
  margin-bottom: 2rem;
}
.footer .footer-brand img {
  height: 60px;
  margin-bottom: 1.5rem;
}
.footer .footer-brand .footer-tagline {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
}
.footer .footer-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
  position: relative;
  display: inline-block;
}
.footer .footer-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(135deg, #2d2d9f 0%, #7b3fa0 30%, #e8472a 65%, #f07834 100%);
  border-radius: 9999px;
}
.footer .footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.8);
}
.footer .footer-contact li i {
  width: 20px;
  margin-top: 4px;
  color: #e8472a;
}
.footer .footer-contact li a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.15s ease;
}
.footer .footer-contact li a:hover {
  color: #ffffff;
}
.footer .footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.footer .footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.15s ease;
}
.footer .footer-social a:hover {
  background: linear-gradient(135deg, #2d2d9f 0%, #7b3fa0 30%, #e8472a 65%, #f07834 100%);
  transform: translateY(-3px);
}
.footer .footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}
.footer .footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .navbar .navbar-collapse {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 16px;
    margin-top: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(232, 71, 42, 0.1);
  }
  .navbar .navbar-nav .nav-link {
    text-align: center;
    padding: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  .navbar .navbar-nav .nav-link::after {
    display: none;
  }
  .navbar .btn-register {
    margin-left: 0;
    margin-top: 1rem;
    width: 100%;
  }
  .hero {
    min-height: auto;
    padding: 120px 0 4rem;
  }
  .hero .hero-content {
    text-align: center;
  }
  .hero .hero-content .hero-meta {
    justify-content: center;
  }
  .hero .hero-content .hero-buttons {
    justify-content: center;
  }
  .hero .hero-image {
    margin-top: 3rem;
  }
  .welcome-section .row.align-items-stretch {
    flex-direction: column;
  }
  .welcome-section .row.align-items-stretch .col-lg-5 {
    margin-bottom: 3rem;
    min-height: 300px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  .section-padding {
    padding: 3rem 0;
  }
  .hero .hero-title {
    font-size: 2.75rem;
  }
  .why-attend-section .feature-row {
    margin-bottom: 3rem;
    text-align: center;
    flex-direction: column !important;
  }
  .why-attend-section .feature-row .feature-content {
    order: 2;
  }
  .why-attend-section .feature-row .feature-visual {
    order: 1;
    margin-bottom: 1.5rem;
  }
  .why-attend-section .feature-visual .feature-icon-large {
    width: 120px;
    height: 120px;
    font-size: 2.5rem;
  }
  .committee-card {
    padding: 3rem 1.5rem;
  }
  .committee-card .member-avatar {
    width: 100px;
    height: 100px;
  }
  .registration-section .pricing-card {
    padding: 2rem;
  }
  .registration-section .pricing-card.featured {
    transform: none;
  }
}
@media (max-width: 576px) {
  .hero .hero-meta {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }
  .hero .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 1.5rem;
  }
  .hero .hero-buttons .btn {
    width: 100%;
  }
  .committee-card {
    margin: 0 1rem;
  }
}
[data-aos] {
  pointer-events: none;
}
[data-aos].aos-animate {
  pointer-events: auto;
}

.aos-delay-100 {
  transition-delay: 100ms;
}

.aos-delay-200 {
  transition-delay: 200ms;
}

.aos-delay-300 {
  transition-delay: 300ms;
}

.aos-delay-400 {
  transition-delay: 400ms;
}

.aos-delay-500 {
  transition-delay: 500ms;
}/*# sourceMappingURL=style.css.map */