/* Modern CSS for AgentPulse Landing Page */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
nav {
    background-color: rgb(255 255 255 / 85%);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header-container {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.5rem;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 42px;
    width: auto;
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 0rem;
}
.nav-actions a.btn.btn-text {
    padding: 0px;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav-actions a {
    font-size: 14px;
    padding: 0px;
    color: #458eff;
}

.nav-links a {
    color: #3f3f3f;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
    padding: 0.5rem 0;
}

.nav-links a:hover {
    color: #4285f4;
}

.nav-actions {
    display: flex;
    align-items: center;
    font-size: 0.9375rem;
    gap: 2rem;
}

a.btn.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 12px 28px rgba(66, 133, 244, .20);
    transition: transform .15s ease, box-shadow .15s ease;
    width: 100px;
    text-align: center;
    justify-content: center;
    padding: 11px;
}

.btn {
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    line-height: 1;
}

.btn-text {
    color: #4285f4;
    padding: 0.5rem 0;
}

.btn-text:hover {
    color: #3367d6;
}

.btn-primary {
    background: #4285f4;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.btn-primary:hover {
    background: #3367d6;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #3f3f3f;
    margin: 4px 0;
    transition: all 0.3s;
}


/* Desktop Navigation */
@media (min-width: 769px) {
    .nav-container {
        display: flex;
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #2c3e50;
    transition: all 0.3s ease;
    margin: 5px 0;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-container {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fffffffc;
        flex-direction: column;
        align-items: flex-start;
        display: none;
        margin-top: 25px;
        border-radius: 16px;
        box-shadow: #00000020 0px 0px 20px;
        backdrop-filter: blur(10px);
        border: 1px #e1e1e1 solid;
    }

    .mobile-menu-toggle {
        display: block;
        order: 1;
    }

    .nav-right {
        position: fixed;
        top: 64px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 64px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        padding: 2rem;
        transition: right 0.3s ease;
    }

    .nav-right.active {
        right: 0;
    }


    .nav-links a {
        font-size: 14px;
        padding: 10px;
        border-radius: 10px;
        border: 1px #e3e3e3 solid;
        width: 100%;
        text-align: center;
        box-shadow: #00000010 0px 4px 10px;
    }

    .nav-actions {
        flex-direction: column;
        gap: 25px !important;
        width: 100%;

    }

    .nav-actions a {
        width: 100%;
        text-align: center;
    }

    /* Hamburger Animation */
    .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

.nav-btn {
    padding: 0.5rem 1.3rem;
    font-size: 1rem;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: none;
    margin-left: 0.2rem;
    margin-right: 0.2rem;
}

.btn-secondary.nav-btn {
    border: 0px;
    padding: 0px;
}

.btn-secondary.nav-btn:hover {
    color: #007bff;
}

.btn-primary.nav-btn {
    border: none;
    transition: background 0.2s, color 0.2s;
    border-radius: 6px;
    padding: 7px 24px;
    box-shadow: none;
}

.btn-primary.nav-btn:hover {
    color: #fff;
    background: #3274da;
    transform: none;
    box-shadow: none;
}
a.nav-btn {
    font-size: 15px;
}

@media (max-width: 900px) {
    .nav-links {
        gap: 1.2rem;
    }
    .nav-actions {
        gap: 0.5rem;
    }
    
}



/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(44 45 49 / 70%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding-top: 64px; /* Add padding to account for fixed navbar */
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.cta-section {
    margin-bottom: 2rem;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: #458eff;
    color: white;
    box-shadow: 0 10px 30px rgb(88 88 88 / 30%);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgb(17 17 17 / 40%);
}

.btn-secondary {
    background: transparent;
    color: #007bff;
    border: 2px solid #007bff;
}

.btn-secondary:hover {
    color: #007bff;
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
}

.no-credit {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

.trust-badges {
    margin-top: 2rem;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
}

.stars {
    color: #ffd700;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    position: relative;
    z-index: 3;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Partners Section */
.partners {
    padding: 3rem 0;
    background: #f8f9fa;
    overflow: hidden;
}

.partner-logos-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.partner-logos {
    display: flex;
    align-items: center;
    animation: scroll 40s linear infinite;
    white-space: nowrap;
    width: max-content;
    grid-gap: 50px;
}

.partner-logo {
    opacity: 0.7;
    transition: opacity 0.3s ease;
    filter: grayscale(100%);
    flex-shrink: 0;
    margin: 0 20px;
    width: 150px;
    height: auto;
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% / 2));
    }
}

/* Add gradient fade effect on the edges */
.partner-logos-container::before,
.partner-logos-container::after {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.partner-logos-container::before {
    left: 0;
    background: linear-gradient(to right, #f8f9fa 0%, transparent 100%);
}

.partner-logos-container::after {
    right: 0;
    background: linear-gradient(to left, #f8f9fa 0%, transparent 100%);
}

/* Pause animation on hover */
.partner-logos:hover {
    animation-play-state: paused;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: 25px;
}

/* Solution Section */
.solution {
    padding: 5rem 0;
}

.before-after-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    display: block;
    opacity: 1;
}

.comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.before, .after {
    text-align: center;
}

.before {
    background: #fff;
}

.after {
    background: #fff;
}

.before h4, .after h4 {
    margin-bottom: 1rem;
    font-weight: 600;
    color: #2c3e50;
}

.comparison-media {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.prev-btn, .next-btn {
    background: #007bff;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev-btn:hover, .next-btn:hover {
    background: #0056b3;
    transform: scale(1.1);
}

/* Slide Indicators */
.slide-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background-color: #ccc;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: #007bff;
    transform: scale(1.2);
}

.indicator:hover {
    background-color: #999;
}

/* Ensure videos pause when not in active slide */
.slide:not(.active) video {
    display: none;
}

/* How It Works Section */
.how-it-works {
    padding: 5rem 0;
    background: #f8f9fa;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #007bff;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.6;
}

.testimonial-author h4 {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.testimonial-author p {
    color: #666;
    font-size: 0.9rem;
}

/* Press Section */
.press {
    padding: 3rem 0;
    background: #f8f9fa;
}

.press-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.press-logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: #666;
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 1rem;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
    padding-left: 1rem;
    border-radius: 8px;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
}

.toggle {
    font-size: 1.5rem;
    color: #007bff;
    font-weight: 700;
}

.faq-answer {
    padding: 0 0 1.5rem 0;
    color: #666;
    display: none;
}

.faq-answer.active {
    display: block;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.final-cta h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.final-cta p {
    font-size: 20px;
    margin-bottom: 16px;
    color: #9ca3af;
}

.cta-subtitle {
    margin-bottom: 32px;
}

.btn-large {
    padding: 16px 48px;
    font-size: 18px;
}

/* Footer Styles */
footer {
    color: #fff;
    padding: 80px 0 40px;
    border-top: 1px #eaeaea solid;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-section:first-child h3 {
    color: #000000;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-section:first-child p {
    color: #9ca3af;
    font-size: 15px;
    line-height: 1.6;
    max-width: 300px;
}

.footer-section h4 {
    color: #000000;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s ease;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: #000000;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(156, 163, 175, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 14px;
}



/* Responsive Design */
@media (max-width: 768px) {
    .final-cta h2 {
        font-size: 28px;
        line-height: 36px;
    }
    
    .final-cta p {
        font-size: 16px;
    }
    
    .btn-large {
        padding: 14px 36px;
        font-size: 16px;
    }

    .hero h1 {
        font-size: 28px;
        line-height: 36px;
    }
    .hero h2 {
        font-size: 20px;
        line-height: 24px;
    }

    .section-header h2 {
        font-size: 28px;
        line-height: 34px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .comparison {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }

    .section-header p {
        font-size: 16px;
        line-height: 27px;
    }
    
    .comparison-media {
        height: 300px;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .partner-logos {
        padding: 0 30px;
        animation-duration: 22s;
    }
    

    .partner-logos-container::before,
    .partner-logos-container::after {
        width: 60px;
    }
    
    .press-logos {
        flex-direction: column;
        gap: 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .prev-btn, .next-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .slide-indicators {
        margin-top: 15px;
        gap: 8px;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }

    footer {
        padding: 60px 0 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-section:first-child p {
        max-width: 100%;
    }

    .footer-section ul {
        align-items: center;
    }


    .footer-section {
        margin-bottom: 20px;
    }

    .footer-bottom {
        padding-top: 30px;
    }

    .hamburger {
        display: block;
        z-index: 2;
    }

    .nav-container.active {
        display: flex;
    }
   

    .nav-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
    }

    .nav-actions .btn {
        width: 100%;
        text-align: center;
        font-size: 18px;
    }
    .nav-actions a.btn.btn-primary {
        padding: 16px;
    }

    /* Hamburger Animation */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

/* Contact Form Styles */
.contact-section {
    padding: 6rem 0;
    text-align: center;
}

.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-section p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 2rem auto;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}

.form-group textarea {
    resize: vertical;
}

.contact-form .btn {
    padding: 1rem;
    font-size: 1.1rem;
    border-radius: 6px;
    border: none;
    background: #ffffff;
    color: #458eff;
    margin: auto;
    display: flex;
}

/* Alert Messages */
.alert {
    padding: 1rem;
    margin-bottom: 2rem;
    border-radius: 6px;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #fee;
    border-color: #fcc;
    color: #c33;
}

/* Terms of Service & Privacy Policy Styles */
.terms-container {
    max-width: 800px;
    margin: 120px auto 60px;
    padding: 0 2rem;
}

.terms-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f0f0f0;
}

.terms-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.last-updated {
    color: #7f8c8d;
    font-size: 0.9rem;
    font-style: italic;
}

.terms-content {
    line-height: 1.8;
}

.terms-section {
    margin-bottom: 3rem;
}

.terms-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #ecf0f1;
}

.terms-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #34495e;
    margin: 2rem 0 1rem;
}

.terms-section p {
    margin-bottom: 1rem;
    color: #555;
}

.terms-section ul {
    margin: 1rem 0 1rem 2rem;
}

.terms-section li {
    margin-bottom: 0.5rem;
    color: #555;
}

.contact-info {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info strong {
    color: #2c3e50;
}

/* Mobile Responsive for Terms Page */
@media (max-width: 768px) {
    .terms-container {
        margin: 100px auto 40px;
        padding: 0 1rem;
    }
    
    .terms-header h1 {
        font-size: 2rem;
    }
    
    .terms-section h2 {
        font-size: 1.5rem;
    }
    
    .terms-section h3 {
        font-size: 1.1rem;
    }
    
    .contact-info {
        padding: 1rem;
    }
}

/* Demo Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background: rgb(245 245 245 / 70%);
  justify-content: center;
  align-items: center;
}
.modal.show {
  display: flex;
}
.modal-content {
  background: #fff;
  border-radius: 10px;
  max-width: 90vw;
  max-height: 80vh;
  margin: auto;
  padding: 0;
  position: relative;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.close-modal {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  margin: 10px 20px 0 0;
  background: none;
  border: none;
  align-self: flex-end;
  z-index: 2;
  display: none;
}
.video-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px;
}
.video-wrapper iframe {
  width: 70vw;
  height: 40vw;
  max-width: 800px;
  max-height: 450px;
  border-radius: 8px;
  background: #000;
}
@media (max-width: 600px) {
  .modal-content {
    max-width: 98vw;
    max-height: 90vh;
  }
  .video-wrapper iframe {
    width: 90vw;
    height: 50vw;
    max-width: 98vw;
    max-height: 56vw;
  }
}

/* style updates v6 */

nav {
    margin: auto;
    display: block;
    border: 1px #00000014 solid;
    max-width: 1200px;
    border-radius: 25px;
    position: sticky;
    z-index: 9999999999;
    margin-top: 20px;
    background: #ffffff7d;
    top: 20px;
    width: calc(100% - 30px);
}
.nav-actions a.btn.btn-primary {
    border-radius: 30px;
    padding: 11px 17px;
    color: #fff;
}

@media (max-width: 768px) {
    .hero6 h1 {
        font-size: 35px !important;
        line-height: 1.2 !important;
    }
    .logos6 .strip {
        flex-wrap: wrap;
    }
    .nav-links {
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin-right: 0px;
        padding: 30px;
    }
    a.btn.btn-primary {
        width: 100%;
        padding: 14px;
    }
}