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


body {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  color: #141C45;
  background-color: #FFFFFF;
}



/* Header/Navbar Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;
  background: #2596be;
  /* Dark blue background matching the prototype image */
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.header.header-hidden {
  transform: translateY(-100%);
}

.header-container {
  max-width: 1290px;
  margin: 0 auto;
  /* padding: 0 100px; */
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  flex-shrink: 0;
  background-color: #141b45;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 10px;
}

.header-logo {
  width: auto;
  height: 100%;
  max-height: 80px;
  object-fit: contain;
  max-width: 180px;
}

.nav-desktop {
  display: flex;
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 40px;
  align-items: center;
}

.nav-list li a {
  color: #FFFFFF;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.nav-list li a:hover {
  color: #C0D53E;
  /* Yellow accent from brand colors */
  opacity: 0.8;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #FFFFFF;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Mobile Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  left: -100%;
  /* Hidden off-screen */
  width: 280px;
  height: 100vh;
  background: #141C45;
  z-index: 999;
  transition: left 0.3s ease;
  overflow-y: auto;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
}

.sidebar.active {
  left: 0;
  /* Slide in from left */
}

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-logo {
  width: 160px;
  height: 72px;
  object-fit: contain;
}

.close-sidebar {
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.close-sidebar:hover {
  color: #C0D53E;
}

.nav-mobile {
  padding: 20px 0;
}

.sidebar-list {
  list-style: none;
  margin: 0;
  padding: 0 24px;
}

.sidebar-list li {
  margin-bottom: 16px;
}

.sidebar-list li a {
  color: #FFFFFF;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.sidebar-list li a:hover {
  color: #C0D53E;
  padding-left: 8px;
}

/* Overlay for sidebar */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 1200px) {
  .header-container {
    padding: 0 50px;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 0 20px;
  }

  .header-logo {
    max-width: 140px;
  }

  .nav-desktop {
    display: none;
    /* Hide desktop nav on mobile */
  }

  .hamburger {
    display: flex;
    /* Show hamburger on mobile */
  }

  /* Hamburger animation when active */
  .hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

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

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

  /* Ensure body doesn't scroll when sidebar is open */
  body.sidebar-open {
    overflow: hidden;
  }
}

@media (max-width: 480px) {
  .sidebar {
    width: 260px;
  }

  .header-container {
    padding: 0 16px;
  }

  .header-logo {
    max-width: 120px;
  }

  .sidebar-list li a {
    font-size: 16px;
  }
}

/* JOIN FREE BUTTON – Green, Bold, Rounded */
.btn-join-free {
  background-color: #C0D53E !important;
  color: #141C45 !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  font-family: 'Inter', sans-serif;
  padding: 12px 32px !important;
  border-radius: 50px !important;
  text-decoration: none;
  white-space: nowrap;
  /* box-shadow: 0 4px 15px rgba(192, 213, 62, 0.4); */
  transition: all 0.35s ease;
  display: inline-block;
}

.btn-join-free:hover {
  background-color: #a8bc32 !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(192, 213, 62, 0.5) !important;
}



/* Desktop: Position button nicely */
.nav-join-desktop {
  margin-left: 20px;
}

/* Mobile: Full-width prominent button in sidebar */
.nav-join-mobile {
  margin: 30px 24px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.nav-join-mobile .btn-join-free {
  display: block;
  text-align: center;
  padding: 16px 20px;
  font-size: 18px;
  width: 100%;
  border-radius: 50px;
}

/* Desktop Dropdown */
.dropdown {
  position: relative;
}

.dropdown-btn {
  cursor: pointer;
}

.dropdown-menu {
  position: absolute;
  top: 30px;
  left: 0;
  background: #1a6680;
  list-style: none;
  padding: 10px 0;
  border-radius: 8px;
  display: none;
  width: 200px;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: white;
  white-space: nowrap;
}

.dropdown-menu li a:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* Show on hover */
.dropdown:hover .dropdown-menu {
  display: block;
}

/* Mobile Dropdown */
.mobile-dropdown-btn {
  width: 100%;
  background: none;
  border: none;
  font-size: 18px;
  color: white;
  padding: 12px 0;
  text-align: left;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-dropdown-btn.open {
  color: #C0D53E;
}

.mobile-dropdown-menu {
  display: none;
  padding-left: 12px;
}

.mobile-dropdown-menu.active {
  display: block;
}

.mobile-dropdown-menu li a {
  border-bottom: none !important;
  padding: 10px 0 !important;
}







/* /////////////////////////////// section 1 Hero Section /////////////////////////////// */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  /* Ensure hero section is full height */
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: -1;
  /* Ensure video is behind content */
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(272deg, rgba(20, 28, 69, 0) 0%, #000000bd 100%);
  z-index: 1;
}


.hero-content {
  position: absolute;
  top: 450px;
  left: 151px;
  z-index: 10;
}

.hero-title {
  font-weight: 900;
  font-size: 56px;
  line-height: 67.77px;
  color: #FFFFFF;
  /* margin-bottom: 48px; */
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  gap: 32px;
}

.btn {
  padding: 12px 24px;
  /* Slightly reduced horizontal padding to fit text better */
  border-radius: 37px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  white-space: nowrap;
  /* Prevents text wrapping to keep in one line */
  display: flex;
  /* Ensures consistent centering */
  align-items: center;
  justify-content: center;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-primary {
  background-color: #F90D11;
  border: 3px solid #ffffff;
  color: #FFFFFF;
  width: 160px;
  /* Increased from 152px to fit "Register Now" snugly */
  height: 50px;
}

.btn-secondary {
  background-color: transparent;
  border: 3px solid #FFFFFF;
  color: #FFFFFF;
  width: 140px;
  /* Increased from 134px to fit "Know More" perfectly */
  height: 50px;
}

/* Rest of your button classes unchanged... */
.btn-blue {
  background-color: #1B7CB6;
  border-color: #1B7CB6;
  color: #FFFFFF;
  padding: 8px 24px;
}

.btn-outline {
  background-color: transparent;
  border-color: #141C45;
  color: #141C45;
  padding: 8px 24px;
}

.btn-whatsapp {
  background-color: #1B7CB6;
  border-color: #1B7CB6;
  color: #FFFFFF;
  border-radius: 49.85px;
  padding: 7px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-buy {
  background-color: #FFFFFF;
  border: none;
  color: #141C45;
  border-radius: 37px;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-view-more {
  background-color: #FFFFFF;
  border: 2px solid #1B7CB6;
  color: #000000;
  border-radius: 37px;
  padding: 8px 24px;
}

.btn-community {
  background-color: #1B7CB6;
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
  border-radius: 39px;
  padding: 15px 24px;
  font-family: 'Inria Sans', sans-serif;
  font-size: 16px;
  line-height: 19.18px;
}

.hero-stats {
  position: absolute;
  top: 475px;
  right: 180px;
  z-index: 10;
}

.stats-graphic {
  width: 334px;
  height: 230px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
  border-radius: 12px;
  padding-bottom: 10px;
}

/* Responsive adjustments (updated to handle full-width) */
@media (max-width: 768px) {
  .hero {
    height: 100vh !important;
    min-height: 640px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 100px 20px 40px;
    overflow: hidden;
  }

  .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(20, 28, 69, 0) 0%, #141C45 100%);
    z-index: 2;
  }

  .hero-content {
    display: contents;
    z-index: 3;
    text-align: center;
  }

  .hero-title {
    order: 1;
    font-size: 32px !important;
    line-height: 1.2;
    margin-bottom: 1px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    color: #FFFFFF;
    hyphens: auto;
    width: 90%;
    position: relative;
    z-index: 3;
    text-align: center;
    padding-top: 20px;
  }

  .hero-buttons {
    order: 4;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 3;
    width: 90%;
    top: 30px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 280px;
    height: 52px;
    /* Taller for better touch targets */
    font-size: 16px;
    padding: 12px 24px;
  }

  .hero-stats {
    order: 2;
    position: relative;
    bottom: 0;
    left: 0;
    transform: none;
    z-index: 3;
    text-align: center;
    margin-bottom: 15px;
  }

  .hero .hero-content p {
    order: 3;
    position: relative;
    z-index: 3;
    margin-bottom: 15px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    color: white;
  }

  .stats-graphic {
    width: 280px;
    /* Responsive size */
    height: auto;
    aspect-ratio: 334 / 185;
    /* Maintain proportions */
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.4));
    border-radius: 12px;
    margin-top: 30px;
  }
}

/* Extra small screens for finer control */
@media (max-width: 480px) {
  .hero {
    padding-top: 73px;
  }

  .hero-image {
    object-position: center top;
    /* Slightly bias towards top on very small screens */
  }

  .hero-overlay {
    top: 55%;
    /* Adjust overlay start higher for smaller screens */
    height: 45%;
  }

  .hero-content {
    width: 95%;
    margin-bottom: 25px;
  }

  .hero-title {
    font-size: 36px !important;
    margin-bottom: 0px;
    padding-top: 20px;
    top: 36px;
  }

  .btn-primary,
  .btn-secondary {
    max-width: 260px;
    height: 48px;
  }

  .stats-graphic {
    width: 240px;
  }
}


/* =========================
   INCREASE CARD.SVG SIZE
   (NO ALIGNMENT CHANGE)
========================= */

/* Desktop */
.stats-graphic {
  transform: scale(1.15);        /* increase size */
  transform-origin: center;      /* keeps alignment same */
}

/* Mobile */
@media (max-width: 768px) {
  .stats-graphic {
    transform: scale(1.5);
    margin-top: 50px;      /* slightly bigger on mobile */
  }
}


/* Prevent horizontal scroll and ensure full responsiveness */
@media (max-width: 768px) {

  .hero,
  .hero-background,
  .hero-image {
    width: 100vw;
    max-width: 100vw;
  }

  body {
    overflow-x: hidden;
  }
}


/* /////////////////////////////////////// section 2 Impact Section ////////////////////////////////////////////// */

/* Impact Section */
.impact {
  scroll-snap-align: start;
  padding: 70px 150px;
  /* Added horizontal padding to match overall site alignment (1290px max-width context) */
  background-color: #FFFFFF;
  text-align: center;
  max-width: 1290px;
  /* Constrain to match Figma prototype width */
  margin: 0 auto;
  /* Center the section */
}

.impact-title {
  font-family: 'Inter', sans-serif;
  /* Explicit font for consistency */
  font-weight: 900;
  font-size: 50px;
  line-height: 67.77px;
  color: #141C45;
  margin-bottom: 35px;
  max-width: 1118px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.02em;
  /* Slight tightening for Figma match */
}

.stats-container {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  align-items: flex-end;
  /* Align items to bottom for even baseline on desktop */
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 150px;
  /* Prevent squishing on smaller viewports */
}

.stat-icon {
  width: 34px;
  height: auto;
  flex-shrink: 0;
  /* Prevent icon scaling */
  filter: brightness(0) saturate(100%) invert(36%) sepia(93%) saturate(3374%) hue-rotate(175deg) brightness(105%) contrast(97%);
  /* Cyan tint to match screenshot */
}

.stat-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  /* Left-align text for natural flow */
}

.stat-number {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 29.05px;
  color: #141C45;
  letter-spacing: -0.01em;
}

.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 30px;
  color: #141C45;
  opacity: 0.8;
  /* Slight fade to match screenshot subtlety */
  font-weight: 400;
  /* Lighter weight for labels */
}

/* Ensure button matches screenshot: rounded, blue bg, white text, centered */
.btn-blue {
  background-color: #1B7CB6;
  border: none;
  /* No border for clean look */
  color: #FFFFFF;
  padding: 12px 32px;
  /* Adjusted for "Know more" text fit */
  border-radius: 37px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  display: block;
  /* Ensure block-level for centering */
  margin: 0 auto;
  /* Explicitly center the button */
  width: fit-content;
  /* Shrink to content width */
}

.btn-blue:hover {
  background-color: #165a8b;
  /* Darker blue on hover */
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(27, 124, 182, 0.3);
}

/* Mobile Responsiveness */
@media (max-width: 1200px) {
  .impact {
    padding: 70px 50px;
    /* Reduce horizontal padding */
  }

  .stats-container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    /* Smaller gap for stacked layout */
  }

  .stat-item {
    flex-direction: row;
    /* Keep icon and content horizontal even in stack */
    justify-content: center;
    text-align: center;
    /* Center text on mobile */
  }

  .stat-content {
    align-items: center;
    /* Center content */
    text-align: center;
  }
}

@media (max-width: 768px) {
  .impact {
    padding: 50px 20px;
    /* Further reduce for small screens */
  }

  .impact-title {
    font-size: 40px;
    /* Scale down title */
    line-height: 48px;
    margin-bottom: 40px;
  }

  .stats-container {
    gap: 32px;
    /* Tighter gap on mobile */
  }

  .stat-number {
    font-size: 22px;
    /* Slightly smaller number */
    line-height: 26px;
  }

  .stat-label {
    font-size: 14px;
    /* Smaller label */
    line-height: 24px;
  }

  .btn-blue {
    padding: 10px 24px;
    /* Compact button on mobile */
    width: 100%;
    /* Full width for touch targets */
    max-width: 200px;
    /* Prevent over-stretching */
    margin: 0 auto 0 auto;
    /* Keep centered */
  }
}

@media (max-width: 480px) {
  .impact-title {
    font-size: 32px;
    line-height: 38px;
  }

  .stat-item {
    gap: 12px;
    /* Even tighter gap */
  }

  .stat-icon {
    width: 28px;
    /* Smaller icon on tiny screens */
  }
}




/* ////////////////////////////////////////////   About Section ///////////////////////////////////////// */












/* ////////////////////////////////////////////////////// Mission Section ////////////////////////////////////////// */




/* Locations Section */
.locations {
  background-color: #141C45;
  padding: 100px 0;
  text-align: center;
  font-family: 'Inter', sans-serif;
}

.locations-title {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 56px;
  line-height: 67.77px;
  color: #FFFFFF;
  margin-bottom: 20px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.02em;
}

.locations-grid {
  display: flex;
  justify-content: center;
  gap: 50px;
  max-width: 1290px;
  margin: 0 auto;
  padding: 0 20px;
  /* ← This is the ONLY change needed */
  align-items: flex-start;
}



.location-card {
  text-align: center;
  flex: 1;
  max-width: 350px;
  /* Cap width to ensure uniformity */
}

.location-image {
  width: 350px;
  height: 450px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 20px;
  display: block;
  /* Ensure no inline spacing issues */
  margin-left: auto;
  margin-right: auto;
  /* Center image if needed */
}

.location-name {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 29.05px;
  color: #FFFFFF;
  margin: 0;
  /* Reset any default margins */
  letter-spacing: -0.01em;
}

/* Mobile Responsiveness */
@media (max-width: 1200px) {
  .locations {
    padding: 80px 0;
  }

  .locations-grid {
    gap: 30px;
    padding: 0 50px;
    flex-wrap: wrap;
    /* Allow wrapping if needed on tablets */
  }

  .locations-title {
    font-size: 48px;
    line-height: 58px;
    margin-bottom: 60px;
  }

  .location-image {
    width: 300px;
    height: 385px;
    /* Proportional scale down */
  }

  .location-name {
    font-size: 22px;
    line-height: 26px;
  }
}

@media (max-width: 768px) {
  .locations {
    padding: 60px 0;
  }

  .locations-grid {
    flex-direction: column;
    /* Stack vertically on mobile */
    align-items: center;
    gap: 40px;
    padding: 0 20px;
  }

  .locations-title {
    font-size: 36px;
    line-height: 44px;
    margin-bottom: 40px;
    padding: 0 10px;
  }

  .location-card {
    max-width: 100%;
  }

  .location-image {
    width: 100%;
    max-width: 350px;
    /* Maintain aspect but full width */
    height: 450px;
    /* Keep fixed height for consistency, crop via object-fit */
  }

  .location-name {
    font-size: 20px;
    line-height: 24px;
  }
}

@media (max-width: 480px) {
  .locations {
    padding: 40px 0;
  }

  .locations-title {
    font-size: 32px;
    line-height: 38px;
    margin-bottom: 32px;
  }

  .locations-grid {
    gap: 32px;
    padding: 0 15px;
  }

  .location-image {
    height: 300px;
    /* Reduce height on very small screens for better fit */
    max-width: 300px;
  }

  .location-name {
    font-size: 18px;
    line-height: 22px;
  }
}

/* Top marker overlay for locations section */
.top-marker {
  top: -30px;
  /* Half the icon height to straddle the boundary */
  left: 50%;
  transform: translateX(-50%);
  /* Center horizontally */
  width: 60px;
  height: 60px;
}

/* Style for the marker image */
.marker-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  /* Makes it a perfect circle */
  box-shadow: 0 4px 12px rgba(249, 13, 17, 0.3);
  /* Optional shadow for depth */
  animation: pulse 2s infinite;
  /* Optional pulse animation */
}

/* Responsive adjustments for top marker */
@media (max-width: 1200px) {
  .top-marker {
    width: 50px;
    height: 50px;
    top: -25px;
  }
}

@media (max-width: 768px) {
  .top-marker {
    width: 45px;
    height: 45px;
    top: -22px;
  }
}

@media (max-width: 480px) {
  .top-marker {
    width: 40px;
    height: 40px;
    top: -20px;
  }
}

/* Optional pulse animation */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(59, 63, 171, 0.4);
  }

  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(249, 13, 17, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(249, 13, 17, 0);
  }
}




/* Join Movement Section */
.join-movement {
  background-color: #141C45;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.join-card {
  background-color: #C0D53E;
  border-radius: 20px;
  /* Rounded corners to match screenshot */
  max-width: 840px;
  margin: 0 auto;
  padding: 80px 0;
  /* Vertical padding inside card */
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  /* Subtle shadow for depth */
}

.join-content {
  max-width: 750px;
  /* Increased from 600px to widen the paragraph area for better readability and screenshot match */
  margin: 0 auto;
  padding: 0 50px;
}

.join-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 45px;
  line-height: 50.77px;
  color: #141C45;
  margin-bottom: 40px;
  letter-spacing: -0.02em;
  text-align: center;
  /* Explicit center alignment for title */
}

.join-description {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 30px;
  color: #141C45;
  margin-bottom: 60px;
  opacity: 0.9;
  /* Slight fade for description */
  text-align: center;
  /* Left alignment for natural paragraph flow, matching screenshot readability */
  max-width: 100%;
  /* Allow full width within container */
}

.btn-whatsapp {
  background-color: #1B7CB6;
  border: 1px solid #1B7CB6;
  color: #FFFFFF;
  border-radius: 49.85px;
  padding: 15px 32px;
  /* Increased padding for better fit and touch target */
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 19.18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  /* box-shadow: 0 4px 12px rgba(27, 124, 182, 0.3); */
}

.btn-whatsapp:hover {
  background-color: #165a8b;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(27, 124, 182, 0.4);
}

.whatsapp-icon {
  width: 12px;
  /* Slightly larger for visibility */
  height: 20px;
  flex-shrink: 0;
}

/* Mobile Responsiveness */
@media (max-width: 1200px) {
  .join-movement {
    padding: 80px 0;
  }

  .join-card {
    padding: 60px 0;
    margin: 0 20px;
    border-radius: 16px;
  }

  .join-content {
    padding: 0 40px;
    max-width: 700px;
    /* Scale down slightly for tablets */
  }

  .join-title {
    font-size: 48px;
    line-height: 58px;
  }

  .join-description {
    padding: 0 20px;
    text-align: left;
    /* Maintain left alignment */
  }
}

@media (max-width: 768px) {
  .join-movement {
    padding: 60px 0;
  }

  .join-card {
    padding: 40px 0;
    margin: 0 15px;
    border-radius: 12px;
  }

  .join-content {
    padding: 0 20px;
    max-width: none;
    /* Full width on mobile for better space usage */
  }

  .join-title {
    font-size: 36px;
    line-height: 44px;
    margin-bottom: 24px;
    text-align: center;
  }

  .join-description {
    font-size: 15px;
    line-height: 26px;
    margin-bottom: 40px;
    padding: 0 10px;
    text-align: left;
    /* Keep left-aligned for readability */
  }

  .btn-whatsapp {
    padding: 12px 24px;
    font-size: 15px;
    width: 100%;
    max-width: 320px;
    /* Full width but capped */
    justify-content: center;
  }

  .whatsapp-icon {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .join-movement {
    padding: 40px 0;
  }

  .join-card {
    padding: 30px 0;
    margin: 0 10px;
  }

  .join-content {
    padding: 0 15px;
  }

  .join-title {
    font-size: 32px;
    line-height: 38px;
    margin-bottom: 20px;
  }

  .join-description {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 32px;
    text-align: left;
  }

  .btn-whatsapp {
    padding: 10px 20px;
    font-size: 14px;
    max-width: 280px;
  }
}


/* Merchandise Section */
/* /////////////////////////////// section 6 Merchandise /////////////////////////////// */
/* Split View Container for Merch + Parallax */
.split-view-container {
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.merchandise {
  position: relative;
  background: linear-gradient(90deg, #1D7CB7 0%, #C0D43B 100%);
  /* PRESERVED GRADIENT */
  height: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  /* Removing padding to fit 50vh */
  width: 100%;
}

.merch-content {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 60px;
  /* Reduced gap */
  max-width: 1290px;
  margin: 0 auto;
  padding: 0 40px;
  transform: scale(0.9);
  /* Scale to fit comfortably */
}

/* Single Image Container */
.merch-images {
  flex-shrink: 0;
  width: 380px;
  text-align: center;
}

.tshirt-single {
  width: 100%;
  max-width: 380px;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
  transition: transform 0.4s ease;
}

.tshirt-single:hover {
  transform: translateY(-10px) scale(1.02);
}

/* Text Content */
.merch-text {
  flex: 1;
  color: #141C45;
}

.merch-title {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 52px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  max-width: 580px;
}

.merch-description {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 30px;
  color: rgba(20, 28, 69, 0.94);
  margin-bottom: 32px;
  max-width: 620px;
}

.merch-price {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.price-text {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.price-label {
  font-weight: 600;
  font-size: 24px;
  color: #141C45;
}

.price {
  font-weight: 700;
  font-size: 28px;
  color: #141C45;
}

.btn-buy {
  background-color: #FFFFFF;
  border: none;
  color: #141C45;
  border-radius: 50px;
  padding: 14px 36px;
  font-weight: 700;
  font-size: 17px;
  cursor: pointer;
  transition: all 0.35s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-buy:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.arrow-icon {
  width: 18px;
  height: 18px;
}

/* RESPONSIVE – Mobile First */
@media (max-width: 1200px) {
  .split-view-container {
    height: auto;
    min-height: 100vh;
  }

  .merchandise {
    height: auto;
    padding: 60px 0;
  }

  .parallax-section-js {
    height: 400px;
    /* Fixed height for mobile */
  }

  .merch-content {
    gap: 80px;
    padding: 0 50px;
  }

  .tshirt-single {
    max-width: 340px;
  }
}

@media (max-width: 992px) {
  .merch-content {
    flex-direction: column;
    text-align: center;
    gap: 50px;
    padding: 0 40px;
  }

  .merch-images {
    order: -1;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }

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

  .merch-title,
  .merch-description {
    max-width: 100%;
  }

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

@media (max-width: 768px) {
  .merchandise {
    padding: 50px 0;
  }

  .merch-title {
    font-size: 44px;
    line-height: 1.2;
  }

  .merch-description {
    font-size: 16px;
  }

  .merch-images {
    max-width: 360px;
  }
}

@media (max-width: 480px) {
  .merchandise {
    padding: 40px 0;
  }

  .merch-content {
    padding: 0 20px;
  }

  .merch-title {
    font-size: 36px;
  }

  .price-label,
  .price {
    font-size: 22px;
  }

  .btn-buy {
    padding: 12px 28px;
    font-size: 16px;
    width: 100%;
    max-width: 240px;
    justify-content: center;
  }
}











/* ///////////////////////////////////// Gallery Section //////////////////////////////////////////////////////// */
/* ——— GALLERY SECTION — RANDOM & UNIQUE CLASSES ——— */
/* ====================== GALLERY SECTION ====================== */
.x9f_kc_gallery_main {
  padding: 130px 0;
  background: #fff;
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}


.x9f_kc_gallery_heading {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 56px;
  line-height: 1.2;
  color: #141C45;
  margin-bottom: 70px;
}

.x9f_kc_slider_container {
  position: relative;
  max-width: 1290px;
  margin: 0 auto;
  padding: 0 20px;
  overflow: hidden;
}

/* Desktop & Tablet: Horizontal Scrollable Carousel */
.x9f_kc_images_track {
  position: relative;
  display: flex;
  gap: 34px;
  overflow-x: auto;
  scroll-behavior: smooth;
  /* padding: 15px 100px; */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.x9f_kc_images_track::-webkit-scrollbar {
  display: none;
}

/* Fade effect on desktop */
.x9f_kc_images_track::before,
.x9f_kc_images_track::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  pointer-events: none;
  z-index: 1;
}

/* .x9f_kc_images_track::before {
      left: 0;
      background: linear-gradient(to right, #fff 0%, transparent 100%);
    }
    .x9f_kc_images_track::after {
      right: 0;
      background: linear-gradient(to left, #fff 0%, transparent 100%);
    } */

.x9f_kc_photo_box {
  flex: 0 0 284px;
  text-align: center;
}

.x9f_kc_photo {
  width: 100%;
  height: 244px;
  object-fit: cover;
  border-radius: 18px;
  /* box-shadow: 0 12px 32px rgba(0,0,0,0.14); */
  transition: all 0.4s ease;
}

.x9f_kc_photo:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
}

.x9f_kc_photo_label {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 500;
  color: #141C45;
}

/* View More Button */
.x9f_kc_big_viewmore {
  margin: 80px auto 0;
  display: block;
  background: #fff;
  border: 2px solid #1B7CB6;
  color: #141C45;
  padding: 8px 32px;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.4s ease;
}

.x9f_kc_big_viewmore:hover {
  background: #1B7CB6;
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(27, 124, 182, 0.4);
}

/* Tablet Adjustments */
@media (max-width: 1200px) {
  .x9f_kc_images_track {
    padding: 15px 80px;
  }

  .x9f_kc_photo_box {
    flex: 0 0 260px;
  }

  .x9f_kc_photo {
    height: 224px;
  }
}

/* Mobile: Switch to 2×2 Grid (2 columns, 2 rows) */
@media (max-width: 768px) {
  .x9f_kc_gallery_main {
    padding: 90px 0;
  }

  .x9f_kc_gallery_heading {
    font-size: 44px;
    margin-bottom: 50px;
  }

  .x9f_kc_slider_container {
    padding: 0 16px;
  }

  .x9f_kc_images_track {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* 2 columns */
    gap: 20px;
    overflow: hidden;
    /* No scrolling */
    padding: 10px 0;
  }

  /* Remove fade on mobile */
  .x9f_kc_images_track::before,
  .x9f_kc_images_track::after {
    display: none;
  }

  .x9f_kc_photo_box {
    flex: none;
  }

  .x9f_kc_photo {
    height: 180px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  }
}

@media (max-width: 480px) {
  .x9f_kc_gallery_heading {
    font-size: 36px;
  }

  .x9f_kc_photo {
    height: 160px;
  }

  .x9f_kc_images_track {
    gap: 16px;
  }
}




/* ===================================================== */
/*   INSPIRATION SECTION - 100% CONFLICT-FREE (w9x_)     */
/*   Wave background GUARANTEED + Beautiful Design       */
/* ===================================================== */

.w9x_insp_section {
  position: relative;
  background: #ffc706;
  padding: 120px 0;
  overflow: hidden;
}

.w9x_insp_wrap {
  max-width: 1290px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.w9x_insp_title {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 56px;
  line-height: 1.2;
  color: #141C45;
  margin-bottom: 20px;
}

.w9x_insp_desc {
  font-size: 18px;
  line-height: 1.6;
  color: #141C45;
  max-width: 800px;
  margin: 0 auto 80px;
  opacity: 0.9;
}

/* WAVE BACKGROUND - DOUBLE LAYER = ALWAYS VISIBLE */
.w9x_wave_container {
  background: url('images/wave2.png') center/cover no-repeat, #ffc706;
  padding: 80px 40px;
  margin-top: 50px;
  border-radius: 40px;
  position: relative;
  overflow: hidden;
}

.w9x_wave_container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('images/wave2.png') center/cover no-repeat;
  border-radius: 40px;
  z-index: -1;
  opacity: 0.9;
}

.w9x_cards_row {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.w9x_card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  width: 380px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s ease;
}

.w9x_card:hover {
  transform: translateY(-12px);
}

.w9x_card_img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  padding: 5px;
  border-radius: 15px;
}

.w9x_card_content {
  padding: 28px 24px;
  text-align: left;
}

.w9x_meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: 14px;
  color: #141C45;
  opacity: 0.7;
}

.w9x_author {
  font-weight: 500;
}

.w9x_date {
  font-weight: 300;
}

.w9x_card_heading {
  font-size: 24px;
  font-weight: 700;
  color: #141C45;
  margin-bottom: 12px;
  line-height: 1.3;
}

.w9x_card_text {
  font-size: 16px;
  line-height: 1.7;
  color: #141C45;
  margin-bottom: 20px;
  opacity: 0.9;
}

.w9x_read_link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #1B7CB6;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
  transition: gap 0.3s ease;
}

.w9x_read_link:hover {
  gap: 16px;
  color: #0e5d8e;
}

.w9x_arrow {
  width: 30px;
  height: 16px;
  transition: transform 0.3s ease;
}

.w9x_read_link:hover .w9x_arrow {
  transform: translateX(8px);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .w9x_cards_row {
    gap: 30px;
    padding: 0 20px;
  }

  .w9x_card {
    width: 360px;
  }
}

@media (max-width: 992px) {
  .w9x_cards_row {
    flex-direction: column;
    align-items: center;
  }

  .w9x_card {
    width: 100%;
    max-width: 420px;
  }
}

@media (max-width: 768px) {
  .w9x_insp_section {
    padding: 90px 0;
  }

  .w9x_insp_title {
    font-size: 44px;
  }

  .w9x_insp_desc {
    margin-bottom: 60px;
    font-size: 17px;
  }

  .w9x_wave_container {
    padding: 60px 20px;
    margin-top: 40px;
  }
}

@media (max-width: 480px) {
  .w9x_insp_title {
    font-size: 36px;
  }

  .w9x_card_content {
    padding: 20px;
  }

  .w9x_card_heading {
    font-size: 22px;
  }

  .w9x_card_img {
    height: 260px;
  }

  .w9x_wave_container {
    padding: 50px 15px;
  }
}



/* Instagram Section */
/* ——— INSTAGRAM SECTION – FULLY RESPONSIVE & BEAUTIFUL ——— */
.igx9_instagram_section {
  padding: 120px 20px;
  background-color: #FFFFFF;
  text-align: center;
}

.igx9_instagram_title {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 56px;
  line-height: 1.2;
  color: #141C45;
  margin-bottom: 20px;
}

.igx9_instagram_subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: #141C45;
  max-width: 800px;
  margin: 0 auto 80px;
  opacity: 0.9;
}

/* Responsive Grid */
.igx9_instagram_grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.igx9_ig_photo {
  width: 100%;
  height: 380px;
  object-fit: fill;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
  transition: all 0.4s ease;
}

.igx9_ig_photo:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  border-radius: 22px;
}

/* ——— RESPONSIVE BREAKPOINTS ——— */

/* Large Desktop */
@media (max-width: 1400px) {
  .igx9_instagram_grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .igx9_ig_photo {
    height: 360px;
  }
}

/* Tablet & Small Desktop */
@media (max-width: 1024px) {
  .igx9_instagram_section {
    padding: 100px 20px;
  }

  .igx9_instagram_title {
    font-size: 48px;
  }

  .igx9_instagram_grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .igx9_ig_photo {
    height: 340px;
  }
}

/* Mobile Landscape & Small Tablets */
@media (max-width: 768px) {
  .igx9_instagram_section {
    padding: 80px 15px;
  }

  .igx9_instagram_title {
    font-size: 42px;
    margin-bottom: 16px;
  }

  .igx9_instagram_subtitle {
    font-size: 16px;
    margin-bottom: 60px;
  }

  .igx9_instagram_grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 0 10px;
  }

  .igx9_ig_photo {
    height: 200px;
    border-radius: 16px;
  }
}

/* Mobile Portrait */
@media (max-width: 480px) {
  .igx9_instagram_title {
    font-size: 36px;
    line-height: 1.2;
  }

  .igx9_instagram_subtitle {
    font-size: 15px;
    margin-bottom: 50px;
  }

  .igx9_instagram_grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    /* Tighter gap for denser layout */
    padding: 0 10px;
  }

  .igx9_ig_photo {
    height: 120px;
    /* Reduced height for 3-column layout */
    border-radius: 12px;
  }

  .igx9_ig_photo:hover {
    transform: translateY(-8px) scale(1.01);
  }
}




.footer {
  background-color: #1b7cb6;
  padding: 80px 0 40px;
  color: #ffffff;
}

.footer-content {
  max-width: 1290px;
  margin: 0 auto;
  padding: 0 45px;
}

.footer-links {
  display: flex;
  justify-content: space-between;
  margin: 60px 0;
}

.footer-column h4 {
  font-size: 25px;
  line-height: 30px;
  /* margin-top: 20px; */
  opacity: 0.35;
  font-weight: 500;
}

.footer-column ul {
  list-style: none;
}

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

.footer-column ul li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  line-height: 30px;
  transition: opacity 0.3s ease;
}

.footer-column ul li a:hover {
  opacity: 0.8;
}

.footer-logo {
  width: 208px;
  height: 93px;
  margin-bottom: 5px;
}

.social-icons {
  display: flex;
  gap: 44px;
  align-items: center;
}

.social-icon {
  width: 18px;
  height: 20px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.social-icon:hover {
  opacity: 0.8;
}

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

.copyright {
  font-family: "Inria Sans", sans-serif;
  font-size: 18px;
  line-height: 21.58px;
  color: #ffffff;
}



/* ===== MOBILE FOOTER – FORCE PERFECT CENTER ALIGN ===== */
@media (max-width: 768px) {

  .footer * {
    box-sizing: border-box;
  }

  /* Main footer links container */
  .footer .footer-links {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 40px !important;
    width: 100% !important;
  }

  /* Each footer column */
  .footer .footer-column {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
  }

  /* Headings */
  .footer .footer-column h4 {
    text-align: center !important;
    margin-bottom: 12px;
  }

  /* Lists */
  .footer .footer-column ul {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
  }

  .footer .footer-column ul li {
    text-align: center !important;
    margin-bottom: 8px;
    width: 100%;
  }

  /* Links */
  .footer .footer-column ul li a {
    display: block;
    text-align: center !important;
  }

  /* Logo */
  .footer .footer-logo {
    display: block !important;
    margin: 0 auto 12px auto !important;
  }

  /* Social icons */
  .footer .social-icons {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 22px !important;
  }

  /* Buttons */
  .footer button,
  .footer .btn {
    margin-left: auto !important;
    margin-right: auto !important;
  }

}

/* Responsive Design */
@media (max-width: 1200px) {

  .about-content,
  .merch-content {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .locations-grid,
  .gallery-grid,
  .inspiration-grid,
  .instagram-grid {
    flex-wrap: wrap;
    gap: 20px;
  }

  .stats-container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
}

@media (max-width: 768px) {

  .hero-title,
  .impact-title,
  .about-title,
  .mission-title,
  .locations-title,
  .merch-title,
  .gallery-title,
  .inspiration-title,
  .instagram-title {
    font-size: 36px;
    line-height: 44px;
    top: 36px;
  }

  /* .hero-content {
    left: 20px;
    right: 20px;
  } */

  .hero-stats {
    position: relative;
    right: auto;
    top: auto;
    margin-top: 40px;
    text-align: center;
  }

  .about-content,
  .merch-content,
  .footer-content {
    padding: 0 20px;
  }

  .footer-links {
    flex-direction: column;
    gap: 40px;
  }

  .locations-grid,
  .gallery-grid,
  .inspiration-grid,
  .instagram-grid {
    padding: 0 20px;
  }

  .location-image,
  .gallery-image,
  .inspiration-card,
  .instagram-image {
    width: 100%;
    max-width: 350px;
  }
}

/* Center the Join the Community button perfectly */
.community-btn-wrapper {
  text-align: -webkit-center;
  margin-bottom: 70px;
}

.btn-community-footer {
  background-color: #ffffff00;
  border-width: 2px;
  color: white;
  padding: 10px 17px;
  font-size: 18px;
  font-weight: 100;
  border-radius: 35px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-color: white;
}

.btn-community-footer:hover {
  background-color: #f0f0f0;
  transform: translateY(-4px);
  color: #0765a4;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

/* Keep your existing footer styles untouched */
.footer-links {
  display: flex;
  justify-content: space-between;
  margin: 0 0 60px 0;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .community-btn-wrapper {
    margin-bottom: 50px;
  }

  .footer-links {
    flex-direction: column;
    gap: 50px;
    text-align: center;
  }

  .footer-column ul {
    display: inline-block;
    text-align: left;
  }

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


/* ///////////////////////////////////// parallax cover image ////////////////////////////////// */
.parallax-section-js {
  width: 100%;
  height: 50%;
  /* Bottom Half */
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.parallax-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}