* {
  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);
}

.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;
}


/* 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;
}




/* /////////////////////////////////////////////////////// impact ////////////////////////////////////////// */
/* Impact Section */
.impact {
  padding: 100px 40px;
  background-color: #ffffff;
  text-align: center;
}

.stats-container {
  display: flex;
  justify-content: center;
  gap: 120px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  min-width: 140px;
}

.stat-icon {
  width: 38px;
  height: auto;
  margin-bottom: 8px;
}

.stat-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.stat-number {
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: #141c45;
}

.stat-label {
  font-size: 18px;
  font-weight: 500;
  color: #141c45;
  letter-spacing: 0.5px;
}

/* Tablet & Large Mobile */
@media (max-width: 992px) {
  .stats-container {
    gap: 80px;
  }
  .stat-number {
    font-size: 42px;
  }
  .stat-label {
    font-size: 17px;
  }
}

/* Mobile Only - 2×2 Grid Layout */
@media (max-width: 768px) {
  .impact {
    padding: 80px 20px;
  }

  .stats-container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 columns */
    gap: 40px 30px;
    justify-items: center;
    max-width: 400px;
    margin: 0 auto;
  }

  .stat-item {
    gap: 14px;
  }

  .stat-icon {
    width: 34px;
  }

  .stat-number {
    font-size: 38px;
  }

  .stat-label {
    font-size: 16px;
  }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
  .stats-container {
    gap: 32px 20px;
  }
  .stat-number {
    font-size: 34px;
  }
}

/* ///////////////////////////////////////////////////////////impact end //////////////////////////////////////////// */

/*///////////////////////////////////// Variety of Walks Section /////////////////////////////////*/
/* Variety of Walks Section */
/*///////////////////////////////////// Variety of Walks Section /////////////////////////////////*/
/* Variety of Walks Section */
.variety-walks {
  background-color: #e6f3ff; /* Light cyan/teal background matching prototype */
  padding: 100px 0;
  overflow: hidden;
}

.variety-content {
  max-width: 1290px;
  margin: 0 auto;
  padding: 0 150px;
  text-align: center;
}

.variety-title {
  font-weight: 900;
  font-size: 56px;
  line-height: 67.77px;
  color: #000000; /* Dark blue-black for bold title */
  margin-bottom: 40px;
}

.variety-description {
  font-size: 16px;
  line-height: 30px;
  color: #141c45;
  margin-bottom: 80px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.variety-grid {
  display: grid;
  grid-template-columns: repeat(
    5,
    1fr
  ); /* Updated to 5 columns for separate cards */
  gap: 30px;
  align-items: start; /* Align tops for even spacing */
}

.variety-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.variety-image-wrapper {
  width: 100%;
  aspect-ratio: 3 / 4; /* Further increased height (taller portrait ratio: height ~1.33x width) for more vertical emphasis */
  overflow: hidden;
  border-radius: 20px; /* Rounded corners as in prototype */
  margin-bottom: 16px;
}

.variety-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease; /* Subtle hover for engagement */
}

.variety-card:hover .variety-image {
  transform: scale(1.05);
}

.variety-label {
  font-size: 16px;
  line-height: 30px;
  color: #141c45;
  font-weight: 600;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .variety-content {
    padding: 0 50px;
  }

  .variety-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet */
    gap: 40px;
  }

  .variety-description {
    max-width: 700px;
  }

  .variety-image-wrapper {
    aspect-ratio: 3 / 4; /* Maintain taller aspect on tablet */
  }
}

@media (max-width: 768px) {
  .variety-walks {
    padding: 60px 0;
  }

  .variety-content {
    padding: 0 20px;
  }

  .variety-title {
    font-size: 36px;
    line-height: 44px;
    margin-bottom: 24px;
  }

  .variety-description {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 60px;
    max-width: 100%;
  }

  .variety-grid {
    grid-template-columns: repeat(
      2,
      1fr
    ); /* 2 columns on mobile for better fit with 5 items */
    gap: 24px;
  }

  .variety-image-wrapper {
    aspect-ratio: 2 / 3; /* Even taller on mobile (height ~1.5x width) for enhanced vertical portrait feel */
    max-width: 350px;
    margin: 0 auto 16px;
  }

  .variety-label {
    font-size: 18px; /* Slightly larger for touch readability */
  }
}

@media (max-width: 480px) {
  .variety-content {
    padding: 0 16px;
  }

  .variety-title {
    font-size: 32px;
    line-height: 40px;
  }

  .variety-grid {
    grid-template-columns: 1fr; /* Single column on very small screens */
    gap: 24px;
  }

  .variety-image-wrapper {
    aspect-ratio: 2 / 3; /* Keep even taller aspect on very small screens */
    border-radius: 16px;
  }
}

/*///////////////////////////////////// Variety of Walks Section end /////////////////////////////////*/

/*///////////////////////////////////// Community Section ///////////////////////////////////////*/

.community {
  background-color: #fff8e1; /* Light yellow/beige background to match prototype */
  padding: 100px 0;
  overflow: hidden; /* Prevent any overflow issues */
}

.community-content {
  display: flex;
  align-items: flex-start; /* Align to top for better text-image balance */
  gap: 80px;
  max-width: 1290px;
  margin: 0 auto;
  padding: 0 50px;
}

.community-image {
  flex-shrink: 0; /* Prevent image from shrinking */
}

.community-img {
  width: 468px;
height: 450px;
  object-fit: fill;
  border-radius: 20px; /* Rounded corners as in prototype */
}

.community-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Center text vertically within its space */
}

.community-title {
  font-weight: 900;
  font-size: 50px;
  line-height: 60.77px;
  color: #000000; /* Blue color to match prototype */
  margin-bottom: 40px;
  max-width: 600px; /* Prevent overflow on narrower screens */
  padding-top: 61px;
}

.community-description {
  font-size: 16px;
  line-height: 30px;
  color: #141c45;
  margin-bottom: 40px;
  max-width: 600px; /* Keep text contained */
}

/* Reuse existing button styles, but ensure it fits */
.btn-whatsapp {
  background-color: #1b7db600;
  border: 1px solid #1b7cb6;
  color: #000000;
  border-width: 2px;
  border-radius: 29px; /* Slightly more rounded to match prototype bubble */
  padding: 15px 24px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 19px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  width: 245px; /* Auto width to fit content */
  height: 45px;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(27, 124, 182, 0.3);
}

.whatsapp-icon {
  width: 24px; /* Slightly larger for visibility, matches prototype */
  height: 24px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .community-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
    padding: 0 50px;
  }

  .community-title {
    text-align: center;
  }

  .community-description {
    text-align: center;
    margin: 0 auto 40px;
  }

  .btn-whatsapp {
    margin: 0 auto; /* Center button */
    max-width: 280px;
  }
}

@media (max-width: 768px) {
  .community {
    padding: 60px 0;
  }

  .community-content {
    padding: 0 20px;
    gap: 30px;
  }

  .community-img {
    width: 100%;
    max-width: 400px;
    height: auto; /* Maintain aspect ratio on mobile */
  }

  .community-title {
    font-size: 36px;
    line-height: 44px;
    margin-bottom: 24px;
  }

  .community-description {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 32px;
  }

  .btn-whatsapp {
    width: 100%;
    max-width: 300px;
    padding: 14px 20px;
    font-size: 16px;
  }

  .whatsapp-icon {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .community-content {
    gap: 20px;
  }

  .community-title {
    font-size: 32px;
    line-height: 40px;
  }

  .btn-whatsapp {
    padding: 12px 18px;
  }
}

/*///////////////////////////////////// Community Section end ///////////////////////////////////////*/

/*/////////////////////////////////////////////////// map start ////////////////////////////////////*/

/* Map Section */
.map-section {
  background-color: #ffffff; /* White background to match prototype neutrality */
  padding: 100px 0;
  overflow: hidden;
}

.map-content {
  max-width: 1290px;
  margin: 0 auto;
  padding: 0 150px;
  text-align: center;
}

.map-title {
  font-weight: 400;
  font-size: 56px;
  line-height: 67.77px;
  color: #141c45; /* Dark blue-black for bold title consistency */
  margin-bottom: 60px; /* Spacing to match prototype gap above map */
}

.map-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative; /* For any overlays if needed later */
}

.map-wrapper iframe {
  width: 100%;
  max-width: 1000px; /* Caps width to match prototype proportions without stretching */
  height: 600px; /* Fixed height for desktop to ensure immersive map view; responsive below */
  border: 0;
  border-radius: 20px; /* Rounded corners as in prototype frame */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth, matching framed look */
  transition: transform 0.3s ease; /* Subtle hover for engagement */
}

.map-wrapper:hover iframe {
  transform: scale(1.02); /* Gentle zoom on hover for interactivity */
}

/* Responsive Design */
@media (max-width: 1200px) {
  .map-content {
    padding: 0 50px;
  }

  .map-title {
    font-size: 48px;
    line-height: 58px;
    margin-bottom: 40px;
  }

  .map-wrapper iframe {
    max-width: 900px;
    height: 500px; /* Slightly shorter on tablet for balance */
  }
}

@media (max-width: 768px) {
  .map-section {
    padding: 60px 0;
  }

  .map-content {
    padding: 0 20px;
  }

  .map-title {
    font-size: 36px;
    line-height: 44px;
    margin-bottom: 32px;
  }

  .map-wrapper iframe {
    max-width: 100%;
    height: 400px; /* Taller/shorter on mobile for better vertical fill without distortion */
    border-radius: 16px; /* Slightly less rounded on small screens */
  }
}

@media (max-width: 480px) {
  .map-content {
    padding: 0 16px;
  }

  .map-title {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 24px;
  }

  .map-wrapper iframe {
    height: 350px; /* Compact height on tiny screens for full-width immersion */
  }
}
/*//////////////////////////////////////////////// map end //////////////////////////////////////////*/

/* Walkways List Section */
.walkways-list {
  background-color: #ffffff; /* White background for clean continuation from map */
  padding: 50px 0;
  overflow: hidden;
}

.walkways-content {
  max-width: 1290px;
  margin: 0 auto;
  padding: 0 150px;
  text-align: left; /* Left-align for list readability, matching prototype */
}

.walkways-grid {
  display: grid;
  grid-template-columns: repeat(
    3,
    1fr
  ); /* 3 equal columns to match prototype layout */
  gap: 80px; /* Horizontal gap between columns matching screenshot spacing */
  align-items: start; /* Align tops for even vertical flow */
}

.walkway-column {
  display: flex;
  flex-direction: column;
}

.walkway-column-title {
  font-weight: 900;
  font-size: 24px; /* Larger bold for column headers, as in prototype */
  line-height: 29px;
  color: #141c45;
  margin-bottom: 20px; /* Gap above list to match prototype */
  text-transform: uppercase; /* Uppercase if needed; adjust per exact Figma text */
}

.walkway-list {
  list-style: none; /* No bullets for clean prototype match */
  padding: 0;
  margin: 0;
}

.walkway-list li {
  font-size: 16px;
  line-height: 30px; /* Exact line-height for vertical rhythm */
  color: #141c45;
  font-weight: 500; /* Medium weight for readability */
  margin-bottom: 16px; /* Vertical gap between items matching screenshot (~16px) */
  padding-left: 0; /* No indent */
}

.walkway-list li:last-child {
  margin-bottom: 0; /* No extra gap at end */
}

/* Responsive Design */
@media (max-width: 1200px) {
  .walkways-content {
    padding: 0 50px;
  }

  .walkways-grid {
    grid-template-columns: 1fr; /* Stack to single column on tablet for readability */
    gap: 60px; /* Larger vertical gap when stacked */
    text-align: center; /* Center on smaller screens */
  }

  .walkway-column-title {
    text-align: center;
    margin-bottom: 16px;
  }

  .walkway-list li {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .walkways-list {
    padding: 60px 0;
  }

  .walkways-content {
    padding: 0 20px;
  }

  .walkways-grid {
    gap: 40px;
  }

  .walkway-column-title {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 12px;
  }

  .walkway-list li {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 12px; /* Tighter gaps on mobile */
  }
}

@media (max-width: 480px) {
  .walkways-content {
    padding: 0 16px;
  }

  .walkways-grid {
    gap: 32px;
  }

  .walkway-column-title {
    font-size: 18px;
    line-height: 22px;
  }

  .walkway-list li {
    margin-bottom: 10px;
  }
}

/*/////////////////////////////////////////// timeline ///////////////////////////////////////*/

/* Timeline Section */
.timeline-section {
  background-color: #abcc37; /* Pale green background matching prototype */
  padding: 100px 0;
  overflow: hidden;
}

.timeline-content {
  max-width: 1290px;
  margin: 0 auto;
  padding: 0 150px;
  text-align: center;
}

.timeline-title {
  font-weight: 900;
  font-size: 56px;
  line-height: 67.77px;
  color: #001f3f; /* Navy blue for bold title, matching prototype */
  margin-bottom: 60px; /* Gap above timeline to match screenshot spacing */
}

.timeline-line {
  display: flex;
  align-items: center; /* Vertical center alignment for even row */
  justify-content: space-between; /* Even gaps between milestones and arrows */
  gap: 40px; /* Consistent horizontal gaps matching prototype spacing */
  flex-wrap: wrap; /* Allow wrap on very narrow screens if needed */
}

.milestone {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 150px; /* Ensures even distribution without squish */
  position: relative;
}

.date {
  font-size: 20px;
  line-height: 24px;
  color: #001f3f;
  font-weight: 600;
  margin-bottom: 8px; /* Small gap between date and label */
}

.label {
  font-size: 18px;
  line-height: 22px;
  color: #001f3f;
  font-weight: 500;
  white-space: nowrap; /* Prevent wrapping for clean alignment */
}

.arrow {
  font-size: 24px;
  color: #001f3f;
  font-weight: bold;
  white-space: nowrap;
  flex-shrink: 0; /* Prevent arrow compression */
}

/* Responsive Design */
@media (max-width: 1200px) {
  .timeline-content {
    padding: 0 50px;
  }

  .timeline-title {
    font-size: 48px;
    line-height: 58px;
    margin-bottom: 40px;
  }

  .timeline-line {
    gap: 30px;
    justify-content: space-around; /* Adjust spacing for tablet */
  }

  .milestone {
    min-width: 120px;
  }

  .date {
    font-size: 18px;
    line-height: 22px;
  }

  .label {
    font-size: 16px;
    line-height: 20px;
  }

  .arrow {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .timeline-section {
    padding: 60px 0;
  }

  .timeline-content {
    padding: 0 20px;
  }

  .timeline-title {
    font-size: 36px;
    line-height: 44px;
    margin-bottom: 32px;
  }

  .timeline-line {
    flex-direction: column; /* Stack vertically on mobile for readability */
    gap: 40px;
    align-items: center;
  }

  .milestone {
    flex-direction: row; /* Horizontal date-label on mobile for compact fit */
    justify-content: center;
    gap: 8px;
    min-width: auto;
    text-align: center;
  }

  .date {
    margin-bottom: 0;
    order: 1; /* Date first in row */
  }

  .label {
    order: 2; /* Label after date */
  }

  .arrow {
    display: none; /* Hide arrows on mobile; vertical stack implies progression */
    order: -1; /* If shown, place before milestones */
  }
}

@media (max-width: 480px) {
  .timeline-content {
    padding: 0 16px;
  }

  .timeline-title {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 24px;
  }

  .timeline-line {
    gap: 32px;
  }

  .milestone {
    gap: 6px;
  }

  .date {
    font-size: 16px;
    line-height: 20px;
  }

  .label {
    font-size: 14px;
    line-height: 18px;
  }
}

/*///////////////////////////////////////////////////////// Footer /////////////////////////////////////////////////////////// */


.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: 22px;
line-height: 30px;
margin-bottom: 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;
  }

  /* .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 ////////////////////////////////// */
