@font-face {
    font-family: 'Tungsten';
    src: url('../fonts/Tungsten-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@keyframes bounce {
    0%, 100% { transform: translateY(-50%); }
    50% { transform: translateY(-30%); }
}

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

body {
    font-family: 'Albert Sans', sans-serif;
    font-weight: 400;
    overflow-x: hidden;
    line-height: 1.5;
}

.hero {
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 800px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    color: white;
    padding: 20px;
}

.bg-rotator {
    position: relative;
    width: 100%;
    min-height: 125vh;
    background-image: url('../images/hero1.webp');
    background-size: cover;
    background-position: center;
}

/* Use pseudo-element to layer second image */
.bg-rotator::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 1;
    transition: opacity 750s ease-in-out;
    pointer-events: none;
}

/* States for second image (fades over base) */

.bg-rotator.state-1::before {
    background-image: url('../images/hero1.webp');
}

.bg-rotator.state-2::before {
    background-image: url('../images/hero2.webp');
}

.bg-rotator.state-3::before {
    background-image: url('../images/hero3.webp');
}



.logo {
    height: auto;
    margin-bottom: 30px;
    z-index: 10;
}

.tagline-text {
    font-family: 'Tungsten', sans-serif;
    font-weight: 600;
    font-size: clamp(40px, 10vw, 148px);
    line-height: 1;
    letter-spacing: 0;
    margin: 20px 0;
    text-transform: uppercase;
    z-index: 5;
    width: 100%;
}

.tagline-image-container {
    position: relative;
    width: 100%;
    max-width: 837px;
    height: auto;
    min-height: 100px;
    margin: 20px 0;
}

.tagline-image {
    position: absolute;
    width: 100%;
    height: auto;
    opacity: 0;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    top: 0;
    left: 0;
}

.tagline-image.active {
    opacity: 1;
    transform: translateY(0);
}

.tagline-image.next {
    transform: translateY(20px);
}

.tagline-image.prev {
    transform: translateY(-20px);
}

.cta-button {
    width: 100%;
    max-width: 286px;
    height: 90px;
    background-color: #FB5B26;
    color: white;
    border: none;
    border-radius: 8px;
    font-family: 'Tungsten', sans-serif;
    font-size: clamp(24px, 5vw, 48px);
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 50px;
    position: relative;
    margin: 80px 0 40px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.24);
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.24));
    transition: all 0.3s;
}

.cta-button i {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    transition: transform 0.3s ease;
    animation: bounce 2s infinite;
}

.cta-button:hover {
    background-color: rgb(0, 171, 200);
    transform: translateY(-3px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
}



/* Full-width header section - UPDATED */
.full-width-header {
    width: 100%;
    padding: clamp(40px, 8vw, 80px) 20px 0;
    text-align: center;
    background-color: white;
}

.header-content {
    max-width: min(1800px, 90%);
    margin: 0 auto;
}

.full-width-header h2 {
    font-family: 'Tungsten', sans-serif;
    font-size: clamp(32px, 8vw, 85px);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0;
    margin: 0 0 clamp(20px, 4vw, 40px);
    text-transform: uppercase;
    word-break: break-word;
}

.full-width-header p {
    font-family: 'Albert Sans', sans-serif;
    font-weight: 400;
    font-size: 27.97px;
    line-height: 46px;
    letter-spacing: 0;
    margin: 0 auto 80px auto;
    max-width: 1400px;
    padding: 0 15px;
}

/* Main content section - UPDATED */
.main-content {
    width: 100%;
    padding: 0;
    background-color: white;
}

.container {
    max-width: 1560px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}


.left-column {
    width: 100%;
}

@media (min-width: 992px) {
    .container {
        flex-direction: row;
        gap: 20px;
    }

    .left-column {
        width: 300px;
        flex-shrink: 0;
    }

    .hs-form-field {
        width: 48%;
        display: inline-block;
        vertical-align: top;
        margin-right: 4%;
    }

    /* Clear every 2nd field to maintain grid */
    .hs-form-field:nth-child(2n) {
        margin-right: 0;
    }

}

.right-column {
    flex: 1;
}

/* Tabs - UPDATED */
.tabs {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    padding-bottom: 15px;
    overflow-x: auto;
    scrollbar-width: none; /* Hide scrollbar Firefox */
    -ms-overflow-style: none; /* Hide scrollbar IE/Edge */
}

.tabs::-webkit-scrollbar {
    display: none; /* Hide scrollbar Chrome/Safari */
}

@media (min-width: 992px) {
    .tabs {
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 5px;
    }
}

.tab-button {
    display: block;
    background: #D9D9D9;
    padding: 14px 15px;
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    font-size: clamp(14px, 2vw, 17px);
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    border: none;
    border-left: 4px solid transparent;
    cursor: pointer;
    transition: all 0.3s;
    color: #000;
    text-transform: uppercase;
    border-radius: 3px;
    flex: 1 0 auto;
    min-width: 120px;
    white-space: nowrap;
}

.tab-button:hover{
    background-color: #FB5B26;
    color: #fff!important;
}

@media (min-width: 992px) {
    .tab-button {
        text-align: left;
        white-space: normal;
    }
}

.tab-button:hover {
    color: #222;
}

.tab-button.active {
    color: #fff;
    background-color: #FB5B26;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* CTA Container */
.cta-container {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
    overflow: hidden;
    aspect-ratio: 17/9;
    border-radius: 8px;
}

.cta-image {
    width: 100%;
    height: 100%;
}

.cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
            135deg,
            rgba(0, 120, 140, 0.85) 0%,
            rgba(0, 80, 95, 0.85) 50%,
            rgba(0, 50, 60, 0.8) 100%
    );
    clip-path: polygon(
            0 0,      /* Top-left */
            55% 0,    /* Cut starts at 44% */
            83% 100%, /* Bottom at 73% */
            0% 100%   /* Bottom-left */
    );
    padding: 30px 20px;
    color: white;
    width: 100%;
    height: 100%
}

@media (min-width: 768px) {
    .cta-content {
        width: 70%;
    }
}

@media (min-width: 1200px) {
    .cta-content {
        width: 83%;
        padding: 80px 60px 60px 80px;
    }


    .orange-thin-bar {
        position: absolute;
        bottom: -85px; /* Adjust based on section height */
        left: 150px;
        z-index: 10; /* Ensure it appears above next section */
    }

    .tagline-text {
        position: relative;
        top: auto;
        left: auto;
        margin: 120px 0 0px 0;
    }

}

.cta-content h3 {
    font-family: 'Tungsten', sans-serif;
    font-weight: 600;
    font-size: 121.95px;
    line-height: 100%;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.cta-content h3 span {
    display: block;
}

.cta-content p {
    font-family: 'Albert Sans', sans-serif;
    font-weight: 400;
    font-size: clamp(15px, 2vw, 20px);
    line-height: 1.4;
    letter-spacing: 0;
    margin-bottom: 25px;
    max-width: 450px;
}

.explore-button {
    display: inline-block;
    background-color: #FB5B26;
    color: white;
    padding: 13px 30px 10px;
    font-family: 'Tungsten', sans-serif;
    font-weight: 600;
    font-size: clamp(18px, 3vw, 32.18px);
    line-height: 100%;
    letter-spacing: 0;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
    text-transform: uppercase;
}

.explore-button:hover {
    background-color: rgb(0, 171, 200);
}

.logo-mark {
 text-align:right;
 margin-top: -180px;
}

.logo-mark img {
    width: 350px;
    height: auto;
}

/* Mobile adjustment */
@media (max-width: 1200px) {
    .logo-mark {
        margin-top: -130px;

    }
    .logo-mark img {
        width: 250px;

    }

    .explore-button, .hs-button{
        font-size: 25px!important;
    }

    .orange-thin-bar{
        display: none;
    }

    .hero{
        min-height: 100vh;
    }

}

/* Desktop Layout */
@media (min-width: 992px) {
    .hero {
        padding-left: 150px;
        align-items: flex-start;
        justify-content: center;
    }


    .logo {
        position: absolute;
        top: 88px;
        margin: 0;
    }

    
    .tagline-image-container {
        margin: 0;
        height: 283px;
    }
    
    .cta-button {
        margin: 60px 0  50px;

    }
}



/* Tablet Layout */
@media (min-width: 768px) and (max-width: 991px) {
    .hero {
        padding-left: 80px;
    }

    .logo{
        margin-bottom: 180px;
    }
    
    .tagline-text {
        font-size: 80px;
        margin-bottom: 0px;
    }
    
    .tagline-image-container {
        max-width: 600px;
        height: 200px;
        margin-bottom: 80px;
    }
    
    .cta-button {
        height: 80px;
        font-size: 40px;
        padding-right: 10px;
    }

    .cta-button i {
        right: 30px;
        top: 48%;
    }
}

/* Mobile Layout */
@media (max-width: 767px) {
    .hero {
        padding: 0px 30px 0px 30px;
        text-align: center;
    }

    .logo{
        margin: 0 auto 140px;
        width: 170px;
    }
    
    .tagline-text {
        text-align: left;
        margin-bottom: -20px;
    }
    
    .tagline-image-container {
        min-height: 80px;
        max-width: 400px;
        margin-bottom: 40px;
    }
    
    .cta-button {
        height: 60px;
        font-size: 34px;
        padding-right: 10px;
        max-width: 230px;
    }
    
    .cta-button i {
        right: 25px;
        font-size: 24px;
    }



}

/*Testimonial section*/

.testimonials-section {
    max-width: 1600px;
    margin: 60px auto 140px;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.testimonial-box {
    border-radius: 8px;
    padding: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    color: white;
}


/* Custom background colors for each box */
.testimonial-box:nth-child(1) {
    background-color: #FB5B26; /* Orange */
}

.testimonial-box:nth-child(2) {
    background-color: #00ABC8; /* Teal */
}

.testimonial-box:nth-child(3) {
    background-color: #00404B; /* Dark Teal */
}

.testimonial-box:nth-child(4) {
    background-color: #474747; /* Gray */
}

.testimonial-text {
    font-family: 'Albert Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    letter-spacing:0;
    margin-top: 20px;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-author {
    font-family: 'Tungsten', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 29px;
    line-height: 29px;
    letter-spacing: 0px;
}

/* Tablet */
@media (max-width: 1024px) {
    .testimonials-grid {
        gap: 20px;
    }

    .testimonial-box {
        padding: 60px 30px;

    }

    .testimonials-section {
        margin: 40px auto 80px;
        padding: 0 25px;
    }
}

/* Mobile */
@media (max-width: 768px) {

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Base Styles */
.trial-section {
    position: relative;
    overflow: hidden;
}

/* Background Elements */
.trial-section__background--right {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            15deg,
            #195059 0%,
            #2e6b75 50%,
            #008299 100%
    );
    clip-path: polygon(0 0, 16% 0, 65% 100%, 0% 100%);
    -webkit-clip-path: polygon(0 0, 16% 0, 65% 100%, 0% 100%);
    z-index: -1;
}

.trial-section__background--left {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            118deg,
            #00ABC8 0%,
            #0e8396 50%,
            #008299 100%
    );
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    -webkit-clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: -2;
}

/* Layout Container */
.trial-section__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 140px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

/* Content Column */
.trial-section__content {
    padding-right: 40px;
    width: 100%;
}

/* Typography */
.trial-section__heading {
    color: #fff;
    margin-bottom: 20px;
    font-family: 'Tungsten', sans-serif;
    font-weight: 600;
    font-size: clamp(32px, 8vw, 147px);
    line-height: 100%;
}

.trial-section__intro {
    font-family: 'Albert Sans', sans-serif;
    font-weight: 400;
    font-size: clamp(16px, 2vw, 25px);
    line-height: clamp(160%, 140%, 100%);
    letter-spacing: 0;
    color: #fff;
}

/* Disclaimer Section */
.trial-section__disclaimer {
    margin-top: 20px;
    padding-top: 20px;
}

.trial-section__disclaimer-box {
    background: #1299AF;
    padding: 20px 30px;
    font-family: 'Albert Sans', sans-serif;
    font-size: 15px;
    color: #fff;
    line-height: 22px;
    letter-spacing: 0;
    margin-top: 20px;
    border-radius: 6px;
}

.trial-section__disclaimer-box a,
.trial-section__disclaimer-box a:visited,
.trial-section__disclaimer-box a:hover,
.trial-section__disclaimer-box a:active {
    color: #fff !important; /* Forces white in all states */
    text-decoration: underline; /* Optional: Ensures underline consistency */
}


/* Form Column */
.trial-section__form-container {
    padding: 0 30px;

}


/* Form Container */
.hs-form-container {
    font-family: 'Albert Sans', sans-serif;
    max-width: 100%;
    margin: 0 auto;
}

/* Form Field Styles */
.hs-form-field {
    margin-bottom: 20px;
}

.hs-form-field label{
    color: red;
}

.hs-form-field label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    font-size: 16px;
}

.hs-form-field label span {
    color: #ffffff;
}

span.hs-form-required{
    color: red!important;
}

.hs-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.hs-input:focus {
    outline: none;
    border-color: #00ABC8;
    box-shadow: 0 0 0 2px rgba(0, 171, 200, 0.2);
}

/* Select Dropdown Styles */
.hs-form-field select.hs-input {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 35px;
}

/* Checkbox Styles */
.hs-form-booleancheckbox {
    display: flex;
    align-items: center;
    margin-top: 25px;
}

.hs-form-booleancheckbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    accent-color: #00ABC8;
}

.hs-form-booleancheckbox label {
    font-weight: normal;
    margin-bottom: 0;
}

/* Disclaimer Text */
.form-disclaimer {
    font-size: 12px;
    color: #777;
    margin-top: 8px;
    line-height: 1.4;
}

/* Submit Button */
.hs-button {
    width: 140px;
    height: 58px;
    background-color: #FB5B26;
    font-family: 'Tungsten', sans-serif;
    text-transform: uppercase;
    color: white;
    border: none;
    padding: 14px;
    font-size: 32px;
    line-height: 100%;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 15px;
    transition: background-color 0.3s;
    display: inline-block;
}

.hs-button:hover{
    background: rgb(0, 171, 200);
}

.hs_submit{
    display: inline-block;
    float: right;
}

div.hs-richtext{
    color: #fff;
}


.legal-consent-container~.hs_recaptcha {
    margin-top: 18px;
    display: inline-block;
}





/* Responsive Adjustments */
@media (max-width: 768px) {
    .hs-form-container {
        padding: 0px;
    }

    .trial-section__form-container {
        padding: 10px 0;
    }

    .hs_submit{
        display: block;
        width: 100%
    }

    .hs-button{
        width: 100%;
        display: block;
    }

    .legal-consent-container~.hs_recaptcha {
        display: block;
    }

    .trial-section__container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 130px 25px 60px;
    }

    .trial-section__content {
        padding-right: 0;
    }

    .trial-section__disclaimer {
        margin-top: 0px;
        padding-top: 0px;
    }
}

/* Grid Layout for Name Fields */
@media (min-width: 481px) {
    .hs_name {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}


/* Footer Styles */
.footer {
    background-color: #3C4652;
    padding: 40px 20px;
    font-family: 'Niveau Grotesk', sans-serif;
    color: white;
}

.footer__container {
    max-width: 1560px;
    margin: 0 auto;
    padding: 0 0px;
    display: flex;
    flex-direction: column;
}

.footer__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__logo img {
    margin-bottom: 10px;
}

.footer__logo span {
    display: block;
    font-weight: 400;
}

.footer__copyright {
    font-size: 14px;
    line-height: 1.5;
}

.footer__copyright strong {
    font-weight: 700;
}

.footer__social {
    display: flex;
    gap: 20px;
}

.footer__social a {
    color: white;
    font-size: 20px;
    transition: opacity 0.3s;
}

.footer__social a:hover {
    color: #00ABC8;
}

.hs-form-private > .legal-consent-container a {
    color: white;
}

.hs-form-private > .legal-consent-container a:hover {
    color: #00404B;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer__content {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .footer__logo, p.footer__copyright{
        margin: 0 auto 10px;
        text-align: center;
    }

    .footer__social {
        margin-top: 20px;
        align-self: center;
    }
}



/* Main Layout */
.video-gallery-section {
    max-width: 1920px;
    margin: 150px auto 70px;
    padding: 0 0px;
    position: relative;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* Left Column - Text Content */
.text-content {
    position: relative;
    margin-top: 20px;
    padding-left: 150px;
}

.gallery-title {
    font-family: 'Tungsten', sans-serif;
    font-size: clamp(32px, 8vw, 85px);
    font-weight: 600;
    letter-spacing: 0px;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 40px;
    color: #000;
    line-height: 1.2;
}

.gallery-description {
    font-family: 'Albert Sans', sans-serif;
    font-weight: 400;
    font-size: 25px;
    line-height: 45px;
    letter-spacing: 0;
    color: #000000;
}

/* Thumbnail Navigation */
.thumbnail-nav-container {
    position: absolute;
    bottom:0;
    right:0;
    width: 100%;
    z-index: 0;
}

.thumbnail-nav {
    position: relative;
    overflow: hidden;
    padding: 20px 0 0;
}

.thumbnail-container {
    display: flex;
    margin-left: -100px;
    padding-top: 60px;
    gap: 10px;
    width: max-content;
    transition: transform 0.5s ease; /* Changed from 0.3s to 0.5s for smoother scrolling */
    padding-right: 120px;
    will-change: transform; /* Optimize for performance */
}


.thumbnail {
    flex: 0 0 243px;
    height: 150px;
    position: relative;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid #cccccc;
}

.thumbnail.active {
    border: 3px solid #FB5B26;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 18px;
    background: rgba(0,0,0,0.5);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Add this new style for YouTube thumbnail containers */
.youtube-thumbnail {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

/* Right Column - Video Display */
.video-display {
    position: relative;
    height: fit-content;
    z-index: 1;
}

.main-video-container {
    position: relative;
}

.main-video {
    position: relative;
    padding-bottom: 80%;
    height: 0;
    margin-right: 20px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.main-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Navigation Arrows */
.nav-arrow {
    position: absolute;
    top: 10%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background-color: #00ABC8;
    color: white;
    border: none;
    border-radius: 27%;
    font-size: 25px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
    transition: all 0.3s;
}

.nav-arrow:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.nav-arrow.left {
    left: 150px;
}

.nav-arrow.right {
    left: 220px;
}

/* Scroll Container - Only show 4 thumbnails at a time */
.thumbnail-scroll-container {
    overflow: hidden;
    position: relative;
}

/* Responsive Styles */

@media (min-width:992px) and (max-width:1400px) {
    /* tabs Styles */

    .left-column {
        width: 200px;
        margin-right: 10px;
        font-size: 16px;
    }

    .tab-button{
        font-size: 15px;
    }



}

@media (min-width:1200px) and (max-width:1400px){

    .cta-container{
        aspect-ratio: 16 / 9;
    }

    .cta-content h3{
        font-size: 100px!important;
    }

    .cta-content {
        padding: 40px 60px 60px 60px;
    }

}



@media (min-width:1400px) and (max-width:1560px) {
    .cta-container{
        aspect-ratio: 15 / 9;
    }
    .cta-container p {
        max-width: 410px;
    }
}

@media (min-width:1200px) and (max-width:1560px){
    .gallery>.carousel-wrapper>.content,
    .gallery>.carousel-wrapper>.carousel-buttons {
        left: 80px!important;
    }
}

@media (min-width: 1561px){
    .gallery>.carousel-wrapper>.content,
    .gallery>.carousel-wrapper>.carousel-buttons {
        left: 150px!important;
    }

}


@media (min-width:1259px) and (max-width:1560px) {
    .gallery-description, .full-width-header p{
        font-size: 24px;
        line-height: 35px;
    }
}

@media (min-width:992px) and (max-width:1560px){

    .hero{
        height: 900px;
    }

    .hero,
    .text-content{
        padding-left: 80px;!important
    }

    .tagline-text{
        font-size: 7vw;
    }

    .cta-button {
        height: 80px;
        font-size: 40px;
        padding-right: 10px;
    }

    .tagline-image-container {
        max-width: 700px;
    }

    .orange-thin-bar{
        left: 80px;
    }

    .gallery-title, .full-width-header h2, .trial-section__heading{
        font-size: 65px;
        margin-bottom: 25px;
    }

    .gallery-description, .full-width-header p{
        font-size: 22px;
        line-height: 35px;
    }

    .gallery>.carousel-wrapper>.carousel-buttons{
        bottom: 220px !important;
    }


    .gallery>.carousel-wrapper>.content{
        width: 44vw!important;
    }

    .nav-arrow{
        width: 35px;
        height: 35px;
        font-size: 20px;
    }

    .nav-arrow.left {
        left: 75px;
    }

    .nav-arrow.right {
        left: 130px;
    }

}

@media (max-width: 1560px){

    .nav-arrow{
        top:28%;
    }

    .thumbnail {
        flex: 0 0 150px;
        height: 100px;
    }


}



@media (min-width:992px) and (max-width:1200px){

    .content-grid{
        height: 100%;
        min-height:500px;
    }
    .main-video{
        padding-bottom: 110%;
    }

    .tagline-text {
        position: relative;
        top: auto;
        left: auto;
        margin: 240px 0 0px 0;
    }

    .cta-content h3 {
        font-size: 65px;
    }

    .cta-container {
        aspect-ratio: 15 / 9!important;
    }

    .cta-container p {
        font-size: 18px;
        max-width: 300px!important;
    }


}


@media (max-width: 1200px) {

    .cta-button{
        margin-top: 40px;
    }

    .gallery-title, .full-width-header h2{
        margin-bottom: 2vw;
    }

    .thumbnail-scroll-container {
        margin: 0 auto;
        width: 100%;
    }

    .thumbnail-container{
        padding-top: 0;
        margin-left: 0;
        padding-right: 0px;
    }

    .thumbnail-nav{
        padding: 0;
    }

    .container{
        gap: 0;
    }

    .nav-arrow.right {
       display: none
    }
    
    .nav-arrow.left {
        display: none;
    }

    .thumbnail {
        flex: 0 0 180px;
        height: 120px;
    }

    .gallery>.carousel-wrapper{
        padding: 0 20px;
        position: relative;

    }

    .gallery>.carousel-wrapper>.carousel{
        align-items: flex-start!important;
    }

    .gallery>.carousel-wrapper>.content{
        width: 100%!important;
    }

    .logo-mark{
        display: none;
    }


}

@media (max-width: 992px) {

    .video-gallery-section{
        padding: 0 40px;
        text-align: center;
    }

    .text-content{
        padding-left: 0;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .text-content {
        position: static;
    }

    .main-video {
        max-width: 100%;
        margin: 0 auto;
        padding-bottom: 60%;
    }


    .cta-container{
        aspect-ratio: 22 / 9;
    }

    .cta-content{
        width: 100%;
        clip-path: none;
        padding: 40px 25px;
        background: linear-gradient(
                135deg,
                rgba(0, 120, 140, 0.95) 0%,
                rgba(0, 80, 95, 0.65) 50%,
                rgba(0, 50, 60, 0.9) 100%);
    }

    .cta-content h3 span {
        display: inline-block;
    }

    .explore-button{
        padding: 13px 20px 10px;
        font-size: 23px !important;
    }

    .cta-content h3{
        font-size: 8vw;
    }

    .cta-content p{
        max-width: 100%;
        line-height: 150%;
        font-size: 18px;
        margin-bottom: 15px;
    }

    .gallery-description, .full-width-header p {
        font-size: 20px;
        line-height: 35px;
    }

    .trial-section__background--right{
        clip-path: polygon(0 0, 10% 0, 75% 100%, 0% 100%);
        -webkit-clip-path: polygon(0 0, 10% 0, 100% 100%, 0% 100%);
    }

    .trial-section__background--left{
        clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 20%);
        -webkit-clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 20%);
    }

    .thumbnail-nav-container {
        position: relative;
    }

    .gallery>.carousel-wrapper {
        padding-bottom: 0px!important;
    }

    .cta-image {
        width: 100%;  /* Or fixed width (e.g., 500px) */
        height: 100%; /* Or any fixed/relative height */
        overflow: hidden; /* Optional: Clips overflowing parts */
    }

    .cta-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: right center; /* Aligns right + centers vertically */
    }


}

@media (max-width: 768px) {

    .cta-button{
        margin-top: 20px;
    }

    .video-gallery-section {
        padding: 0 20px;
        margin: 60px auto;
    }


    .thumbnail {
        flex: 0 0 140px;
        height: 90px;
    }

    .full-width-header p{
        margin-bottom: 40px;
    }

    .nav-arrow {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .main-video {
        max-width: 100%;
    }

    .thumbnail-scroll-container {
        width: 100%;
        padding: 0;
    }

    .gallery-description, .full-width-header p , .testimonial-text{
        font-size: 18px;
        line-height: 25px;
        text-align: center;
        padding: 20px 0;
    }


    .cta-container {
        aspect-ratio: 10 / 9;
    }


    .testimonial-box img {
        display: flex;
        justify-content: center;
        width: 55px!important;
        margin: 0 auto;
        text-align: center;
    }

    .testimonial-author{
        text-align: center;
    }

}

