/* <-- 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);
}
/* --- CSS from the prompt --- */
        @import url('https://fonts.googleapis.com/css?family=Signika+Negative:300,400&display=swap');

        html, body, section.horizontal {
            overflow-x: hidden;
        }

        body {
            min-width:350px;
            margin: 0;
            padding: 0;
        }

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

/*  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/freight-elevator.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 STYLES */
.hero-overlay-content {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
  overflow: hidden;
  align-items: center;
}

/* TOP ROW: Title and Bubble */
.hero-main-content {
  display:flex;
  gap: 1.25rem;
  margin-top:12%;
justify-content: center;
}

.hero-title {
  font-family: 'KumbhSansMedium', sans-serif;
  font-size: clamp(2.9rem,8.1vw, 12rem);
  background: linear-gradient(to top, #161616, #ffffff);
    -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
  text-align: center;
  align-self: center;
  display: flex;
}


/* BOTTOM ROW: Tagline and Button */
.hero-bottom-content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  align-self: center;
}

.hero-tagline {
  font-family: 'KumbhSansMedium', sans-serif;
  font-size: clamp(1rem, 3vw, 2.5rem);
  color: white;
  text-shadow: 0.0625rem 0.0625rem 0.5rem rgba(0, 0, 0, 0.5);
  opacity:0.6;
}

/* Hero media queries */
/* BUG FIX: Changed from 768px to 992px to prevent tablet overflow */
@media (min-width: 992px) {

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


}
.video-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000; /* fallback in case video doesn't load */
  padding: 6rem 0; /* gives it visual breathing space without being fullscreen */
}

.intro-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.85; /* optional subtle dimming for readability */
}

.video-overlay-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertical center */
  align-items: center; /* horizontal center */
  text-align: center;
  color: #fff;
  gap: 1.5rem;
  padding: 0 5%;
  width: 100%;
  max-width: 90%;
}

/* Heading styling */
.video-overlay-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
}

.video-overlay-top h2 {
  font-family: 'KumbhSansSemiBold', sans-serif;
  font-size: clamp(1.2rem, 5vw, 4.2rem);
  color: #fff;
  opacity: 0.85;
}

/* Center paragraph with readable width */
.video-overlay-content p {
  font-family: 'KumbhSansMedium', sans-serif;
  font-size: clamp(0.8rem, 3vw, 1.6rem);
  line-height: 1.6;
  max-width: 75%;
  opacity: 0.8;
  margin: 0 auto 2rem;
  text-shadow: 0.0625rem 0.0625rem 0.5rem rgba(0, 0, 0, 0.6);
}

/* Button styling */
.video-overlay-button {
  font-family: 'KumbhSansBold', sans-serif;
  font-size: clamp(0.8rem, 1.8vw, 1.5rem);
  color: #575757;
  background-color: rgba(255, 255, 255, 0.4);
  border: none;
  border-radius: 50px;
  padding: 1rem 2.2rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.video-overlay-button:hover {
  background-color: #fff;
  color: #0a1936;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* --- Mobile adjustments --- */
@media (max-width: 768px) {
  .video-section {
    padding: 8rem 0 5rem; /* extra space to prevent overlap with next section */
  }

  .video-overlay-top {
    flex-direction: column;
    gap: 0.8rem;
  }

  .video-overlay-content p {
    max-width: 90%;
    font-size: clamp(0.9rem, 4vw, 1.3rem);
    margin-bottom: 2.5rem;
  }

  .video-overlay-button {
    width: auto;
    max-width: 280px;
  }
}
@media (min-width: 768px){
 .video-section {
   height:80vh;
  }
}
.heading-icon {
  width: clamp(1em, 4vw, 4.5rem);
  height: clamp(1em, 4vw, 4.5rem);
  opacity: 0.6;
  display: inline;
  vertical-align: middle;
}


        .item h2{
          text-align: center;
          font-family: 'KumbhSansExtraBold', sans-serif;
      font-size: clamp(3rem, 6vw, 5.5rem);
      line-height: 1.1;
      margin-bottom: 1rem;
        transition: transform 0.2s ease; 
        background: linear-gradient(to top, #161616, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    color:transparent;
        }
        .item h3{
           font-family: 'KumbhSansBold', sans-serif;
      font-size: clamp(1.8rem, 3vw, 2.5rem);
      color: rgba(255, 255, 255, 0.85);
      margin-bottom: 1.5rem;
       transition: transform 0.2s ease;
       opacity: 0.9;
          text-align: center;
        } 
        .item p {
        text-align: left;
        font-family: 'KumbhSansMedium', sans-serif;
      font-size: clamp(1rem, 1.7vw, 1.5rem);
      line-height: 1.6;
    color: #fff;
opacity: .6;
        }

        section.horizontal {
            width: 100%;
            height: 100vh; /* Assuming blank sections are 100vh for even spacing */
            position: relative;
        }

        section.horizontal:nth-of-type(odd) {
            background-color: #f0f0f0;
        }

        section.horizontal:nth-of-type(even) {
            background-color: #ffffff;
        }

        section.horizontal {
            overflow-x: hidden;
            height: auto; /* Allow height to be determined by content/pinning */
            
        }

        section.horizontal .pin-wrap,
        section.horizontal .animation-wrap {
            display: flex;
            position: relative;
            z-index: 1;
            height: 100vh; /* The section to be pinned */
        }

        section.horizontal .item {
           position: relative;
             padding: 9rem 5rem;
            /* 500px total width for each item */
            flex: 0 0 60rem;
            height: calc(100vh - 18rem);
            flex-direction: column;
            justify-content: center;
            display: flex;
            align-items: center;
            line-height: 1.7;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
           background: linear-gradient(to top, #000000, #141414);
           
        }

        section.horizontal .item:before {
            position: absolute;
            opacity: .13;
            font-weight: bold;
            z-index: -1;
            transform: translate(-30px, -50px);
            line-height: 1;
            display: none;
        }

section.horizontal .animation-wrap.to-right .item:before,
section.horizontal .animation-wrap.to-left .item:before {
  content: none; /* Remove auto-generated numbers */
}
 @media (max-width: 768px) {
  section.horizontal .pin-wrap,
  section.horizontal .animation-wrap {
  display: block;
  height: auto; /*Crucial: Allows the container to grow with its content */
  }
  .item h2{
    font-size: clamp(1.8rem, 2vw, 2.2rem);;
  }
  .item h3{
       font-size: clamp(1rem, 1vw, 1.4rem);
      text-align: center; 
   margin:0;
  }

   .item p{
    font-size: clamp(.8rem, 1vw, 1.2rem);
    width: 80%;
    /* New: Enforce center alignment for mobile view */
    text-align: justify; 
    margin-left: auto;
    margin-right: auto;
  }
  section.horizontal {
    height: auto !important; /* Also crucial: Overrides any h-100vh set by the desktop JS/pinning */
  }

  section.horizontal .item {
  flex: none;
  width: 100%;
  padding: 2rem 0rem;
  height: auto;
  border: none;
  }
}
        /* Helper for visibility (optional, but useful for debugging layout) */
.leadership-section {
  background-color: #f8fbff;
  text-align: center;
  padding: 80px 20px;
  font-family: 'Inter', sans-serif;
}

.section-title {
        font-family: 'KumbhSansBold', sans-serif;
      font-size: clamp(2rem, 3vw, 3.5rem);
      line-height: 1.6;
         background: linear-gradient(to top, #161616, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    color:transparent;
    text-align: center;
    margin-bottom:5%;
}

.leaders {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  justify-items: center;
}

.leader {
  max-width: 280px;
  text-align: center;
}

.leader img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 20px;
}

.leader h3 {
   font-family: 'KumbhSansMedium', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 4px;
}

.position {
   font-family: 'KumbhSansMedium', sans-serif;
  font-style: italic;
  color: #6b7280;
  margin-bottom: 12px;
}

.bio {
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.6;
   font-family: 'KumbhSansMedium', sans-serif;
}

.bio a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
}

.bio a:hover {
  text-decoration: underline;
}

     
.award-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #15232f;
  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%;
  text-align: center;
  margin-right: 0;
}

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

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

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

.divider {
  width: 100%;
  height: 0.25rem;
  /* 4px */
  background-color: #FFF;
  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%;
    /* FIX: Center children (logo, text, etc.) */
    align-items: center;
  }

}

/* END OF SECTION 4 STYLES*/



/*SECTION 5 STYLES*/
  .svg-drag-section {
      width:100%;
      display: flex;
      overflow: hidden;
      position: relative;
      align-items: center;
      justify-content: center;
      margin-top:0;
    }

    .svg-drag-section svg {
      width:40%;
      height: auto;
      overflow: visible;
      touch-action: none;
      align-self: center;
      justify-self:center;
      vertical-align: middle;
    }

    .svg-drag-section polygon {
      fill: #007df9;
      cursor: grab;
      transform-origin: 50% 50%;
      user-select: none;
    }

    .svg-drag-section polygon:active {
      cursor: grabbing;
    }

    @media (max-width: 600px) {
      svg {
        width: 95%;
      }
    }
.end-note-section {
  width: 100%;
  text-align: center;
  padding: 5% 5%;
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(100px); /* smaller for smoother motion */
}

.end-note-info > * {
  opacity: 0;
  transform: translateY(30px); /* children also start slightly below */
}


.end-note-info h2 {
  /* was h1 */
  font-size: clamp(2.5em, 7vw, 6.2em);
  /* was 3em */
  margin-bottom: 2%;
  font-family: 'KumbhSansBold', sans-serif;
  line-height: 1.1;
  color:#00419b;
}

.end-note-info h3 {
  /* was h2 */
  font-size: clamp(1.2em, 3vw, 2em);
  /* was 1.5em */
  margin-bottom: 2%;
  font-family: 'KumbhSansMedium', sans-serif;
  color: #007df9;
}

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

.end-video-section {
  position: relative;
  height: 95vh; /* Responsive height */
  overflow: hidden;
  background-color: #000; /* Fallback */
  margin-bottom: 0; /* Ensures it's flush with footer */
  justify-content: center;
  align-items: center;
}
.end-vid {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%); /* Center the video */
  z-index: 1;
  opacity: 0.6; /* Darken video */
}

.end-video-overlay {
  position: absolute;
  bottom:0;
  width: 80%;
  margin-left:10%;
  margin-bottom: 5%;
display:flex;
  justify-content: space-between; /* Pushes buttons to ends */
  align-items: center;
  z-index: 10;
}

.btn-overlay {
  text-decoration: none;
  font-family: 'KumbhSansBold', sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem); /* Responsive font size */
  color: #181818;
  background-color: rgba(255, 255, 255, 0.3); /* Site blue, semi-transparent */
  padding: clamp(0.8rem, 1vw, 1rem) clamp(1.5rem, 3vw, 2.5rem); /* Responsive padding */
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  opacity:0.8;
}

.btn-overlay:hover {
  background-color: #fff;
  color: #0f0f0f;
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  opacity: 1;
}

/* Responsive styles for the overlay */
@media (max-width: 600px) {
  .end-video-overlay {
    flex-direction: column; /* Stack buttons on mobile */
    gap: 1.5rem;
  }

  .btn-overlay {
    width: 80%;
    text-align: center;
    max-width: 300px;
  }
}

.btn-requests {
  display: flex;
  flex-wrap: wrap;
  /* This is responsive! */
  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 */
  }

}
@media (max-width:768px){
   .end-video-section{
    height:60vh;
  }
}
/* END OF SECTION 5 STYLES*/

.promise-icon{
  width:60%;

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

.footer-brand .logo-main {
  font-size: 2.5rem;
  font-weight: 700;
  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 */
  }
}