/* <-- FONT IMPORTS */
@import url('https://fonts.cdnfonts.com/css/sf-pro-display');
@import url('https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@100..900&display=swap');

/* FONT-FACE DECLARATONS */
@font-face {
  font-family: "KumbhSansSemiBold";
  src: url(../fonts/KumbhSans/KumbhSans-SemiBold.ttf);
}

@font-face {
  font-family: "KumbhSansBold";
  src: url(../fonts/KumbhSans/KumbhSans-Bold.ttf);
}

@font-face {
  font-family: "KumbhSansExtraBold";
  src: url(../fonts/KumbhSans/KumbhSans-ExtraBold.ttf);
}

@font-face {
  font-family: "KumbhSansMedium";
  src: url(../fonts/KumbhSans/KumbhSans-Medium.ttf);
}

@font-face {
  font-family: "KumbhSansRegular";
  src: url(../fonts/KumbhSans/KumbhSans-Regular.ttf);
}

@font-face {
  font-family: "KumbhSansBlack";
  src: url(../fonts/KumbhSans/KumbhSans-Black.ttf);
}

@font-face {
  font-family: "KumbhSansLight";
  src: url(../fonts/KumbhSans/KumbhSans-Light.ttf);
}

@font-face {
  font-family: "Geraldica";
  src: url(../fonts/Geraldica.ttf);
}

/* <-- END OF FONT IMPORT*/

/* RESET & BASE STYLES */
:root {
  --footer-bg: #0a1936;
  --footer-text: #cdd6f4;
  --footer-heading: #ffffff;
  --footer-border: #3b4b6b;

  /* Set base font size for rem calculations */
  font-size: 100%;
  /* (100% = user's default, typically 16px) */
}

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

html {
  scroll-behavior: smooth;

}


img {
  max-width: 100%;
  /* Makes images responsive by default */
  height: auto;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  -webkit-user-drag: none;
}

body {
  background: #ffffff;
  /* REMOVED: This breaks responsive design. */
  min-width: 415px;
}

/*  NAVIGATION BAR - DEFAULT (NO GLASS) STATE */
.navbar {
  background-color: transparent !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none !important;
  filter: none;
  box-shadow: none !important;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: background-color 0.4s ease, backdrop-filter 0.4s ease, border 0.4s ease, box-shadow 0.4s ease;
}

/* NAVIGATION BAR - GLASS EFFECT / ACTIVE STATE (Applied via JavaScript) */
.navbar.glass {
  background-color: none !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 4px solid rgba(44, 44, 44, 0.2);
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3) !important;
  margin-bottom: 0;
}

.nav-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding-top: 0.5%;
}

/* LOGO */
.nav-logo {
  padding-left: 2%;
  gap: 0.5rem;
  cursor: pointer;
}

.nav-logo svg path {
  fill: #333;
  transition: fill 0.4s ease;
}

.navbar.glass .nav-logo svg path {
  fill: #fff;
}

.nav-logo a {
  display: flex;
  align-items: center;
  height: 2.5em;
  flex-shrink: 0;
  transition: transform 0.3s ease, fill 0.3s ease;
}


.nav-logo svg,
.nav-logo img {
  width: auto;
  height: clamp(100%, 4vw, 2.5em);
  transition: transform 0.3s ease, fill 0.3s ease;
}

.nav-logo:hover svg {
  transform: scale(1.05);
  cursor: pointer;
}

.nav-logo:hover svg path {
  fill: #ababab;
}

/* HAMBURGER MENU BUTTON */
.nav-toggle {
  font-size: 2.2rem;
  background: none;
  border: none;
  cursor: pointer;
  display: none;
  z-index: 1100;
  background: linear-gradient(to top, #161616, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* NAV LINKS */
.nav-links {
  list-style: none;
  display: flex;
  gap: 4rem;
  justify-content: center;
  grid-column: 2;
  padding-right: 5%;
  margin-right: 10%;
}

.nav-links li a {
  display: inline-block;
  text-decoration: none;
  color: #333;
    font-size: clamp(0.8rem, 1.2vw, 1.4rem);
  transition: color 0.4s ease, transform 0.3s ease;
  font-family: 'KumbhSans-Bold', sans-serif;
}

/* ensure specificity; remove any background-clip for the glass state */
.navbar.glass .nav-links li a {
  color: #fff !important;                 /* force visible colour */
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  transition: color 0.4s ease, text-shadow 0.4s ease;
}

.nav-links li a:hover {
  background: linear-gradient(to top, #161616, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transform: scale(1.1);
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}

.icon:hover {
  fill: #00d05f;
}

/* Mobile Navigation */
@media (max-width: 599px) {
  .nav-logo {
    font-size: 1rem;
  }

  .nav-logo img {
    width: 75%;
  }

  .nav-links li a {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {

  .nav-links {
    background: rgba(248, 248, 248, 0.95);
  }

  .nav-links li a {
    color: #333;
  }

  .navbar.glass .nav-links {
    background: rgba(0, 0, 0, 0.85);
  }

  .navbar.glass .nav-links li a {
    color: white;
  }

  .icon {
    width: 15vw;
    height: auto;
    max-height: 60px;
    align-self: flex-start;
  }

  .feature-item {
    align-items: flex-start;
  }

  .nav-links {
    max-height: 0;
    overflow: hidden;
    flex-direction: column;
    gap: 1rem;
    position: absolute;
    top: 60px;
    left: 0;
    width: 200px;
    padding: 0 1rem;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    grid-column: 1 / span 1;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
  }

  .nav-container {
    grid-template-columns: auto 1fr;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links.active {
    max-height: 500px;
    padding: 1rem;
    transition: max-height 0.4s ease-in, padding 0.4s ease-in;
  }
}

@media (min-width: 600px) {
  .nav-logo img {
    width: 80%;
  }
}

/* Tablet & Desktop Navigation */

@media (min-width: 1200px) {
  .nav-toggle {
    display: none;
  }
}

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

  .nav-logo img {
    width: 95%;
  }
}

@media (min-width: 769px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    flex-direction: row;
    gap: 4rem;
    width: auto;
    height: auto;
    background: none;
    transform: none;
    padding: 0;
    /* Reset padding */
    padding-right: 5%;
    margin-right: 10%;
  }

  .nav-links li a {
    font-size:clamp(0.6em, 1.4vw, 1.5em) ;
    color: #333;
  }

  .navbar.glass .nav-links li a {
    color: white;
  }
}

/* END NAVIGATION BAR STYLES */
/* HERO CONTAINER STYLES */
.hero-section {
  position: relative;
  width: 100%;
  background-image: url('../media/images/backgrounds/home-page-landing.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20%;
  background: linear-gradient(to top, rgba(0, 0, 0, 1.9), transparent);
  pointer-events: none;
  z-index: 5;
}

/* OVERLAY CONTENT */
.hero-overlay-content {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 5vw;
  display: flex;
  flex-direction: column;
  justify-content:center;
  pointer-events: none;
  z-index: 10;
  overflow: hidden;
}

/* TOP CONTENT ROW */
.hero-main-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items:center;
  width: 100%;
  gap: 1.25rem;
  margin-top: 3.125rem;
}

.gradient-text {
  background-image: linear-gradient(70deg, #021830, #04478f, #0088ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-logo{
width:60%;
font-family: 'KumbhSansMedium', sans-serif;
font-size: clamp(1.2rem, 3vw, 2rem);
color:#fff ;
letter-spacing:5px;
margin-left: auto;
margin-right: auto;
justify-content: center;
justify-self:center;
align-items: center;
margin-top:15%;
}

.hero-title {
  font-family: 'KumbhSansExtraBold', sans-serif;
  font-size: clamp(4rem, 12vw, 10rem);
  color:transparent;
  background-image: linear-gradient(to bottom, #0088ff, #003b7a);
  -webkit-background-clip: text;
  background-clip: text;
  line-height: 1.1;
  text-align:center;
  margin-bottom:10%;
}

/* INFO BUBBLE */
.hero-right-aligned {
  pointer-events: auto;
  margin-top: 0;
  width: 100%;
  max-width: 25em;
  align-self: flex-end;
  display: flex;
  justify-content: flex-end;
  position: relative;
}

.info-bubble {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(0.625rem);
  -webkit-backdrop-filter: blur(0.625rem);
  border: 0.0625rem solid rgba(255, 255, 255, 0.3);
  border-radius: 0.9375rem;
  padding: 1.5em;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.2),
    inset 0 0 0.9375rem rgba(255, 255, 255, 0.4);
  transition: transform 0.3s ease;
  width: 80%;
  margin-bottom: 5%;
}

.info-bubble:hover {
  transform: scale(1.03);
  box-shadow: 0 0.625rem 2.5rem rgba(0, 0, 0, 0.3),
    inset 0 0 0.9375rem rgba(255, 255, 255, 0.4);
}

.bubble-text-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 1;
  min-width: 0;
}

.bubble-text {
  font-family: 'KumbhSansMedium', sans-serif;
  font-size: clamp(1.2rem, 2.9vw, 2.5rem);
  color: rgb(255, 255, 255);
  line-height: 1.3;
  white-space: normal;
  margin-left: 10%;
}

.bubble-icon {
  width: clamp(2.5rem, 9.5vw, 8.3rem);
  height: auto;
  margin-left: clamp(1em, 4vw, 3em);
  flex-shrink: 0;
  filter: drop-shadow(0 0 0.3125rem rgba(59, 63, 65, 0.89));
}

/* BOTTOM ROW */
.hero-bottom-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; /* ✅ Always centers horizontally */
  width: 100%;
  pointer-events: auto;
  margin-top: 5%;
  gap: 1.5rem; /* Adds consistent vertical spacing */
}
.hero-tagline {
  font-family: 'KumbhSansMedium', sans-serif;
  font-size: clamp(1rem, 3vw, 2.5rem);
  color: white;
  text-shadow: 0.0625rem 0.0625rem 0.3125rem rgba(0, 0, 0, 0.7);
  text-align: center;
  margin-top: 1.5rem;
}

.hero-wipe-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  pointer-events: auto;
  font-family: 'KumbhSansExtraBold', sans-serif;
  font-size: clamp(0.9rem, 1.9vw, 1.8rem);
  background-color: #FFFFFF;
  color: #0e245f;
  border-radius: 3.125rem;
  padding: 0.8em 1.8em;
  cursor: pointer;
  box-shadow: 0 0.25rem 0.625rem rgba(0, 0, 0, 0.3);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  -webkit-mask-image: -webkit-radial-gradient(white, rgb(0, 0, 0));
  opacity: 0.85;
  backdrop-filter: blur(0.625rem);
  -webkit-backdrop-filter: blur(0.625rem);
  margin: 0 auto; /* ✅ Ensures horizontal centering */
  width: fit-content; /* ✅ Prevents awkward stretching */
  min-width:20%;

}
.hero-wipe-button-text {
  position: relative;
  z-index: 2;
  color: #000000;
  white-space: nowrap;
  transition: color 0.3s ease-out;
}

.hero-wipe-button-bg {
  position: absolute;
  z-index: 1;
  background-color: #007df9;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-wipe-button:hover .hero-wipe-button-text {
  color: #FFFFFF;
}

.hero-wipe-button:hover {
  transform: scale(1.02) translateY(-0.0625rem);
  box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.4);
  opacity: 1;
}

/* DESKTOP LAYOUT */
@media (min-width: 992px) {
  .hero-overlay-content {
    padding: 3vw 5vw;
  }

  .hero-main-content {
    flex-direction: row;
    justify-content:center;
    align-items: center;
  }

  .hero-title {
    font-size: clamp(4rem, 9vw, 12rem);
    margin-top: 1.5em;
  }

  .hero-right-aligned {
    align-self: flex-end;
    margin-top: 15em;
    flex-basis: 35%;
  }

  .hero-tagline {
    font-size: clamp(1rem, 3vw, 3.5rem);
  }
}

/* MOBILE / TABLET RESPONSIVE FIXES */
@media (max-width: 991px) {
  .hero-main-content {
    flex-direction: column;
    align-items: center;
    position: relative;
  }

  /* Keep bubble visually to the right of the title */
  .hero-right-aligned {
    position: absolute;
    top: calc(100% - 1em);
    right: 5vw;
    width: 50%;
    max-width: 20em;
    margin-top: 0;
  }

  .info-bubble {
    width: 100%;
  }

  /* Center the button above the tagline */
  .hero-bottom-content {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .hero-wipe-button {
    width: auto;
    min-width: 10rem;
    margin: 0 auto;
  }

  .hero-tagline {
    text-align: center;
    margin: 0 auto;
  }
}


/* SECTION 1 STYLES*/
.opening-info {
  width: 90%;
  /* More width on mobile */
  margin-top: 5%;
  margin-left: auto;
  margin-right: auto;
}
.open-image{
  width:60%;
display: block; /* Ensures the image behaves like a block */
  margin-left: auto; /* Automatically calculates left margin */
  margin-right: auto; /* Automatically calculates right margin */
  margin-bottom:8%;
}
.opening-info h2 {
  font-family: 'KumbhSansSemiBold', sans-serif;
  font-size: clamp(1.8rem, 5vw, 4.2rem);
  background: linear-gradient(to top, #161616, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-align: center;
}

.opening-info p {
  font-family: 'KumbhSansMedium', sans-serif;
  font-size: clamp(1rem,2vw, 1.8rem);
  /* was 0.4rem */
  line-height: 2.2;
  margin: 4% 0;
  /* was 4% */
  text-align: left;
}

.elevator-group {
  width: 100%;
  position: relative;
  min-height: 12.5rem;
  /* 200px */
}

.lines {
  object-fit: contain;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.content-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
  padding: 0.625rem;
}

.content-area .elevator-display,
.content-area .right-aligned-text {
  opacity: 0;
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.content-area .elevator-display {
  transform: translateY(6.25rem);
}

.content-area.animate-in .elevator-display {
  opacity: 1;
  transform: translateY(0);
}

.content-area .right-aligned-text {
  transform: translateX(0);
  opacity: 0;
}

.content-area.animate-in .right-aligned-text {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.2s;
}

.elevator-display {
  object-fit: contain;
  width: 90%;
  margin: 0;
  margin-top: 10%;
}

.right-aligned-text {
  flex-grow: 1;
  text-align: center;
  padding-left: 0;
  color: #333;
  margin-left: 0;
  margin-top: 5%;
  font-family: 'KumbhSansSemiBold', sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
}

@media (min-width: 768px) {
  .content-area {
    flex-direction: row;
    align-items: flex-start;
  }

  .content-area .right-aligned-text {
    transform: translateX(-5rem);
  }

  .elevator-display {
    width: 50%;
  }

  .right-aligned-text {
    text-align: left;
    padding-left: 0.625rem;
    margin-left: 20%;
    margin-top: 28%;
  }
}

/* END OF SECTION 1 STYLES*/


/* STATS SECTION STYLES*/
.stat-number-wrapper {
  display: flex;
  align-items: baseline; /* keeps + aligned with the number’s bottom */
  justify-content: center; /* centers both together */
  gap: 0.2em; /* small space between number and plus */
}

.plus {
  font-family: 'KumbhSansBold', sans-serif;
  background: linear-gradient(to top, #161616, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size:3em; /* adjust relative to number size */
  line-height: 1;
  margin-left: 0.1em;
  vertical-align: middle;
}

.stats-section {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 3.125rem 1.25rem;
  text-align: center;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.stat-item {
  flex: 1;
  min-width: 15.625rem;
  margin: 1.25rem 0.625rem;
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.stat-item.in-view {
  opacity: 1;
  transform: translateY(0);
}

.stat-number {
  font-size: 3.5em;
  font-weight: bold;
  margin-bottom: 0.3125rem;
  font-family: 'KumbhSansBold', sans-serif;
  background: linear-gradient(to top, #161616, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 45px rgba(255, 255, 255, 0.2);
}

.stat-label {
  font-size: 1.2em;
  font-weight: normal;
  opacity: 0.8;
  font-family: 'KumbhSansMedium', sans-serif;
}

/* END OF STATS SECTION STYLES*/


/*SECTION 2 STYLES*/
.main {
  width: 100%;
  height:200vh;
  position: relative;
  background-color: #fcfcfc;
}

.sticky-scroll-info {
  margin-top: 10%;
  text-align: center;
  opacity: 0;
  transform: translateY(1.875rem);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  padding: 0 1rem;
}

.sticky-scroll-info h2 {
  font-size: clamp(2rem, 8.5vw, 5.8rem);
  margin-bottom: 1%;
  background: linear-gradient(to top, #161616, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: 'KumbhSansBold', sans-serif;
}

.sticky-scroll-info h3 {
  /* was h2 */
  font-size: clamp(1rem, 4.5vw, 2.5rem);
  margin-bottom: 2%;
  color: #007df9;
  font-family: 'KumbhSansMedium', sans-serif;
}

.sticky-scroll-info p {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  width: 90%;
  margin-bottom: 5%;
  margin-left: auto;
  margin-right: auto;
  color: #414141;
  font-family: 'KumbhSansRegular', sans-serif;
}

/* STICKY SCROLL EFFECT */
.carousel {
  position: relative;
  width: 100vw;
  height: 100vh;
  perspective: 300px;
  overflow: hidden;
  opacity: 0;
}

.card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 60%;
  height: 80%;
  max-width: 900px;
  max-height: 400px;
  border-radius: 10px;
  display: flex;
  color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  border: 0.625rem rgba(255, 255, 255);
  box-shadow: 0 0 2.8em rgba(0, 0, 0, 0.1);
}

.card h3 {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-family: 'KumbhSansRegular', sans-serif;
}

.card img {
  width: 5em;
  margin-bottom: 1.5rem;
  object-fit: contain;
}

.after {
  display: grid;
  justify-content: center;
  align-items: center;
  width: 100%;
  opacity: 0;
  transform: translateY(1.875rem);
  /* 30px */
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.after h2 {
  /* was h1 */
  font-size: clamp(1.8rem, 6.5vw, 4.5rem);
  /* was 5.5rem */
  background: linear-gradient(to top, #161616, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-top: 8%;
  text-align: center;
  font-family: 'KumbhSansBold', sans-serif;
}

.after p {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: #4d4d4d;
  width: 80%;
  text-align: left;
  line-height: 1.8;
  margin-top: 5%;
  margin-bottom: 5%;
  margin-left: 10%;
  font-family: 'KumbhSansRegular', sans-serif;
}




@media (max-width: 768px) {
  .card {
    max-width: 500px;
    max-height: 300px;
  }
}

/* END OF SECTION 2 STYLES*/


/*SECTION 2 AND 3 DIVIDER STYLES*/
.coverage-section-container {
  width: 100%;
  color: #fff;
  overflow: hidden;
}

/* ... (Your explore-button styles are fine, just convert px to rem) ... */
.explore-button {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  pointer-events: auto;
  width: 25em;
  font-family: 'KumbhSansExtraBold', sans-serif;
  font-size: clamp(0.9rem, 3.5vw, 2.2rem);
  background-color: #082644;
  color: #ffffff;
  border-radius: 6.25rem;
  /* 100px */
  padding: clamp(1.8em, 2.2vw, 1.4em);
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 0.25rem 0.625rem rgba(0, 0, 0, 0.3);
  /* 4px 10px */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  -webkit-mask-image: -webkit-radial-gradient(white, rgb(0, 0, 0));
}

.explore-button-text {
  position: relative;
  z-index: 2;
  color: #ffffff;
  white-space: nowrap;
  transition: color 0.3s ease-out;
}

.explore-button-bg {
  position: absolute;
  z-index: 1;
  background-color: #ffffff;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.explore-button:hover .explore-button-text {
  color: #000;
}

.explore-button:hover {
  transform: scale(1.02) translateY(-0.0625rem);
  /* 1px */
  box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.9);
  /* 8px 20px */
}

/* Bottom half */
.bottom-half {
  position: relative;
  margin-top: 0;
  padding: 0;
  width: 100%;
  display: flex;
}

.map-image {
  width: 100%;
}

/* END OF SECTION 2 AND 3 DIVIDER STYLES*/


/*SECTION 3 STYLES*/
.serve-section {
  padding-top: 10%;
  text-align: center;
  padding-left: 1rem;
  /* Gutter */
  padding-right: 1rem;
  /* Gutter */
}

.serve-info {
  opacity: 0;
  transform: translateY(1.875rem);
  /* 30px */
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.serve-info.animated {
  opacity: 1;
  transform: translateY(0);
  animation: bounceInUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes bounceInUp {
  0% {
    opacity: 0;
    transform: translateY(1.875rem);
    /* 30px */
  }

  60% {
    opacity: 1;
    transform: translateY(-0.625rem);
    /* -10px */
  }

  80% {
    transform: translateY(0.3125rem);
    /* 5px */
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}


.serve-info h2 {
  font-size: clamp(2rem, 8.5vw, 5.8rem);
  margin-bottom: 1%;
  background: linear-gradient(to top, #161616, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: 'KumbhSansBold', sans-serif;
}

.serve-info h3 {
  font-size: clamp(1rem, 4.5vw, 2.5rem);
  margin-bottom: 2%;
  color: #007df9;
  font-family: 'KumbhSansMedium', sans-serif;
}

.serve-info p {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  width: 90%;
  margin: 0 auto 5%;
  font-family: 'KumbhSansRegular', sans-serif;
  color: #4d4d4d;
}

.title-icon {
  width: 1.2em;
  display: inline;
}

.serve-info.animated,
.sticky-scroll-info.animated,
.after.animated {
  opacity: 1;
  transform: translateY(0);
  animation: bounceInUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.serve-layout {
  display: flex;

  position: relative;
  width: 100%;
  margin-top: 5%;

}

.places-container p {
  font-size: clamp(1.2em, 2.6vw, 3.5em);
  display: flex;
  align-items: center;
  gap:2em;
  margin: 0;
  font-family: 'KumbhSansMedium', sans-serif;
  margin-bottom: 8%;
  color: #535353;
}

.places-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  width: 65%;
  transition: width 0.3s ease;
  margin-top: 5%;
  margin-left:12%;
}

.place-icon {
  width: 2.4em;
  flex-shrink: 0;
}
@media(min-width:900px){
.places-container {
  width:70%;
  margin-left:10%;
}
.places-container p{
  gap:4em;
}
}
/* --- Serve Section Indicators --- */
.serve-section-indicators {
  display: block;
  position: absolute;
  top: 0;
  /* Positioned in the 25% right gutter */
  left:85%;
  opacity: 0;
  transition: opacity 0.5s ease, left 0.3s ease, right 0.3s ease;
}

.serve-section-indicators.visible {
  opacity: 1;
}

.indicator-dot-2 {
  width: 2em;
  height: 2em;
  font-size: 0.9rem;
  /* Base size */
  border-radius: 50%;
  background: #e0e0e0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #00419b;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  position: absolute;
  font-family: 'KumbhSansExtraBold', sans-serif;
  left: 50%;
  transform: translateX(-50%);
}

.indicator-dot-2.active {
  background: #007df9;
  color: white;
  transform: translateX(-50%) scale(1.2);
}

/*END OF SECTION 3 STYLES*/

/*SECTION 4 STYLES*/
.award-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #007df9;
  color: #fff;
  padding: 2rem 1rem;
  width: 100%;
}

.award-image {
  width: 60%;
  height: auto;
  left: 0;
  margin-bottom: 1.5rem;
}

.award-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 90%;
  margin-right: 0;
}

.logo {
  width: 80%;
  /* Cap logo size */
  margin-bottom: 4rem;
}

.award-text {
  font-size: clamp(1.2em, 4vw, 2.5em);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 1rem;
  font-family: 'KumbhSansMedium', sans-serif;
  text-align: center;
  margin-top: 8%;
}

.trophy {
  width: 1.2em;
  vertical-align: middle;
  margin-left: 0.3rem;
  display: inline;
}

.divider {
  width: 100%;
  height: 0.25rem;
  /* 4px */
  background-color: #00419b;
  opacity: 0.7;
  margin: 1rem 0;
}

.bottom-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.learn-btn {
  background-color: #fff;
  color: #0072ce;
  border: none;
  border-radius: 3.125rem;
  /* 50px */
  width: 15em;
  height: 4em;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
  font-size: clamp(1em, 4vw, 1.2em);
}

.learn-btn:hover {
  background-color: #00aaff;
  color: #fff;
}

.certified {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.25rem;
  font-weight: 500;
  font-size: clamp(1em, 3vw, 1.5em);
}

.certified-text {
  font-family: 'KumbhSansMedium', sans-serif;
  /* FIX: Use flex to align icon and text */
  display: flex;
  align-items: center;
  justify-content: center;
}

.certified-icon {
  width: 1.5em;
  margin-right: 0.5rem;
  /* FIX: Remove vertical-align, not needed for flex */
  /* vertical-align: middle; */
}

@media (min-width: 768px) {
  .award-section {
    flex-direction: row;
    /* FIX: Remove text-align: left to allow center */
    /* text-align: left; */
    padding: 2rem;
  }

  .award-image {
    width: 30%;
    margin-bottom: 0;
  }

  .award-content {
    width: 50%;
    margin-right: 10%;
    align-items: center;
  }

}

/* END OF SECTION 4 STYLES*/


/*SECTION 5 STYLES*/
.end-note-section {
  width: 100%;
  text-align: center;
  padding: 5% 5%;
  box-sizing: border-box;
}

.end-note-info {
  margin: 0 auto;
}

.end-note-info h2 {
  font-size: clamp(2.5em, 7vw, 6.2em);
  font-family: 'KumbhSansBold', sans-serif;
  line-height: 1.4;
  background: linear-gradient(to top, #161616, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.end-note-info h3 {
  font-size: clamp(1.2em, 3vw, 2em);
  margin-bottom: 2%;
  font-family: 'KumbhSansMedium', sans-serif;
}

.end-note-info p {
  font-family: 'KumbhSansRegular', sans-serif;
  color: #636363;
  font-size: clamp(1em, 2vw, 1.5em);
  margin-bottom: 4%;
  line-height: 1.6;
}

.btn-requests {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  width: 100%;
  margin-top: 2rem;
}

.btn-requests a {
  text-decoration: none;
  width: 100%;
  /* Full width on mobile */
  max-width: 25rem;
  /* 400px */
}

.request-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  gap: 0.8rem;
  width: 100%;
  /* Fill the 'a' tag */
  /* was clamp(250px, 40%, 400px) */
  height: 4em;
  border: none;
  color: #fff;
  background-color: #001f3f;
  border-radius: 3.125rem;
  /* 50px */
  font-size: clamp(1.1em, 2.5vw, 1.5em);
  /* was 1.2em / 1.8em */
  font-family: 'KumbhSansMedium', sans-serif;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.request-btn:hover {
  background-color: #00d05f;
  transform: scale(1.03);
}

.btn-request-icon {
  width: 1.5em;
  height: 1.5em;
  object-fit: contain;
  margin: 0;
  padding: 0;
}

@media (min-width: 600px) {
  .btn-requests a {
    width: 45%;
    /* Two-up layout */
  }
}

/* END OF SECTION 5 STYLES*/



/*FOOTER STYLES */
.site-footer {
  background-color: #001f3f;
  color: #fff;
  padding: 3.75rem 0 1.875rem 0;
  /* 60px 0 30px 0 */
  font-family: 'KubhSansRegular', sans-serif;
  line-height: 1.6;
  position: relative;
  z-index: 10;
}

.footer-container {
  width: 90%;
  /* was 80% */
  margin: 0 !important;
  padding: 0 1.25rem;
  /* 20px */
  /* margin-left: auto; */
  /* was 15% */
}

.footer-brand .logo-link {
  text-decoration: none;
  color: var(--footer-heading);
  display: block;
  margin-bottom: 1.25rem;
  /* 20px */
}
.foot-logo-p{
  font-size:1.5em;
  letter-spacing:2px;
   font-family: 'KubhSansLight', sans-serif;
}
.footer-brand .logo-main {
  display: block;
  line-height: 1;
  width: 100%;
  /* was 80% */
  max-width: 15rem;
  /* Cap logo size */
}

.footer-tagline {
  font-size: 0.9rem;
  max-width: 18.75rem;
  /* 300px */
}

/* Mobile-first grid */
.footer-main {
  display: grid;
  grid-template-columns: 1fr;
  /* 1 column by default */
  gap: 2.5rem;
  /* 40px */
}

.footer-column h4 {
  color: var(--footer-heading);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.0625rem;
  /* 1px */
  margin-bottom: 1.25rem;
  /* 20px */
  font-family: 'KumbhSansSemiBold', sans-serif;
}

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

.footer-links li,
.footer-services li {
  margin-bottom: 0.625rem;
  /* 10px */
}

.footer-links a,
.footer-services a {
  color: var(--footer-text);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease-in-out;
}

.footer-links a:hover,
.footer-services a:hover {
  color: var(--footer-heading);
  text-decoration: underline;
}

.footer-contact address {
  font-style: normal;
}

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.9375rem;
  /* 15px */
  margin-bottom: 0.9375rem;
  /* 15px */
  font-size: 0.9rem;
}

.footer-contact i {
  color: var(--footer-heading);
  font-size: 1rem;
  padding-top: 0.25rem;
  /* 4px */
}

.footer-contact a {
  color: var(--footer-text);
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

.footer-contact a:hover {
  color: var(--footer-heading);
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  /* Stack on mobile */
  justify-content: space-between;
  align-items: center;
  /* Center on mobile */
  text-align: center;
  flex-wrap: wrap;
  gap: 0.625rem;
  /* 10px */
  padding-top: 1.875rem;
  /* 30px */
  margin-top: 2.5rem;
  /* 40px */
  border-top: 0.0625rem solid var(--footer-border);
  /* 1px */
  width: 100%;
  /* was 90% */
}

.footer-copyright {
  font-size: 0.85rem;
  margin: 0;
  order: 2;
  /* Show copyright last on mobile */
}

.back-to-top {
  color: var(--footer-text);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03125rem;
  /* 0.5px */
  transition: color 0.2s ease-in-out;
  order: 1;
  /* Show first on mobile */
}

.back-to-top:hover {
  color: var(--footer-heading);
}

.back-to-top i {
  margin-left: 0.3125rem;
  /* 5px */
}


/* ============  RESPONSIVE MEDIA QUERIES  ============ */

/* Tablet Footer Layout */
@media (min-width: 768px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    /* 2 columns */
  }

  .footer-brand {
    grid-column: 1 / -1;
    /* Brand spans full-width */
  }

  .footer-bottom {
    flex-direction: row;
    /* Side-by-side */
    justify-content: space-between;
    text-align: left;
  }

  .footer-copyright {
    order: 1;
    /* Reset order */
  }

  .back-to-top {
    order: 2;
    /* Reset order */
  }
}

/* Desktop Footer Layout */
@media (min-width: 992px) {
  .footer-main {
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    /* 4 columns */
  }

  .footer-brand {
    grid-column: auto;
    /* Reset brand span */
  }
}