/* FLASK STATIC STYLINE */
/* Header Styling */
html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.header-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #e6e6e6;
    display: flex;
    align-items: center;
    height: 7vh;
    max-height: 10vh;
    padding: 0 1vw;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-container h1 {
    margin: 0;
    font-size: 2.5rem;
    flex: 1;
}

.hamburger {
    display: none;
    font-size: 2rem;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    width: 100%;
    background-color: #e6e6e6;
    padding: 1rem 0;
    justify-content: center;
    gap: 2rem;
    border-bottom: 1px solid #ccc;
}

.mobile-nav a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
}

.s-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #1c1c1c;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 7vh;
    max-height: 10vh;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* General Button Styling */
.nav-links a {
    text-decoration: none;
    padding: 0.5rem 0.5rem;
    font-family: lucida sans;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: inline-block;
}

/* Styling for Sign Up and Sign In Buttons */
.signup-signin-button {
    background-color: #e6e6e6;
    color: #404040;
    height: 90%;
    font-family: 'Lucida Sans', Arial, sans-serif;
}

.signup-signin-button:hover {
    color: black; /* Makes the font slightly darker on hover */
}

/* Styling for Launch App Button */
.launch-button {
    background-color: #3a5c3e; /* Unique background color for Launch App */
    color: #e6e6e6;
}

.launch-button:hover {
    background-color: #527a57; /* Hover effect for Launch App background */
}

/* Positioning and Spacing for Buttons in Header */
.nav-links {
    display: flex;
    gap: 1vw; /* Adds space between all buttons */
    font-family: 'Lucida Sans', Arial, sans-serif;
}

.nav-links .launch-button {
    margin-right: 5vw; /* Positions Launch App button 5vw from the right */
}

.main-text {
    text-align: center;
    font-size: 3vw;
    font-weight: bold;
    color: black;
    font-family: 'Lucida Sans', Arial, sans-serif;
    word-wrap: break-word; /* Allows the text to wrap properly */
    white-space: normal; /* Restores normal wrapping behavior */
    overflow-wrap: anywhere; /* Ensures even long words break */
}

.main-text-2 {
    text-align: center;
    font-size: 3vw;
    font-weight: bold;
    margin-top: 3vw;
    color: black;
    font-family: 'Lucida Sans', Arial, sans-serif;
    word-wrap: break-word; /* Allows the text to wrap properly */
    white-space: normal; /* Restores normal wrapping behavior */
    overflow-wrap: anywhere; /* Ensures even long words break */
}

.other-text {
    text-align: center;
    font-size: 2vw;
    font-weight: bold;
    color: white;
    font-family: 'Lucida Sans', Arial, sans-serif;
    word-wrap: break-word; /* Allows the text to wrap properly */
    white-space: normal; /* Restores normal wrapping behavior */
    overflow-wrap: anywhere; /* Ensures even long words break */
}

/* Main Section Background */
main {
    background-color: #c7c7c7;
    color: black;
    padding: 1vh 0;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

/* Image Styling */
.image-container {
    margin: 2rem auto;
    text-align: center;
}

.image-container img {
    max-width: 80%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
}

/* Footer Styling */
footer {
    padding: 1rem 0;
    background-color: #f1f1f1;
    color: #555;
    font-size: 0.9rem;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 5vh;
    max-width: 100vw;
    margin: 0 auto;
    padding: 0 5vw;
    box-sizing: border-box;
}

.footer-left {
    width: 30vw;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* align everything left */
    justify-content: center;
    gap: 0.5em; /* adds spacing between text and links */
    flex-shrink: 0;
}

.footer-center,

.footer-right {
    width: 30vw;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1em;
    flex-shrink: 0;
}

.footer-center {
    align-items: center;
    justify-content: center;
}

.footer-logo {
    height: 8vh;
    width: auto;
}

.footer-text {
    margin: 0;
    font-size: 0.9rem;
    color: #555;
}


.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
}

.footer-link {
    color: #555;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #000;
    text-decoration: underline;
}

.social-icon {
    width: 24px;
    height: 24px;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.social-icon:hover {
    opacity: 1;
    color: #8c732d;
}

.contact-body {
    padding-top: 5vh;
    font-family: "Lucida Sans", Arial, sans-serif;
    background:
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url("/static/png/StrataView Sample 1.png") no-repeat center center fixed;
    background-size: cover;
    color: white;
    text-align: center;
    box-sizing: border-box;
}

.registration-body {
    padding-top: 5vh;
    font-family: "Lucida Sans", Arial, sans-serif;
    background:
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url("/static/png/StrataView Sample 1.png") no-repeat center center fixed;
    background-size: cover;
    color: white;
    text-align: center;
    height: 91vh;
    box-sizing: border-box;
}

.signup-card {
    background-color: black;
    width: 30vw;
    margin: 0 auto;
    margin-top: 5vh;
    border-radius: 10px;
    border: 2px solid white;
    background-color: #c7c7c7;
}

/* Body Styling for Sign-In Page */
.signin-body {
    padding-top: 5vh;
    font-family: "Lucida Sans", Arial, sans-serif;
    background:
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url("/static/png/StrataView Sample 1.png") no-repeat center center fixed;
    background-size: cover;
    color: white;
    text-align: center;
    height: 91vh;
    box-sizing: border-box;
}

.signin-card {
    background-color: black;
    width: 350px;
    margin: 0 auto;
    margin-top: 5vh;
    border-radius: 10px;
    border: 2px solid white;
    background-color: #c7c7c7;
}

.registration-card {
    background-color: black;
    width: 55vw;
    height: 90%;
    margin: 0 auto;
    margin-top: 5vh;
    border: 2px solid white;
    background-color: #c7c7c7;
}

.registration-form {
    width: 100%;
    height: 63vh;
    text-align: left;
    background-color: white;
}

.registration-form-inputs {
    width: 98%;
    height: 63vh;
    text-align: left;
    background-color: white;
    padding: 1%;
}

.registration-label {
    display: block;
    color: black;
    margin-top: 1vh;
}

.registration-input {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #d3d3d3;
    box-sizing: border-box;
}

.registration-input-half {
    display: block;
    margin-left: 0px;
    width: 99%;
    background-color: #d3d3d3;
    box-sizing: border-box;
}

.registration-firstname {
    display: block;
    width: 50%;
}

.registration-fullname-label {
    display: block;
    color: black;
}

.registration-user-fullname {
    display: flex;
    width: 100%;
    flex-direction: row;
}

.registration-button {
    width: 100%;
    height: 10vh;
    background-color: #555;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.registration-button:hover {
    background-color: #666; /* Slightly lighter grey on hover */
}

/* Header Styling for Sign-In Page */
.signin-header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #e6e6e6;
    color: white;
    height: 5vh
}

.signin-header-container h1 {
    margin: 0;
    font-size: 2.5rem;
    flex: 1;
}

.signin-header-container a {
    text-decoration: none;
    color: inherit;
}

.signin-form {
    display: inline-block;
    text-align: left;
    background-color: #333;
    padding: 25px;
    box-sizing: border-box;
    width: 100%;
}

.signin-label {
    display: block;
    margin-bottom: 10px;
}

.signin-input {
    width: 300px;
    height: 30px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #d3d3d3;
    padding: 5px 5px;
    box-sizing: border-box;
}

.signin-button {
    width: 300px;
    height: 40px;
    background-color: #555;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.signin-button:hover {
    background-color: #666;
}

.signin-button.disabled {
    background-color: #999;
    cursor: not-allowed;
}

.signin-button.enabled {
    background-color: #28a745;
    cursor: pointer;
}

.signin-backlink {
    color: #ddd;
    text-decoration: none;
    margin-top: 20px;
    display: inline-block;
}

.signin-backlink:hover {
    text-decoration: underline;
}

.signin-title {
    font-size: 2.5em;
    margin-top: 5vh
}

.contact-card {
    background-color: black;
    width: 30vw;
    height: 80%;
    margin: 0 auto;
    margin-top: 5vh;
    border: 2px solid white;
    background-color: #c7c7c7;
}

.contact-form {
    display: inline-block;
    text-align: left;
    background-color: #333;
    padding: 1vw;
    margin-bottom: 2vh;
    width: 28vw;
}

/* Clickable logo style */
.logo-link {
    text-decoration: none;
}

.subscription-main {
    height: 89vh;
}

/* Subscription card container */
.subscription-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-top: 10vh;
    flex-wrap: wrap;
}

/* Subscription card */
.subscription-card {
    width: 270px;
    height: 575px;
    margin: 0 2vw;
    margin-top: 1vh;
    border-radius: 10px;
    border: 2px solid white;
    background-color: #c7c7c7;
}

/* Plan title */
.plan-header {
    font-size: 3em;
    margin-top: 2vh;
    font-family: 'Montserrat', sans-serif;
    color: #333;
}

/* Plan description */
.plan-details {
    font-size: 1.4em;
    margin-top: 3vh;
    margin-bottom: 3vh;
    font-family: 'Montserrat', sans-serif;
    color: black;
}

.plan-features {
    font-size: 1em;
    margin-bottom: 2vh;
    font-family: 'Montserrat', sans-serif;
    color: black;
}

/* Subscribe button */
.subscribe-button {
    width: 200px;
    height: 75px;
    background-color: #20324f;
    color: white;
    border: 2px solid #6e6b38;
    border-radius: 20px;
    font-size: 1.3em;
    cursor: pointer;
    margin-bottom: 5vh;
    transition: background-color 0.3s ease;
}

.subscribe-button:hover {
    background-color: #161b33;
}

.sub-text {
    font-size: 1vw;
    color: black;
    text-align: center;
    margin-top: 0.5em;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-family: 'Lucida Sans', Arial, sans-serif;
}

.sub-text3 {
    font-size: 1vw;
    color: white;
    text-align: center;
    margin-top: 0.5em;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-family: 'Lucida Sans', Arial, sans-serif;
}

.content-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: wrap;
    height: 100%;
    width: 70vw;
}

.view-mode-images {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: auto;      /* let it expand with content */
    margin-top: 5vh;
    flex-wrap: wrap;   /* optional: wrap images if too wide */
    justify-content: center; /* center images horizontally */
}

.view-mode-images img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain; /* ensures no cropping */
}

.text-block {
    color: white;
    font-family: 'Lucida Sans', Arial, sans-serif;
    font-size: 0.8vw;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    margin-top: 2vh;
    height: auto;
}

.text-block h2,
.text-block p {
    margin: 0;
    padding: 0;
}

.gb-image {
    width: 33vw;
    margin-left: 2vw;
}

.traj-image {
    width: 33vw;
}

.map-image {
    width: 35vw;
}

.xs-image {
    width: 59vw;
}

.sv-image {
    width: 59vw;
}

.trajectory-image4 {
    width: 35vw;
}

form input, form textarea {
    width: 100%;
    padding: 0.75em;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1em;
    font-family: 'Lucida Sans', Arial, sans-serif;
}

.footer-socials {
    display: flex;
    gap: 1em;
}

.arrow-link {
    text-decoration: none; /* removes underline */
}

.arrow-highlight {
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: bold;
    background-color: #8c732d;
    color: white;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

.arrow-highlight:hover {
    background-color: black;
    color: white;
}

.tab-container {
    display: flex;
    justify-content: center;
    margin: 10vh auto 0 auto;
    width: 55vw;
    background-color: transparent;
}

.tab-container2 {
    display: flex;
    flex-direction: row;
    background-color: #0d0f21;
    width: 100%;
    margin-left: 0vw;
    padding: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    height: 85vh;
}

.tab {
    flex: 1;
    text-align: center;
    padding: 1vh 0;
    background-color: #e6e6e6;
    color: #333;
    border: 2px solid white;
    border-bottom: none;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    font-family: 'Lucida Sans', Arial, sans-serif;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.tab:hover {
    background-color: #d4d4d4;
}

.tab.active {
    background-color: #878787;
    color: white;
}

.tools-box {
    display: flex;
    flex-direction: row;
    width: 80vw;
    height: 73vh;
    margin: auto; /* centers it horizontally and gives vertical spacing */
    border: 2px solid white;
    border-radius: 15px;
    background-color: #0d0f21;
    font-family: 'Lucida Sans', Arial, sans-serif;
    font-size: 2vh;
    line-height: 2vh;
}

.tools-text {
    width: 50%;
    padding: 2rem;
    font-family: 'Lucida Sans', sans-serif;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #f5f5f5;
    box-sizing: border-box;
}

.tools-text p {
    margin-bottom: 1rem;
}

.tools-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

/* Carousel container stacks slides */
.carousel {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Image slides fade smoothly without distortion */
.carousel-slide {
    position: absolute;
    max-width: 90%;
    max-height: 90%;
    height: auto;
    width: auto;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.7s ease-in-out;
    z-index: 0;
    pointer-events: none;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
    pointer-events: auto;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 1vw;
    z-index: 2;
    margin-bottom: 2vh;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    background-color: #333;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.carousel-dot.active {
    background-color: #ccc;
}

.privacy-policy {
    font-family: "Montserrat", sans-serif;
    background-color: #c7c7c7;
    color: #000000;
    padding: 5vh 10vw;
    line-height: 1.6;
    border-radius: 10px;
    margin-top: 7vh;
}

/* Headings */
.privacy-policy h1,
.privacy-policy h2 {
    font-weight: 700;
    margin-bottom: 1vh;
}

/* Paragraphs */
.privacy-policy p {
    margin-bottom: 2vh;
}

/* Lists */
.privacy-policy ul {
    margin: 1vh 0 2vh 2vw;
}

/* Links */
.privacy-policy a {
    color: #000;
    text-decoration: underline;
}
.privacy-policy a:hover {
    text-decoration: none;
}

.terms {
    font-family: "Montserrat", sans-serif;
    background-color: #c7c7c7;
    color: #000000;
    padding: 5vh 10vw;
    line-height: 1.6;
    border-radius: 10px;
    margin-top: 7vh;
}

/* Headings */
.terms h1,
.terms h2 {
    font-weight: 700;
    margin-bottom: 1vh;
}

/* Paragraphs */
.terms p {
    margin-bottom: 2vh;
}

/* Lists */
.terms ul {
    margin: 1vh 0 2vh 2vw;
}

/* Links */
.terms a {
    color: #000;
    text-decoration: underline;
}
.terms a:hover {
    text-decoration: none;
}

.content-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  max-width: 80vw;
  margin: 2rem auto;
}

.video-container {
  flex: 4;
  overflow: hidden;
  border-radius: 20px;
  clip-path: inset(0 0 5% 0 round 20px);
}

.video-container video {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: 50% 35%;
  display: block;
  clip-path: inset(0 0 5% 0);
}

.feature-list {
  flex: 1; /* other half of space */
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  font-family: 'Lucida Sans', Arial, sans-serif;
}

.feature-item {
  border-left: 4px solid #28a745;
  padding-left: 1rem;
  font-family: 'Lucida Sans', Arial, sans-serif;
}

.feature-item h3 {
  color: #28a745;
  margin: 0 0 0.25rem 0;
}

.feature-item p {
  margin: 0;
  color: #444;
}

/* Mobile (portrait, narrow screens) */
@media (max-width: 768px) {
    .header-container {
            height: 8vh;
            padding: 0 2vw;
        }

        .nav-links {
            display: none;
        }

        .hamburger {
            display: block;
            margin-left: 35vw;
        }

        .mobile-nav {
            display: none;
            flex-direction: row;
            justify-content: space-around;
            align-items: center;
            background: #141414;
            padding: 1rem 0.5rem;

            position: fixed;
            top: 8vh;
            left: 0;
            width: 100%;

            z-index: 9999;
        }

    .footer-container {
        flex-direction: column;
        height: auto;
        padding: 1.5rem 0;
        gap: 1rem;
        text-align: center;
    }

    .footer-left,
    .footer-center,
    .footer-right {
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    .footer-center { order: 1; }
    .footer-left   { order: 2; }
    .footer-right  { order: 3; }

    .footer-left {
        flex-direction: column;
        gap: 0.3rem;
    }

    .footer-links {
        justify-content: center;
    }

    .footer-logo {
        height: 100px;
    }

    .social-icon {
        height: 24px;
    }
  .content-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .video-container {
    flex: none;
    width: 100%;
    max-width: 500px;
  }

  .feature-list {
    width: 100%;
    max-width: 500px;
    margin-top: 1.5rem;
    align-items: center;
    font-family: 'Lucida Sans', Arial, sans-serif;
  }

  .feature-item {
    border-left: 4px solid #28a745;
    padding: 1rem 0;
    width: 100%;
    font-family: 'Lucida Sans', Arial, sans-serif;
  }

  .tab-container2 {
      display: flex;
      flex-direction: column;
      align-items: center;
      height: 95vh;
  }

  .gb-image {
      display: none !important;
  }

  .traj-image {
      width: 100%;
  }

  .map-image {
      width: 100%;
  }

  .xs-image {
      width: 100%;
  }

  .sv-image {
      width: 100%;
  }

  .sidebar2 {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      gap: .5rem;
      width: 90vw !important;
      flex: none !important;
      height: 6vh !important;
      margin: 1rem auto 0;
      border: none !important;
  }

  .sidebar2 .tab-button {
    flex: 1 1 10rem;
    width: 22vw !important;
    white-space: nowrap;
    text-align: center;
    font-size: 0.5rem;
    padding: 0.5rem;
  }

  .text-block {
          font-size: 15px;
          line-height: 1.5;
          align-items: center;
          text-align: center;
          min-height: 10vh;
  }

  .text-block h2 {
          font-size: 20px;
  }

  .text-block p {
          font-size: 15px;
  }

  .main-text {
      text-align: center;
      font-size: 25px;
      font-weight: bold;
      color: black;
      font-family: 'Lucida Sans', Arial, sans-serif;
      word-wrap: break-word;
      white-space: normal;
      overflow-wrap: anywhere;
      max-width: 75vw;
      margin: 0 auto;
  }

  .other-text {
      text-align: center;
      font-size: 20px;
      font-weight: bold;
      color: white;
      font-family: 'Lucida Sans', Arial, sans-serif;
      word-wrap: break-word;
      white-space: normal;
      overflow-wrap: anywhere;
      max-width: 75vw;
      margin: 0 auto;
  }

  .sub-text {
      font-size: 15px;
      color: black;
      text-align: center;
      margin-top: 0.5em;
      max-width: 60vw;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.6;
      font-family: 'Lucida Sans', Arial, sans-serif;
  }

  .sub-text3 {
      font-size: 15px;
      color: white;
      text-align: center;
      margin-top: 0.5em;
      max-width: 60vw;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.6;
      font-family: 'Lucida Sans', Arial, sans-serif;
  }

  .view-mode-images {
          flex-direction: column;
          align-items: center;
  }

  .view-mode-images img {
          width: 100%;
          margin: 1rem 0;
  }

  .content-section {
          display: flex;
          flex-direction: column;
          align-items: center;
          margin: 0 auto;
  }

  .tools-box {
        display: flex;
        flex-direction: column;
        width: 90vw;
        height: auto;
        margin: 0vh auto;
        border: 2px solid white;
        border-radius: 15px;
        background-color: #0d0f21;
        font-family: 'Lucida Sans', Arial, sans-serif;
        font-size: 2vh;
        line-height: 2vh;
        box-sizing: border-box;
  }

  .tools-text {
        width: 95%;
        padding: 0.5rem 1rem;
        font-size: 1rem;
        line-height: 1.6;
        color: #f5f5f5;
        box-sizing: border-box;
        margin: 0 auto 1rem auto;
  }

  .tools-text p {
        margin-bottom: 1rem;
  }

  .tools-image {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 95%;
      height: 50vh;
      overflow: hidden;
      position: relative;
      margin: 0 auto 1rem auto;
      box-sizing: border-box;
  }

  .carousel-slide {
      position: absolute;
      width: 100%;
      height: auto;
      max-width: 100%;
      max-height: 60vh;
      object-fit: contain;
      opacity: 0;
      z-index: 0;
      pointer-events: none;
      display: block;
      transition: opacity 0.7s ease-in-out;
  }

  .carousel-slide.active {
      opacity: 1;
      z-index: 1;
      pointer-events: auto;
  }

  .carousel-dots {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-top: 1rem;
      margin-bottom: 0;
      width: 100%;
  }

  .carousel-dot {
        width: 12px;
        height: 12px;
        background-color: #333;
        border-radius: 50%;
        cursor: pointer;
        transition: background-color 0.3s ease;
  }

  .carousel-dot.active {
        background-color: #ccc;
  }

  .signin-card {
      background-color: black;
      width: 350px;
      margin: 0 auto;
      margin-top: 5vh;
      border-radius: 10px;
      border: 2px solid white;
      background-color: #c7c7c7;
  }

  .signin-form {
      display: inline-block;
      text-align: left;
      background-color: #333;
      padding: 25px;
      box-sizing: border-box;
      width: 100%;
  }

  .signin-label {
      display: block;
      margin-bottom: 5px;
      margin-top: 10px;
      margin-left: 7vw;
  }

  .signin-input {
      width: 300px;
      height: 30px;
      margin-bottom: 20px;
      border: 1px solid #ccc;
      border-radius: 5px;
      background-color: #d3d3d3;
      padding: 5px 5px;
      box-sizing: border-box;
  }

  .signin-button {
      width: 300px;
      height: 40px;
      background-color: #555;
      color: white;
      border: none;
      border-radius: 5px;
      cursor: pointer;
  }

  .contact-card {
      background-color: black;
      width: 90vw;
      height: 80%;
      margin: 0 auto;
      margin-top: 5vh;
      border: 2px solid white;
      background-color: #c7c7c7;
  }

  .contact-form {
      display: inline-block;
      text-align: left;
      background-color: #333;
      padding: 1vw;
      margin-bottom: 2vh;
      width: 88vw;
  }

  .subscription-main {
      height: 1300px;
  }

  .registration-user-fullname {
      display: flex;
      width: 100%;
      flex-direction: column;
  }

  .registration-firstname {
      display: block;
      width: 100%;
  }

  .registration-input-half {
      display: block;
      margin-left: 0px;
      width: 100%;
      background-color: #d3d3d3;
      box-sizing: border-box;
  }

  .registration-body {
      padding-top: 5vh;
      font-family: "Lucida Sans", Arial, sans-serif;
      background:
          linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
          url("/static/png/StrataView Sample 1.png") no-repeat center center fixed;
      background-size: cover;
      color: white;
      text-align: center;
      height: 1200px;
      box-sizing: border-box;
  }

  .registration-form {
      width: 100%;
      height: 800px;
      text-align: left;
      background-color: white;
  }

  .grid-coverage-main {
      display: flex;
      flex-direction: column !important;
  }

  .map-container {
      width: 100% !important;
      height: 100% !important;
  }

  .map-wrapper {
      width: 98% !important;
      height: 50vh !important;
  }

  .grid-coverage-interactive {
      display: flex;
      flex-direction: row !important;
  }

  .grid-coverage-area {
      width: 100% !important;
      height: 500px !important;
  }

  .basin-btn {
      width: 100px !important;
      min-width: 100px !important;
      max-width: 100px !important;
  }

}

/* Sidebar */
.sidebar {
    width: 10vw;
    background-color: #f5f5f5;
    border-right: 1px solid #ddd;
    display: flex;
    flex-direction: column;
}

.sidebar2 {
    width: 10vw;
    background-color: #0d0f21;
    display: flex;
    flex-direction: column;
    margin-left: 2.5vw;
    border: 2px solid #4f4f4f;
    border-radius: 1vw;
    height: 81vh;
    margin-top: 2vh;
}

.tab-button,
.tab-button:visited {
    width: 100%;
    height: 5vh;
    border: none;
    outline: none;
    background: #11161c;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    transition: background 0.2s;
    color: white;
    display: block;
    text-decoration: none;
    padding-left: 10px;
    line-height: 5vh;
}

.tab-button:hover {
    background: #2e3338;
}

.tab-button.active {
    background: #11161c;
}

.tab-button2,
.tab-button2:visited {
    width: 100%;
    height: 5vh;
    border: none;
    outline: none;
    background: #191e24;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    transition: background 0.2s;
    color: white;
    display: block;
    text-decoration: none;
    padding-left: 10px;
    line-height: 5vh;
}

.tab-button2:hover {
    background: #2e3338;
}

/* Content Area */
.content {
    width: 80vw;
    flex-shrink: 0;
    background-color: #0d0f21;
    color: white;
    margin: 0;
    display: block;
    margin-left: 1vw
}

/* Tab contents */
.tab-content {
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s ease;
  position: absolute; /* keeps hidden tabs from taking space */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.tab-content.active {
  opacity: 1;
  visibility: visible;
  position: relative; /* active one flows in layout */
}

.verification-message {
    display: flex;
    flex-direction: column;
    height: 90vh;
    width: 100vw;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    align-items: center;
    justify-content: center;
    background-color: #c7c7c7;
}

.verification-title {
    height: auto;
    width: 80vw;
    font-size: 5rem;
    color: black;
    font-family: 'Montserrat', sans-serif;
}

.verification-instructions {
    height: 25vh;
    width: 80vw;
    font-size: 2rem;
    color: black;
    font-family: 'Montserrat', sans-serif;
}

.verification-instructions {
    height: 25vh;
    width: 80vw;
    font-size: 1.5rem;
    color: black;
    font-family: 'Montserrat', sans-serif;
}

.signin-terms {
    font-size: 0.85rem;
    color: white;
    margin: 8px 0 16px 0;
}

.signin-terms .terms-link {
    color: white; /* or your brand color */
    text-decoration: underline;
}

.signin-terms .terms-link:hover {
    color: #000;
}

.user-info-table {
    margin: 2rem auto;
    max-width: 500px;
    border-collapse: collapse;
    font-family: 'Montserrat', sans-serif;
}

.user-info-table table {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.user-info-table th,
.user-info-table td {
    padding: 12px 16px;
    text-align: left;
}

.user-info-table th {
    background-color: #f7f7f7;
    font-weight: 600;
    width: 40%;
}

.user-info-table tr:nth-child(even) {
    background-color: #fafafa;
}

.verification-complete-message {
    display: flex;
    flex-direction: column;
    height: 80vh;
    width: 100vw;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    align-items: center;
    justify-content: center;
    background-color: #c7c7c7;
}

.chkout-btn {
    display:inline-block;
    background-color:#1c1c1c;
    color:#ffffff;
    text-decoration:none;
    padding:14px 28px;
    border-radius:6px;
    font-size:16px;
    font-weight:600;
    transition: background-color 0.3s ease;
}

.chkout-btn:hover {
    box-shadow:0 4px 12px rgba(0,0,0,0.08);
    background-color: #1f804a;
    transition: background-color 0.3s ease;
}

.chkout-app-btn {
    display:inline-block;
    background-color:#1f804a;
    color:#ffffff;
    text-decoration:none;
    padding:14px 28px;
    border-radius:6px;
    font-size:16px;
    font-weight:600;
    transition: background-color 0.3s ease;
}

.chkout-app-btn:hover {
    box-shadow:0 4px 12px rgba(0,0,0,0.08);
    background-color: #184a2f;
    transition: background-color 0.3s ease;
}

#submit-button:disabled {
    cursor: not-allowed;
    background-color: #333;
    color: white;
}

#submit-button:not(:disabled) {
    cursor: pointer;
    background-color: #28a745;
    color: white;
    transition: background-color 0.3s ease;
}

#user-agreement {
    vertical-align: middle;
}

#user-agreement + label {
    color: #000;
    font-size: 0.9rem;
    margin-left: 8px;
}

.scroll-container {
    width: 100vw;
    padding-bottom: 50px;
    overflow: hidden;
    background-color: black;
}

.scroll-track {
    display: flex;
    width: max-content;
    animation: scroll-left 40s linear infinite;
}

.scroll-track img {
    width: 30vw;
    height: 30vw;
    object-fit: contain;
    flex-shrink: 0;
}

@keyframes scroll-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.try-free-btn {
    margin-top: 20px;
    background-color: #28a745;
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
    display: inline-block;
    transition: background-color 0.2s ease;
}

.try-free-btn:hover {
    background-color: #218838;
}

.basin-btn {
    background-color: black;
    border-color: black;
    width: 200px !important;
    color: white;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.basin-btn:hover {
    background-color: #222;
}

.basin-btn.active {
    background-color: green;
    border-color: #d32f2f;
    color: white;
    transform: scale(1.02);
}

.basin-btn.active:hover {
    background-color: #b71c1c;
}

.basin-table {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-6px);
    transition:
        max-height 0.35s ease,
        opacity 0.25s ease,
        transform 0.25s ease;
}

.basin-table.active {
    max-height: 30vh;
    overflow-y: auto;
    overflow-x: hidden;
    opacity: 1;
    transform: translateY(0);
    margin-top: 0.5rem;
}

.grid-coverage-main {
    display: flex;
    flex-direction: row;
}