* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Bahnschrift, sans-serif;

}

body {
    background: #ffffff;
    color: #111;

}
.seo-heading{
    position:absolute;
    left:-9999px;
}
/* Header */
.welcome-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 48px;
}



.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

.logo img {
    width: 28px;
    height: 28px;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.3px;
}

/* Hero - Updated */
.hero {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Swapped ratios to give more space to video */
    gap: 36px;
    padding: 30px 48px;
}

.hero-content {
    max-width: 580px; /* Prevent left content from stretching too wide */
}

.hero-content h1 {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
}


.hero-content h1 span {
    color: #344767;
}

.subtitle {
    margin-top: 20px;
    font-size: 18px;
    color: #555;
    max-width: 520px;
    font-weight: 500;
}

/* CTA */
.cta-group {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.primary-btn {
    background: #344767;
    color: white;
    padding: 14px 26px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: none;
}

.primary-btn:hover {
    background: #212d42;
}

.secondary-btn {
    text-decoration: none;
    background: transparent;
    color: #344767;
    border: 1px solid rgba(28, 38, 55, 0.15);
    padding: 14px 35px;
    font-weight: 600;
    border-radius: 15px;
    justify-content: center;
}
.header-btn{
    max-width: 35%;
}
.secondary-btn:hover {
    background: rgba(52, 71, 103, 0.07);

}

/* Trust */
.trust-row {
    display: flex;
    gap: 20px;
    margin-top: 28px;
    font-size: 14px;
    color: #666;
    font-weight: 600;
}


/* Video - Updated */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.video-frame {
    width: 100%;
    max-width: 600px; /* Increased from 520px */
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 25px 60px rgba(0,0,0,0.72);
    aspect-ratio: 16/9; /* Maintain consistent ratio */
}

.video-frame video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* Medium screens (between mobile breakpoint and desktop) */
@media (min-width: 901px) and (max-width: 1100px) {
    .hero {
        grid-template-columns: 1fr 1fr; /* Equal columns for medium screens */
        gap: 36px;
        padding: 30px 32px;
    }

    .video-frame {
        max-width: 500px; /* Slightly smaller for medium screens */
    }

    .hero-content h1 {
        font-size: 38px; /* Slightly smaller heading */
    }
}

/* Large screens */
@media (min-width: 1400px) {
    .hero {
        gap: 36px;
        padding: 30px 48px;
    }

    .video-frame {
        max-width: 680px; /* Even larger on big screens */
    }

    .hero-content h1 {
        font-size: 52px; /* Larger heading for big screens */
    }
}

/* Mobile optimization - unchanged, keeping your original */
@media (max-width: 900px) {

    .welcome-header {
        padding: 16px 20px;
        gap: 35px;
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 30px 20px;
    }

    .hero-content h1 {
        font-size: 32px;
        line-height: 1.25;
    }

    .subtitle {
        font-size: 16px;
        max-width: none;
    }

    .cta-group {
        flex-direction: column;
        align-items: stretch;
    }

    .primary-btn,
    .secondary-btn {
        text-align: center;
        width: 100%;
    }

    .trust-row {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        font-size: 13px;
    }

    .video-frame {
        max-width: 100%;
        border-radius: 12px;
        box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    }
}



/*!* Hero *!*/
/*.hero {*/
/*    display: grid;*/
/*    grid-template-columns: 1.1fr 1fr;*/
/*    gap: 64px;*/
/*    padding: 64px 48px;*/
/*    align-items: center;*/
/*}*/



/*!* Video *!*/
/*.hero-visual {*/
/*    display: flex;*/
/*    justify-content: center;*/
/*}*/

/*.video-frame {*/
/*    width: 100%;*/
/*    max-width: 520px;*/
/*    border-radius: 14px;*/
/*    overflow: hidden;*/
/*    background: #fff;*/
/*    border: 1px solid #eee;*/
/*    box-shadow: 0 25px 60px rgba(0,0,0,0.12);*/
/*}*/

/*.video-frame video {*/
/*    width: 100%;*/
/*    display: block;*/
/*    object-fit: cover;*/
/*    object-position: center;*/
/*}*/






