html {
    scroll-behavior: smooth;
}


body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

header.header {
    background: linear-gradient(135deg, #004aad, #0066cc);
    color: white;
    text-align: center;
    padding: 100px 20px;
    position: relative;
}

header.header h1 {
    margin-bottom: 20px;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 1px;
}

header.header p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background-color: white;
    color: #004aad;
    padding: 12px 30px;
    border: 2px solid #004aad;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #004aad;
    color: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.video-wrapper {
    margin-top: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}


.video-section {
    background-color: white;
    padding: 30px;
    margin: 30px 0;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.video-section h2 {
    text-align: center;
    margin-bottom: 20px;
}

.video-wrapper {
    display: flex;
    justify-content: center;
}

.video-wrapper video {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}


.cta-button {
    display: inline-block;
    background-color: white;
    color: #004aad;
    padding: 12px 30px;
    border: 2px solid #004aad;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #004aad;
    color: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Video container */
.video-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10; /* <-- добавляем, чтобы быть поверх видео */
}

.video-wrapper video {
    position: relative;
    z-index: 1;
}


.play-button {
    background-color: #00bfff;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.2rem;
    border-radius: 30px;
    font-weight: bold;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.play-button:hover {
    background-color: #0099cc;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.highlights, .industries, .experience, .calendly {
    background-color: white;
    margin: 30px 0;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.highlights h2, .industries h2, .experience h2, .calendly h2 {
    text-align: center;
    margin-bottom: 30px;
}

.highlight-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.card {
    background-color: #f1f5f9;
    padding: 20px;
    border-radius: 8px;
    flex: 1 1 250px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.card h3 {
    margin-bottom: 10px;
    color: #004aad;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
}

ul li {
    margin-bottom: 10px;
}

/* Industries Section */
.industries {
    background-color: #fff;
    margin: 30px 0;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.industry-item {
    background-color: #f1f5f9;
    padding: 15px 10px;
    border-radius: 8px;
    font-weight: 500;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.industry-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

/* Experience Section */
.experience {
    background-color: #fff;
    margin: 30px 0;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.experience-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.exp-card {
    background-color: #f9fafb;
    padding: 20px;
    border-radius: 10px;
    flex: 1 1 250px;
    max-width: 300px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.exp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.exp-card h3 {
    color: #004aad;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.exp-card p {
    font-size: 0.95rem;
    line-height: 1.5;
}

.experience-call {
    margin-top: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
}


.container {
    width: 100%;
    max-width: none;
    padding: 0;
}


.marquee {
    overflow: hidden;
    position: relative;
    width: 100%;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    padding: 20px 0;
}

.marquee-content {
    display: flex;
    width: calc(200%); /* doubled for smooth loop */
    animation: marquee 20s linear infinite;
}

.industry-item {
    flex: 0 0 auto;
    min-width: 150px;
    margin: 0 10px;
    background-color: #f1f5f9;
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: 500;
    white-space: nowrap;
    text-align: center;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}



.footer p:last-child {
    margin-top: 10px;
    font-size: 0.9rem;
}

.footer a {
    color: #004aad;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}


footer.footer {
    text-align: center;
    padding: 20px;
    background-color: #eee;
    font-size: 0.9rem;
}

footer.footer a {
    color: #004aad;
    text-decoration: none;
}

footer.footer a:hover {
    text-decoration: underline;
}

.calendly {
    text-align: center;
}

.calendly h2 {
    margin-bottom: 20px;
}
