.leaflet-left, .leaflet-right{
  z-index: 900;
}


.hero-gradient1 {
  background: linear-gradient(to bottom, #0c4a6e 0%, #52bcc3 20%, #0c4a6e 100%);
}

.hero-gradient2 {
  background: linear-gradient(to bottom, #0c4a6e 0%, #0c4a6e 20%, #0c4a6e 100%);
}

.hero-gradient3 {
  background: linear-gradient(to bottom, #0c4a6e 0%, #1a435c 80%, #000000 100%);
}

.first-section {
  position: relative;
  min-height: 100vh;
  width: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding-left: 1rem;    /* px-4 */
  padding-right: 1rem;   /* px-4 */
  padding-top: 4rem;     /* pt-16 */

  overflow: hidden;
}

.first-section-content {
  position: relative;
  margin-top: 5rem;       /* mt-20 */
  z-index: 10;            /* z-10 */
  
  display: flex;          
  flex-direction: column; /* flex-col */
  align-items: center;    /* items-center */
  justify-content: center;/* justify-center */
  
  width: 100%;            /* w-full */
  max-width: 80rem;       /* max-w-7xl */
  
  margin-left: auto;      /* mx-auto */
  margin-right: auto;     /* mx-auto */
}

.logo-container {
  margin-bottom: 1.5rem; /* mb-6 */
  display: flex;         /* flex */
  justify-content: center; /* justify-center */
}
.logo-img {
  width: auto;       /* w-auto */
  height: 8rem;      /* h-32 */
}

@media (min-width: 768px) {
  .logo-img {
    height: 10rem;   /* md:h-40 */
  }
}

.subheading-first {
  color: white;              /* text-white */
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.125rem;       /* text-lg (18px) */
  font-weight: 500;          /* font-medium */
  font-family: 'Ubuntu', sans-serif;
  margin-bottom: 0.3rem;     /* mb-6 */
  text-align: center;        /* text-center */
  max-width: 28rem;          /* max-w-md (448px) */
  opacity: 0.9;              /* opacity-90 */
  text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
}

.main-heading-first {
  color: #ffffff;              /* text-white */
  font-family: 'Ubuntu', sans-serif;
  font-size: 2.5rem;        /* text-6xl (60px) */
  font-weight: 700;          /* font-extrabold */
  margin-bottom: 2rem;       /* mb-8 */
  text-align: center;        /* text-center */
  line-height: 1.25;         /* leading-tight */
  text-shadow: 1px 1px 4px rgba(0,0,0,0.7);

}

@media (min-width: 768px) {
  .main-heading-first {
    font-size: 5rem;         /* md:text-8xl (96px) */
  }
}

.subheading-second {
  font-size: 1.125rem;       /* text-lg (18px) */
  font-family: 'Ubuntu', sans-serif;
  max-width: 42rem;          /* max-w-2xl (672px) */
  text-align: center;        /* text-center */
  margin-bottom: 3rem;       /* mb-12 */
  opacity: 0.9;              /* opacity-90 */
  line-height: 1.625;        /* leading-relaxed */
  color: white;
}

@media (min-width: 768px) {
  .subheading-second {
    font-size: 1.25rem;      /* md:text-xl (20px) */
  }
}

.subh-map-title {
  color: white;           /* text-white */
  font-size: 1.125rem;    /* text-lg (18px) */
  font-family: 'Ubuntu', sans-serif;
  font-weight: 500;       /* font-medium */
  margin-bottom: 0.5rem;  /* mb-2 */
  opacity: 0.9;           /* opacity-90 */
}

.diamond-content {
  transform: rotate(-45deg);
}

.diamond-shape:hover {
  transform: rotate(135deg);
}
.diamond-shape {
  transform: rotate(45deg);
  transition: all 0.5s ease;
}

.cta-button {
  background: linear-gradient(to right, #e74c3c, #f39c12);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.cta-button::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: 0.5s;
}

.cta-button:hover::after {
  left: 100%;
}

.feature-box-part-three {
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(5px);
  background: rgba(255,255,255,0.1);
}

.feature-box-part-three:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
}

.animated-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 0;
}

.animated-bg div {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  animation: float 15s infinite linear;
}

.animated-bg div:nth-child(1) {
  width: 300px;
  height: 300px;
  top: -150px;
  left: -150px;
}

.animated-bg div:nth-child(2) {
  width: 500px;
  height: 500px;
  bottom: -250px;
  right: -250px;
}

.animated-bg div:nth-child(3) {
  width: 200px;
  height: 200px;
  top: 30%;
  right: 10%;
}

.animated-bg div:nth-child(4) {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 10%;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
  100% {
    transform: translateY(0) rotate(360deg);
  }
}


.subheading {
  letter-spacing: 0.05em;
}

.feature-icon {
  transition: all 1s ease;
}

.feature-box-part-three:hover .feature-icon {
  transform: rotate(360deg);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem; /* 24px */
  width: 100%;
  max-width: 64rem; /* 1024px (max-w-5xl) */
  margin-bottom: 3rem; /* mb-12 */
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr); /* md:grid-cols-3 */
  }
}

.feature-content {
  padding: 2rem;             /* p-8 */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature-icon-spacing {
  margin-bottom: 1rem;       /* mb-4 */
}

.feature-svg {
  width: 2rem;
  height: 2rem;
  color: white;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 4px;
}


.feature-label {
  color: white;
  font-size: 0.875rem;       /* text-sm */
  font-family: 'Ubuntu', sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;    /* tracking-wider */
  text-transform: uppercase;
}

.feature-title {
  color: white;
  font-size: 1.5rem;         /* text-2xl */
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;
  margin-bottom: 0.5rem;     /* mb-2 */
}

.feature-desc {
  color: white;
  font-size: 0.875rem;       /* text-sm */
  font-family: 'Ubuntu', sans-serif;
  opacity: 0.8;
}

.cta-button {
  color: white;               /* text-white */
  font-weight: 400;          /* font-bold */
  padding-top: 1rem;          /* py-4 */
  padding-bottom: 1rem;       /* py-4 */
  padding-left: 3rem;         /* px-12 */
  padding-right: 3rem;        /* px-12 */
  font-size: 1.125rem;        /* text-lg (18px) */
  font-family: 'Ubuntu', sans-serif;
  letter-spacing: 0.05em;     /* tracking-wider */
  text-decoration: none;      /* optional: remove underline for links */
}

.p-under-cta {
  color: white;               /* text-white */
  font-size: 0.875rem;        /* text-sm (14px) */
  font-family: 'Ubuntu', sans-serif;
  margin-top: 0.5rem;         /* mt-2 */
  margin-bottom: 4rem;        /* mb-16 */
  opacity: 0.8;               /* opacity-80 */
}

.swim-subheading {
  text-align: center;
  color: white;
  font-weight: bold;
}

.swim-heading {
  font-size: 3.75rem;     /* Customize as needed */
  font-family: 'Ubuntu', sans-serif;
  color: white;
  text-align: center;
  margin-top: 0.5rem;
}

.swim-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 4rem;      /* pt-16 */
  padding-bottom: 3rem;   /* py-12 */
  padding-left: 2.5rem;   /* px-10 */
  padding-right: 2.5rem;
}

@media (min-width: 768px) {
  .swim-cta {
    padding: 5rem; /* md:p-20 */
    padding-top: 4rem;
    padding-bottom: 3rem;
  }
}

.cta-subtext {
  color: white;
  padding: 0;
  text-align: center;
}

@media (max-width: 768px) {
  .cta-subtext {
    padding-left: 2.5rem;  /* px-10 */
    padding-right: 2.5rem;
  }
}


.subheading {
  letter-spacing: 0.05em;
}

.video-container {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  transition: all 0.3s ease;

  width: 100%;              /* w-full */
  max-width: 56rem;         /* max-w-4xl (896px) */
  margin-left: auto;        /* mx-auto */
  margin-right: auto;       /* mx-auto */
  margin-bottom: 4rem;      /* mb-16 */
  
  aspect-ratio: 16 / 9;     /* aspect-video */
}

#featured-video {
  width: 100%;           /* w-full */
  height: 100%;          /* h-full */
  object-fit: cover;     /* object-cover */
}

.specs-container {
  display: flex;             /* flex */
  flex-wrap: wrap;           /* flex-wrap */
  justify-content: center;   /* justify-center */
  gap: 1rem;                 /* gap-4 (16px between items) */
  margin-bottom: 4rem;       /* mb-16 */
}


.header {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.feature-tag {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s ease;
  padding-left: 1rem;        /* px-4 */
  padding-right: 1rem;       /* px-4 */
  padding-top: 0.5rem;       /* py-2 */
  padding-bottom: 0.5rem;    /* py-2 */
  border-radius: 9999px;     /* rounded-full */
  color: white;              /* text-white */
  font-size: 0.875rem;       /* text-sm (14px) */
  font-weight: 500;
  font-family: 'Ubuntu', sans-serif;
}

.feature-tag:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.hours-planning-section {
  margin-bottom: 3rem; /* Equivalent to mb-12 */
  max-width: 64rem;    /* max-w-5xl (1024px) */
  margin-left: auto;
  margin-right: auto;
}

.hours-planning-title {
  color: white;
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.875rem;  /* text-3xl */
  font-weight: 400;
  margin-bottom: 1.5rem;
  text-align: center;
}

.hours-planning-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem; /* rounded-xl */
  padding: 1.5rem;
}

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

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

.section-subtitle {
  color: white;
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.25rem; /* text-xl */
  font-weight: bold;
  margin-bottom: 1rem;
}

.hours-list {
  color: #ffffff;              /* text-white */
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.05rem;        /* text-6xl (60px) */
  font-weight: 400;          /* font-extrabold */
  display: flex;
  flex-direction: column;
  gap: 0.75rem; /* space-y-3 */
}

.hours-list-item {
  display: flex;
  justify-content: space-between;
}

.hours-note {
  color: #ffffff;              /* text-white */
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.05rem;        /* text-6xl (60px) */
  font-weight: 400;          /* font-extrabold */
  margin-top: 3rem;
}

.planning-tips {
  color: white;
}

.tips-list {
  display: flex;
  flex-direction: column;
  gap: 1rem; /* space-y-2 */
  color: #ffffff;              /* text-white */
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.05rem;        /* text-6xl (60px) */
  font-weight: 400;          /* font-extrabold */
}

.tip-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.tip-icon {
  width: 1.25rem;  /* w-5 */
  height: 1.25rem; /* h-5 */
  margin-top: 0.25rem;
  color: white;
  flex-shrink: 0;
}

.subheading {
  letter-spacing: 0.05em;
}

.header {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
}

.feature-item {
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-3px);
}

.feature-icon {
  background: rgba(255,255,255,0.1);
  transition: all 1s ease;
}

.feature-item:hover .feature-icon {
  background: rgba(255,255,255,0.2);
  transform: rotate(10deg);
}

.info-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  border: 1px solid rgba(255,255,255,0.3);
}

.map-section-container {
  display: flex;               /* flex */
  flex-direction: column-reverse; /* flex-col-reverse */
  width: 100%;                 /* w-full */
}

.map-section {
  width: 100%;           /* w-full */
  height: 50vh;          /* h-[50vh] */
}
.accessibility-container{
  position: relative;       /* relative */
  min-height: 100vh;        /* min-h-screen */
  width: 100%;              /* w-full */
  display: flex;            /* flex */
  flex-direction: column;   /* flex-col */
  overflow: hidden;  
}

.msc-flex-section {
  position: relative;      /* relative */
  z-index: 10;             /* z-10 */
  flex-grow: 1;            /* flex-grow */
  display: flex;           /* flex */
  flex-direction: column;  /* flex-col */
  padding-left: 1rem;      /* px-4 */
  padding-right: 1rem;     /* px-4 */
  padding-top: 3rem;       /* py-12 */
  padding-bottom: 3rem;    /* py-12 */
}

.msc-accessibility-inner {
  max-width: 80rem;       /* max-w-7xl */
  width: 100%;            /* w-full */
  margin-left: auto;      /* mx-auto */
  margin-right: auto;     /* mx-auto */
}

/* Container */
.msc-title-container {
  text-align: center;      /* text-center */
  margin-bottom: 3rem;     /* mb-12 */
}

/* Subheading */
.msc-plan-subheading {
  color: white;            /* text-white */
  font-size: 1.125rem;     /* text-lg */
  font-family: 'Ubuntu', sans-serif;
  font-weight: 500;        /* font-medium */
  margin-bottom: 1rem;     /* mb-4 */
  opacity: 0.9;            /* opacity-90 */
}

/* Main heading */
.msc-plan-heading {
  color: white;            /* text-white */
  font-size: 2.25rem;      /* text-4xl */
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;        /* font-bold */
  margin-bottom: 1.5rem;   /* mb-6 */
}

@media (min-width: 768px) {
  .msc-plan-heading {
    font-size: 3.75rem;    /* md:text-6xl */
  }
}

/* Paragraph */
.msc-plan-text {
  color: white;            /* text-white */
  font-size: 1.125rem;     /* text-lg */
  font-family: 'Ubuntu', sans-serif;
  max-width: 42rem;        /* max-w-2xl */
  margin-left: auto;       /* mx-auto */
  margin-right: auto;      /* mx-auto */
  opacity: 0.9;            /* opacity-90 */
}

/* Section container */
.msc-parking-section {
  margin-bottom: 3rem;            /* mb-12 */
}

/* Section title */
.msc-parking-title {
  color: white;                   /* text-white */
  font-size: 1.875rem;            /* text-3xl */
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;               /* font-bold */
  margin-bottom: 1.5rem;          /* mb-6 */
  text-align: center;             /* text-center */
}

/* Responsive grid */
.msc-parking-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;                    /* gap-6 */
}
@media (min-width: 768px) {
  .msc-parking-grid {
    grid-template-columns: repeat(2, 1fr); /* md:grid-cols-2 */
  }
}
@media (min-width: 1024px) {
  .msc-parking-grid {
    grid-template-columns: repeat(3, 1fr); /* lg:grid-cols-3 */
  }
}

/* Card header */
.msc-card-header {
  display: flex;
  align-items: center; 
  margin-bottom: 1rem;            /* mb-4 */
}

/* Transport icon */
.msc-transport-icon {
  background: rgba(255,255,255,0.1); /* bg-white/10 */
  border-radius: 9999px;            /* rounded-full */
  padding: 0.75rem;                 /* p-3 */
  margin-right: 1rem;               /* mr-4 */
}

/* Card heading */
.msc-card-heading {
  color: white;
  font-size: 1.25rem;               /* text-xl */
  font-weight: 700;                 /* font-bold */
  font-family: 'Ubuntu', sans-serif;
}

/* Card description */
.msc-card-desc {
  color: white;
  margin-bottom: 1rem;              /* mb-4 */
}

/* List styling */
.msc-list {
  color: white;
}
.msc-list-item {
  display: flex;
  align-items: center;
  margin-top: 0.5rem;               /* space-y-2 (top margin on each after first) */
}
.msc-list-item:first-child {
  margin-top: 0;
}
.msc-list-icon {
  width: 1.25rem;                   /* w-5 */
  height: 1.25rem;                  /* h-5 */
  margin-right: 0.5rem;             /* mr-2 */
  color: white;
}

/* Section container */
.msc-public-section {
  margin-bottom: 3rem;              /* mb-12 */
}

/* Section title */
.msc-public-title {
  color: white;                     /* text-white */
  font-size: 1.875rem;              /* text-3xl */
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;                 /* font-bold */
  margin-bottom: 1.5rem;            /* mb-6 */
  text-align: center;               /* text-center */
}

/* Responsive grid */
.msc-public-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;                      /* gap-6 */
}
@media (min-width: 768px) {
  .msc-public-grid {
    grid-template-columns: repeat(2, 1fr); /* md:grid-cols-2 */
  }
}
@media (min-width: 1024px) {
  .msc-public-grid {
    grid-template-columns: repeat(3, 1fr); /* lg:grid-cols-3 */
  }
}

/* Card header */
.msc-public-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;              /* mb-4 */
}

/* Transport icon (reused) */
.msc-transport-icon {
  background: rgba(255,255,255,0.1); /* bg-white/10 */
  border-radius: 9999px;            /* rounded-full */
  padding: 0.75rem;                 /* p-3 */
  margin-right: 1rem;               /* mr-4 */
}

/* Header title */
.msc-public-header-title {
  color: white;
  font-size: 1.25rem;               /* text-xl */
  font-weight: 700;                 /* font-bold */
  font-family: 'Ubuntu', sans-serif;
}

/* Description */
.msc-public-desc {
  color: white;
  margin-bottom: 1rem;              /* mb-4 */
}

/* List styling (reused) */
.msc-list { color: white; }
.msc-list-item {
  display: flex;
  align-items: center;
  margin-top: 0.5rem;               /* space-y-2 */
}
.msc-list-item:first-child { margin-top: 0; }
.msc-list-icon {
  width: 1.25rem;                   /* w-5 */
  height: 1.25rem;                  /* h-5 */
  margin-right: 0.5rem;             /* mr-2 */
  color: white;
}

/* CTA section wrapper */
.msc-cta-section {
  text-align: center;       /* text-center */
  margin-top: 4rem;         /* mt-16 */
}

/* CTA heading */
.msc-cta-heading {
  color: white;             /* text-white */
  font-size: 1.5rem;    
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;         /* font-bold */
  margin-bottom: 1.5rem;    /* mb-6 */
}

@media (min-width: 768px) {
  .msc-cta-heading {
    font-size: 1.875rem;    /* md:text-3xl */
  }
}

/* CTA heading */
.msc-cta-heading2 {
  color: white;             /* text-white */
  font-size: 3rem;    
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;         /* font-bold */
  margin-bottom: 1.5rem;    /* mb-6 */
}

@media (min-width: 768px) {
  .msc-cta-heading2 {
    font-size: 1.875rem;    /* md:text-3xl */
  }
}

/* CTA description paragraph */
.msc-cta-desc {
  color: white;             /* text-white */
  font-size: 1.125rem;      /* text-lg */
  font-family: 'Ubuntu', sans-serif;
  max-width: 42rem;         /* max-w-2xl */
  margin: 0 auto 2rem;      /* mx-auto mb-8 */
  opacity: 0.9;             /* opacity-90 */
}

/* CTA button bottom margin override */
.msc-cta-button {
  margin-bottom: 1.5rem;    /* mb-6 */
}

/* CTA note (reuse styling) */
.msc-cta-note {
  color: white;             /* text-white */
  font-size: 0.875rem;      /* text-sm */
  font-family: 'Ubuntu', sans-serif;
  opacity: 0.8;             /* opacity-80 */
}

/* Tailwind replacement for md:w-1/2, md:h-full */
@media (min-width: 768px) {
  .map-section {
    width: 50%;          /* md:w-1/2 */
    height: 100%;        /* md:h-full */
  }
}

.map-left-container {
  width: 100%;            /* w‑full */
  height: 100%;           /* h‑full */
  position: relative;     /* relative */
}
.content-scroll {
  position: relative;      /* relative */
  z-index: 10;             /* z-10 */
  padding-top: 6rem;       /* pt-24 */
  padding-bottom: 2rem;    /* pb-8 */
  padding-left: 2rem;      /* px-8 */
  padding-right: 2rem;     /* px-8 */
}
.content-scroll-first {
  max-width: 36rem;       /* max-w-xl */
  margin-left: auto;      /* mx-auto */
  margin-right: auto;     /* mx-auto */
}
.cs-section-title {
  margin-bottom: 2rem; /* mb-8 */
}

.our-location {
  color: white;               /* text-white */
  font-size: 2.25rem;         /* text-4xl */
  font-weight: bold;          /* font-bold */
  font-family: 'Ubuntu', sans-serif;
  margin-bottom: 1rem;        /* mb-4 */
}
.cs-p {
  color: white;             /* text-white */
  font-size: 1.125rem;      /* text-lg */
  font-family: 'Ubuntu', sans-serif;
  opacity: 0.9;             /* opacity-90 */
}
.info-card-1, .info-card-2 {
  border-radius: 0.75rem;  /* rounded-xl */
  padding: 1.5rem;         /* p-6 */
  margin-bottom: 1.5rem;   /* mb-6 */
}
.info-card-1-h3, .info-card-2-h3 {
  color: white;             /* text-white */
  font-size: 1.25rem;       /* text-xl */
  font-weight: 700;         /* font-bold */
  font-family: 'Ubuntu', sans-serif;
  margin-bottom: 1rem;      /* mb-4 */
}

.msc-space-y-4 > * + * {
  margin-top: 1rem;      /* 4 = 1rem */
}

/* Contact row */
.msc-contact-row {
  display: flex;
  align-items: center;
  padding: 0.5rem;       /* p-2 */
  border-radius: 0.5rem; /* rounded-lg */
  transition: transform 0.3s ease, background 0.3s ease;
}
.msc-contact-row:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.15);
}

/* Icon holder */
.msc-contact-icon-holder {
  background: rgba(255,255,255,0.1);
  padding: 0.5rem;       /* p-2 */
  border-radius: 9999px; /* rounded-full */
  margin-right: 1rem;    /* mr-4 */
  transition: transform 0.3s ease;
}
.msc-contact-row:hover .msc-contact-icon-holder {
  transform: scale(1.1);
}

/* SVG size */
.msc-contact-icon-svg {
  width: 1.5rem;         /* w-6 */
  height: 1.5rem;        /* h-6 */
  color: white;
}

/* Text blocks */
.msc-contact-text-block { display: flex; flex-direction: column; }

/* Label */
.msc-contact-label {
  color: white;
  font-size: 0.875rem;   /* text-sm */
  font-family: 'Ubuntu', sans-serif;
  opacity: 0.7;          /* opacity-70 */
  margin-bottom: 0.25rem;
}

/* Value lines */
.msc-contact-value {
  color: white;
  font-size: 1rem;
  font-family: 'Ubuntu', sans-serif;
}

.mst-features-title {
  color: white;
  font-size: 1.25rem; /* text-xl */
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;   /* font-bold */
  margin-bottom: 1rem;/* mb-4 */
}

/* Grid container: 2 cols with gap */
.msc-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem; /* gap-4 */
}

@media (min-width: 768px) {
  /* Adjust columns at md if desired (kept 2 here) */
  .msc-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Individual feature item */
.msc-feature-item {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}
.msc-feature-item:hover {
  transform: translateY(-3px);
}

/* Icon container */
.msc-feature-icon {
  background: rgba(255,255,255,0.1);
  padding: 0.5rem;       /* p-2 */
  border-radius: 9999px; /* rounded-full */
  margin-right: 0.75rem; /* mr-3 */
  transition: transform 0.3s ease, background 0.3s ease;
}
.msc-feature-item:hover .msc-feature-icon {
  background: rgba(255,255,255,0.2);
  transform: rotate(10deg);
}

/* SVG styling */
.msc-feature-svg {
  width: 1.25rem;  /* w-5 */
  height: 1.25rem; /* h-5 */
  color: white;
}

/* Label text */
.msc-feature-label {
  color: white;
  font-size: 0.875rem; /* text-sm */
  font-family: 'Ubuntu', sans-serif;
}
.info-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 0.75rem; /* rounded-xl */
  padding: 1.5rem;        /* p-6 */
  margin-bottom: 1.5rem;  /* mb-6 */
  transition: all 0.3s ease;
}
.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  border-color: rgba(255,255,255,0.3);
}
.msc-about-heading {
  color: white;             /* text-white */
  font-size: 1.25rem;       /* text-xl */
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;         /* font-bold */
  margin-bottom: 1rem;      /* mb-4 */
}

/* Paragraph text */
.msc-about-text {
  color: white;             /* text-white */
  line-height: 1.5;
}

/* Add bottom margin except on last paragraph */
.msc-about-text:not(:last-child) {
  margin-bottom: 1rem;      /* mb-4 */
}

/* CTA wrapper */
.msc-cta-wrapper {
  text-align: center;       /* text-center */
  margin-top: 2rem;         /* mt-8 */
}

/* CTA heading */
.msc-cta-heading {
  color: white;             /* text-white */
  font-size: 1.5rem;        /* text-2xl */
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;         /* font-bold */
  margin-bottom: 1rem;      /* mb-4 */
}

.msc-cta-heading2 {
  color: white;             /* text-white */
  font-size: 3rem;        /* text-2xl */
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;         /* font-bold */
  margin-bottom: 1rem;      /* mb-4 */
}

/* CTA button (existing class) */
.cta-button {
  color: white;             /* text-white */
  font-weight: bold;        /* font-bold */
  padding: 1rem 3rem;       /* py-4 px-12 */
  font-size: 1.125rem;      /* text-lg */
  letter-spacing: 0.05em;   /* tracking-wider */
  font-family: 'Ubuntu', sans-serif;
  display: inline-block;    /* inline-block */
  margin-bottom: 1rem;      /* mb-4 */
  text-decoration: none;
}

/* CTA note */
.msc-cta-note {
  color: white;             /* text-white */
  font-size: 0.875rem;      /* text-sm */
  opacity: 0.8;             /* opacity-80 */
  font-family: 'Ubuntu', sans-serif;
}

/* Address container */
.msc-address-text {
  color: white;             /* text-white */
  font-style: normal;       /* not-italic */
}

/* Each line in the address */
.msc-address-line {
  margin-bottom: 0.25rem;   /* mb-1 */
}

/* Remove bottom margin on the last line */
.msc-address-line:last-child {
  margin-bottom: 0;
}

/* Custom Leaflet Styling */
@media screen and (min-width: 768px) {
  .our-location {
    font-size: 3rem;          /* md:text-5xl */
  }
  .map-section-container{
    height: calc(100vh - 83px);
    flex-direction: row;
  }
  .content-scroll {
    height: calc(100vh - 90px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.3) transparent;
  }
  
  .content-scroll::-webkit-scrollbar {
    width: 6px;
  }
  
  .content-scroll::-webkit-scrollbar-track {
    background: transparent;
  }
  
  .content-scroll::-webkit-scrollbar-thumb {
    background-color: rgba(255,255,255,0.3);
    border-radius: 6px;
  }
  .map-left-container {
    width: 50%;           /* md:w‑1/2 */
  }
}

.map-container {
  height: 100%;
  width: 100%;
}


.leaflet-container a.leaflet-popup-close-button{
  color: #fff;
}

.leaflet-popup-content-wrapper {
  background: #FFFFFF;
  color: white;
  border-radius: 8px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.leaflet-popup-content{
  margin: 15px !important;
}

.leaflet-popup-tip {
  background: rgba(48, 196, 196, 0.9);
}

.custom-marker-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(to right, #e74c3c, #f39c12);
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}

.contact-method {
  transition: all 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.15);
}

.contact-icon {
  transition: all 0.3s ease;
}

.contact-method:hover .contact-icon {
  transform: scale(1.1);
}



.info-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  border: 1px solid rgba(255,255,255,0.3);
}

.transport-icon {
  transition: all 0.3s ease;
}

.info-card:hover .transport-icon {
  transform: scale(1.1);
}

/* Animation Styles */
.animation-container {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255,255,255,0.2);
}

.road {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: rgba(0,0,0,0.2);
  overflow: hidden;
}

.road-marking {
  position: absolute;
  top: 50%;
  left: 0;
  width: 50px;
  height: 8px;
  background: rgba(255,255,255,0.8);
  transform: translateY(-50%);
  animation: roadMove 2s linear infinite;
}

@keyframes roadMove {
  0% {
    transform: translateY(-50%) translateX(-100px);
  }
  100% {
    transform: translateY(-50%) translateX(calc(100vw + 100px));
  }
}

.road-marking:nth-child(2) {
  animation-delay: 0.5s;
}

.road-marking:nth-child(3) {
  animation-delay: 1s;
}

.road-marking:nth-child(4) {
  animation-delay: 1.5s;
}

.vehicle {
  position: absolute;
  bottom: 20px;
  left: 10%;
  width: 120px;
  height: 60px;
  animation: vehicleFloat 3s ease-in-out infinite;
}

@keyframes vehicleFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.car-body {
  position: absolute;
  bottom: 10px;
  width: 100%;
  height: 30px;
  background: linear-gradient(to right, #e74c3c, #f39c12);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.car-top {
  position: absolute;
  bottom: 40px;
  left: 20px;
  width: 60px;
  height: 25px;
  background: linear-gradient(to right, #e74c3c, #f39c12);
  border-radius: 10px 10px 0 0;
}

.car-window {
  position: absolute;
  bottom: 45px;
  left: 30px;
  width: 40px;
  height: 15px;
  background: rgba(255,255,255,0.7);
  border-radius: 5px 5px 0 0;
}

.wheel {
  position: absolute;
  bottom: 0;
  width: 20px;
  height: 20px;
  background: #333;
  border-radius: 50%;
  border: 3px solid #666;
  animation: wheelRotate 1s linear infinite;
}

@keyframes wheelRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.wheel.front {
  left: 90px;
}

.wheel.back {
  left: 20px;
}

.bus {
  position: absolute;
  bottom: 20px;
  right: 10%;
  width: 180px;
  height: 80px;
  animation: busFloat 4s ease-in-out infinite;
  animation-delay: 1s;
}

@keyframes busFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.bus-body {
  position: absolute;
  bottom: 10px;
  width: 100%;
  height: 50px;
  background: #30c4c4;
  border-radius: 10px;
  border-top-right-radius: 0px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.bus-top {
  position: absolute;
  bottom: 60px;
  left: 0;
  width: 100%;
  height: 30px;
  background: #30c4c4;
  border-radius: 10px 10px 0 0;
}

.bus-window {
  position: absolute;
  width: 25px;
  height: 20px;
  background: rgba(255,255,255,0.7);
  border-radius: 5px;
}

.bus-window:nth-child(1) {
  bottom: 65px;
  left: 15px;
}

.bus-window:nth-child(2) {
  bottom: 65px;
  left: 50px;
}

.bus-window:nth-child(3) {
  bottom: 65px;
  left: 85px;
}

.bus-window:nth-child(4) {
  bottom: 65px;
  left: 120px;
}

.bus-window:nth-child(5) {
  bottom: 35px;
  left: 15px;
}

.bus-window:nth-child(6) {
  bottom: 35px;
  left: 50px;
}

.bus-window:nth-child(7) {
  bottom: 35px;
  left: 85px;
}

.bus-window:nth-child(8) {
  bottom: 35px;
  left: 120px;
}
.bus-window:nth-child(9) {
  bottom: 65px;
  left: 50px;
}
.bus-window:nth-child(10) {
  bottom: 65px;
  left: 15px;
}

.bus-wheel {
  position: absolute;
  bottom: 0;
  width: 20px;
  height: 20px;
  background: #333;
  border-radius: 50%;
  border: 3px solid #666;
  animation: wheelRotate 1s linear infinite;
}

.bus-wheel.front {
  right: 30px;
}

.bus-wheel.back {
  left: 30px;
}

.building {
  position: absolute;
  bottom: 100px;
  width: 150px;
  height: 200px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255,255,255,0.2);
  overflow: hidden;
}

.building.venue {
  left: 50%;
  transform: translateX(-50%);
  height: 250px;
  background: linear-gradient(to top, rgba(255,255,255,0.2), rgba(255,255,255,0.05));
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.building-window {
  position: absolute;
  width: 20px;
  height: 30px;
  background: rgba(255,255,255,0.3);
  border-radius: 5px;
}

.venue-sign {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 20px;
  background: linear-gradient(to right, #e74c3c, #f39c12);
  color: white;
  font-weight: bold;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.person {
  position: absolute;
  bottom: 100px;
  width: 15px;
  height: 40px;
  animation: personWalk 10s linear infinite;
}

@keyframes personWalk {
  0% {
    transform: translateX(-50px);
  }
  100% {
    transform: translateX(calc(100vw + 50px));
  }
}

.person-body {
  position: absolute;
  bottom: 15px;
  width: 100%;
  height: 25px;
  background: rgba(255,255,255,0.8);
  border-radius: 5px;
}

.person-head {
  position: absolute;
  bottom: 40px;
  left: 2.5px;
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,0.8);
  border-radius: 50%;
}

.person:nth-child(2) {
  animation-delay: 2s;
  bottom: 105px;
  transform: scale(0.9);
}

.person:nth-child(3) {
  animation-delay: 5s;
  bottom: 110px;
  transform: scale(0.8);
}

.wheelchair-person {
  position: absolute;
  bottom: 100px;
  width: 30px;
  height: 40px;
  animation: wheelchairMove 15s linear infinite;
  animation-delay: 3s;
}

@keyframes wheelchairMove {
  0% {
    transform: translateX(calc(100vw + 50px));
  }
  100% {
    transform: translateX(-50px);
  }
}

.wheelchair-body {
  position: absolute;
  bottom: 15px;
  width: 20px;
  height: 25px;
  background: rgba(255,255,255,0.8);
  border-radius: 5px;
}

.wheelchair-head {
  position: absolute;
  bottom: 40px;
  left: 5px;
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,0.8);
  border-radius: 50%;
}

.wheelchair-wheel {
  position: absolute;
  bottom: 5px;
  width: 15px;
  height: 15px;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.8);
  border-radius: 50%;
}

.wheelchair-wheel.left {
  left: 0;
}

.wheelchair-wheel.right {
  right: 0;
}

.accessibility-icon {
  transition: all 0.3s ease;
}

.info-card:hover .accessibility-icon {
  transform: translateY(-5px);
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(48, 196, 196, 0.95);
  z-index: 100;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.mobile-nav.active {
  transform: translateY(0);
}

.feature-item {
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.15);
}

.feature-item:hover .feature-icon {
  transform: rotate(10deg);
}

.animate-on-scroll, .animate-on-scroll-at-7{
  opacity: 0;
  transform: scale(0.8) translateY(-10px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.in-view, .animate-on-scroll-at-7.in-view {
  opacity: 1;
  transform: scale(1) translateY(0);
}

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500&family=Raleway:wght@300;400&display=swap');
    
.image-container {
  position: relative;
  overflow: hidden;
  border-radius: 0.125rem;    /* rounded-sm (2px) */
  margin-bottom: 1rem;        /* mb-4 */
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); /* shadow-sm */
}

.image-container::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.02), transparent 10%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.image-container:hover::before {
  opacity: 1;
}

.image-container:hover img {
  transform: scale(1.055);
}

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

.fade-up {
  opacity: 0;
  animation: fadeUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.fade-up-delay-1 {
  opacity: 0;
  animation: fadeUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}

.fade-up-delay-2 {
  opacity: 0;
  animation: fadeUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards;
}
.msc-full-cover {
  width: 100%;               /* w-full */
  height: 100%;              /* h-full */
  object-fit: cover;         /* object-cover */
  transition: all 1.3s ease-out; /* transition-all duration-1800 (1.8s) ease-out */
}

.msc-flex-1 {
  flex: 1 1 0%;
}
.msc-flex-layout {
  display: flex;                /* flex */
  flex-direction: column;       /* flex-col */
  margin-top: 3rem;             /* mt-12 */
  row-gap: 2rem;                /* space-y-8 */
}

/* Medium screens and up */
@media (min-width: 768px) {
  .msc-flex-layout {
    flex-direction: row;        /* md:flex-row */
    column-gap: 1.5rem;         /* md:space-x-6 */
    row-gap: 0;                 /* md:space-y-0 */
  }
}

/* Large screens and up */
@media (min-width: 1024px) {
  .msc-flex-layout {
    column-gap: 2rem;           /* lg:space-x-8 */
  }
}

#swim-cta-for-p3-p2{
  padding-top: 1rem;
  padding-bottom: 1rem;
}
#swim-cta-for-p3-p1{
  padding-top: 1rem;
}

.custom-marker-icon {
  /* make the DIV 40×40 (Leaflet already sets this via iconSize) */
  display: flex;
  align-items: center;      /* vertically center the 20px-tall SVG */
  justify-content: center;  /* horizontally center it */
}

.leaflet-map-pane svg {
  margin-top: 8px;
  margin-left: 7.4px;
}

/* cancel the default 1.2rem top-margin on all flow-layout children */
:root :where(.is-layout-flow) > * {
  margin-block-start: 0;
  margin-block-end: 0;
}

  

#faq-texts {
  background-color: #000000;
}

#faq-image {
  background-color: #000000;
}

.underlined-link {
  text-decoration: underline;           /* underline by default */
}

.underlined-link:hover {
  text-decoration: none;                /* remove underline on hover */
}




#msc-about-text-1 #msc-about-text-2 {
  font-family: 'Ubuntu', sans-serif !important;
}


/* --------------------------------------------------
   LAYOUT / BASICS
   -------------------------------------------------- */

/* Containing block for absolute‑positioned children */
#msc-video-container {
    position: relative;
    overflow: hidden;
}

/* Video fills width but respects 16:9 and crops nicely */
#msc-video-container video {
    width: 100%;
    height: auto;                 /* let aspect-ratio drive height */
    aspect-ratio: 16/9;
    object-fit: cover;            /* crop excess rather than squash */
    display: block;
}

/* Poster image or first frame sits under everything else */
#featured-video {
    z-index: 1;
}

/* --------------------------------------------------
   LOADING SPINNER
   -------------------------------------------------- */
#loading-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;      /* perfectly centred */
    border: 4px solid rgba(255,255,255,.35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 15;
}
#loading-spinner.hidden {
    display: none;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* --------------------------------------------------
   OVERLAY + BIG PLAY BUTTON
   -------------------------------------------------- */
#video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.55);
    z-index: 10;
    transition: opacity .3s;
}
#video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

#play-button {
    width: 68px;
    height: 68px;
    background: rgba(0,0,0,.75);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
#msc-play-icon {
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 18px solid #fff;
    margin-left: 3px;
}

#msc-first-section-content-contact {

}

#msc-first-section-contact {
  min-height: 70vh !important;
}

/* force map1 to 60% */
#map1.map-container {
  width: 60% !important;
}




