/* ===========================
   ICSCE 2026 — style.css
   Theme: #245921 (green) & #f08f48 (orange)
   =========================== */

:root {
  --green: #245921;
  --green-dark: #1a4118;
  --green-light: #2e7228;
  --orange: #f08f48;
  --orange-dark: #d97030;
  --white: #ffffff;
  --off-white: #f7f9f4;
  --light-green: #eef5ec;
  --text-dark: #1a2d19;
  --text-body: #3d4d3c;
  --text-muted: #6b7b6a;
  --shadow-sm: 0 2px 12px rgba(36,89,33,0.08);
  --shadow-md: 0 6px 28px rgba(36,89,33,0.13);
  --shadow-lg: 0 16px 48px rgba(36,89,33,0.18);
  --radius: 14px;
  --radius-lg: 22px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
}

/* ===========================
   TYPOGRAPHY
   =========================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--text-dark);
}

.text-green { color: var(--green) !important; }
.text-orange { color: var(--orange) !important; }

/* ===========================
   NAVBAR
   =========================== */
#mainNav {
  background: rgba(255,255,255,0.0);
  backdrop-filter: blur(0px);
  transition: all 0.35s ease;
  padding: 18px 0;
  z-index: 1000;
}

#mainNav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}

#mainNav .nav-link {
  color: var(--white);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.25s;
  letter-spacing: 0.3px;
}

#mainNav.scrolled .nav-link { color: var(--text-dark); }

#mainNav .nav-link:hover {
  color: var(--orange) !important;
  background: rgba(240,143,72,0.08);
}

.brand-logo {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  box-shadow: 0 3px 10px rgba(36,89,33,0.3);
}

.brand-name {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--white);
  line-height: 1;
  transition: color 0.3s;
}

.brand-sub {
  font-size: 0.68rem;
  color: var(--orange);
  font-weight: 600;
  letter-spacing: 1px;
}

#mainNav.scrolled .brand-name { color: var(--green); }

.btn-register {
  background: var(--orange);
  color: white !important;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.88rem;
  transition: all 0.3s;
  border: none;
  box-shadow: 0 4px 14px rgba(240,143,72,0.35);
  letter-spacing: 0.3px;
}

.btn-register:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(240,143,72,0.45);
}

.hamburger-icon { color: white; font-size: 1.6rem; }
#mainNav.scrolled .hamburger-icon { color: var(--green); }
.navbar-toggler { border: none; box-shadow: none !important; }

/* ===========================
   HERO
   =========================== */
.hero-section {
  /* min-height: 100vh; */
  background: linear-gradient(150deg, var(--green-dark) 0%, var(--green) 50%, #2d7a2a 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 90px;
  padding-bottom: 40px;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(240,143,72,0.08) 0%, transparent 40%),
    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.03'%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");
  pointer-events: none;
}

.hero-leaves { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.leaf {
  position: absolute;
  border-radius: 50% 0 50% 0;
  opacity: 0.07;
}

.leaf-1 {
  width: 400px; height: 400px;
  background: #a8e063;
  top: -80px; right: -80px;
  transform: rotate(30deg);
  animation: leafFloat 8s ease-in-out infinite;
}

.leaf-2 {
  width: 250px; height: 250px;
  background: var(--orange);
  bottom: 60px; right: 100px;
  transform: rotate(-20deg);
  animation: leafFloat 10s ease-in-out infinite 2s;
}

.leaf-3 {
  width: 180px; height: 180px;
  background: #a8e063;
  top: 200px; left: -40px;
  transform: rotate(60deg);
  animation: leafFloat 12s ease-in-out infinite 4s;
}

@keyframes leafFloat {
  0%, 100% { transform: rotate(30deg) translateY(0); }
  50% { transform: rotate(30deg) translateY(-20px); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(240,143,72,0.15);
  border: 1px solid rgba(240,143,72,0.4);
  color: var(--orange);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  backdrop-filter: blur(4px);
}

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  color: white;
  line-height: 1.1;
  margin-bottom: 20px;
}

.highlight-text {
  color: var(--orange);
  position: relative;
}

.hero-sub {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 520px;
  font-weight: 400;
}

.hero-date-box {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  padding: 20px 28px;
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
  width: fit-content;
}

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

.date-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}

.date-day {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-top: 4px;
}

.date-sep {
  font-size: 1.6rem;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
  padding: 0 6px;
}

.date-month {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  padding-left: 16px;
  border-left: 2px solid rgba(255,255,255,0.2);
}

.btn-primary-custom {
  background: var(--orange);
  color: white;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  transition: all 0.3s;
  border: none;
  box-shadow: 0 6px 20px rgba(240,143,72,0.4);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary-custom:hover {
  background: var(--orange-dark);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(240,143,72,0.5);
}

.btn-outline-custom {
  background: transparent;
  color: white;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  transition: all 0.3s;
  border: 2px solid rgba(255,255,255,0.5);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline-custom:hover {
  background: rgba(255,255,255,0.12);
  border-color: white;
  color: white;
  transform: translateY(-3px);
}

.hero-stat-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 260px;
  box-shadow: var(--shadow-lg);
}

.stat-item { padding: 20px 0; text-align: center; }

.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.72);
  font-weight: 500;
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-divider {
  height: 1px;
  background: rgba(255,255,255,0.15);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.scroll-arrow {
  margin-top: 6px;
  animation: bounce 2s ease-in-out infinite;
  font-size: 1rem;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ===========================
   TICKER
   =========================== */
.ticker-bar {
  background: var(--green-dark);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  height: 46px;
}

.ticker-label {
  background: var(--orange);
  color: white;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0 20px;
  display: flex;
  align-items: center;
  white-space: nowrap;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  flex-shrink: 0;
}

.ticker-track {
  overflow: hidden;
  flex: 1;
  display: flex;
  align-items: center;
}

.ticker-content {
  white-space: nowrap;
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  font-weight: 500;
  animation: tickerScroll 40s linear infinite;
  letter-spacing: 0.3px;
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===========================
   SECTIONS GENERIC
   =========================== */
.section-pad { padding: 90px 0; }

.bg-light-green { background: var(--light-green); }

.section-tag {
  display: inline-block;
  background: rgba(36,89,33,0.09);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
  border: 1px solid rgba(36,89,33,0.18);
}

.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 14px;
}

/* ===========================
   ABOUT
   =========================== */
.pillar-card {
  background: white;
  border: 1px solid rgba(36,89,33,0.1);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(36,89,33,0.25);
}

.pillar-card p {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

.about-visual {
  position: relative;
  padding: 20px;
}

.about-card-main {
  background: linear-gradient(145deg, #fff, var(--light-green));
  border: 1px solid rgba(36,89,33,0.12);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.about-icon-circle {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  margin: 0 auto 20px;
  box-shadow: 0 6px 20px rgba(36,89,33,0.25);
}

.about-card-main h3 { font-size: 1rem; color: var(--text-muted); font-family: 'DM Sans', sans-serif; margin-bottom: 6px; }
.about-card-main h4 { font-size: 1.3rem; margin-bottom: 14px; }
.about-card-main p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

.about-link {
  display: inline-flex;
  align-items: center;
  color: var(--green);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  margin-top: 10px;
  transition: color 0.2s;
}

.about-link:hover { color: var(--orange); }

.about-float-badge {
  position: absolute;
  background: white;
  border: 1px solid rgba(36,89,33,0.15);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  animation: floatBadge 4s ease-in-out infinite;
}

.badge-1 { top: 10px; left: 0; animation-delay: 0s; }
.badge-2 { bottom: 30px; right: 0; animation-delay: 2s; }

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ===========================
   WHY ATTEND CARDS
   =========================== */
.why-card {
  background: white;
  border: 1px solid rgba(36,89,33,0.1);
  border-radius: var(--radius);
  padding: 30px 26px;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--green), var(--orange));
  transform: scaleX(0);
  transition: transform 0.35s ease;
  transform-origin: left;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(36,89,33,0.2);
}

.why-card:hover::before { transform: scaleX(1); }

.why-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(36,89,33,0.1), rgba(36,89,33,0.06));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--green);
  margin-bottom: 16px;
  transition: all 0.3s;
}

.why-card:hover .why-icon {
  background: var(--green);
  color: white;
  transform: scale(1.05);
}

.why-card h5 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
}

.why-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ===========================
   SECTORS
   =========================== */
.sector-pill {
  background: white;
  border: 1px solid rgba(36,89,33,0.12);
  border-radius: var(--radius);
  padding: 22px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.sector-pill i {
  font-size: 1.8rem;
  color: var(--green);
  transition: all 0.3s;
}

.sector-pill span {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 0.9rem;
  display: block;
}

.sector-pill small {
  color: var(--text-muted);
  font-size: 0.75rem;
  line-height: 1.4;
  display: block;
}

.sector-pill:hover {
  border-color: var(--green);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  background: var(--green);
}

.sector-pill:hover i,
.sector-pill:hover span,
.sector-pill:hover small {
  color: white !important;
}

/* ===========================
   ATTENDEE SECTION
   =========================== */
.attendee-section {
  background: linear-gradient(150deg, var(--green-dark) 0%, var(--green) 100%);
  position: relative;
  overflow: hidden;
}

.attendee-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40zm0-40h2l-2 2V0zm0 4l4-4h2l-6 6V4zm0 4l8-8h2L40 10V8zm0 4L52 0h2L40 14v-2zm0 4L56 0h2L40 18v-2zm0 4L60 0h2L40 22v-2zm0 4L64 0h2L40 26v-2zm0 4L68 0h2L40 30v-2zm0 4L72 0h2L40 34v-2zm0 4L76 0h2L40 38v-2zm0 4L80 0v2L42 40h-2zm4 0L80 4v2L46 40h-2zm4 0L80 8v2L50 40h-2zm4 0l28-28v2L54 40h-2zm4 0l24-24v2L58 40h-2zm4 0l20-20v2L62 40h-2zm4 0l16-16v2L66 40h-2zm4 0l12-12v2L70 40h-2zm4 0l8-8v2l-6 6h-2zm4 0l4-4v2l-2 2h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.text-white-75 { color: rgba(255,255,255,0.75) !important; }

.attendee-stats {
  display: flex;
  gap: 28px;
}

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

.a-stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--orange);
}

.a-stat-label {
  display: block;
  font-size: 0.73rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  margin-top: 3px;
}

.attendee-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.attendee-tag {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(6px);
  color: white;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.83rem;
  font-weight: 500;
  transition: all 0.25s;
  cursor: default;
}

.attendee-tag:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: scale(1.04);
}

/* ===========================
   SESSIONS
   =========================== */
.session-card {
  background: white;
  border: 1px solid rgba(36,89,33,0.1);
  border-radius: var(--radius);
  padding: 32px 28px;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s;
  position: relative;
}

.session-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(36,89,33,0.2);
}

.session-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(36,89,33,0.08);
  line-height: 1;
  position: absolute;
  top: 18px; right: 22px;
}

.session-icon {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: white;
  margin-bottom: 18px;
  box-shadow: 0 4px 14px rgba(36,89,33,0.25);
  transition: all 0.3s;
}

.session-card:hover .session-icon { transform: rotate(-5deg) scale(1.08); }

.session-card h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
}

.session-card p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ===========================
   PATRONS MARQUEE
   =========================== */
.patrons-marquee-wrap {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(36,89,33,0.1);
  background: white;
  box-shadow: var(--shadow-sm);
}

.patrons-marquee {
  padding: 20px 0;
  overflow: hidden;
}

.patrons-track {
  display: flex;
  gap: 0;
  animation: marquee 45s linear infinite;
  width: max-content;
}

.patrons-track:hover { animation-play-state: paused; }

.patron-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: 10px 28px;
  border-right: 1px solid rgba(36,89,33,0.1);
  white-space: nowrap;
  transition: color 0.2s;
  cursor: default;
}

.patron-name:hover { color: var(--green); }

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===========================
   HIGHLIGHTS
   =========================== */
.highlights-section {
  background: linear-gradient(135deg, var(--text-dark) 0%, #2a3d29 100%);
}

.highlight-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 36px 24px;
  height: 100%;
  transition: all 0.35s;
}

.highlight-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-6px);
  border-color: rgba(240,143,72,0.4);
}

.hl-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(240,143,72,0.2), rgba(240,143,72,0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--orange);
  margin: 0 auto 20px;
  transition: all 0.3s;
}

.highlight-card:hover .hl-icon {
  background: var(--orange);
  color: white;
  transform: scale(1.1);
}

.highlight-card h5 {
  color: white;
  font-size: 1rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  margin-bottom: 10px;
}

.highlight-card p {
  color: rgba(255,255,255,0.65);
  font-size: 0.87rem;
  line-height: 1.65;
  margin: 0;
}

/* ===========================
   CONTACT
   =========================== */
.contact-card {
  background: white;
  border: 1px solid rgba(36,89,33,0.1);
  border-radius: var(--radius);
  padding: 36px 28px;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(36,89,33,0.25);
}

.contact-icon {
  width: 62px; height: 62px;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  margin: 0 auto 18px;
  box-shadow: 0 6px 18px rgba(36,89,33,0.25);
}

.contact-card h5 {
  font-size: 1rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.contact-link {
  color: var(--green);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.contact-link:hover { color: var(--orange); }

.register-cta-box {
  background: linear-gradient(135deg, var(--light-green), rgba(240,143,72,0.08));
  border: 1px solid rgba(36,89,33,0.12);
  border-radius: var(--radius-lg);
  padding: 52px 40px;
  box-shadow: var(--shadow-sm);
}

.register-cta-box h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.register-cta-box p {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 1rem;
}

/* ===========================
   FOOTER
   =========================== */
.site-footer {
  background: var(--text-dark);
  padding: 60px 0 0;
}

.footer-text {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 10px;
}

.footer-heading {
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li { margin-bottom: 8px; }

.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.87rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--orange); }

.footer-contact-list { display: flex; flex-direction: column; gap: 10px; }

.fc-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  line-height: 1.5;
}

.fc-item i { flex-shrink: 0; margin-top: 2px; }

.fc-item a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}

.fc-item a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  margin-top: 48px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  margin: 0;
}

/* ===========================
   BACK TO TOP
   =========================== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px; height: 48px;
  background: var(--green);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(36,89,33,0.35);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  z-index: 999;
  transform: translateY(12px);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--orange);
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(240,143,72,0.4);
}

/* ===========================
   ANIMATIONS
   =========================== */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.7s ease forwards;
}

.animate-fade-left {
  opacity: 0;
  transform: translateX(40px);
  animation: fadeLeft 0.8s ease 0.4s forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeLeft {
  to { opacity: 1; transform: translateX(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 991.98px) {
  #navMenu {
    background: white;
    border-radius: var(--radius);
    padding: 16px;
    margin-top: 12px;
    box-shadow: var(--shadow-md);
  }

  #navMenu .nav-link { color: var(--text-dark) !important; }
  #navMenu .btn-register { display: inline-block; margin-top: 8px; }

  .hero-date-box { flex-wrap: wrap; }
  .date-month { border-left: none; padding-left: 0; margin-top: 4px; }

  .hero-cta { display: flex; flex-direction: column; gap: 12px; }
  .hero-cta .btn-primary-custom,
  .hero-cta .btn-outline-custom { width: fit-content; }

  .attendee-stats { gap: 16px; }
}

@media (max-width: 767.98px) {
  .section-pad { padding: 60px 0; overflow-x: hidden;}
  .hero-section { padding-top: 110px; }
  .hero-title { font-size: 2rem; }
  .hero-stat-card { width: 100%; }

  .register-cta-box { padding: 36px 24px; }
  .register-cta-box .btn-primary-custom,
  .register-cta-box .btn-outline-custom { width: 100%; justify-content: center; }

  .attendee-stats { gap: 10px; flex-wrap: wrap; }
}

@media (max-width: 575.98px) {
  .hero-badge { font-size: 0.75rem; }
  .ticker-label { padding: 0 12px; font-size: 0.7rem; }
  .hero-date-box { padding: 16px 20px; }
  .date-num { font-size: 2.2rem; }
  .back-to-top { bottom: 18px; right: 18px; }
}
.attendee-section {
      padding: 90px 0;
      background: linear-gradient(135deg, #1a4118 0%, #245921 55%, #2e7228 100%);
      position: relative;
      overflow: hidden;
      font-family: 'DM Sans', sans-serif;
    }

    /* Subtle background pattern */
    .attendee-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40zm0-40h2l-2 2V0zm0 4l4-4h2l-6 6V4zm0 4l8-8h2L40 10V8zm0 4L52 0h2L40 14v-2zm0 4L56 0h2L40 18v-2zm0 4L60 0h2L40 22v-2zm0 4L64 0h2L40 26v-2zm0 4L68 0h2L40 30v-2zm0 4L72 0h2L40 34v-2zm0 4L76 0h2L40 38v-2zm0 4L80 0v2L42 40h-2zm4 0L80 4v2L46 40h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      pointer-events: none;
    }

    /* Decorative glowing orbs */
    .attendee-section::after {
      content: '';
      position: absolute;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(240,143,72,0.06) 0%, transparent 70%);
      top: -100px;
      right: -100px;
      pointer-events: none;
    }

    /* ---- Header ---- */
    .ap-badge {
      display: inline-block;
      background: rgba(240, 143, 72, 0.15);
      border: 1px solid rgba(240, 143, 72, 0.45);
      color: #f08f48;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      padding: 7px 22px;
      border-radius: 50px;
      margin-bottom: 16px;
    }

    .ap-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 4vw, 2.6rem);
      font-weight: 900;
      color: #ffffff;
      line-height: 1.15;
      margin-bottom: 14px;
    }

    .ap-title .text-orange { color: #f08f48; }

    .ap-subtitle {
      color: rgba(255, 255, 255, 0.68);
      font-size: 15px;
      line-height: 1.75;
      max-width: 560px;
      margin: 0 auto;
    }

    /* ---- Stats Row ---- */
    .ap-stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 2.2rem;
      font-weight: 900;
      color: #f08f48;
      display: block;
      line-height: 1;
    }

    .ap-stat-label {
      font-size: 11px;
      color: rgba(255, 255, 255, 0.5);
      text-transform: uppercase;
      letter-spacing: 1.2px;
      font-weight: 600;
      margin-top: 5px;
      display: block;
    }

    .ap-stat-divider {
      width: 1px;
      height: 40px;
      background: rgba(255, 255, 255, 0.15);
      align-self: center;
    }

    /* ---- Attendee Cards ---- */
    .ap-card {
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(255, 255, 255, 0.13);
      border-radius: 14px;
      padding: 18px 20px;
      display: flex;
      align-items: center;
      gap: 14px;
      height: 100%;
      transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
      cursor: default;
      text-decoration: none;
    }

    .ap-card:hover {
      background: rgba(240, 143, 72, 0.14);
      border-color: rgba(240, 143, 72, 0.5);
      transform: translateY(-4px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    }

    .ap-icon {
      width: 42px;
      height: 42px;
      min-width: 42px;
      border-radius: 11px;
      background: rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      color: rgba(255, 255, 255, 0.85);
      transition: all 0.3s;
    }

    .ap-card:hover .ap-icon {
      background: rgba(240, 143, 72, 0.22);
      color: #f08f48;
    }

    .ap-card-name {
      font-size: 13.5px;
      font-weight: 600;
      color: #ffffff;
      line-height: 1.3;
      margin: 0;
    }

    .ap-card-sub {
      font-size: 11.5px;
      font-weight: 400;
      color: rgba(255, 255, 255, 0.5);
      margin: 3px 0 0;
      line-height: 1.3;
    }

    /* ---- Footer Note ---- */
    .ap-footer-note {
      color: rgba(255, 255, 255, 0.45);
      font-size: 13px;
      font-style: italic;
    }

    /* ---- CTA Button ---- */
    .ap-cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #f08f48;
      color: #ffffff;
      font-size: 14.5px;
      font-weight: 700;
      padding: 14px 32px;
      border-radius: 50px;
      text-decoration: none;
      border: none;
      transition: all 0.3s;
      box-shadow: 0 6px 20px rgba(240, 143, 72, 0.4);
    }

    .ap-cta-btn:hover {
      background: #d97030;
      color: #ffffff;
      transform: translateY(-3px);
      box-shadow: 0 10px 28px rgba(240, 143, 72, 0.5);
    }

    /* ---- Divider Line ---- */
    .ap-divider {
      border-color: rgba(255, 255, 255, 0.1);
      margin: 0;
    }
.cu-at-ul li{
	border-bottom:1px dashed #000;
	margin-bottom:4px;
	padding-bottom:4px;
}
.cu-aw img{
	width:100%;
	margin-top:30px;
	border:1px solid Green;
	border-radius:10px
}
.enquiry-section {
      padding: 90px 0;
      background: linear-gradient(160deg, #f7faf6 0%, #eef5ec 50%, #f7faf6 100%);
      position: relative;
      overflow: hidden;
    }

    /* Decorative blob top-right */
    .enquiry-section::before {
      content: '';
      position: absolute;
      top: -120px; right: -120px;
      width: 420px; height: 420px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(36,89,33,0.07) 0%, transparent 70%);
      pointer-events: none;
    }

    /* Decorative blob bottom-left */
    .enquiry-section::after {
      content: '';
      position: absolute;
      bottom: -80px; left: -80px;
      width: 320px; height: 320px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(240,143,72,0.06) 0%, transparent 70%);
      pointer-events: none;
    }

    /* ---- Section Header ---- */
    .sec-tag {
      display: inline-block;
      background: rgba(36,89,33,0.09);
      border: 1px solid rgba(36,89,33,0.2);
      color: var(--green);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      padding: 7px 20px;
      border-radius: 50px;
      margin-bottom: 14px;
    }

    .sec-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.7rem, 3.5vw, 2.4rem);
      font-weight: 900;
      color: var(--text-dark);
      line-height: 1.2;
      margin-bottom: 12px;
    }

    .sec-title .text-orange { color: var(--orange); }
    .sec-title .text-green  { color: var(--green); }

    .sec-desc {
      color: var(--text-muted);
      font-size: 15px;
      line-height: 1.75;
    }

    /* =====================
       CONTACT INFO CARDS
       ===================== */
    .info-card {
      background: #ffffff;
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 28px 24px;
      height: 100%;
      box-shadow: var(--shadow-sm);
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }

    .info-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 4px;
      background: linear-gradient(90deg, var(--green), var(--orange));
      border-radius: 16px 16px 0 0;
    }

    .info-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }

    .info-icon {
      width: 52px; height: 52px;
      border-radius: 14px;
      background: linear-gradient(135deg, var(--green), var(--green-light));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      color: #fff;
      margin-bottom: 16px;
      box-shadow: 0 4px 14px rgba(36,89,33,0.25);
    }

    .info-card h6 {
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: var(--text-muted);
      margin-bottom: 8px;
    }

    .info-card p, .info-card a {
      font-size: 14px;
      font-weight: 600;
      color: var(--text-dark);
      text-decoration: none;
      line-height: 1.6;
      margin: 0;
      display: block;
      transition: color 0.2s;
    }

    .info-card a:hover { color: var(--orange); }
    .info-card .info-sub {
      font-size: 12.5px;
      font-weight: 400;
      color: var(--text-muted);
      margin-top: 3px;
    }

    /* =====================
       FORM CARD
       ===================== */
    .form-card {
      background: #ffffff;
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 44px 40px;
      box-shadow: var(--shadow-lg);
      position: relative;
      overflow: hidden;
    }

    .form-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 5px;
      background: linear-gradient(90deg, var(--green), #4cae4c, var(--orange));
    }

    .form-card .form-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      font-weight: 900;
      color: var(--text-dark);
      margin-bottom: 6px;
    }

    .form-card .form-subtitle {
      font-size: 13.5px;
      color: var(--text-muted);
      margin-bottom: 28px;
    }

    /* ---- Form Labels ---- */
    .form-label {
      font-size: 13px;
      font-weight: 600;
      color: var(--text-dark);
      margin-bottom: 6px;
      letter-spacing: 0.2px;
    }

    .required-star { color: var(--orange); margin-left: 2px; }

    /* ---- Form Controls ---- */
    .form-control,
    .form-select {
      border: 1.5px solid rgba(36,89,33,0.18);
      border-radius: 10px;
      padding: 12px 16px;
      font-size: 14px;
      font-family: 'DM Sans', sans-serif;
      color: var(--text-dark);
      background: #fafcf9;
      transition: all 0.25s;
      box-shadow: none !important;
    }

    .form-control::placeholder { color: #b0bfaf; }

    .form-control:focus,
    .form-select:focus {
      border-color: var(--green);
      background: #ffffff;
      outline: none;
      box-shadow: 0 0 0 3px rgba(36,89,33,0.1) !important;
    }

    .form-select { cursor: pointer; }

    textarea.form-control { resize: none; min-height: 120px; }

    /* ---- Checkbox ---- */
    .form-check-input:checked {
      background-color: var(--green);
      border-color: var(--green);
    }

    .form-check-input:focus {
      box-shadow: 0 0 0 3px rgba(36,89,33,0.15);
      border-color: var(--green);
    }

    .form-check-label {
      font-size: 13px;
      color: var(--text-muted);
      cursor: pointer;
    }

    /* ---- Submit Button ---- */
    .btn-submit {
      background: linear-gradient(135deg, var(--green), var(--green-light));
      color: #ffffff;
      font-size: 15px;
      font-weight: 700;
      padding: 14px 36px;
      border-radius: 50px;
      border: none;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      transition: all 0.3s;
      box-shadow: 0 6px 20px rgba(36,89,33,0.3);
      cursor: pointer;
      letter-spacing: 0.3px;
    }

    .btn-submit:hover {
      background: linear-gradient(135deg, var(--green-dark), var(--green));
      transform: translateY(-2px);
      box-shadow: 0 10px 28px rgba(36,89,33,0.4);
    }

    .btn-submit:active { transform: translateY(0); }

    /* Spinner (hidden by default) */
    .btn-submit .spinner {
      display: none;
      width: 18px; height: 18px;
      border: 2.5px solid rgba(255,255,255,0.4);
      border-top-color: #fff;
      border-radius: 50%;
      animation: spin 0.7s linear infinite;
    }

    @keyframes spin { to { transform: rotate(360deg); } }

    /* ---- Success Message ---- */
    .success-msg {
      display: none;
      background: #eef5ec;
      border: 1.5px solid rgba(36,89,33,0.25);
      border-radius: 12px;
      padding: 20px 22px;
      text-align: center;
      margin-top: 20px;
    }

    .success-msg i {
      font-size: 2rem;
      color: var(--green);
      margin-bottom: 8px;
      display: block;
    }

    .success-msg p {
      font-size: 14px;
      color: var(--green);
      font-weight: 600;
      margin: 0;
    }

    /* ---- Input Error State ---- */
    .form-control.is-invalid,
    .form-select.is-invalid {
      border-color: #dc3545;
      box-shadow: 0 0 0 3px rgba(220,53,69,0.1) !important;
    }

    .invalid-feedback {
      font-size: 12px;
      font-weight: 500;
      color: #dc3545;
    }

    /* ---- Privacy Note ---- */
    .privacy-note {
      font-size: 12px;
      color: var(--text-muted);
      text-align: center;
      margin-top: 16px;
      line-height: 1.6;
    }

    .privacy-note i { color: var(--green); }
.cu-lg-wdth{
	width:250px;
	border-radius:10px;
}
.cu-lg-wdthd{
	width:250px;
	border-radius:10px;
}


.bnner-tp{
	width:100%;
	border-radius:10px;
}
    /* =====================
       RESPONSIVE
       ===================== */
    @media (max-width: 991.98px) {
      .enquiry-section { padding: 60px 0; }
      .form-card { padding: 32px 28px; }
    }

    @media (max-width: 767.98px) {
      .enquiry-section { padding: 50px 0; }
      .form-card { padding: 28px 20px; }
    }

    @media (max-width: 575.98px) {
      .form-card { padding: 24px 16px; }
      .btn-submit { font-size: 14px; padding: 13px 28px; }
    }
    /* =============================
       RESPONSIVE
       ============================= */
    @media (max-width: 767.98px) {
      .attendee-section { padding: 60px 0; }
      .ap-stat-divider { display: none; }
    }

    @media (max-width: 575.98px) {
      .ap-card { padding: 14px 16px; gap: 12px; }
      .ap-icon { width: 36px; height: 36px; min-width: 36px; font-size: 16px; }
      .ap-card-name { font-size: 12.5px; }
      .ap-cta-btn { width: 100%; justify-content: center; }
    }
	   @media (max-width: 374px) {
		.cu-lg-wdth{
	width:190px;
	border-radius:10px;
}
.cu-lg-wdthd{
	width:190px;
	border-radius:10px;
}
	   }
