* {
  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;
}




/* /////////////////////////////// section 1 Hero Section /////////////////////////////// */
.hero {
  position: relative;
  width: 100%;
  /* Full width, no restrictions */
  height: 773px;
  overflow: hidden;
  /* Removed max-width and margin: 0 auto to eliminate side gaps */
}

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

.hero-image {
  width: 100%;
  height: 713px;
  object-fit: cover;
  margin-top: 60px;
}

.hero-overlay {
  position: absolute;
  top: 323px;
  left: 0;
  width: 100%;
  height: 450px;
  background: linear-gradient(180deg, rgba(20, 28, 69, 0) 0%, #141c45 100%);
}

.hero-content {
  position: absolute;
  top: 200px;
  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: 200px;
  right: 180px;
  z-index: 10;
}

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

/* Responsive adjustments (updated to handle full-width) */
@media (max-width: 768px) {
  .hero {
    height: auto !important;
    /* Auto height to fit image */
    min-height: unset;
    display: block;
    padding-top: 80px;
    /* Account for header */
    overflow: visible;
  }

  .hero-background {
    position: relative;
    width: 100%;
    height: auto;
    z-index: 1;
  }

  .hero-image {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: contain;
    /* Ensure full image is visible */
    margin-top: 0 !important;
  }

  .hero-overlay {
    position: absolute;
    top: 60%;
    /* Overlay starts at 60% from top for better coverage on mobile */
    left: 0;
    width: 100%;
    height: 40%;
    /* Cover bottom 40% */
    background: linear-gradient(180deg, rgba(20, 28, 69, 0) 0%, #141c45 100%);
    z-index: 2;
  }

  .hero-content {
    position: absolute;
    top: 60%;
    /* Center vertically */
    left: 50%;
    transform: translate(-50%, -50%);
    /* Perfect center alignment */
    width: 90%;
    max-width: 400px;
    text-align: center;
    z-index: 3;
    padding: 20px;
    box-sizing: border-box;
  }

  .hero-title {
    font-size: 36px !important;
    line-height: 1.2;
    margin-bottom: 32px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    /* Stronger shadow for mobile readability */
    color: #ffffff;
    hyphens: auto;
    /* Allow word breaking if needed */
  }

  .hero-buttons {
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    align-items: center;
  }

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

  .hero-stats {
    position: absolute;
    bottom: 20px;
    /* Position at bottom over overlay */
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
  }

  .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;
  }
}

/* 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 {
    top: 60%;
    /* Slight adjustment for vertical centering */
    width: 95%;
    padding: 16px;
  }

  .hero-title {
    font-size: 32px !important;
    margin-bottom: 24px;
  }

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

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

/* 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;
  }
}

/* /////////////////////////////////////////////////////// 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;
}

/* Bi-directional Scroll Reveal (Updated: Blur + Scale) */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  filter: blur(10px);
  transition: all 0.9s cubic-bezier(0.165, 0.84, 0.44, 1);
  will-change: transform, opacity, filter;
}

.scroll-reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.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: 22px;
  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 ////////////////////////////////// */