  body {
    font-family: "Montserrat", sans-serif;
    color: #222;
    overflow-x: hidden;
  }

  :root {
    --progress-width: 200px;
    /* change if you want shorter/longer indicator */
    --progress-height: 4px;
  }

  *,
  *::before,
  *::after {
    box-sizing: border-box;
    transition: 0.3s all ease-in-out;
  }


  html {
    scroll-behavior: smooth;
    overflow-x: hidden;
  }

  body::-webkit-scrollbar {
    width: .5em;
  }

  .btn-close:focus,
  .btn-close:visited {
    border: none;
    outline: none;
  }

  button:focus {
    outline: none;
  }

  .btn {
    border-radius: 24px;
  }

  .btn-light:hover {
    background: transparent;
    color: #fff;
  }

  body::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  }

  body::-webkit-scrollbar-thumb {
    background-color: #042f3f;
    outline: 1px solid #042f3f;
    border-radius: 8px;
  }

  h1 {
    font-size: 3rem;
  }

  .font-montserrat {
    font-family: "Montserrat", sans-serif;
  }

  .font-playfair {
    font-family: "Playfair", serif;
  }

  .hero {
    background: url('../images/Business\ bay\ banner.png') center/cover no-repeat;
    color: white;
    position: relative;
    height: 100vh;
    background-position: top;
    background-size: cover;
    padding-top: 70px;
  }

  .hero h1 {
    font-size: 7rem;
    font-weight: 700;
  }
  .section {
    padding: 80px 0;
  }

  .about img {
    max-width: 100%;
    border-radius: 6px;
  }

  .quote {
    font-size: 1.5rem;
    font-style: italic;
    text-align: center;
    margin: 40px 0;
  }

  footer {
    background: #f8f9fa;
    padding: 40px 0;
    text-align: center;
  }


  .custom-navbar li .nav-link {
    color: #fff !important;
    opacity: 1;
    font-weight: 500 !important;
  }

  .custom-navbar li:hover .nav-link {
    opacity: 0.5 !important;
  }

  .navbar.top-nav-collapse {
    box-shadow: 2px -4px 3px 6px rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
    background-color: #042f3f !important;
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .hero-text-wrapper {
    width: 35%;
    margin: 12% auto;
  }

  .know-more-container {
    width: 45%;
    left: 0;
    position: absolute;
    margin-top: 10%;
    bottom: 0px;
  }

  .know-more-text {
    background: #fff;
    color: #000;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 0.5rem;
    width: 70%;
    border: none;
    outline: none;
    padding-left: 5rem;
    text-transform: capitalize;
  }

  .know-more-description-wrapper {
    padding: 0.5rem;
    background: #fff;
    border: none;
    outline: none;
    display: flex;
    flex-direction: row;
    color: #000;
    column-gap: 0.7rem;
    padding-left: 5rem;
    justify-content: space-between;
  }

  .know-more-arrow {
    width: 2rem;
    height: 2rem;
  }


  .dapoli-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px dotted gray;
    padding: 2px;
  }

  /* Card classes */
  .curved-gallery {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 15px;
    flex-wrap: wrap;
    perspective: 1000px;
    /* Needed for tilt effect */
    width: 100%;
    margin: 10% auto;
  }

  /* Each card sits inside a wrapper (for curve) */
  .gallery-wrapper {
    display: flex;
    align-items: flex-end;
  }

  .gallery-item {
    position: relative;
    width: 150px;
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transform-origin: center;
    opacity: 0;
    animation: entrance 1s forwards;
    transition: transform 0.5s ease-in-out, box-shadow 0.4s ease;
  }

  /* Entrance animation */
  @keyframes entrance {
    0% {
      opacity: 0;
      transform: translateY(80px) scale(0.8);
    }

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

  /* Stagger entrance */
  .gallery-wrapper:nth-child(1) .gallery-item {
    animation-delay: 0.1s;
  }

  .gallery-wrapper:nth-child(2) .gallery-item {
    animation-delay: 0.2s;
  }

  .gallery-wrapper:nth-child(3) .gallery-item {
    animation-delay: 0.3s;
  }

  .gallery-wrapper:nth-child(4) .gallery-item {
    animation-delay: 0.4s;
  }

  .gallery-wrapper:nth-child(5) .gallery-item {
    animation-delay: 0.5s;
  }

  .gallery-wrapper:nth-child(6) .gallery-item {
    animation-delay: 0.6s;
  }

  /* Text overlay backdrop */
  .gallery-item::after {
    content: attr(data-letter);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.35);
    color: white;
    font-size: 3rem;
    font-weight: bold;
    letter-spacing: 2px;
  }

  /* Curve using wrapper translateY */
  .gallery-wrapper:nth-child(1),
  .gallery-wrapper:nth-child(6) {
    transform: translateY(-40px);
  }

  .gallery-wrapper:nth-child(2),
  .gallery-wrapper:nth-child(5) {
    transform: translateY(-20px);
  }

  .gallery-wrapper:nth-child(3),
  .gallery-wrapper:nth-child(4) {
    transform: translateY(0);
  }

  /* Hover tilt effect */
  .gallery-item:hover {
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.35);
  }

  .gallery-item:nth-child(odd):hover {
    transform: rotateZ(-5deg) !important;
  }

  .gallery-item:nth-child(even):hover {
    transform: rotateZ(5deg) !important;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.35);
  }

  /* Responsive */

  @media (max-width: 1200px) {
    .gallery-item {
      width: 120px;
      height: 200px;
    }
  }


  @media (max-width: 900px) {
    .gallery-item {
      width: 100px;
      height: 180px;
    }
  }

  @media (max-width: 600px) {
    .curved-gallery {
      flex-wrap: wrap;
      gap: 10px;
    }

    .gallery-item {
      width: 45px;
      height: 100px;
    }

    .gallery-item {
      border-radius: 12px;
    }

    .gallery-item::after {
      font-size: 2rem;
    }

    .section-9 {
      height: calc(100vh - 55px);
    }

    /* Curve using wrapper translateY */
    .gallery-wrapper:nth-child(1),
    .gallery-wrapper:nth-child(6) {
      transform: translateY(-40px);
    }

    .gallery-wrapper:nth-child(2),
    .gallery-wrapper:nth-child(5) {
      transform: translateY(-20px);
    }

    .gallery-wrapper:nth-child(3),
    .gallery-wrapper:nth-child(4) {
      transform: translateY(0);
    }

    .curved-gallery {
      margin: 18% auto;
    }

    .custom-arrows-2 {
      bottom: 1% !important;
      right: 30%;
      margin: auto;
      width: 0;
    }


    #testimonials .quotation-mark {
      font-size: 4rem !important;
      top: 5% !important;
      left: 3% !important;
    }

    #testimonials .quotation-mark.down {
      right: 2% !important;
      left: unset !important;
    }

    div.custom-arrows-3 {
      bottom: -8% !important;

    }

    .section-9-text h1 {
      font-size: 2rem !important;
    }

    .section-9-text {
      bottom: 0% !important;
      width: 80% !important;
    }
  }

  /* Card classes */


  /*Css for slider */
  .slider-wrapper {
    position: relative;
    width: 100%;
    padding: 40px 0;
    /* top/bottom breathing room */
    box-sizing: border-box;
    padding-bottom: 0;
    margin-bottom: 40px;
  }

  .slider {
    width: 100%;
    overflow: hidden;
  }

  .slide img {
    width: 100%;
    display: block;
  }

  /* Circle arrows like your reference */
  .slick-prev,
  .slick-next {
    width: 58px;
    height: 58px;
    background: #fff;
    border-radius: 50%;
    border: 2px dashed #2b2b2b;
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: all .25s ease;
  }

  .slick-prev:hover,
  .slick-next:hover {
    background: #2b2b2b;
    border-color: #2b2b2b;
  }

  .slick-prev:before,
  .slick-next:before {
    display: none;
  }


  .slick-next {
    right: 5%;
  }

  .slick-prev {
    left: 5%;
  }


  .slick-prev,
  .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px dashed #555;
    /* like your image */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .slick-prev:hover,
  .slick-next:hover {
    background: #f0f0f0;
  }

  .slick-prev {
    left: 20px;
  }

  .slick-next {
    right: 20px;
  }

  .slick-prev span,
  .slick-next span {
    font-size: 20px;
    color: #333;
  }

  .slick-arrow img {
    width: 20px;
  }

  /* Progress overlay (centered near bottom of image) */
  .progress-overlay {
    pointer-events: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 24px;
    width: var(--progress-width);
    height: var(--progress-height);
    background: #d3d3d3b3;
    /* track like the mock */
    border-radius: 8px;
    overflow: hidden;
    z-index: 2;
  }

  .progress-fill {
    height: 100%;
    width: 0%;
    background: #ffffff;
    /* fill color = white (as in your image) */
    transition: width .35s ease;
  }

  /* Optional: constrain image height a bit on large screens */
  .slider .slide {
    height: calc(100vh - 70px);
  }

  .slider .slide img {
    object-fit: cover;
    height: calc(100vh - 70px);
  }

  @media (max-width: 768px) {
    :root {
      --progress-width: 110px;
      --progress-height: 3px;
    }

    .slick-prev,
    .slick-next {
      width: 48px;
      height: 48px;
      top: 57%;
    }
  }

  /*Css for slider */



  .divider {
    height: 100%;
    position: absolute;
    width: 2px;
    background: lightgray;
    right: 20%;
  }


  .divider::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 60px;
    background: #000;
    left: -.5px;
    top: 10%;
    border-radius: 8px;
  }

  .big-h1 {
    font-size: 3.5rem;
  }


  /*css for the section 5*/


  .quote-wrap {
    position: relative;
    width: fit-content;
    /* critical: container hugs image width */
    margin: 10% auto 40px auto;
    font-family: "Montserrat", sans-serif;
  }

  .img-wrap {
    position: relative;
    display: inline-block;
    overflow: hidden;
    /* clip text horizontally by image width */
  }

  .img-wrap img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 400px;
  }

  .quote-text {
    position: absolute;
    top: 75%;
    transform: translateY(-50%);
    font-weight: 800;
    line-height: 1.3;
    margin: 0;
    font-size: 30px;

    /* ensures overflow horizontally */
    width: 70%;
    right: -40%;
  }

  .quote-inside {
    color: white;
    z-index: 2;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    top: 75.5%;
  }

  .quote-outside {
    color: black;
    z-index: 1;
    /* sits behind image container */
  }

  /*css for the section 5*/

  @media screen and (min-width:1100px) {
    .custom-navbar {
      border: 1.3px solid #fff;
      border-radius: 20px;
      padding: 0px 15px;
    }
  }



  @media screen and (max-width:1023px) {
    div#navbarsExample {
      background: #042f3f;
      padding: 10px 2px;
    }

    .hero-text-wrapper {
      width: 50%;
      margin-top: -25%;
    }


    .know-more-container {
      bottom: 0px;
      width: 55%;
    }

    #testimonials .quotation-mark {
      font-size: 5rem !important;
      top: 6% !important;
      left: 3% !important;
    }

    #testimonials .quotation-mark.down {
      right: 2% !important;
      left: unset !important;
    }

    .custom-arrows-3 {
      bottom: -12% !important;
      right: 0 !important;
      margin: auto;
      width: 0;
      top: unset !important;
      left: -25% !important;
    }

    .section-9-text h1 {
      font-size: 3rem;
    }

  }

  @media screen and (max-width:720px) {
    .hero h1 {
      font-size: 6rem;
    }

    .hero-text-wrapper {
      width: 100%;
    }

    .know-more-container {
      width: 100%;
    }

    .know-more-text {
      padding-left: 2rem;
    }

    .know-more-description-wrapper {
      padding-left: 2rem;
    }

    .big-h1 {
      font-size: 2.4rem;
    }

    .divider {
      width: 98%;
      height: 2px;
      left: 0;
      right: 0;
      margin: auto;
    }

    .divider::after {
      width: 25%;
      height: 2px;
      left: 0;
      right: 0;
      margin: auto;
    }

    .img-wrap img {
      width: 55%;
      margin: auto;
    }

    .quote-text {
      right: 2%;
      font-size: 20px;
      width: 50%;
    }

    .quotation-mark {
      left: 5% !important;
      font-size: 6rem !important;
    }

    .content {
      column-gap: 1rem !important;
    }
    .navbar{background: #042f3f !important;}
    .hero{    background-size: contain;
    height: 40vh;
    margin-top: 70px;
}
.section{padding: 30px 0;}
  }
.enquirebtn{z-index: 5;top: 20%;right: 0;font-size: 12px;font-size: 12px; background-color: #174963;color: #fff;padding: 5px 10px;font-weight: bold;}
.enquirebtn:hover{background-color: #042f3f;color: #fff;text-decoration: none;}

  @media screen and (max-width:400px) {}


  .quotation-mark {
    position: absolute;
    font-size: 10rem;
    left: 19%;
    top: 0%;
  }




  .custom-slider {
    width: 100%;
    max-width: 95%;
    margin: 0 auto;
  }

  /* 
  .custom-slider .slick-active{
    position: relative;
    overflow-x: hidden;
    z-index: 9999;
    background: #fff;
    margin-left: 0px;
  } */

  .custom-slider .slick-track {
    display: flex;
    gap: 20px;
    /* modern browsers support gap */
  }

  .custom-slider .slick-slide {
    float: none;
    /* disable float for flexbox */
  }

  .slide img {
    width: 100%;
    border-radius: 12px;
  }

  .content {
    margin-top: 15px;
    position: relative;
    column-gap: 7rem;
  }

  .day {
    font-size: 16px;
    color: #030303;
    margin-bottom: 0px;
    font-weight: 700;
    text-wrap-mode: nowrap;
  }

  .content h3 {
    font-size: 22px;
    margin: 5px 0;
    font-weight: 600;
    font-family: 'Playfair', sans-serif;
  }

  .desc {
    font-size: 15px;
    color: #444;
    margin: 5px 0 15px;
  }

  .route {
    font-weight: bold;
    text-decoration: none;
    color: #000;
  }

  /* custom arrows */
  .custom-arrows-1 {
    display: flex;
    justify-content: flex-end;
    gap: 10px;

    /* position near bottom of content */
    right: 10%;
    position: absolute;
    bottom: 0;
  }

  .custom-arrows-1 button {
    background: none;
    border: 2px solid #000;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 18px;
    cursor: pointer;
  }

  .custom-arrows-1 button:hover {
    background: #000;
    color: #fff;
  }



  .custom-arrows-2 {
    display: flex;
    justify-content: flex-end;
    gap: 10px;

    /* position near bottom of content */
    position: absolute;
    bottom: 15%;
    left: 0;
    /* flex-direction: column-reverse; */
  }

  .custom-arrows-2 .slick-prev {
    left: 0px;
  }

  .custom-arrows-2 .slick-next {
    right: -110px;
  }

  .custom-arrows-2 .slick-prev,
  .custom-arrows-2 .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px dashed #555;
    /* like your image */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    z-index: 14;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .custom-slider-slide {
    padding: 1rem;
  }

  .image-text {
    position: absolute;
    bottom: 8%;
    width: 80%;
    left: 5%;
    color: #fff;
  }

  .star-rating {
    display: none;
  }

  .star-rating .fa-star {
    font-size: 1rem;
    color: #ddd;
    /* default gray for empty */
    cursor: pointer;
    transition: color 0.3s ease;
  }

  .star-rating .checked {
    color: gold;
    /* filled star */
  }

  .custom-arrows-3 {
    display: flex;
    justify-content: flex-end;
    gap: 10px;

    /* position near bottom of content */
    position: absolute;
    top: -10%;
    right: 20%;
    /* flex-direction: column-reverse; */
  }

  .custom-arrows-3 .slick-prev {
    left: 0px;
  }

  .custom-arrows-3 .slick-next {
    right: -110px;
  }

  .custom-arrows-3 .slick-prev,
  .custom-arrows-3 .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px dashed #555;
    /* like your image */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    z-index: 14;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  #testimonials .quotation-mark {
    font-size: 6rem;
    left: 10%;
    top: 0%;
  }

  #testimonials .quotation-mark.down {
    right: 10%;
    left: unset;
  }

  .custom-slider-3 {
    margin-top: 5%;
  }

  .section-9-text {
    position: absolute;
    width: 60%;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 33%;
  }

  .no-hover:hover,
  .no-hover:focus {
    text-decoration: none !important;
  }

  .contact-section {
    background: #116483;
    padding: 3rem 0 2rem 0;
    box-shadow: 0 2px 24px rgba(40, 93, 67, 0.10);
  }

  .contact-container {
    display: flex;
    gap: 4rem;
    margin: 2rem auto;
    flex-wrap: wrap;
    justify-content: center;
    background: rgba(0, 0, 0, .3);
    padding: 3rem;
    border-radius: 18px;
  }

  .contact-form {
    flex: 1 1 340px;
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
    min-width: 260px;
    justify-content: center;
  }

  .contact-form input,
  .contact-form textarea {
    background: transparent;
    border: none;
    border-bottom: 1.5px solid #b2c8b2;
    color: #fff;
    font-size: 1.08rem;
    padding: 0.7em 0.2em;
    outline: none;
    transition: border 0.2s;
    font-family: "Montserrat", sans-serif;
    ;
    resize: none;
  }

  .contact-form input::placeholder,
  .contact-form textarea::placeholder {
    color: #dbe7db;
    opacity: 1;
    font-weight: 400;
  }

  .contact-form input:focus,
  .contact-form textarea:focus {
    border-bottom: 2px solid #fa9f1b;
  }

  .contact-form textarea {
    min-height: 38px;
    max-height: 120px;
  }

  .submit-row {
    display: flex;
    align-items: center;
    gap: 0.5em;
    margin-top: 0.5em;
  }

  .submit-btn {
    background: #fff;
    color: #285d43;
    border: none;
    border-radius: 2em;
    padding: 0.7em 2.2em;
    font-size: 1.08rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 8px rgba(40, 93, 67, 0.07);
    position: relative;
    z-index: 1;
  }

  .submit-btn:hover {
    background: #fa9f1b;
    color: #fff;
  }

  .arrow-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fa9f1b;
    color: #fff;
    border-radius: 50%;
    width: 2.3em;
    height: 2.3em;
    font-size: 1.3em;
    margin-left: -0.7em;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    z-index: 2;
    box-shadow: 0 2px 8px #fa9f1b44;
    border: none;
  }

  .submit-row:hover .arrow-btn,
  .submit-btn:focus+.arrow-btn {
    background: #fff;
    color: #fa9f1b;
    transform: translateX(6px) scale(1.08);
  }

  .contact-info {
    flex: 1 1 340px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 260px;
    gap: 1.5em;
  }

  .contact-info h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.2em;
    line-height: 1.2;
  }

  .info-row {
    display: flex;
    gap: 2.5em;
    margin-bottom: 1.2em;
    flex-wrap: wrap;
  }

  .info-block {
    display: flex;
    align-items: flex-start;
    gap: 0.7em;
    min-width: 170px;
  }

  .icon {
    font-size: 1.5em;
    color: #fa9f1b;
    margin-top: 0.1em;
  }

  .info-main {
    font-size: 1.08em;
    font-weight: 500;
    color: #fff;
  }

  .info-main a {
    color: #fff;
    text-decoration: none;
    transition: color 0.8s;
  }

  .info-main a:hover {
    color: #fa9f1b;
  }

  .info-sub {
    font-size: 0.95em;
    color: #b2c8b2;
  }

  .social-row {
    display: flex;
    gap: 1.1em;
    margin-top: 1.2em;
  }

  .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 1.5em;
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
    font-size: 1.7em;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    border: 1.5px solid rgba(255, 255, 255, 0.08);
  }

  .social-icon:hover {
    background: #fa9f1b;
    color: #fff;
    box-shadow: 0 2px 8px #fa9f1b44;
  }

  .reveal {
    visibility: hidden;
    position: relative;
    opacity: 0;
    overflow: hidden;
    transform-origin: left;
  }

  .headline {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
  }

  .grid {
    display: grid;
    place-items: center;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    grid-auto-rows: 1fr;
    margin-top: 40px;
  }

  .grid.three img {
    width: 100%;
    object-fit: cover;
    border-radius: 18px;
  }

  .grid div img {
    margin-bottom: 30px;
    width: 100%;
    height: 500px;
    object-fit: cover;
  }

  .grid p {
    padding: 10px 15px;
    font-size: 20px;
  }

  .grid div {
    box-shadow: 0 2px 3px rgba(0, 0, 0, .5);
    height: 100%;
  }

  .error-message {
    display: none;
    background: #e74c3c;
    color: white;
    text-align: center;
    padding: 15px;
    border-radius: 6px;
    margin-top: 20px;
  }

  .loading {
    display: none;
    text-align: center;
    margin-top: 20px;
  }

  .loading-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
  }

  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }

    100% {
      transform: rotate(360deg);
    }
  }

  .custom-slider .slide img {
    height: 500px;
    /* max-height: 500px; */
    object-fit: cover;
  }

  .navbar-brand img {
    width: 180px;
  }

  .social-icon:hover {
    text-decoration: none;
  }

  .image-wrapper img {
    height: 430px;
    object-fit: cover;
  }

  .slick-slide img {
    border-radius: 12px;
  }

  .thank-you .hero-text-wrapper {
    width: 100%;
    margin: 5% auto;
  }

  .thank-you .hero h1 {
    font-size: 4rem;
    text-align: center;
  }

  .section-9 {
    height: calc(100vh - 80px);
    position: relative;
    overflow: hidden;
  }

  .section-9-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
  }

  .section-9-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }

  .section-9-text {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100%;
  }
    .bg116483 {
    background: #116483;
  }
  .ft32{
    font-size: 32px !important;
  }
  .ft-24{
    font-size: 24px;
  }