/* 
 * INNOG Custom Design System
 * Inspired by Grand Conference (v5/design)
 * Built with Vanilla CSS
 */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Work+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Color Palette - Premium Theme */
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-dark: #0a0e17;
  --bg-dark-gray: #161c2a;

  --text-dark: #1e293b;
  --text-muted: #64748b;
  --text-light: #ffffff;
  --text-light-muted: #94a3b8;

  --accent-blue: #ef8e15;
  --accent-blue-hover: #ef8e15;
  --accent-gold: #ef8e15;
  --accent-gold-hover: #e6b400;

  --border-color: #dfdddb;
  --border-color-dark: #242f47;

  /* Layout Dimensions */
  --container-max-width: 1200px;
  --header-height: 85px;

  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Reset & Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: 'Work Sans', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-primary);
  scroll-behavior: smooth;
  font-size: 16px;
  line-height: 1.6;
}

body {
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: var(--accent-blue);
  text-decoration: none;
  transition: var(--transition-smooth);
}

a:hover {
  color: var(--accent-gold);
}

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

button,
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Global Grid Container */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header & Sticky Navbar */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: var(--transition-smooth);
}

.site-header.scrolled {
  height: 70px;
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.95);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo-link {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 48px;
  width: auto;
  transition: var(--transition-smooth);
}

.site-header.scrolled .logo-img {
  height: 40px;
}

/* Main Navigation Desktop */
.main-nav {
  height: 100%;
}

.nav-list {
  display: flex;
  list-style: none;
  height: 100%;
}

.nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-link {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-dark);
  padding: 0 1.2rem;
  height: 100%;
  display: flex;
  align-items: center;
  letter-spacing: 0.5px;
  position: relative;
}

.nav-link:hover,
.nav-item:hover>.nav-link {
  color: var(--accent-blue);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1.2rem;
  right: 1.2rem;
  height: 3px;
  background-color: var(--accent-blue);
  transform: scaleX(0);
  transition: var(--transition-smooth);
}

.nav-link.active::after,
.nav-link:hover::after {
  transform: scaleX(1);
}

/* Dropdown Menu styling */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-primary);
  min-width: 240px;
  box-shadow: var(--shadow-lg);
  border-radius: 0 0 6px 6px;
  border-top: 3px solid var(--accent-blue);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: var(--transition-smooth);
  padding: 0.5rem 0;
}

.dropdown-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  background: var(--bg-primary);
  min-width: 240px;
  box-shadow: var(--shadow-lg);
  border-radius: 6px;
  border-top: 3px solid var(--accent-blue);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: var(--transition-smooth);
  padding: 0.5rem 0;
}

.nav-item:hover>.dropdown,
.dropdown-item-wrapper:hover>.dropdown-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item-wrapper {
  position: relative;
}

.dropdown-link {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
  padding: 0.7rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.dropdown-link:hover {
  background: var(--bg-secondary);
  color: var(--accent-blue);
  padding-left: 1.8rem;
}

.dropdown-link svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

/* Caret indicator icon */
.caret-down {
  margin-left: 5px;
  width: 10px;
  height: 10px;
  fill: currentColor;
}

/* Mobile Navigation Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  margin: 5px 0;
  transition: var(--transition-smooth);
}

/* Mobile Drawer Overlay */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: var(--bg-primary);
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
  z-index: 999;
  transition: var(--transition-smooth);
  padding: var(--header-height) 2rem 2rem 2rem;
  overflow-y: auto;
}

.mobile-drawer.open {
  right: 0;
}

.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.mobile-drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* Mobile Nav Menu Lists */
.mobile-nav-list {
  list-style: none;
}

.mobile-nav-item {
  border-bottom: 1px solid var(--border-color);
}

.mobile-nav-link {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-dark);
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  cursor: pointer;
}

.mobile-dropdown {
  list-style: none;
  padding-left: 1.5rem;
  display: none;
  background: var(--bg-secondary);
}

.mobile-dropdown-link {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.7rem 0;
  display: block;
}

.mobile-dropdown-link:hover {
  color: var(--accent-blue);
}

li.open>.mobile-dropdown {
  display: block;
}

li.open>.mobile-nav-link svg,
li.open>.mobile-dropdown-link svg {
  transform: rotate(180deg);
}

.mobile-nav-link svg {
  transition: var(--transition-smooth);
  width: 14px;
  height: 14px;
}

.mobile-drawer-contact {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.mobile-drawer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.mobile-drawer-contact-item svg {
  fill: var(--text-muted);
  margin-top: 2px;
}

.mobile-drawer-contact-item a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
}

.mobile-drawer-contact-item a:hover {
  color: var(--accent-blue);
}

/* Main Content Area */
.main-content {
  margin-top: var(--header-height);
  flex-grow: 1;
}

/* --- HERO SECTION (Home Page) --- */
.hero-section {
  position: relative;
  background-image: linear-gradient(rgb(10 14 23 / 25%), rgb(10 14 23 / 72%)), url('../images/imag2-scaled.jpg');
  background-size: cover;
  background-position: center;
  color: var(--text-light);
  overflow: hidden;
  min-height: calc(85vh - var(--header-height));
  display: block;
}

/* Hexagon / Network Grid Background Overlay */
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(var(--border-color-dark) 1px, transparent 1px),
    radial-gradient(var(--border-color-dark) 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: 0 0, 20px 20px;
  opacity: 0.15;
  pointer-events: none;
}

/* --- HERO SLIDER --- */
.hero-slider {
  display: flex;
  width: 100%;
  height: 100%;
  min-height: calc(85vh - var(--header-height));
  transition: transform 0.5s ease-in-out;
}

.hero-slide {
  min-width: 100%;
  display: flex;
  align-items: center;
  padding: 8rem 0;
  box-sizing: border-box;
}

.slider-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 10;
  padding: 0 2rem;
}

.slider-btn {
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.2);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: var(--transition-smooth);
}

.slider-btn:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
}

.slider-dots {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.slider-dot.active {
  background: var(--accent-gold);
}


.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 700px;
}

.hero-tag {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.hero-title {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.hero-title span {
  color: var(--accent-gold);
}

.hero-meta {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  color: var(--text-light-muted);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-meta-item svg {
  fill: var(--accent-gold);
  width: 20px;
  height: 20px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  padding: 1rem 2.2rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: var(--transition-smooth);
}

.btn-primary {
  background-color: var(--accent-gold);
  color: #000;
}

.btn-primary:hover {
  background-color: var(--accent-gold-hover);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 200, 0, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-light);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  border-color: var(--text-light);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
  color: var(--text-light);
}

.hero-logo-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 3rem;
  backdrop-filter: blur(10px);
  text-align: center;
}

.hero-logo-main {
  max-width: 220px;
  margin-bottom: 2rem;
}

.hero-logo-apnic {
  max-width: 180px;
}

.marquee-banner {
  background: var(--accent-gold);
  color: #000;
  padding: 0.5rem 0;
  font-weight: 700;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 1px;
  font-size: 0.85rem;
}

/* --- WHAT YOU WILL GET? (FEATURES) --- */
.section-padding {
  padding: 6rem 0;
}

.about-section {
  position: relative;
  background-color: #fafbfc;
  /* very light grey/white background */
  overflow: hidden;
}

/* Background dots pattern */
.about-section::before,
.about-section::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 150px;
  height: 250px;
  background-image: radial-gradient(rgba(239, 142, 21, 0.2) 2px, transparent 2px);
  background-size: 20px 20px;
  z-index: 0;
}

.about-section::before {
  left: -50px;
}

.about-section::after {
  right: -50px;
}

.relative-container {
  position: relative;
  z-index: 1;
}

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

.section-title-wrap {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.subtitle-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 0.5rem;
}

.subtitle-wrapper .line {
  height: 1px;
  width: 40px;
  background-color: rgba(239, 142, 21, 0.5);
  /* subtle orange line */
}

.section-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-gold);
  letter-spacing: 2px;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  color: #1e293b;
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
}

.title-separator {
  width: 60px;
  height: 3px;
  background-color: var(--accent-gold);
  margin: 0 auto 1.5rem auto;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.feature-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 3rem 2rem 2.5rem 2rem;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  /* soft shadow */
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  border: 1px solid transparent;
  z-index: 1;
}

/* Gradient background on hover */
.feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f9b148, #e87b0d);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(239, 142, 21, 0.25);
  border-color: transparent;
}

.feature-icon-outer {
  width: 120px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 142, 21, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background 0.4s ease;
}

.feature-card:hover .feature-icon-outer {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
}

.feature-icon-wrapper {
  background: linear-gradient(135deg, #f9b148, #e87b0d);
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(239, 142, 21, 0.3);
  position: relative;
  z-index: 1;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}

.feature-icon-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 50%;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
}

.feature-card:hover .feature-icon-wrapper::before {
  opacity: 1;
}

.feature-card:hover .feature-icon-wrapper {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  color: #e87b0d;
  /* Turn icon orange */
}

.feature-icon-wrapper svg {
  width: 40px;
  height: 40px;
  transition: color 0.4s ease;
}

.feature-h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 0.8rem;
  transition: color 0.4s ease;
}

.card-separator {
  width: 30px;
  height: 3px;
  background-color: var(--accent-gold);
  margin: 0 auto 1.5rem auto;
  transition: background-color 0.4s ease;
}

.feature-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  transition: color 0.4s ease;
}

.feature-card:hover .feature-h3,
.feature-card:hover .feature-desc {
  color: #ffffff;
}

.feature-card:hover .card-separator {
  background-color: #ffffff;
}

/* --- EVENT SCHEDULES --- */
.schedule-section {
  background: var(--bg-secondary);
}

.schedule-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.tab-btn {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  cursor: pointer;
  color: var(--text-dark);
  transition: var(--transition-smooth);
}

.tab-btn:hover {
  border-color: var(--accent-blue);
  color: var(--accent-blue);
}

.tab-btn.active {
  background: var(--accent-gold);
  color: #000;
  border-color: var(--accent-gold);
  box-shadow: 0 4px 10px rgba(255, 200, 0, 0.25);
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

.schedule-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.schedule-row {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  padding: 1.5rem 2rem;
  transition: var(--transition-smooth);
}

.schedule-row:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border-color);
}

.session-time {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--accent-blue);
  font-size: 1.1rem;
}

.session-main {
  padding-right: 2rem;
}

.session-title-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.5rem;
}

.session-h6 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
}

.session-tag {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-light);
  background-color: var(--text-muted);
  padding: 0.15rem 0.6rem;
  border-radius: 4px;
}

.session-tag.tag-general {
  background-color: #64748b;
}

.session-tag.tag-technical {
  background-color: var(--accent-blue);
}

.session-tag.tag-break {
  background-color: #e2e8f0;
  color: #475569;
}

.session-meta-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.session-speaker {
  font-weight: 600;
  color: var(--text-dark);
}

.schedule-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  transition: var(--transition-smooth);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.schedule-toggle:hover {
  background: var(--bg-secondary);
  color: var(--accent-blue);
}

.schedule-toggle svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  transition: var(--transition-smooth);
}

.schedule-row.expanded .schedule-toggle svg {
  transform: rotate(180deg);
}

/* Accordion Description Drawer */
.session-drawer {
  grid-column: 1 / -1;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  border-top: 0 solid var(--border-color);
}

.schedule-row.expanded .session-drawer {
  max-height: 500px;
  border-top: 1px solid var(--border-color);
  margin-top: 1.5rem;
  padding-top: 1.5rem;
}

.session-drawer-content {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* --- SPEAKERS GRID --- */
.speakers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.speaker-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.speaker-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.speaker-img-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--bg-secondary);
}

.speaker-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.speaker-card:hover .speaker-img {
  transform: scale(1.05);
}

.speaker-socials {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  transition: var(--transition-smooth);
}

.speaker-card:hover .speaker-socials {
  bottom: 0;
}

.speaker-social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-primary);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.speaker-social-icon:hover {
  background: var(--accent-blue);
  color: var(--bg-primary);
}

.speaker-social-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.speaker-info {
  padding: 1.5rem;
  text-align: center;
}

.speaker-h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--text-dark);
}

.speaker-title-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* --- PARTNER & SPONSORS GRID --- */
.sponsors-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 0px solid var(--border-color);
}

.sponsor-tier {
  margin-bottom: 4rem;
}

.sponsor-tier:last-child {
  margin-bottom: 0;
}

.tier-title-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 2rem;
}

.tier-title {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  white-space: nowrap;
}

.tier-line {
  flex-grow: 1;
  height: 1px;
  background-color: #e2b070;
}

.sponsor-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  align-items: center;
}

.sponsor-logo-box {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  width: 220px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  transition: var(--transition-smooth);
}

.sponsor-logo-box:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-blue);
}

.sponsor-logo-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  /* filter: grayscale(100%);
  opacity: 0.7; */
  transition: var(--transition-smooth);
}

.sponsor-logo-box:hover .sponsor-logo-img {
  filter: grayscale(0%);
  opacity: 1;
}

/* Special host grids (different widths) */
.sponsor-grid.host-grid .sponsor-logo-box {
  width: 260px;
  height: 120px;
}

/* Sponsor Mobile Responsiveness */
@media (max-width: 768px) {
  .sponsor-logo-box {
    width: 175px;
    height: 90px;
  }

  .sponsor-grid.host-grid .sponsor-logo-box {
    width: 166px;
    height: 100px;
  }
}

/* --- FOOTER SECTION --- */
.site-footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 5rem 0 2rem 0;
  border-top: 3px solid var(--accent-gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-col-h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-desc {
  color: var(--text-light-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  max-width: 360px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social-link {
  width: 38px;
  height: 38px;
  background: var(--bg-dark-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light-muted);
}

.footer-social-link:hover {
  background: var(--accent-gold);
  color: #000;
  transform: translateY(-2px);
}

.footer-social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--text-light-muted);
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--accent-gold);
  padding-left: 5px;
}

.footer-links a::before {
  content: '→';
  font-size: 0.8rem;
  opacity: 0;
  transition: var(--transition-smooth);
}

.footer-links a:hover::before {
  opacity: 1;
}

.footer-contact {
  color: var(--text-light-muted);
  font-size: 0.95rem;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 1rem;
}

.footer-contact-item svg {
  fill: var(--accent-gold);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid var(--border-color-dark);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-light-muted);
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: var(--text-light-muted);
}

.footer-bottom-links a:hover {
  color: var(--accent-gold);
}

/* --- BANNER / INNER PAGES HERO --- */
.inner-hero {
  background: url('../images/page-header-bg.jpg') no-repeat center center / cover;
  color: #ffffff;
  padding: 4.5rem 0;
  text-align: center;
  position: relative;
}

.inner-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.15);
  /* Slight dark overlay for better text contrast if needed */
  pointer-events: none;
}

.inner-hero .container {
  position: relative;
  z-index: 2;
}

.inner-hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  color: #ffffff;
}

.breadcrumbs {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: capitalize;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: #ffffff;
}

.breadcrumbs a {
  color: #ffffff;
}

.breadcrumbs span {
  color: #ffffff;
}

/* --- INNER PAGE CONTENT LAYOUT --- */
.page-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.rich-content {
  font-size: 1.05rem;
  color: var(--text-dark);
}

.rich-content p {
  margin-bottom: 1.5rem;
}

.rich-content h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 2.5rem 0 1.2rem 0;
  color: var(--text-dark);
}

.rich-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0rem 0 1rem 0;
  color: var(--text-dark);
}

.rich-content ul,
.rich-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.rich-content li {
  margin-bottom: 0.5rem;
}

/* Clean Layout Grids for Committees & Organisers */
.rich-content .grid-section>div {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 1rem;
  align-items: start;
}

/* Ensure single column spans full width */
.rich-content .grid-section>div>.grid-column:only-child {
  grid-column: 1 / -1;
}

/* Committee Grid (3 columns by default) */
.committee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

@media (max-width: 991px) {
  .committee-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 576px) {
  .committee-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Profiles & Committee Cards */
.rich-content figure:has(img) {
  margin-bottom: 1.5rem;
  text-align: center;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.rich-content figure:has(img):hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-blue);
}

.rich-content figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-bottom: 1px solid var(--border-color);
}

.rich-content figcaption {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: 1.2rem;
  background: var(--bg-secondary);
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Table styling used in attendee lists, working groups */
.content-table-wrapper {
  overflow-x: auto;
  margin: 2rem 0;
  border: 1px solid var(--border-color);
  border-radius: 6px;
}

.content-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.95rem;
}

.content-table th {
  background-color: #ffa359;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  padding: 1rem 1.5rem;
  border-bottom: 2px solid #ffe1c3;
}

.content-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #ffd8b0;
}

.content-table tr:last-child td {
  border-bottom: none;
}

.content-table tr:nth-child(even) {
  background-color: #fdf3e7;
}

/* --- CONTACT PAGE STYLES --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
}

.contact-card-box {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 2.5rem;
  height: 100%;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.contact-info-item {
  display: flex;
  gap: 15px;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue);
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.contact-info-details h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.contact-info-details p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Custom Contact Form */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  background: var(--bg-primary);
  color: var(--text-dark);
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(0, 64, 255, 0.1);
}

/* MAP WRAPPER */
.map-wrapper {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  height: 350px;
  margin-top: 2rem;
}

/* --- BOXED SHOWCASE SECTION --- */
.showcase-section {
  background-color: var(--bg-secondary);
}

.showcase-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.showcase-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background-color: var(--bg-primary);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
}

.showcase-row:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.showcase-col-img {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.showcase-col-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition-smooth);
}

.showcase-row:hover .showcase-col-img img {
  transform: scale(1.03);
}

.showcase-col-text {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.showcase-h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.2rem;
  letter-spacing: -0.5px;
}

.showcase-desc {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* --- ANIMATIONS --- */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .speakers-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .footer-col-logo {
    grid-column: 1 / -1;
  }

  .showcase-col-text {
    padding: 3.5rem;
  }

  .showcase-h2 {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {

  /* Navigation mobile menu toggle display */
  .mobile-toggle {
    display: block;
  }

  .main-nav {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-content {
    text-align: center;
    max-width: 100%;
  }

  .hero-meta {
    align-items: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .schedule-row {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem;
  }

  .speakers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .showcase-row {
    grid-template-columns: 1fr;
  }

  .showcase-row.reverse {
    flex-direction: column-reverse;
    display: flex;
  }

  .showcase-col-img {
    min-height: 350px;
  }

  .showcase-col-text {
    padding: 3rem 1.5rem;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .speakers-grid {
    grid-template-columns: 1fr;
  }

  .schedule-tabs {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* --- MEDIA HUB PREMIUM SECTION --- */
.media-hub-section {
  background-color: #ecebe6;
  position: relative;
  overflow: hidden;
}

/* Background elements */
.media-hub-bg-circle-left {
  position: absolute;
  top: 10%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 157, 30, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  z-index: 0;
}

.media-hub-bg-circle-right {
  position: absolute;
  top: -5%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(230, 235, 245, 0.4) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  z-index: 0;
}

.media-hub-bg-dots {
  position: absolute;
  top: 40px;
  right: 15%;
  width: 100px;
  height: 100px;
  background-image: radial-gradient(rgba(255, 157, 30, 0.2) 2px, transparent 2px);
  background-size: 15px 15px;
  z-index: 0;
}

.media-hub-section .container {
  position: relative;
  z-index: 1;
}

.media-hub-header {
  margin-bottom: 3.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.media-hub-top-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #FF9D1E;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.media-hub-top-label svg {
  width: 18px;
  height: 18px;
}

.media-hub-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #1e293b;
  letter-spacing: -1px;
  margin-bottom: 1rem;
}

.media-hub-subtitle {
  color: #64748b;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.media-hub-separator {
  width: 60px;
  height: 4px;
  background: #FF9D1E;
  margin: 0 auto;
  border-radius: 2px;
}

.media-hub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (max-width: 900px) {
  .media-hub-grid {
    grid-template-columns: 1fr;
  }
}

.media-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}

.media-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.media-card-img-wrapper {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.media-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.media-card:hover .media-card-img {
  transform: scale(1.03);
}

.media-card-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.media-card-tags {
  display: flex;
  gap: 12px;
  margin-bottom: 1.5rem;
}

.media-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
}

.media-tag svg {
  width: 14px;
  height: 14px;
}

.tag-primary {
  background: rgba(255, 157, 30, 0.1);
  color: #FF9D1E;
}

.tag-secondary {
  background: #f1f5f9;
  color: #475569;
}

.media-card-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 1rem;
}

.media-card-desc {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  flex-grow: 1;
}

.media-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #f1f5f9;
  padding-top: 1.5rem;
}

.media-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #475569;
}

.media-card-meta svg {
  color: #FF9D1E;
  width: 18px;
  height: 18px;
}

.btn-media {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(45deg, #d54a15 30%, #f4b80f 75%);
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-media:hover {
  background: #e68d1b;
  color: #fff;
}

.btn-media svg {
  width: 18px;
  height: 18px;
}

/* Bottom Contact Banner */
.media-hub-contact-banner {
  /* background: #f8fafc; */
  background: linear-gradient(45deg, #d54a15 30%, #f4b80f 75%);
  border-radius: 16px;
  padding: 2rem 3rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

@media (max-width: 768px) {
  .media-hub-contact-banner {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
    gap: 1.5rem;
  }
}

.banner-icon {
  width: 60px;
  height: 60px;
  background: rgb(240 238 236 / 30%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.banner-icon svg {
  width: 24px;
  height: 24px;
  color: #fff;
}

.banner-text-content {
  flex-grow: 0;
}

.banner-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
}

.banner-text-desc {
  flex-grow: 1;
}

.banner-text-desc p {
  color: #e2e6ec;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.banner-action {
  flex-shrink: 0;
}

.btn-banner-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #ffffff;
  color: #f07109;
  border: 1px solid #FF9D1E;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.btn-banner-outline:hover {
  background: #040404;
  color: #ffffff;
  border: 1px solid #333231;
}

.btn-banner-outline svg {
  width: 18px;
  height: 18px;
}

/* --- CONTACT STRIP SECTION --- */
.contact-strip-section {
  background: linear-gradient(45deg, #d54a15 30%, #f4b80f 75%);
  /* background-image: repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.02) 0px, rgba(0, 0, 0, 0.02) 2px, transparent 2px, transparent 8px); */
  padding: 3rem 0;
  color: #fff;
  border-radius: 33px;
}

.contact-strip-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.contact-strip-block {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
  min-width: 250px;
  justify-content: center;
}

.strip-icon-box {
  background: #ffffff;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f89f1a;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
  border-radius: 50px;
}

.strip-icon-box svg {
  width: 30px;
  height: 30px;
}

.strip-text-box {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.strip-title {
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.9;
  letter-spacing: 0.5px;
}

.strip-value {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0;
  font-family: serif;
}

@media (max-width: 768px) {
  .contact-strip-block {
    justify-content: flex-start;
  }
}

/* --- ABOUT EVENTS FULL WIDTH SPLIT --- */
.event-split-section {
  padding: 5rem 0;
}

.event-split-section.bg-light {
  background-color: #fafbfc;
}

.event-split-row {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.event-split-row.reverse {
  flex-direction: row-reverse;
}

.event-split-img {
  flex: 1;
  position: relative;
}

.event-split-img img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  object-fit: cover;
  aspect-ratio: 4/3;
}

.event-split-content {
  flex: 1;
}

.event-split-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 1.2rem;
}

.event-split-desc {
  font-size: 1.1rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.btn-event-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.8rem 1.8rem;
  border: 2px solid #ff821e;
  color: #f16c12;
  font-weight: 700;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-event-outline:hover {
  background: linear-gradient(45deg, #d54a15 30%, #f4b80f 75%);
  color: #ffffff;
  border: 2px solid #fec699;
}

@media (max-width: 992px) {

  .event-split-row,
  .event-split-row.reverse {
    flex-direction: column;
    gap: 2rem;
  }
}

/* --- RECENT MEMORIES SLIDER --- */
.memories-section {
  padding: 6rem 0;
  background: #ffffff;
  overflow: hidden;
}

.memories-header {
  text-align: center;
  margin-bottom: 3rem;
}

.memories-badge {
  display: inline-block;
  background: #f1f5f9;
  color: #475569;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.memories-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1e293b;
}

.memories-slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 40px 0;
}

.memories-slider-track {
  display: flex;
  align-items: center;
  gap: 30px;
  width: max-content;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.memory-slide {
  width: 800px;
  height: 500px;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  opacity: 0.4;
  transform: scale(0.85);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.memory-slide.active {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.memory-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.memories-nav {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(300px);
  /* positions bottom right of the 800px center slide */
  display: flex;
  gap: 15px;
  z-index: 10;
}

.memories-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  color: #1e293b;
  transition: all 0.3s ease;
}

.memories-nav button:hover {
  background: #FF9D1E;
  color: #ffffff;
}

.memories-nav button svg {
  width: 18px;
  height: 18px;
}

.memory-slide {
  position: relative;
}

.memory-overlay {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  width: calc(100% - 60px);
  max-width: 500px;
  background: #ffffff;
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 5;
}

.memory-slide:hover .memory-overlay,
.memory-slide.active .memory-overlay {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.memory-overlay-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.memory-overlay-icon {
  width: 44px;
  height: 44px;
  background: #FFB800;
  /* Yellowish orange */
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, color 0.3s;
}

.memory-overlay-icon svg {
  width: 20px;
  height: 20px;
}

.memory-slide:hover .memory-overlay-icon,
.memory-slide.active .memory-overlay-icon {
  background: #FFB800;
  color: #000;
}

.memory-overlay-shape {
  opacity: 0.9;
}

.memory-overlay-shape svg {
  width: 40px;
  height: 40px;
}

.memory-overlay-year {
  font-size: 0.85rem;
  font-weight: 700;
  color: #475569;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  display: block;
}

.memory-overlay-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0f172a;
}

/* --- UPCOMING EVENT TILE --- */
.event-tile {
  display: flex;
  align-items: stretch;
  background: linear-gradient(45deg, #deddb2 20%, #c5e3e38a 50%);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  margin-bottom: 3rem;
  padding: 1.5rem;
  gap: 3rem;
  position: relative;
}

.event-tile-img {
  flex: 0 0 45%;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.event-tile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.event-tile-content {
  flex: 1;
  padding: 1.5rem 1.5rem 1.5rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.event-tile-desc {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.event-tile-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.2rem;
}

.event-tile-meta svg {
  width: 18px;
  height: 18px;
  margin-right: 0.4rem;
  vertical-align: middle;
  stroke: #1e293b;
}

.event-tile-meta span {
  display: inline-flex;
  align-items: center;
}

.event-tile-meta-sep {
  color: #cbd5e1;
  font-weight: 400;
}

.event-tile-title {
  font-size: 2rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 2rem;
  line-height: 1.25;
}

.event-tile-speakers {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.speaker-inline {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.speaker-inline-img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  background: #e2e8f0;
}

.speaker-inline-info {
  display: flex;
  flex-direction: column;
}

.speaker-inline-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
}

.speaker-inline-role {
  font-size: 0.9rem;
  font-weight: 600;
  color: #64748b;
}

.event-tile-btn {
  background: #FFB800;
  color: #0f172a;
  font-weight: 800;
  padding: 1rem 2rem;
  border-radius: 8px;
  display: inline-block;
  text-transform: uppercase;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  align-self: flex-start;
  text-decoration: none;
}

.event-tile-btn:hover {
  background: #100f0f;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 184, 0, 0.4);
  color: #fff;
}

@media (max-width: 992px) {
  .event-tile {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.25rem;
  }

  .event-tile-content {
    padding: 0;
  }

  .event-tile-img {
    flex: none;
    width: 100%;
  }

  .event-tile-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .event-tile-meta .event-tile-meta-sep {
    display: none;
  }
}

@media (max-width: 992px) {
  .memory-slide {
    width: 600px;
    height: 400px;
  }

  .memories-nav {
    transform: translateX(200px);
    bottom: 50px;
  }
}

@media (max-width: 768px) {
  .memory-slide {
    width: 85vw;
    height: 300px;
  }

  .memories-nav {
    transform: translateX(calc(42.5vw - 110px));
    bottom: 45px;
  }
}

/* Past Tech Sessions Grid */
.tech-sessions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .tech-sessions-grid {
    grid-template-columns: 1fr;
  }
}

.tech-session-card {
  background: var(--bg-primary, #ffffff);
  border: 1px solid #ffeddc;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  transition: var(--transition-smooth, all 0.3s ease);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.tech-session-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md, 0 4px 6px -1px rgba(0, 0, 0, 0.1));
  border-color: transparent;
  background: linear-gradient(135deg, #f9b148, #e87b0d);
}

.tech-session-card:hover .tech-session-title,
.tech-session-card:hover .tech-session-org {
  color: #ffffff;
}

.tech-session-card:hover .tech-session-date {
  background: #ffffff;
  color: #e87b0d;
}

.tech-session-date {
  font-size: 0.75rem;
  color: var(--accent-blue, #ef8e15);
  background: rgba(239, 142, 21, 0.1);
  padding: 0.35rem 0.8rem;
  border-radius: 20px;
  margin-bottom: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  align-self: flex-start;
  display: inline-block;
}

.tech-session-title {
  font-size: 1.25rem;
  color: var(--text-dark, #1e293b);
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.4;
  margin-top: 0;
}

.tech-session-org {
  font-size: 0.9rem;
  color: var(--text-muted, #64748b);
  margin-bottom: 1rem;
}

.tech-session-links {
  margin-top: auto;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.tech-session-links .btn {
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  border-radius: 4px;
  background: #333;
  color: #fff;
}

/* Mailing List Hero Box */
.mailing-hero-box {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
  background: var(--bg-primary, #ffffff);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  padding: 3rem;
  margin-bottom: 4rem;
  border: 1px solid #ffeddc;
}

.mailing-hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mailing-hero-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  transition: transform 0.3s ease;
}

.mailing-hero-image:hover img {
  transform: scale(1.02);
}

.mailing-hero-content p.intro-text {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-dark, #1e293b);
  margin-bottom: 1.8rem;
}

.mailing-hero-details {
  background: var(--bg-secondary, #f8fafc);
  padding: 1.5rem 2rem;
  border-radius: 12px;
  margin-bottom: 2.5rem;
  border-left: 4px solid var(--accent-blue, #ef8e15);
}

.mailing-hero-details p {
  font-size: 1rem;
  margin-bottom: 0.8rem;
}

.mailing-hero-details p:last-child {
  margin-bottom: 0;
}

.mailing-hero-details strong {
  color: var(--text-dark, #1e293b);
  display: inline-block;
  width: 160px;
}

.mailing-hero-details a {
  color: var(--accent-blue, #ef8e15);
  font-weight: 500;
  text-decoration: none;
  word-break: break-all;
}

.mailing-hero-details a:hover {
  text-decoration: underline;
}

.btn-subscribe {
  background: linear-gradient(135deg, #f9b148, #e87b0d);
  color: #fff !important;
  padding: 1rem 2.5rem;
  border-radius: 30px;
  font-weight: 600;
  display: inline-block;
  box-shadow: 0 6px 20px rgba(239, 142, 21, 0.3);
  transition: all 0.3s ease;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
}

.btn-subscribe:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(239, 142, 21, 0.4);
}

@media (max-width: 992px) {
  .mailing-hero-box {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }

  .mailing-hero-details strong {
    display: block;
    width: auto;
    margin-bottom: 0.2rem;
  }
}

/* Participate Page Styles */
.participate-header {
  text-align: center;
  margin-bottom: 4rem;
}

.participate-subtitle {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent-blue, #ef8e15);
  text-transform: uppercase;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 1rem;
}

.participate-subtitle::before,
.participate-subtitle::after {
  content: "";
  height: 2px;
  width: 40px;
  background-color: var(--border-color, #e2e8f0);
}

.participate-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark, #0a0e17);
  margin-bottom: 1rem;
}

.participate-divider {
  height: 3px;
  width: 60px;
  background-color: var(--accent-blue, #ef8e15);
  margin: 0 auto 1.5rem;
}

.participate-intro {
  font-size: 1.1rem;
  color: var(--text-muted, #64748b);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Participate Cards */
.participate-card {
  display: flex;
  background: linear-gradient(245deg, #abf8c4 40% 10%, #a7f0f5 60%);
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.04);
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
  align-items: center;
}

.participate-card.align-right {
  flex-direction: row-reverse;
}

.participate-card-number {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14rem;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.02);
  z-index: 1;
  pointer-events: none;
  line-height: 1;
}

.participate-card:not(.align-right) .participate-card-number {
  right: 0%;
}

.participate-card.align-right .participate-card-number {
  left: -5%;
}

.participate-image-col {
  flex: 1;
  padding: 2rem;
  z-index: 2;
  position: relative;
}

.participate-image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: visible;
}

.participate-image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px 100px 20px 20px;
  display: block;
}

.participate-image-wrapper.wrapper-right img {
  border-radius: 100px 20px 20px 20px;
}

/* The small overlapping circular icon */
.participate-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: 4px solid #fff;
  z-index: 3;
}

.wrapper-left .participate-icon {
  right: -32px;
}

.wrapper-right .participate-icon {
  left: -32px;
}

.blue-icon {
  background: #0e5db7;
}

.orange-icon {
  background: #e87b0d;
}

.green-icon {
  background: #139f66;
}

/* Dotted pattern */
.participate-dots {
  position: absolute;
  width: 80px;
  height: 80px;
  background-image: radial-gradient(#d1d5db 20%, transparent 20%);
  background-size: 12px 12px;
  z-index: 1;
  opacity: 0.6;
}

.dots-bottom-right {
  bottom: -20px;
  right: -20px;
}

.dots-bottom-left {
  bottom: -20px;
  left: -20px;
}

/* Content Column */
.participate-content-col {
  flex: 1;
  padding: 3rem 4rem;
  z-index: 2;
}

.participate-badge {
  display: inline-block;
  background-color: var(--bg-secondary, #f8fafc);
  color: #2e2f30;
  font-weight: 700;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  border: 1px solid #525355;
  margin-bottom: 1rem;
}

.participate-content-col h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-dark, #0a0e17);
  margin-bottom: 1.5rem;
}

.participate-content-col p {
  color: var(--text-muted, #64748b);
  line-height: 1.8;
  font-size: 1.05rem;
}

/* Community Banner */
.community-banner {
  display: flex;
  align-items: center;
  background-color: #f3f3f0;
  border-radius: 16px;
  padding: 2.5rem 3rem;
  margin-top: 5rem;
  position: relative;
  overflow: hidden;
}

.community-banner-icon {
  background: var(--text-dark, #1e293b);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 2rem;
  z-index: 2;
}

.community-banner-content {
  z-index: 2;
}

.community-banner-content h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-dark, #1e293b);
}

.community-banner-content p {
  color: var(--text-muted, #64748b);
  margin-bottom: 0;
}

.community-banner-pattern {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 40%;
  background-image: radial-gradient(circle at 10px 10px, #cbd5e1 2px, transparent 0);
  background-size: 25px 25px;
  opacity: 0.5;
  z-index: 1;
}

@media (max-width: 992px) {

  .participate-card,
  .participate-card.align-right {
    flex-direction: column;
  }

  .wrapper-left .participate-icon,
  .wrapper-right .participate-icon {
    right: auto;
    left: 50%;
    transform: translateX(-50%) translateY(50%);
    bottom: 0;
    top: auto;
  }

  .participate-content-col {
    padding: 3rem 2rem;
    text-align: center;
  }

  .participate-card-number {
    font-size: 10rem;
    top: auto;
    bottom: 10%;
  }

  .community-banner {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }

  .community-banner-icon {
    margin-right: 0;
    margin-bottom: 1.5rem;
  }
}

/* What We Do Page */
.whatwedo-intro {
  text-align: center;
  font-size: 1.15rem;
  color: var(--text-muted, #64748b);
  max-width: 800px;
  margin: 0 auto 3rem auto;
  line-height: 1.7;
}

.whatwedo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-bottom: 5rem;
}

.whatwedo-card {
  background: var(--bg-primary, #ffffff);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.whatwedo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.whatwedo-card-img {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.whatwedo-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.whatwedo-card:hover .whatwedo-card-img img {
  transform: scale(1.05);
}

.whatwedo-card-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.whatwedo-card-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark, #1e293b);
  margin-bottom: 1rem;
}

.whatwedo-card-content p {
  color: var(--text-muted, #64748b);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Not Do Section Styled */
.not-do-section-styled {
  /* background: var(--bg-secondary, #f8fafc);
  border-radius: 20px;
  padding: 5rem 3rem;
  margin-bottom: 3rem; */
  position: relative;
  overflow: hidden;
}

/* Background subtle dotted pattern for section (optional) */
.not-do-section-styled::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background-image: radial-gradient(#d1d5db 20%, transparent 20%); */
  background-size: 20px 20px;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

.not-do-header-styled {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.not-do-main-icon {
  width: 60px;
  height: 60px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 1.5rem;
  position: relative;
}

.not-do-main-icon::after {
  content: "";
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  background: rgba(239, 142, 21, 0.05);
  border-radius: 50%;
  z-index: -1;
}

.not-do-header-styled h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-dark, #0a0e17);
  margin-bottom: 1rem;
}

.not-do-divider {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1.5rem;
}

.not-do-divider .line {
  height: 2px;
  width: 30px;
  background-color: var(--accent-blue, #ef8e15);
}

.not-do-divider .diamond {
  width: 8px;
  height: 8px;
  background-color: var(--accent-blue, #ef8e15);
  transform: rotate(45deg);
}

.not-do-subtitle {
  color: var(--text-muted, #64748b);
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0;
}

.not-do-grid-styled {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.not-do-card-styled {
  background: #f1efb3;
  padding: 3rem 2rem;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
  border-left: 4px solid var(--accent-blue, #ef8e15);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-left-width 0.3s ease;
}

.not-do-card-styled:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border-left-width: 8px;
}

.card-dots {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 30px;
  background-image: radial-gradient(rgba(239, 142, 21, 0.3) 25%, transparent 25%);
  background-size: 10px 10px;
  transition: transform 0.4s ease;
}

.not-do-card-styled:hover .card-dots {
  transform: scale(1.2);
}

.card-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(239, 142, 21, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s ease;
}

.not-do-card-styled:hover .card-icon-wrapper {
  transform: scale(1.15);
  background: rgba(239, 142, 21, 0.15);
}

.card-icon-wrapper::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: #f6e3c32b;
  border: 1px solid rgba(239, 142, 21, 0.15);
  border-radius: 50%;
}

.card-line {
  height: 3px;
  width: 30px;
  background: var(--accent-blue, #ef8e15);
  margin-bottom: 1.5rem;
}

.not-do-card-styled p {
  color: var(--text-dark, #1e293b);
  font-weight: 600;
  line-height: 1.7;
  font-size: 1.05rem;
  position: relative;
  z-index: 2;
  margin: 0;
}

.card-watermark {
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 120px;
  height: 120px;
  opacity: 0.04;
  z-index: 1;
  pointer-events: none;
}

.card-watermark svg {
  width: 100%;
  height: 100%;
}

@media (max-width: 992px) {
  .not-do-grid-styled {
    grid-template-columns: 1fr;
  }

  .not-do-section-styled {
    padding: 3rem 1.5rem;
  }
}

/* Team Grid Layout */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.team-card {
  background: var(--bg-primary, #ffffff);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid var(--border-color, #e2e8f0);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Subtle gradient background on hover */
.team-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(239, 142, 21, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
  pointer-events: none;
}

.team-card:hover::before {
  opacity: 1;
}

.team-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(239, 142, 21, 0.4);
}

.team-card-image {
  width: 268px;
  height: 100%;
  /* height: 268px; */
  border-radius: 20px;
  /* Modern rounded squares */
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-radius 0.4s ease;
  position: relative;
}

.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.team-card:hover .team-card-image {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(239, 142, 21, 0.25);
  border-radius: 50%;
  /* Morphs into a circle on hover */
}

.team-card:hover .team-card-image img {
  transform: scale(1.15) rotate(3deg);
  /* Slight zoom and rotate */
}

.team-card-info h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark, #1e293b);
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.team-card:hover .team-card-info h3 {
  color: var(--accent-blue, #ef8e15);
}

.team-card-info p {
  font-size: 0.95rem;
  color: var(--text-muted, #64748b);
  font-weight: 500;
  margin: 0;
}

@media (max-width: 1200px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* Gallery Layout */
.gallery-container {
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.gallery-section {
  margin-bottom: 5rem;
}

.gallery-section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark, #0a0e17);
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.gallery-section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--accent-blue, #ef8e15);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  background: #f8fafc;
}

.gallery-item a {
  display: block;
  width: 100%;
  height: 100%;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 14, 23, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: white;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay svg {
  transform: scale(0.5);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item:hover .gallery-overlay svg {
  transform: scale(1);
}

/* Flickr specifically */
.flickr-item {
  aspect-ratio: unset;
  min-height: 250px;
}

.flickr-item .textwidget {
  width: 100%;
  height: 100%;
}

/* Videos Card */
.videos-card {
  background: var(--bg-primary, #ffffff);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  gap: 3rem;
  border-left: 5px solid #ff0000;
}

.videos-icon {
  flex-shrink: 0;
  width: 150px;
}

.videos-icon img {
  width: 100%;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(255, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.videos-icon:hover img {
  transform: scale(1.05);
}

.videos-info h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.videos-info p {
  color: var(--text-muted, #64748b);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.videos-info .btn {
  background: #ff0000;
  color: white;
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
  display: inline-block;
}

.videos-info .btn:hover {
  background: #cc0000;
}

@media (max-width: 768px) {
  .videos-card {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }
}

/* Lightbox Styles */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 30px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  line-height: 1;
  z-index: 10000;
  transition: color 0.2s;
}

.lightbox-close:hover {
  color: var(--accent-gold, #EF8E15);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10000;
  transition: all 0.2s;
  backdrop-filter: blur(4px);
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--accent-gold, #EF8E15);
}

.lightbox-prev {
  left: -70px;
}

.lightbox-next {
  right: -70px;
}

.lightbox-nav svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 768px) {
  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-close {
    top: -40px;
    right: 10px;
  }
}

/* --- Modern Contact Page Redesign --- */
.contact-hero {
  padding: 8rem 0 10rem;
  background: linear-gradient(135deg, rgba(10, 14, 23, 0.85) 0%, rgba(26, 42, 64, 0.85) 100%), url('../images/page-header-bg.jpg') no-repeat center center / cover;
  position: relative;
  overflow: hidden;
}

.contact-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(239, 142, 21, 0.15) 0%, transparent 40%);
  pointer-events: none;
}

.hero-subtitle {
  color: var(--text-light);
  opacity: 0.9;
  font-size: 1.1rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

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

.justify-center {
  justify-content: center;
}

.-mt-20 {
  margin-top: -5rem;
}

.z-10 {
  z-index: 10;
}

.relative {
  position: relative;
}

.contact-grid-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 992px) {
  .contact-grid-modern {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .-mt-20 {
    margin-top: 2rem;
  }
}

.glass-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
}

.form-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.form-header p {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.modern-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 600px) {
  .modern-form .form-row {
    grid-template-columns: 1fr;
  }
}

.modern-input-group {
  position: relative;
  margin-bottom: 2rem;
}

.modern-input {
  width: 100%;
  padding: 1rem 0;
  font-size: 1rem;
  color: var(--text-dark);
  background: transparent;
  border: none;
  border-bottom: 2px solid #e2e8f0;
  outline: none;
  transition: border-color 0.3s ease;
}

.modern-input:focus {
  border-bottom-color: var(--accent-gold);
}

.modern-label {
  position: absolute;
  top: 1rem;
  left: 0;
  font-size: 1rem;
  color: var(--text-muted);
  pointer-events: none;
  transition: all 0.3s ease;
}

/* Floating label effect */
.modern-input:focus~.modern-label,
.modern-input:not(:placeholder-shown)~.modern-label {
  top: -12px;
  font-size: 0.85rem;
  color: var(--accent-gold);
  font-weight: 600;
}

.modern-textarea {
  resize: vertical;
  min-height: 100px;
}

.modern-submit-btn {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  border-radius: 8px;
  background: var(--accent-gold);
  border: none;
  color: white;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(239, 142, 21, 0.2);
}

.modern-submit-btn:hover {
  background: #d87c0f;
  transform: translateY(-2px);
  box-shadow: 0 15px 25px rgba(239, 142, 21, 0.3);
}

.modern-submit-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.modern-submit-btn:hover svg {
  transform: translateX(4px) translateY(-4px);
}

.info-card-container {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.info-card-3-col {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 992px) {
  .info-card-3-col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .info-card-3-col {
    grid-template-columns: 1fr;
  }
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.modern-info-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: center;
  flex-flow: column;
  padding: 1.5rem;
  background: #fff3e3;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  box-shadow: 0px 0px 18px -8px #a9a6a6;
}

.modern-info-card:hover {
  background: white;
  border-color: #e2e8f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transform: translateX(5px);
}

.card-icon-wrapper {
  width: 68px;
  height: 68px;
  background: rgba(239, 142, 21, 0.1);
  color: var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  margin-bottom: 0px;
}

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

.modern-info-card:hover .card-icon-wrapper {
  background: var(--accent-gold);
  color: white;
}

.card-icon-wrapper svg {
  width: 22px;
  height: 22px;
}

.card-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.card-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
  line-height: 1.5;
}

.card-content a {
  color: var(--accent-blue, #0f4a8a);
  font-weight: 600;
  text-decoration: none;
}

.card-content a:hover {
  text-decoration: underline;
}

.font-bold {
  font-weight: 700;
}

.text-accent {
  color: var(--accent-gold);
}

.modern-map-wrapper {
  border-radius: 16px;
  overflow: hidden;
  height: 400px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
}

.modern-map-wrapper.full-width-map {
  margin-top: 3rem;
  width: 100%;
}

/* Responsive Tables */
.content-table-wrapper {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 auto 2rem auto;
  background-color: #fff;
  border-radius: 8px;
  display: block;
}

.content-table,
.tablepress {
  width: 100%;
  border-collapse: collapse;
}

/* Allow text to wrap if it's very long, but keep table scrollable */
@media (max-width: 768px) {

  .content-table,
  .tablepress {
    white-space: normal;
    min-width: 600px;
    /* force scrolling */
  }

  .content-table-wrapper {
    /* Force viewport width on mobile to prevent flex blowout */
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    padding: 0 15px !important;
    /* Add some padding so content doesn't hit screen edge */
    border-radius: 0 !important;
  }
}

@media (max-width: 768px) {
  .whatwedo-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}


/* Header Section */
.whatwedo-header-new {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.whatwedo-header-new h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark, #1e293b);
  text-transform: uppercase;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.whatwedo-header-new p {
  font-size: 1.25rem;
  color: var(--text-muted, #64748b);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 400;
}

.whatwedo-header-new::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--accent-blue, #ef8e15);
  margin: 1.5rem auto 0;
  border-radius: 2px;
}

/* Grid Layout */
.whatwedo-grid-modern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 5rem;
}

/* Card Design */
.whatwedo-card-modern {
  background: var(--bg-primary, #ffffff);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid #ffead5;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 1;
}

.whatwedo-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f9b148, #e87b0d);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.whatwedo-card-modern:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(239, 142, 21, 0.25);
  border-color: transparent;
}

.whatwedo-card-modern:hover::before {
  opacity: 1;
}

/* Icon Wrapper */
.whatwedo-icon-wrapper {
  width: 72px;
  height: 72px;
  background: rgba(239, 142, 21, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--accent-blue, #ef8e15);
  transition: all 0.4s ease;
}

.whatwedo-card-modern:hover .whatwedo-icon-wrapper {
  background: #ffffff;
  color: #e87b0d;
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

/* Text Styling */
.whatwedo-card-modern p {
  color: var(--text-dark, #1e293b);
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
  transition: color 0.4s ease;
}

.whatwedo-card-modern:hover p {
  color: #ffffff;
}

/* Wide Card for the last item */
.whatwedo-card-wide {
  grid-column: 1 / -1;
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
  flex-direction: row;
  text-align: left;
  padding: 2rem 3rem;
}

.whatwedo-card-wide .whatwedo-icon-wrapper {
  margin-bottom: 0;
  margin-right: 2rem;
  flex-shrink: 0;
  width: 80px;
  height: 80px;
}

.whatwedo-card-wide p {
  font-size: 1.2rem;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .whatwedo-grid-modern {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .whatwedo-grid-modern {
    grid-template-columns: 1fr;
  }

  .whatwedo-card-wide {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }

  .whatwedo-card-wide .whatwedo-icon-wrapper {
    margin-right: 0;
    margin-bottom: 1.5rem;
  }
}