/* IChamber Main Styles - Converted from React to Vanilla HTML/CSS */

/* CSS Variables - Matching the React version exactly */
:root {
  --background: hsl(0, 0%, 100%);
  --foreground: hsl(217, 33%, 17%);
  --muted: hsl(214, 32%, 91%);
  --muted-foreground: hsl(215, 16%, 47%);
  --popover: hsl(0, 0%, 100%);
  --popover-foreground: hsl(217, 33%, 17%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(217, 33%, 17%);
  --border: hsl(214, 32%, 91%);
  --input: hsl(214, 32%, 91%);
  --primary: hsl(216, 100%, 50%);
  --primary-foreground: hsl(0, 0%, 98%);
  --secondary: hsl(214, 32%, 91%);
  --secondary-foreground: hsl(217, 33%, 17%);
  --accent: hsl(214, 32%, 91%);
  --accent-foreground: hsl(217, 33%, 17%);
  --destructive: hsl(0, 84.2%, 60.2%);
  --destructive-foreground: hsl(0, 0%, 98%);
  --ring: hsl(216, 100%, 50%);
  --radius: 0.5rem;

  /* Premium WEF-inspired Background Alternation System */
  --wef-navy-dark: #0a1a33;           /* Dark navy for primary sections */
  --wef-navy-light: #12294f;          /* Lighter navy for contrast sections */
  --wef-navy-medium: hsl(217, 91%, 18%);
  --wef-light-grey: #f8fafc;          /* Light grey sections */
  --wef-medium-grey: #f1f5f9;         /* Slightly darker grey for cards */
  --wef-blue: hsl(216, 100%, 50%);
  --wef-light-blue: hsl(213, 97%, 87%);
  --wef-accent-blue: hsl(213, 100%, 96%);
  --wef-charcoal: hsl(217, 19%, 16%);
  --wef-slate: hsl(215, 16%, 47%);
  --wef-gray: hsl(210, 9%, 71%);
  --wef-white: hsl(0, 0%, 100%);
  --wef-gold: hsl(45, 93%, 58%);

  /* Text colors for different backgrounds */
  --text-navy-primary: rgba(255, 255, 255, 0.95);
  --text-navy-secondary: rgba(255, 255, 255, 0.85);
  --text-grey-primary: #2a2a2a;
  --text-grey-secondary: #525252;
}

/* Rural Economic Forum Section Styles */
.rural-economic-forum-section {
  position: relative;
  min-height: 120px;
  background: linear-gradient(rgba(12, 32, 64, 0.85), rgba(12, 32, 64, 0.85)),
              url('../images/Indian_business_conference_presentation_6d8cd678.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  width: 90%;
  margin: 2rem auto;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 8px 32px rgba(0, 0, 0, 0.08);
}

.rural-forum-container {
  position: relative;
  height: 100%;
  min-height: 120px;
  display: flex;
  align-items: center;
  padding: 1.5rem 4cm;
  z-index: 2;
}

.rural-forum-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 1.5rem;
}

.rural-forum-text {
  flex: 1;
  max-width: 600px;
}

.rural-forum-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.rural-forum-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  font-family: 'Inter', sans-serif;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.rural-forum-description {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
  margin-bottom: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.rural-forum-action {
  flex-shrink: 0;
}

.rural-forum-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  border-radius: 0.375rem;
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(20px);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.rural-forum-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.rural-forum-btn svg {
  transition: transform 0.3s ease;
}

.rural-forum-btn:hover svg {
  transform: translateX(4px);
}

/* Responsive Design for Rural Forum */
@media (max-width: 1024px) {
  .rural-economic-forum-section {
    width: 95%;
    margin: 1.5rem auto;
    min-height: 100px;
  }
  
  .rural-forum-container {
    padding: 1rem 2rem;
    min-height: 100px;
  }
  
  .rural-forum-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .rural-forum-title {
    font-size: 1.25rem;
  }
  
  .rural-forum-description {
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  .rural-economic-forum-section {
    width: 95%;
    margin: 1rem auto;
    min-height: 90px;
  }
  
  .rural-forum-container {
    padding: 0.75rem 1.5rem;
    min-height: 90px;
  }
  
  .rural-forum-title {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
  }
  
  .rural-forum-description {
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
  }
  
  .rural-forum-btn {
    padding: 0.375rem 0.875rem;
    font-size: 0.75rem;
  }
  
  .rural-forum-badge {
    font-size: 0.7rem;
    padding: 0.125rem 0.5rem;
    margin-bottom: 0.25rem;
  }
}

/* Forum in the News Section Styles */
.forum-news-section {
  background: var(--wef-navy-dark);
}

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

.news-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0.5rem;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.news-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Professional Logo Styles */
.logo-icon-professional {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  margin-right: 12px;
}

.logo-icon-professional .logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
}

.logo-professional:hover .logo-icon-professional .logo-image {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* Enhanced text styling */
.logo-text-professional {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logo-main-text {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--wef-white);
  margin: 0;
  line-height: 1.2;
}

.logo-sub-text {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1;
  text-transform: uppercase;
}

/* WEF Forum News Styles */
.wef-forum-news-container {
  position: relative;
}

.wef-news-item:hover {
  background: rgba(255, 255, 255, 0.05) !important;
  transform: translateY(-2px);
}

.wef-news-item:hover .wef-news-title {
  color: #ffffff !important;
}

.wef-news-item:hover .wef-news-source {
  color: #7bb3ff !important;
}

/* Responsive design for WEF news grid */
@media (max-width: 1024px) {
  .wef-forum-news-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.25rem !important;
  }
}

@media (max-width: 768px) {
  .wef-forum-news-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .wef-news-item {
    min-height: 120px !important;
    padding: 1.5rem !important;
  }

  .wef-news-title {
    font-size: 1rem !important;
  }
}

.news-title {
  color: var(--wef-white);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  line-height: 1.4;
  margin-top: 0;
}

.news-source {
  color: #5294ff;
  font-size: 0.875rem;
  margin: 0;
}

.press-releases-link {
  color: #5294ff;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s ease;
}

.press-releases-link:hover {
  color: #6ba3ff;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .forum-news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 768px) {
  .forum-news-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .forum-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .forum-title {
    font-size: 2rem !important;
  }
}

.dark {
  --background: hsl(220, 39%, 11%);
  --foreground: hsl(0, 0%, 98%);
  --muted: hsl(217, 19%, 16%);
  --muted-foreground: hsl(215, 16%, 47%);
  --popover: hsl(220, 39%, 11%);
  --popover-foreground: hsl(0, 0%, 98%);
  --card: hsl(217, 19%, 16%);
  --card-foreground: hsl(0, 0%, 98%);
  --border: hsl(217, 19%, 16%);
  --input: hsl(217, 19%, 16%);
  --primary: hsl(216, 100%, 50%);
  --primary-foreground: hsl(0, 0%, 98%);
  --secondary: hsl(217, 19%, 16%);
  --secondary-foreground: hsl(0, 0%, 98%);
  --accent: hsl(217, 19%, 16%);
  --accent-foreground: hsl(0, 0%, 98%);
  --destructive: hsl(0, 62.8%, 30.6%);
  --destructive-foreground: hsl(0, 0%, 98%);
  --ring: hsl(216, 100%, 50%);
  --radius: 0.5rem;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  letter-spacing: -0.01em;
  background: var(--wef-navy-dark);
  color: var(--wef-white);
  antialiased: true;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
.font-display {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.font-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.font-subheading {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.font-body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: -0.005em;
}

.font-body-large {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
  font-size: 1.125rem;
}

.font-caption {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

/* WEF-Style Section Background Alternation System */
.wef-section-navy-dark {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #1e293b 100%);
  color: var(--text-navy-primary);
  position: relative;
  padding: 5rem 0;
  min-height: auto;
}

.wef-section-navy-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.02) 2px, transparent 2px),
    radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
  background-size: 50px 50px, 30px 30px;
  pointer-events: none;
}

.wef-section-navy-light {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #1e293b 100%);
  color: var(--text-navy-primary);
  position: relative;
  padding: 5rem 0;
  min-height: auto;
}

.wef-section-navy-light::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.02) 2px, transparent 2px);
  background-size: 40px 40px, 60px 60px;
  pointer-events: none;
}

.wef-section-grey-light {
  background: var(--wef-light-grey);
  color: var(--text-grey-primary);
  position: relative;
  padding: 5rem 0;
  min-height: auto;
}

.wef-section-grey-light::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(0, 0, 0, 0.01) 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
  background-size: 45px 45px, 35px 35px;
  pointer-events: none;
}

/* Section Dividers - Enhanced WEF Style */
.wef-section-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
  margin: 0;
  position: relative;
}

.wef-section-divider.grey {
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.12) 50%, transparent 100%);
}

/* Enhanced Spacing System */
.wef-spacing-section {
  padding: 6rem 0;
}

.wef-spacing-header {
  margin-bottom: 3rem;
}

.wef-spacing-content {
  margin-bottom: 2.5rem;
}

/* Card contrast styles for different backgrounds */
.wef-card-navy {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  color: var(--text-navy-primary);
  transition: all 0.3s ease;
}

.wef-card-navy:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  background: rgba(255, 255, 255, 0.12);
}

.wef-card-grey {
  background: var(--wef-white);
  border: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.08);
  color: var(--text-grey-primary);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.wef-card-grey:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22), 0 4px 12px rgba(0, 0, 0, 0.12);
  border-color: rgba(0, 0, 0, 0.18);
}

/* Typography for different backgrounds */
.wef-text-navy h1, .wef-text-navy h2, .wef-text-navy h3 {
  color: var(--wef-white);
}

.wef-text-navy p, .wef-text-navy span {
  color: var(--text-navy-secondary);
}

.wef-text-grey h1, .wef-text-grey h2, .wef-text-grey h3 {
  color: var(--text-grey-primary);
}

.wef-text-grey p, .wef-text-grey span {
  color: var(--text-grey-secondary);
}

/* Shadow Box Cards */
.shadow-box-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18), 0 4px 20px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.95);
}

/* Global Banner */
.global-banner {
  background: linear-gradient(135deg, var(--wef-blue) 0%, var(--wef-navy-light) 100%);
  padding: 0.75rem 0;
  position: relative;
  z-index: 60;
}

.banner-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.banner-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Professional banner design without emoji */
.banner-emoji {
  display: none; /* Hide emojis for professional appearance */
}

.banner-text {
  color: var(--wef-white);
  font-size: 0.875rem;
  font-weight: 500;
}

.banner-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: #bfdbfe;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.banner-link:hover {
  color: var(--wef-white);
}

.banner-close {
  background: none;
  border: none;
  color: #bfdbfe;
  cursor: pointer;
  padding: 0.25rem;
  transition: color 0.2s ease;
}

.banner-close:hover {
  color: var(--wef-white);
}

/* Header */
.header {
  background: var(--wef-white);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4rem;
}

.logo-container {
  flex-shrink: 0;
}

.logo {
  height: 3rem;
  width: auto;
}

/* Professional Logo Design - WEF Style - Updated 2025 v2 */
.logo-professional {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

/* WEF Professional Section Standards */
.wef-section-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: left;
  margin-bottom: 3rem;
}

/* Override strategic header styles for professional WEF alignment */
.strategic-header.wef-section-header {
  padding: 0;
}

.wef-section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

/* Strategic Pillars Section - WEF Professional */
.strategic-pillars-section {
  background: #ffffff;
  padding: 6rem 0;
}

/* Strategic Agenda Section - Moved from Homepage */
.strategic-agenda-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 6rem 0;
}

.strategic-agenda-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.strategic-impact-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.strategic-impact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.strategic-impact-card .card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.strategic-impact-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.strategic-impact-card:hover .card-image img {
  transform: scale(1.05);
}

.strategic-impact-card .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.3));
}

.strategic-impact-card .card-content {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.strategic-impact-card .card-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
}

.strategic-impact-card .card-discover {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #3b82f6;
  font-size: 0.875rem;
  font-weight: 500;
}

.strategic-impact-card .card-discover svg {
  transition: transform 0.2s ease;
}

.strategic-impact-card:hover .card-discover svg {
  transform: translateX(4px);
}

.wef-heading-2 {
  font-family: 'Inter', sans-serif;
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--wef-charcoal);
  margin-bottom: 1rem;
  text-align: left;
}

.wef-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  color: #6b7280;
  margin-bottom: 2rem;
  max-width: 42rem;
  text-align: left;
}

/* Impact Section Professional Fix */
.impact-section-title {
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--wef-charcoal);
  margin-bottom: 1rem;
  text-align: left;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.impact-section-subtitle {
  font-size: 1.125rem;
  color: #6b7280;
  margin-bottom: 2rem;
  text-align: left;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  max-width: 42rem;
}

.logo-professional:hover {
    transform: translateY(-2px);
}

.logo-professional:hover .logo-icon-professional {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.5);
}

.logo-icon-professional {
    width: 48px;
    height: 48px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.4);
    border: none;
    position: relative;
    overflow: hidden;
    transform: scale(1);
    transition: all 0.3s ease;
}

.logo-icon-professional::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.logo-professional:hover .logo-icon-professional::before {
    left: 100%;
}

.logo-icon-professional svg {
    width: 48px;
    height: 48px;
}

.logo-text-professional {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #1e293b;
    letter-spacing: 0.025em;
    line-height: 1.1;
}

.logo-sub-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    color: #64748b;
    letter-spacing: 0.075em;
    margin-top: 2px;
    text-transform: uppercase;
}

/* Navigation */
.main-nav {
  display: none;
}

@media (min-width: 768px) {
  .main-nav {
    display: flex;
  }
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: 500;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.3s ease;
  transform: scale(1);
  border: 1px solid transparent;
  background: linear-gradient(to right, #f3f4f6, #e5e7eb);
  color: #374151;
}

.nav-link:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  background: linear-gradient(to right, var(--wef-blue), #4f46e5);
  color: var(--wef-white);
  border-color: var(--wef-blue);
}

.dropdown-icon {
  margin-left: 0.25rem;
  height: 0.75rem;
  width: 0.75rem;
  transition: transform 0.2s ease;
}

.nav-item.active .dropdown-icon {
  transform: rotate(180deg);
}

/* Mega Menu */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--wef-white);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  min-width: 400px;
  max-width: 600px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 9999;
  padding: 1.5rem;
}

.nav-item:hover .mega-menu,
.nav-item.active .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Home button styling */
.nav-item.home-nav {
  margin-right: 1rem;
}

.nav-item.home-nav .nav-link {
  background: linear-gradient(to right, var(--wef-blue), #4f46e5);
  color: white;
  border-color: var(--wef-blue);
  font-weight: 600;
}

.nav-item.home-nav .nav-link:hover {
  background: linear-gradient(to right, #1e40af, #4338ca);
  transform: scale(1.05);
}

.mega-menu-content {
  padding: 1rem;
}

.mega-menu-section h3 {
  color: var(--wef-charcoal);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.mega-menu-section ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mega-menu-section li {
  margin-bottom: 0.25rem;
}

.mega-menu-section a {
  color: var(--wef-slate);
  text-decoration: none;
  font-size: 0.875rem;
  padding: 0.25rem 0;
  display: block;
  transition: color 0.2s ease;
}

.mega-menu-section a:hover {
  color: var(--wef-blue);
}

/* Dropdown-only navigation links */
.nav-link.dropdown-only {
  cursor: default;
}

.nav-link.dropdown-only:hover {
  color: var(--wef-white);
  background: linear-gradient(to right, var(--wef-blue), #4f46e5);
  border-color: var(--wef-blue);
}

/* Active state for mega menu items */
.mega-menu-section a.active {
  color: var(--wef-blue);
  font-weight: 600;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.search-btn, .mobile-menu-btn {
  background: none;
  border: none;
  color: var(--wef-charcoal);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.25rem;
  transition: all 0.2s ease;
}

.search-btn:hover, .mobile-menu-btn:hover {
  background: var(--wef-light-gray);
  color: var(--wef-blue);
}

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 2rem;
  height: 2rem;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.hamburger-line {
  display: block;
  width: 1.25rem;
  height: 2px;
  background: currentColor;
  margin: 2px 0;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: url('../images/blue-gradient-hero-bg.png') center center / cover no-repeat;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.1) 1px, transparent 0);
  background-size: 40px 40px;
  opacity: 0.3;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 100%);
}

/* WEF-Style Center Top Logo for Homepage */
.hero-top-logo {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo-center {
  width: 220px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 25px rgba(255, 255, 255, 0.3));
  transition: all 0.3s ease;
}

.hero-logo-center:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 12px 35px rgba(255, 255, 255, 0.45));
}

.hero-container {
  position: relative;
  z-index: 10;
  max-width: 1400px;
  margin: 0 auto;
  padding: 14rem 2rem 0 2rem;
  display: flex;
  align-items: center;
  min-height: 100vh;
  flex-direction: column;
  justify-content: center;
}

.hero-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
  width: 100%;
}

@media (min-width: 1024px) {
  .hero-content-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

@media (min-width: 1024px) {
  .hero-text-content {
    text-align: left;
  }
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--wef-blue), #4f46e5);
  color: var(--wef-white);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out;
}

.hero-title {
  font-size: 3rem;
  line-height: 1.1;
  font-weight: 800;
  color: var(--wef-white);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--wef-gray);
  margin-bottom: 2rem;
  max-width: 600px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.text-highlight {
  background: linear-gradient(135deg, var(--wef-blue), #4f46e5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--wef-gray);
  margin-bottom: 2rem;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--wef-blue), #4f46e5) !important;
  color: var(--wef-white) !important;
  border: 1px solid var(--wef-blue) !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #4f46e5, var(--wef-blue)) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.btn-secondary {
  background: transparent;
  color: var(--wef-white);
  border: 2px solid var(--wef-white);
}

.btn-secondary:hover {
  background: var(--wef-white);
  color: var(--wef-navy);
}

.btn-icon {
  transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
  transform: translateX(4px);
}

/* Hero Media */
.hero-media-content {
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hero-video-container {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero-video-container:hover .video-overlay {
  opacity: 1;
}

.video-play-button {
  background: var(--wef-white);
  color: var(--wef-navy);
  border: none;
  border-radius: 50%;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.video-play-button:hover {
  transform: scale(1.1);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Hero Tabs */
.hero-tabs-section {
  width: 100%;
  max-width: 80rem;
  animation: fadeInUp 0.8s ease-out 1s both;
}

.section-header-tabs {
  margin-bottom: 2rem;
}

.impact-section-title {
  font-size: 2.25rem;
  line-height: 1.1;
  font-weight: 600;
  color: var(--wef-charcoal);
  margin-bottom: 1rem;
  text-align: left;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.025em;
}

@media (min-width: 1024px) {
  .impact-section-title {
    font-size: 2.5rem;
    text-align: left;
  }
}

.tabs-header {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
  width: 100%;
}

.tab-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--wef-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  white-space: nowrap;
  min-width: fit-content;
}

.tab-btn:hover, .tab-btn.active {
  background: linear-gradient(135deg, var(--wef-blue), #4f46e5);
  color: var(--wef-white);
  border-color: var(--wef-blue);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.tab-icon {
  transition: transform 0.3s ease;
}

.tab-btn:hover .tab-icon {
  transform: scale(1.1);
}

/* Tab Panels */
.tabs-content {
  position: relative;
}

.tab-panel {
  display: none;
  animation: fadeIn 0.5s ease-out;
}

.tab-panel.active {
  display: block;
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: none;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

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

@media (min-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Impact Cards */
.impact-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  min-height: 24rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.impact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: var(--wef-blue);
}

.card-image {
  height: 16rem;
  overflow: hidden;
}

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

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

.card-content {
  padding: 1.5rem;
}

.card-content h3 {
  color: var(--wef-white);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.card-content p {
  color: var(--wef-gray);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Strategic Agenda Cards - 3x2 Grid Layout */
.cards-grid-3x2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
  padding: 0 1rem;
}

@media (max-width: 1024px) {
  .cards-grid-3x2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .cards-grid-3x2 {
    grid-template-columns: 1fr;
  }
}

.strategic-impact-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  text-decoration: none;
  color: inherit;
  position: relative;
  min-height: 24rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.strategic-impact-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 30px 40px -5px rgba(43, 108, 184, 0.4), 0 15px 15px -5px rgba(43, 108, 184, 0.3);
  border-color: var(--wef-blue);
}

.strategic-impact-card .card-image {
  height: 20rem;
  overflow: hidden;
  position: relative;
}

.strategic-impact-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.strategic-impact-card:hover .card-image img {
  transform: scale(1.05);
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
  transition: opacity 0.3s ease;
}

.strategic-impact-card .card-content {
  padding: 1.5rem;
  position: relative;
}

.strategic-impact-card .card-content h3 {
  color: var(--wef-white);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.card-discover {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--wef-blue);
  font-size: 0.875rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.strategic-impact-card:hover .card-discover {
  opacity: 1;
  transform: translateY(0);
}

.card-discover svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.strategic-impact-card:hover .card-discover svg {
  transform: translateX(4px);
}

/* Section Styles */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

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

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--wef-white);
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-description {
  font-size: 1.125rem;
  color: var(--wef-gray);
  line-height: 1.7;
}

/* Platform Partnership Section */
.platform-partnership {
  background: var(--wef-charcoal);
  position: relative;
}

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

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

@media (min-width: 1024px) {
  .platforms-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.platform-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.platform-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: var(--wef-blue);
}

.platform-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, var(--wef-blue), #4f46e5);
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  color: var(--wef-white);
}

.platform-card h3 {
  color: var(--wef-white);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.platform-card p {
  color: var(--wef-gray);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.platform-link {
  color: var(--wef-blue);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.platform-link:hover {
  color: var(--wef-light-blue);
}

/* Strategic Agenda Section */
.strategic-agenda {
  background: var(--wef-navy);
}

.agenda-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .agenda-content {
    grid-template-columns: 1fr 1fr;
  }
}

.agenda-description {
  color: var(--wef-gray);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.agenda-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

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

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--wef-blue);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--wef-gray);
  font-size: 0.875rem;
  font-weight: 600;
}

.agenda-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.agenda-chart {
  position: relative;
}

.chart-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: conic-gradient(var(--wef-blue) 0deg 306deg, rgba(255, 255, 255, 0.1) 306deg 360deg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.chart-inner {
  width: 120px;
  height: 120px;
  background: var(--wef-navy);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.chart-percentage {
  font-size: 2rem;
  font-weight: 700;
  color: var(--wef-white);
}

.chart-label {
  font-size: 0.875rem;
  color: var(--wef-gray);
}

/* Gallery Showcase */
.gallery-showcase {
  background: var(--wef-charcoal);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-item {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

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

.gallery-item img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 2rem 1.5rem 1.5rem;
  color: var(--wef-white);
}

.gallery-overlay h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.gallery-overlay p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Newsletter Section */
.newsletter-section {
  background: var(--wef-navy);
}

.newsletter-content {
  text-align: center;
  max-width: 32rem;
  margin: 0 auto;
}

.newsletter-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--wef-white);
  margin-bottom: 1rem;
}

.newsletter-content p {
  color: var(--wef-gray);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.newsletter-form {
  position: relative;
}

.form-group {
  display: flex;
  gap: 0.5rem;
  flex-direction: column;
}

@media (min-width: 640px) {
  .form-group {
    flex-direction: row;
  }
}

.newsletter-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  color: var(--wef-white);
  font-size: 0.875rem;
  backdrop-filter: blur(10px);
}

.newsletter-input::placeholder {
  color: var(--wef-gray);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--wef-blue);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.newsletter-btn {
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--wef-blue), #4f46e5);
  color: var(--wef-white);
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.newsletter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Footer */
.footer {
  background: var(--wef-charcoal);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem 1.5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-section:first-child {
  grid-column: span 1;
}

@media (min-width: 1024px) {
  .footer-section:first-child {
    grid-column: span 1;
  }
}

.footer-logo-img {
  height: 2.5rem;
  width: auto;
  margin-bottom: 1rem;
}

.footer-description {
  color: var(--wef-gray);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  color: var(--wef-gray);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.social-link:hover {
  color: var(--wef-blue);
}

.footer-title {
  color: var(--wef-white);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

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

.footer-links a {
  color: var(--wef-gray);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

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

.contact-info p {
  color: var(--wef-gray);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: var(--wef-gray);
  font-size: 0.875rem;
}

/* Search Modal */
.search-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 4rem 1rem;
  z-index: 100;
}

.search-modal.active {
  display: flex;
}

.search-modal-content {
  background: var(--wef-white);
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  max-width: 32rem;
  width: 100%;
  max-height: 80vh;
  overflow: hidden;
}

.search-header {
  display: flex;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid var(--border);
}

.search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1rem;
  padding: 0.5rem;
  background: transparent;
  color: var(--wef-charcoal);
}

.search-input::placeholder {
  color: var(--wef-slate);
}

.close-search {
  background: none;
  border: none;
  color: var(--wef-slate);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.25rem;
  transition: all 0.2s ease;
}

.close-search:hover {
  background: var(--wef-light-gray);
  color: var(--wef-charcoal);
}

.search-results {
  padding: 1rem;
  max-height: 60vh;
  overflow-y: auto;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 20rem;
  height: 100vh;
  background: var(--wef-white);
  box-shadow: -10px 0 15px -3px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  z-index: 100;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-content {
  padding: 2rem 1rem;
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav-list li {
  margin-bottom: 0.5rem;
}

.mobile-nav-link {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--wef-charcoal);
  text-decoration: none;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
}

.mobile-nav-link:hover {
  background: var(--wef-light-gray);
  color: var(--wef-blue);
}

/* Mobile Nav Section Styles */
.mobile-nav-section {
  margin-bottom: 1rem;
  padding: 0.5rem 0;
  border-top: 1px solid var(--wef-light-gray);
}

.mobile-nav-section-title {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--wef-slate);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.mobile-nav-sub {
  margin-left: 1rem;
  padding-left: 1.5rem;
  font-size: 0.9rem;
  position: relative;
}

.mobile-nav-sub::before {
  content: '';
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: var(--wef-blue);
  border-radius: 50%;
}

/* Hamburger Menu Styles */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
  position: relative;
}

.hamburger-menu span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--wef-white);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-6px, 6px);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
  transform: rotate(45deg) translate(-6px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 20, 25, 0.98);
  backdrop-filter: blur(10px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding: 2rem;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-header h3 {
  color: var(--wef-white);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
}

.mobile-menu-close {
  background: none;
  border: none;
  color: var(--wef-white);
  font-size: 2rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

/* Mobile Search */
.mobile-search {
  display: flex;
  margin-bottom: 2rem;
  gap: 1rem;
}

.mobile-search-input {
  flex: 1;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--wef-white);
  font-size: 1rem;
}

.mobile-search-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.mobile-search-btn {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: var(--wef-blue);
  color: var(--wef-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Menu Links */
.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-menu-link {
  display: block;
  padding: 1rem;
  color: var(--wef-white);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.mobile-menu-link:hover,
.mobile-menu-link.active {
  background: rgba(59, 130, 246, 0.2);
  color: var(--wef-blue);
}

.mobile-menu-section {
  margin: 1.5rem 0;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-section h4 {
  color: var(--wef-blue);
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 1rem 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mobile-menu-section .mobile-menu-link {
  padding-left: 2rem;
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 767px) {
  .hamburger-menu {
    display: flex;
  }

  .main-nav {
    display: none;
  }

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

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

  .hero-logo-center {
    width: 140px;
    height: 140px;
    padding: 0.75rem;
  }

  .hero-top-logo {
    top: 1rem;
  }

  .hero-container {
    padding-top: 10rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .tabs-header {
    flex-direction: column;
  }

  .tab-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Platform Partnership Section Enhancements */
.platform-partnership-section {
  background: var(--wef-charcoal);
  padding: 6rem 0;
  position: relative;
}

.platform-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.platform-header {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.platform-ref-image {
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: 1rem;
}

.platform-title {
  color: var(--wef-white);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.platform-description {
  color: var(--wef-gray);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.platform-learn-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--wef-blue), #4f46e5);
  color: var(--wef-white);
  text-decoration: none;
  font-weight: 600;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.platform-learn-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px -5px rgba(59, 130, 246, 0.3);
}

.platform-images-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.platform-image-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 2rem;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.platform-image-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--wef-blue);
}

.platform-card-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
}

.platform-card-title {
  color: var(--wef-white);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.platform-card-desc {
  color: var(--wef-gray);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Standalone India Chamber at a Glance Section */
.glance-standalone-section {
  background: var(--wef-charcoal);
  padding: 6rem 0;
  position: relative;
}

/* Enhanced India Chamber at a Glance Section */
.platform-glance-section {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.glance-title {
  color: var(--wef-white);
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 4rem;
  line-height: 1.3;
}

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

@media (max-width: 1024px) {
  .glance-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.glance-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  overflow: hidden;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.glance-item:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--wef-blue);
  box-shadow: 0 25px 50px -12px rgba(43, 108, 184, 0.3);
}

.glance-image {
  position: relative;
  height: 16rem;
  overflow: hidden;
}

.glance-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.glance-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.glance-content {
  padding: 2.5rem;
  text-align: center;
}

.glance-item-title {
  color: var(--wef-white);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  line-height: 1.4;
}

.glance-item-desc {
  color: var(--wef-gray);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 400;
}

/* Enhanced How We Derive Impact Section - Wider Layout */
.hero-tabs-section {
  max-width: 100%; /* Full width like WEF */
  margin: 0 auto;
  padding: 6rem 1rem; /* Minimal side padding */
}

.section-header-tabs {
  text-align: center;
  margin-bottom: 4rem;
}

.impact-section-title {
  color: var(--wef-white);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.tabs-header {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 1rem 2.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  color: var(--wef-white);
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.tab-btn:hover,
.tab-btn.active {
  background: linear-gradient(135deg, var(--wef-blue), #4f46e5);
  border-color: var(--wef-blue);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.3);
}

.tab-panels {
  min-height: 400px;
}

.tab-panel {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

.tab-panel.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Enhanced Strategic Agenda Cards */
.strategic-agenda-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: none; /* Remove width restrictions */
  padding: 0 1rem; /* Add padding for better spacing */
}

@media (max-width: 1024px) {
  .strategic-agenda-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 640px) {
  .strategic-agenda-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Enhanced Platforms and Programs Cards */
.platforms-grid,
.programs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  max-width: none;
  padding: 0 1rem;
}

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

@media (max-width: 768px) {
  .platforms-grid,
  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .platforms-grid,
  .programs-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.strategic-impact-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.strategic-impact-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--wef-blue);
  box-shadow: 0 25px 50px -12px rgba(43, 108, 184, 0.3);
}

.strategic-impact-card .card-image {
  position: relative;
  height: 16rem;
  overflow: hidden;
}

.strategic-impact-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.strategic-impact-card:hover .card-image img {
  transform: scale(1.1);
}

.strategic-impact-card .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.strategic-impact-card .card-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.strategic-impact-card .card-content h3 {
  color: var(--wef-white);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.strategic-impact-card .card-discover {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--wef-blue);
  font-weight: 600;
  font-size: 0.875rem;
  margin-top: auto;
}

/* Enhanced Ease with Chamber Section */
.ease-with-chamber-section {
  background: var(--wef-navy);
  padding: 0;
  position: relative;
  min-height: 100vh;
  height: 100vh;
  overflow: hidden;
}

.ease-main-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  height: 100vh;
}

@media (max-width: 1024px) {
  .ease-main-content {
    grid-template-columns: 1fr;
    gap: 0;
    text-align: center;
  }
}

.ease-image-side {
  display: block;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  height: 100vh;
  margin: 0;
  padding: 0;
}

.ease-image-container {
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
}

.ease-building-img {
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  transition: transform 0.3s ease;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: 0;
  padding: 0;
  display: block;
}

.ease-image-container:hover .ease-building-img {
  transform: scale(1.05);
}

.ease-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
  border-radius: 0;
}

.ease-content-side {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 6rem 3rem;
  justify-content: center;
  min-height: 100vh;
}

.ease-title {
  color: var(--wef-white);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.ease-description {
  color: var(--wef-gray);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

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

.ease-join-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--wef-blue), #4f46e5);
  color: var(--wef-white);
  text-decoration: none;
  font-weight: 600;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

.ease-join-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px -5px rgba(59, 130, 246, 0.3);
}

.ease-discover-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--wef-white);
  text-decoration: none;
  font-weight: 600;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.ease-discover-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--wef-blue);
  transform: translateY(-2px);
}

/* Enhanced Core Values Section */
.ease-values-section {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 4rem;
}

.ease-values-title {
  color: var(--wef-white);
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
}

.ease-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

@media (max-width: 1024px) {
  .ease-values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

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

.ease-value-item {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.ease-value-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--wef-blue);
  box-shadow: 0 15px 25px -5px rgba(43, 108, 184, 0.2);
}

.ease-value-icon {
  color: var(--wef-blue);
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.ease-value-name {
  color: var(--wef-white);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.ease-value-desc {
  color: var(--wef-gray);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Utility Classes */
.hidden {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Footer Styles - Unified Design */
.main-footer {
  background: #0f172a;
  color: var(--wef-white);
  padding: 3rem 0 1rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-title {
  color: var(--wef-white);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-logo {
  margin-bottom: 1rem;
}

.footer-logo-img {
  height: 3rem;
  width: auto;
}

.footer-description {
  color: #cbd5e1;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

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

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

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

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

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #cbd5e1;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--wef-blue);
  color: var(--wef-white);
  transform: translateY(-2px);
}

.footer-contact {
  margin-top: 1rem;
  font-size: 0.9rem;
}

.footer-contact p {
  margin: 0.3rem 0;
  color: #cbd5e1;
}

.footer-contact strong {
  color: var(--wef-white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  margin: 0;
  color: #cbd5e1;
  font-size: 0.9rem;
}

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

.footer-bottom-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: var(--wef-white);
}

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

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
}

/* Join Button Styling */
.join-btn {
  background: linear-gradient(135deg, var(--wef-blue), #4f46e5);
  color: var(--wef-white);
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  margin-right: 0.75rem;
}

.join-btn:hover {
  background: linear-gradient(135deg, #4f46e5, var(--wef-blue));
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(43, 108, 184, 0.3);
}

@media (max-width: 768px) {
  .join-btn {
    margin-right: 0.5rem;
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }
}

/* Hero Section Transformed - Pure Blue Gradient Background */
.hero-section-transformed {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-background-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, 
    #4A90E2 0%,
    #357ABD 25%, 
    #2E6BA8 50%, 
    #265C94 75%, 
    #1E4D7F 100%
  );
}

.hero-overlay {
  display: none;
}

.hero-pattern-overlay {
  display: none;
}

.hero-container-new {
  position: relative;
  z-index: 10;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-content-layout {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-content-layout {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.hero-text-section {
  color: white;
}

.hero-badge-new {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 2rem;
  box-shadow: 0 8px 25px rgba(74, 144, 226, 0.2);
}

.hero-main-title {
  font-size: 3rem;
  line-height: 1.1;
  font-weight: 800;
  color: white;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-main-description {
  font-size: 1.25rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 600px;
}

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

.stat-item {
  text-align: left;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

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

.btn-primary-new {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(74, 144, 226, 0.2);
}

.btn-primary-new:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(74, 144, 226, 0.3);
}

.btn-secondary-new {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.btn-secondary-new:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.hero-visual-section {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-container {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.image-backdrop {
  position: absolute;
  inset: -20px;
  background: linear-gradient(45deg, 
    rgba(255, 255, 255, 0.1) 0%, 
    rgba(255, 255, 255, 0.05) 100%
  );
  border-radius: 20px;
  backdrop-filter: blur(10px);
  z-index: 1;
}

.hero-main-image {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.floating-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  z-index: 3;
}

.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.card-content {
  color: white;
}

.card-title {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.card-subtitle {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
  .hero-main-title {
    font-size: 2.5rem;
  }
  
  .hero-stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .hero-action-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-primary-new,
  .btn-secondary-new {
    width: 100%;
    justify-content: center;
  }
  
  .floating-card {
    position: static;
    margin-top: 2rem;
  }
}

/* Strategic Purposes Section Styles */
.strategic-purposes-transformed {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(180deg, 
    #4A90E2 0%,
    #357ABD 25%, 
    #2E6BA8 50%, 
    #265C94 75%, 
    #1E4D7F 100%
  ) !important;
  overflow: hidden;
}

.purposes-background {
  display: none !important;
}

.purposes-overlay {
  display: none !important;
}

.purposes-pattern {
  display: none !important;
}

/* REF Future Section White Background Override */
.ref-future-section {
  background: #ffffff !important;
}

.ref-future-background,
.ref-gradient-overlay {
  display: none !important;
}