/*Font Styles*/
@font-face {
    font-family: 'TT Norms Pro';
    src: url('../fonts/TT Norms Pro Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'TT Norms Pro';
    src: url('../fonts/TT Norms Pro Italic.otf') format('opentype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'TT Norms Pro';
    src: url('../fonts/TT Norms Pro Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'TT Norms Pro';
    src: url('../fonts/TT Norms Pro Bold Italic.otf') format('opentype');
    font-weight: bold;
    font-style: italic;
}

/* Body Styles */
body {
    margin: 50px;
    font-family: 'TT Norms Pro', sans-serif;
    background-color: #F8F9F9;
    overflow-x: hidden;
    cursor: url('../icons/cursor-normal.png'), auto;
}

header {
    padding: 20px;
}

/* Announcement Banner */
.announcement-banner {
    width: 100%;
    background-color: #ff0084;
    color: white;
    text-align: center;
    padding: 15px 20px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    justify-content: center; /* Center the text */
    align-items: center;
}

.announcement-banner p {
    margin: 0;
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 400;
    flex-grow: 1;
}

.close-banner {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    position: absolute;
    right: 50px;
}

/* Header  */
.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
}

.buttons {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
    font-family: 'TT Norms Pro', sans-serif;
    border-radius: 7px;
}

.btn-primary {
    background-color: #ff0084;
    color: white;
}

.btn-primary:hover {
    background-color: #e60073;
}

.btn-secondary {
    color: #ff0084;
    background-color: #F1F3FF;
    border: 2px solid #ff0084;
}

.btn-secondary:hover {
    background-color: #ff0084;
    color: white;
}

/* Hero Section */
.hero {
    text-align: center;
    padding-top: 30px;
    padding: 0 20px;
}

.hero-text {
    font-size: 98px;
    font-weight: 600;
    color: #2E3A59;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.word {
    display: inline-block;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.description {
    font-size: 22px;
    font-weight: 400;
    color: #2E3A59;
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 30px;
}

.highlight {
    color: #ff0084;
    font-weight: 600;
}

.video-container {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.embedded-video-wrapper {
    margin-top: 4 rem;
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    border-radius: 1.25rem;
    overflow: hidden; /* Ensure the rounded corners are applied */
}

.embedded-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 1.25rem;
}

/* Section Below Hero */

.section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 0;
    margin-top: 20px;
    margin-bottom: 20px;
}

.content {
    max-width: 50%;
}

.content h1 {
    font-size: 48px;
    font-weight: 800;
    color: #2E3A59;
}

.content p {
    font-size: 18px;
    font-weight: 400;
    color: #2E3A59;
    margin-top: 20px;
}

.video-wrapper {
    width: 53rem;
    height: 30rem;
    flex-shrink: 0;
    border-radius: 1.25rem;
    overflow: hidden;
}

.iframe-video {
    width: 100%;
    height: 100%;
    border: none;
}

/* Tab Menu Section */

.tab-menu-section {
    position: relative;
    padding: 60px 20px;
    background: linear-gradient(180deg, #343C6A 0%, #08090D 100%);
    color: #FFF;
    text-align: left;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    box-sizing: border-box;
}

.tab-menu-container {
    position: relative;
}

.tab-menu-section h2 {
    font-size: 4.25rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #FFF;
    text-align: left;
    padding: 0 50px;
}

.tab-menu-nav {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.tab-menu-nav a {
    text-decoration: none;
    transition: color 0.3s, width 0.3s, height 0.3s;
    cursor: pointer;
    font-family: 'TT Norms Pro', sans-serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    flex-shrink: 0;
    width: calc((100% - 200px) / 5);
    text-align: center;
    color: #5E658F; /* Default color for inactive tabs */
}

.tab-menu-nav a:hover,
.tab-menu-nav a:focus,
.tab-menu-nav a.active {
    color: #FFF; /* Color for active and focused tabs */
}

.tab-content {
    display: none;
    border-radius: 8px;
    overflow: hidden;
    width: calc(100% - 100px);
    margin: 0 auto;
}

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

.tab-content video {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    margin-top: 60px;
}

.flip-text {
    display: inline-block;
    animation: flip 6s infinite;
    font-weight: 700;
    color: #E80C89;
}

@keyframes flip {
    0%, 33% {
        content: "THE FEATURES";
    }
    34%, 66% {
        content: "THE FUTURE";
    }
    67%, 100% {
        content: "PRSNTR";
    }
}

/* AI Video section */

.background-video-section {
    position: relative;
    height: 70.0625rem;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    box-sizing: border-box;
}

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

.ai-gradient-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, #343C6A 0%, #313964 51.5%, #08090D 100%);
    opacity: 0.99;
    mix-blend-mode: multiply;
    z-index: 0;
}

.ai-content {
    text-align: center;
    color: #FFF;
    max-width: 70%;
    z-index: 1;
    position: relative;
    padding: 20px;
}

.ai-content h2 {
    font-size: 6.125rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.ai-content h3 {
    font-size: 1.75rem;
    font-weight: 400;
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto 10px;
}

.ai-content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto 10px;
}

/* Features Section */
.features-section {
    text-align: center;
    padding: 60px 20px;
}

.features-section h2 {
    color: #343C6A;
    text-align: center;
    font-family: 'TT Norms Pro', sans-serif;
    font-size: 5.1875rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.features-section p {
    color: #343C6A;
    text-align: center;
    font-family: 'TT Norms Pro', sans-serif;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin: auto;
    max-width: 800px;
    margin-bottom: 40px;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.feature-card {
    width: 28.75rem;
    height: 39.6875rem;
    flex-shrink: 0;
    border-radius: 0.5625rem;
    background: linear-gradient(180deg, #343C6A 0%, #08090D 100%);
    mix-blend-mode: multiply;
    padding: 20px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.feature-card h3 {
    width: 19.75rem;
    height: 1.8125rem;
    flex-shrink: 0;
    color: #FFF;
    text-align: center;
    font-family: 'TT Norms Pro', sans-serif;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-top: 20px;
}

.feature-card p {
    width: 21.8125rem;
    height: 3.6875rem;
    flex-shrink: 0;
    color: #FFF;
    text-align: center;
    font-family: 'TT Norms Pro', sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 10px;
    margin-bottom: 20px;
}

.feature-card img {
    width: 16.25rem;
    height: 16.25rem;
    flex-shrink: 0;
    margin-bottom: 20px;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Testimonial Section */
.testimonials-section {
    margin-bottom: 0; /* Remove bottom margin */
    padding-bottom: 0; /* Remove bottom padding */
    text-align: center;
}

.testimonials-container {
    position: relative;
    width: calc(100% + 100px);
    left: -50px;
    background: linear-gradient(180deg, #343C6A 0%, #313964 51.5%, #08090D 100%);
    mix-blend-mode: multiply;
    margin-top: 60px;
    margin-bottom: 0; /* Ensure no bottom margin */
    padding: 50px;
    justify-content: center; /* Adjust padding to avoid extra space */
}

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

.testimonials-section-header .title {
    color: #FFF;
    text-align: center;
    font-family: 'TT Norms Pro', sans-serif;
    font-size: 3.375rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}

.testimonials-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    max-width: 48rem;
    min-height: 20rem; /* Set a minimum height to ensure uniformity */
    border-radius: 20px;
    background-color: white;
}

.testimonials-item .info {
    display: flex;
    align-items: center; /* Vertically center the content */
}

.testimonials-item img {
    width: 80px; /* Fixed width for the image */
    height: 80px; /* Fixed height for the image */
    margin-right: 20px;
    border-radius: 15px; /* Rounded rectangle */
    object-fit: cover; /* Ensure the image covers the area */
}

.testimonials-item .test-box {
    display: flex;
    flex-direction: column; /* Stack name and job vertically */
    justify-content: center; /* Center the name and job vertically relative to the image */
}

.testimonials-item .name {
    font-size: 24px;
    text-transform: capitalize;
    font-weight: 600;
    margin: 0; /* Remove any margin */
    text-align: left; /* Ensure text alignment is left */
}

.testimonials-item .job {
    text-transform: capitalize;
    font-size: 16px;
    color: #666; /* Subtle color difference for job title */
    margin-top: 0; /* Remove margin to remove space between name and job */
    text-align: left; /* Ensure text alignment is left */
}

.testimonials-item p {
    text-align: left; /* Align text to the left */
    margin-top: 20px;
    color: #333; /* Adjust text color for better readability */
    flex-grow: 1; /* Make the paragraph take up the remaining space */
}

.testimonials-item .rating {
    margin-top: 15px;
    font-size: 14px;
    text-align: left;
    color: #E80C89;
}

.collaboration {
    align-items: center;
}

.collaboration p {
    font-size: 1.25rem;
    font-family: 'TT Norms Pro', sans-serif;
    color: #343C6A;
}

.logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
}

.logos img {
    max-width: 200px;
    max-height: 70px;
    object-fit: contain;
}

/* Contact Form */
.contact-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
    margin-bottom: 60px;
}

.contact-content {
    max-width: 50%;
}

.contact-content h2 {
    width: 26.0625rem;
    height: 5rem;
    flex-shrink: 0;
    color: #343C6A;
    font-family: 'TT Norms Pro', sans-serif;
    font-size: 3.1875rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 20px;
}

.contact-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2E3A59;
    margin-bottom: 10px;
}

.contact-description {
    font-size: 1rem;
    font-weight: 400;
    color: #2E3A59;
    margin-bottom: 40px;
}

.contact-form {
    max-width: 40%;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    font-size: 1rem;
    font-weight: 500;
    color: #2E3A59;
    margin-bottom: 5px;
}

.contact-form .required {
    color: #ff0084;
}

.contact-form input,
.contact-form textarea {
    font-size: 1rem;
    font-family: 'TT Norms Pro', sans-serif;
    width: 31.125rem;
    border-radius: 0.375rem;
    background: #FFF;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    outline: none;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #ff0084;
}

.contact-form textarea {
    height: 9.5rem;
    resize: vertical;
}

.contact-form button {
    display: flex;
    width: 9.5rem;
    height: 2.75rem;
    padding: 0.9375rem 2rem;
    justify-content: center;
    align-items: center;
    gap: 0.625rem;
    flex-shrink: 0;
    border-radius: 0.4375rem;
    background: #e0e0e0; /* Default grey background */
    color: #fff;
    font-family: 'TT Norms Pro', sans-serif;
    font-size: 1rem;
    cursor: not-allowed;
    border: none;
    transition: background-color 0.3s ease;
}

.contact-form button:enabled {
    cursor: pointer;
    background-color: #E80C89; /* Active pink background */
}

.contact-form button:enabled:hover {
    background-color: #d00978;
}

.contact-content h2.french-font-size {
    font-size: 2.5rem;
}

/* Newsletter Section */
.newsletter-section {
    position: relative;
    height: 47.25rem;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(100% + 100px);
    left: -50px;
    margin-top: 0; /* Remove top margin */
    padding-top: 0; /* Remove top padding */
}

#background-video {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    z-index: -1;
}

.gradient-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, #343C6A 0%, #313964 51.5%, #08090D 100%);
    opacity: 0.99;
    mix-blend-mode: multiply;
    z-index: 0;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.content-wrapper {
    text-align: center;
    color: #FFF;
    max-width: 70%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.content-wrapper h2 {
    width: 70.25rem;
    height: 9.3125rem;
    flex-shrink: 0;
    font-family: 'TT Norms Pro', sans-serif;
    font-size: 3rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.content-wrapper p {
    width: 51.1875rem;
    height: 2.5rem;
    flex-shrink: 0;
    font-family: 'TT Norms Pro', sans-serif;
    font-size: 1.375rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.newsletter-form input {
    width: 30rem; /* Adjust width as needed */
    height: 3.81rem;
    flex-shrink: 0;
    border-radius: 0.4375rem;
    border: none;
    outline: none;
    font-size: 1rem;
    padding-left: 10px;
}

.newsletter-form button {
    display: flex;
    width: 9.652rem;
    height: 3.81rem;
    padding: 10px;
    justify-content: center;
    align-items: center;
    gap: 0.625rem;
    flex-shrink: 0;
    border-radius: 0.4375rem;
    background: #E80C89;
    color: #FFF;
    font-family: 'TT Norms Pro', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.newsletter-form button:hover {
    background: #d00978;
}

/* Footer Section */
.footer-section {
    padding: 20px 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    width: 150px;
    margin-bottom: 10px;
}

.footer-contact {
    margin-top: 10px;
}

.footer-contact p {
    margin: 0;
    color: #2E3A59;
    font-size: 14px;
    font-weight: 500;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.footer-nav {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}

.footer-nav a {
    color: #2E3A59;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #ff0084;
}

.footer-nav-connect {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-nav-connect span {
    color: #2E3A59;
    font-size: 14px;
    font-weight: 500;
}

.footer-nav-connect a {
    color: #2E3A59;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-nav-connect a:hover {
    color: #ff0084;
}

/* Translation Feature */
.language-selector {
    position: relative;
    display: inline-block;
    margin-left: 10px;
}

.lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 10px 20px;
}

.lang-btn img {
    width: 31px;
    height: 20px;
    margin-right: 5px;
}

.arrow {
    color: #ff0084;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    min-width: 120px;
    margin-top: 5px;
    border-radius: 10px;
    overflow: hidden;
}

.dropdown-content a {
    color: black;
    padding: 10px 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.dropdown-content a img {
    width: 31px;
    height: 20px;
    margin-right: 10px;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.language-selector:hover .dropdown-content {
    display: block;
}

/* For Iphones, Ipads airs  */
@media (max-width: 821px) {
    body {
        margin: 20px;
        overflow-x: hidden;
    }

    #blurry-circle {
        display: none;
    }

    .announcement-banner {
        display: none;
    }

    .language-selector {
        display: none;
    }

    .hero-container {
        flex-direction: column;
        align-items: center;
        max-width: 100%;
    }

    .logo img {
        height: 30px;
        margin-bottom: 20px;
    }

    .buttons {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0;
        width: 100%;
    }

    .btn {
        width: 50%;
        border-radius: 0;
        text-align: center;
        padding: 15px 0;
        font-size: 18px;
        margin: 0;
    }

    .btn-primary {
        background-color: #ff0084;
        border-top-left-radius: 0.5rem;
        border-bottom-left-radius: 0.5rem;
    }

    .btn-secondary {
        background-color: #343C6A;
        color: white;
        border: 0;
        border-top-right-radius: 0.5rem;
        border-bottom-right-radius: 0.5rem;
    }

    .hero {
        text-align: center;
        padding: 30px 20px;
    }

    .hero-text {
        font-size: 2.3rem;
        font-weight: 800;
        color: #343C6A;
        text-transform: uppercase;
        width: 100%;
        height: 2.75rem;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin: 0 auto;
        margin-bottom: 20px;
    }

    .description {
        width: 100%;
        max-width: 23.875rem;
        height: 4.5rem;
        color: #343C6A;
        text-align: center;
        font-size: 0.9375rem;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        margin: 0 auto;
    }

    .highlight {
        color: #E80C89;
        font-size: 0.9375rem;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
    }

    .video-container {
        margin-top: 1rem;
    }

    .section {
        flex-direction: column;
        align-items: flex-start;
    }

    .content {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .content h1 {
        font-size: 1.5rem;
        font-style: normal;
        font-weight: 700;
    }

    .content p {
        font-size: 0.9375rem;
        font-style: normal;
        font-weight: 400;
    }

    .video-wrapper {
        width: 100%;
        height: 14.25rem;
        border-radius: 0.5rem;
    }

    .video-wrapper video {
        width: 100%;
        height: 100%;
    }

    .tab-menu-section {
        padding: 20px 20px;
    }

    .tab-menu-section h2 {
        font-size: 1.6875rem;
        padding: 0;
    }

    .tab-menu-nav {
        flex-direction: column;
        gap: 10px;
    }

    .tab-menu-nav a {
        width: 100%;
        text-align: left;
    }

    .tab-content {
        width: 100%;
    }

    .tab-content video {
        width: 100%;
        height: auto;
        border-radius: 0.5rem;
        margin-top: 20px;
    }

    .features-section {
        padding: 20px;
    }

    .features-section h2 {
        font-size: 1.3rem;
        margin-bottom: 20px;
        width: 100%;
    }

    .features-section p {
        font-size: 0.9375rem;
        margin-bottom: 20px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-card {
        width: 90%;
        height: auto;
    }

    .feature-card img {
        width: 5rem;
        height: 5rem;
    }

    .feature-card p {
        width: 100%;
        text-align: center;
        font-size: 0.9rem;
        font-style: normal;
        font-weight: 400;
    }

    .feature-card h3 {
        width: 100%;
        text-align: center;
        font-size: 1rem;
        font-style: normal;
        font-weight: 600;
    }

    .collaboration p {
        font-size: 1.125rem;
        font-style: normal;
        font-weight: 600;
    }

    .logos img {
        max-width: 100px;
        max-height: 30px;
        margin-top: 15px;
    }

    .testimonials-background-wrapper {
        display: none;
    }

    .testimonials-background-wrapper {
        width: calc(100% + 40px); /* Full width */
        left: -20px;
    }

    .testimonials-background h2 {
        font-size: 1.5rem;
    }

    .testimonial-card {
        width: calc(100% - 20px);
    }

    .contact-section {
        flex-direction: column;
        align-items: left;
    }

    .contact-content,
    .contact-form {
        max-width: 100%;
    }

    .contact-content {
        text-align: left;
        margin-bottom: 20px;
    }

    .contact-content h2 {
        font-size: 1.6875rem;
        font-style: normal;
        font-weight: 700;
    }

    .contact-form {
        width: 90%;
    }

    .contact-subtitle {
        font-size: 0.9375rem;
        font-style: normal;
        font-weight: 700;
    }

    .contact-description {
        font-size: 0.9375rem;
        font-style: normal;
        font-weight: 500;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
    }

    .newsletter-section {
        height: 26.3125rem;
    }

    .content-wrapper h2 {
        font-size: 1.5rem;
        font-style: normal;
        font-weight: 700;
        width: 90%;
        margin-bottom: 10px;
    }

    .content-wrapper p {
        font-size: 0.9375rem;
        font-style: normal;
        font-weight: 500;
        width: 90%;
        margin-bottom: 20px;
    }

    .newsletter-form {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        align-items: center;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
        box-sizing: border-box;
        height: 2.875rem;
        flex-shrink: 0;
        border-radius: 0.4375rem;
        border: none;
        outline: none;
        font-size: 1rem;
    }

    .newsletter-form input {
        padding-left: 10px;
    }

    .newsletter-form button {
        justify-content: center;
        align-items: center;
        background: #E80C89;
        color: #FFF;
        font-family: 'TT Norms Pro', sans-serif;
        font-weight: 600;
        cursor: pointer;
    }

    .newsletter-form button:hover {
        background: #d00978;
    }

    .footer-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-left,
    .footer-right {
        width: 100%;
    }

    .footer-logo {
        margin-bottom: 10px;
    }

    .footer-contact {
        margin-top: 10px;
        text-align: left;
    }

    .footer-contact p {
        font-size: 12px;
    }

    .footer-right {
        align-items: left;
        margin-top: 20px;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: left;
        text-align: left;
    }

    .footer-nav a {
        margin: 5px;
        font-size: 12px;
    }

    .footer-nav-connect {
        flex-wrap: wrap;
        justify-content: left;
        text-align: left;
        margin-top: 10px;
        margin-left: 0px;
    }

    .footer-nav-connect a {
        font-size: 12px;
    }

    .background-video-section {
        height: 32.5625rem;
    }

    .ai-content h2 {
        font-size: 1.5rem;
        font-weight: 700;
    }

    .ai-content h3 {
        font-size: 0.9375rem;
        font-weight: 700;
    }

    .ai-content p {
        font-size: 0.7rem;
        font-weight: 500;
        width: 100%;
    }

    .testimonials-section-header .title {
        font-size: 1.5rem; /* Smaller font size for mobile devices */
    }

    .testimonials-item {
        max-width: 82%; /* Narrower width for mobile screens */
        margin: 20px auto; /* Center the item with some margin */
        min-height: 25rem;
    }

    .testimonials-container {
        width: 100%;
        align-items: center;
    }

    .testimonials-item p {
        font-size: 0.9375rem;
        font-weight: 500;
    }
}

/* For Ipads */
@media (min-width: 822px) and (max-width: 1366px) {
    body {
        margin: 40px;
    }

    .hero {
        text-align: center;
        padding: 30px 20px;
    }

    .hero-text {
        font-size: 4.375rem;
        font-weight: 800;
        color: #343C6A;
        text-transform: uppercase;
        width: 100%;
        height: 2.75rem;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin: 0 auto;
        margin-bottom: 20px;
    }

    .french .hero-text {
        font-size: 2.5rem;
    }

    .description {
        width: 100%;
        height: 4.5rem;
        color: #343C6A;
        text-align: center;
        font-size: 1.3rem;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        margin: 0 auto;
    }

    .video-container video {
        width: 100%;
        height: auto;
        border-radius: 1.25rem;
    }

    .section {
        flex-direction: column;
        align-items: flex-start;
    }

    .content {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .content h1 {
        font-size: 2rem;
        font-style: normal;
        font-weight: 700;
    }

    .content p {
        font-size: 0.9375rem;
        font-style: normal;
        font-weight: 400;
    }

    .video-wrapper {
        width: 100%;
        height: 34rem;
        border-radius: 1rem;
        overflow: hidden;
        position: relative;
    }

    .video-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
        object-fit: cover;
    }

    .tab-menu-section h2 {
        font-size: 2.8rem;
        font-weight: 800;
        margin-bottom: 20px;
        color: #FFF;
        text-align: left;
        padding: 0 40px;
        margin: 40px;
    }

    .content-wrapper h3 {
        font-size: 4.125rem;
        font-weight: 800;
        margin-bottom: 10px;
    }

    .content-wrapper h4 {
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.5;
        max-width: 800px;
        margin: 0 auto 10px;
    }

    .content-wrapper p {
        font-size: 16px;
        font-weight: 400;
        line-height: 1.5;
        max-width: 800px;
        margin: 0 auto 10px;
    }

    .feature-card {
        width: 24rem;
        height: 30.6875rem;
    }

    .features-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .features-section {
        text-align: center;
        padding: 40px 20px;
    }

    .feature-card img {
        width: 10rem;
        height: 10rem;
        flex-shrink: 0;
        margin-bottom: 20px;
    }

    .testimonials-background h2 {
        font-size: 2.375rem;
    }

    .testimonial-card {
        display: inline-flex;
        width: calc(100% / 2 - 20px);
        margin: 0 10px;
        align-items: center;
        gap: 20px;
        flex-shrink: 0;
        background: #ffffff;
        border-radius: 12px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        overflow: hidden;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 1rem;
        font-family: 'TT Norms Pro', sans-serif;
        width: 20.125rem;
        border-radius: 0.375rem;
        background: #FFF;
        padding: 10px;
        margin-bottom: 20px;
        border: 1px solid #ddd;
        outline: none;
        transition: border-color 0.3s ease;
    }

    .testimonials-section-header .title {
        font-size: 2rem;
    }

    .newsletter-section .overlay .content-wrapper h2 {
        font-size: 3rem;
        padding: 0 20px;
        max-width: 90%;
    }

    .testimonials-item {
        max-width: 38%;
        min-height: 38rem;
    }
}

/* Custom Scrollbar Styles */

/* Webkit Browsers */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: #E80C89;
    border-radius: 10px;
    border: 3px solid #f1f1f1;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #d00978;
}

/* Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: #E80C89 #f1f1f1;
}

html::-webkit-scrollbar-track {
    background-color: #f1f1f1;
}

html::-webkit-scrollbar-thumb {
    background-color: #E80C89;
}

/* IE and Edge */
* {
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

::-ms-scrollbar {
    width: 12px;
}

::-ms-scrollbar-track {
    background: #f1f1f1;
}

::-ms-scrollbar-thumb {
    background-color: #E80C89;
    border-radius: 10px;
    border: 3px solid #f1f1f1;
}

::-ms-scrollbar-thumb:hover {
    background-color: #d00978;
}
