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

body {
    font-family: Sen, -apple-system, Roboto, Helvetica, sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: #000000;
}



/* Hero Section */
.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    /* width: 85%; */
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -2;
}

@media (max-width: 991px) {
    .hero-bg-video {
    width: 100%;
    height: 90%;
    }
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #00000086;
    padding-top: 80px;
}

.hero-container {
    width: 100%;
    max-width: 1440px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    max-width: 945px;
    text-align: center;
}

.hero-title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.hero-title-line {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-title-word {
    color: #fff;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    font: 600 56px Manrope;
    margin: 0;
}

.title-separator {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background-color: #fff;
}

.hero-subtitle {
    color: #fff;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    font: 600 36px Manrope;
    margin-top: 16px;
}

.cta-button {
    color: #000;
    background-color: #8bc34a;
    border: none;
    border-radius: 54px;
    padding: 12px 32px;
    font: 600 18px Sen;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-decoration: none !important;
}

.cta-button:hover {
    background-color: #7cb342;
    transform: translateY(-2px);
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    color: #fff;
    font: 600 40px Sen;
    margin-bottom: 16px;
}

.section-description {
    color: #fff;
    font: 400 18px Sen;
    max-width: 1136px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Industries Section */
.industries-section {
    padding: 60px 20px;
    background-color: #0b132b;
}

.industries-grid {
    display: flex;
    gap: 12px;
    max-width: 1261px;
    margin: 0 auto;
}

.industry-card {
    flex: 1;
    height: 394px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}


.industry-card:hover {

    flex: 2;
    background: linear-gradient(90deg,
            #1136A4 0%,
            #234CC4 35%,
            #1135A0 100%);
    transition:
        flex-grow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.3s ease;
}




.enterprise-card {
    background: url("https://api.builder.io/api/v1/image/assets/TEMP/2ad8cc098cde9777663a38766319d4bed7e6693a?width=616") lightgray 50% / cover no-repeat;
}

.healthcare-card {
    background: linear-gradient(135deg, #2e5bba 0%, #1e3a8a 100%);
}

.manufacturing-card {
    background: url("https://api.builder.io/api/v1/image/assets/TEMP/e7a3b7bde6fd8372b483b7e7efb0a7a30fc15123?width=616") lightgray -124.152px -52.375px / 161.932% 126.586% no-repeat;
}

.card-background-image {
    /* position: absolute; */
    top: -55px;
    left: -114px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* When hovering an industry card, fade out/remove the background image */
.card-background-image {
    transition: opacity 240ms ease, transform 240ms ease;
}

.industry-card:hover .card-background-image {
    opacity: 0;
    transform: scale(1.02);
    pointer-events: none;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 237px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
}

.card-content {
    position: absolute;
    bottom: 22px;
    left: 22px;
    right: 22px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-width: none;
    /* allow full-width content inside the card */
}

.card-content-full {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 13px;
    height: 100%;
    justify-content: center;
}

.card-title {
    color: #fff;
    font: 500 32px Sen;
    margin: 0;
    width: 100%;
}

.card-description {
    color: #fff;
    font: 500 16px Sen;
    line-height: 1.23;
}

/* Hide description by default and reveal on card hover */
.card-description {
    overflow: hidden;
    width: 100%;
    max-height: 0;
    opacity: 0;
    margin-top: 6px;
    transition: max-height 220ms ease, opacity 220ms ease;
}

.industry-card:hover .card-description {
    max-height: 200px;
    /* enough to show one or two lines */
    opacity: 1;
}

.card-cta-button {
    background-color: #4a90e2;
    color: #0b132b;
    border: none;
    border-radius: 7px;
    padding: 12px 24px;
    font: 500 16px Sen;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    text-decoration: none !important;
}

.card-cta-button:hover {
    background-color: #357abd;
}

/* Insights Section */
.insights-section {
    padding: 60px 20px;
    background-color: #fff;
}

.insights-section .section-title {
    color: #000;
}

.insights-grid {
    display: flex;
    gap: 12px;
    max-width: 1261px;
    margin: 0 auto;
    height: 552px;
}

.video-card {
    width: 622px;
    border-radius: 16px;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    position: relative;
    overflow: hidden;
}

.video-content {
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 533px;
}

.insights-tag {
    background-color: rgba(0, 0, 0, 0.993);
    color: #fff;
    font: 500 14px Sen;
    padding: 8px 16px;
    border-radius: 9px;
    align-self: flex-start;
}

.video-title {
    color: #fff;
    font: 500 32px Sen;
    margin: 0;
}

.video-description {
    color: #fff;
    font: 500 16px Sen;
}

/* .video-thumbnail {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 321px;
    
    border-radius: 0 0 16px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
} */

.play-button {
    width: 133px;
    height: 64px;
    border-radius: 2%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background-color: rgba(0, 0, 0, 0.7);
    transform: scale(1.1);
}

.blog-cards-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.blog-cards-row {
    display: flex;
    gap: 12px;
    height: 289px;
}

.blog-card {
    flex: 1;
    border-radius: 16px;
    background: #1261A0;
    position: relative;
    padding: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-tag {
    background-color: rgba(0, 0, 0, 0.3);
    color: #fff;
    font: 500 18px Sen;
    padding: 8px 16px;
    border-radius: 9px;
    align-self: flex-start;
}

.blog-title {
    color: #fff;
    font: 500 28px Sen;
    margin: 0;
    flex-grow: 1;
    display: flex;
    align-items: flex-start;
    margin-top: 12px;
}

.blog-read-more {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font: 500 18px Sen;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    transform: translateX(5px);
}

.ai-tools-card {
    border-radius: 16px;
    background: linear-gradient(135deg, #60a5fa 0%, #93c5fd 100%);
    position: relative;
    padding: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.ai-tools-tag {
    background-color: rgba(0, 0, 0, 0.3);
    color: #fff;
    font: 500 18px Sen;
    padding: 8px 16px;
    border-radius: 9px;
    align-self: flex-start;
}

.ai-tools-title {
    color: #000;
    font: 500 32px Sen;
    margin: 0;
    flex-grow: 1;
    display: flex;
    align-items: start;
    margin-top: 12px;
}

.ai-tools-explore {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #000;
    font: 600 18px Sen;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ai-tools-explore:hover {
    transform: translateX(5px);
}

/* Partners Section */
.partners-section {
    padding: 60px 20px;
    background-color: #010A24;
}

.partners-scroll-wrapper {
    /* overflow: hidden; */
    height: 100px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    margin-top: 70px;
}

.partners-scroll-track {
    display: flex;
    gap: 60px;
    animation: scroll-partners 20s linear infinite;
}

.partner-logo-container {
    flex-shrink: 0;
    width: 150px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 19px;
    
    backdrop-filter: blur(10px);
    padding: 20px;
    transition: all 0.3s ease;
}

/* .partner-logo-container:hover {
    background-color: red;
    transform: translateY(-5px);
} */

.partner-logo {
    max-width: 100%;
    max-height: 150px;
    object-fit: contain;
}

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

.kubernetes-logo {
    width: 227px;
    height: 40px;
}

/* Engineering Impact Section */
.engineering-impact-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 60px 20px;
    background-color: #010511;
}

.impact-visualization {
    display: flex;
    height: 601px;
    justify-content: center;
    align-items: flex-end;
    gap: 35px;
    width: 100%;
    max-width: 1261px;
    border-radius: 22px;

    position: relative;
    overflow: hidden;
}

.impact-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    pointer-events: none;
}

.impact-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: #00000070;
    backdrop-filter: blur(3px);
}

.industry-tabs {
    display: flex;
    align-items: center;
    gap: 36px;
    position: absolute;
    left: 39px;
    top: 31px;
    width: 820px;
}

.industry-tab {
    color: #fff;
    text-align: center;
    font: 400 20px Sen, -apple-system, Roboto, Helvetica, sans-serif;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;

}

.industry-tab.active {
    color: #91d04f;
    font-weight: 600;

}

.industry-tab:hover {
    color: #91d04f;
}

.active-indicator {
    width: 105px;
    height: 9px;
    border-radius: 26px 26px 0 0;
    position: absolute;
    left: 39px;
    bottom: 0px;
    background-color: #91d04f;
}

/* Tabs: animated indicator and panels */
.industry-tabs {
    position: relative;
    display: flex;
    gap: 24px;
}

.industry-tab {
    background: none;
    border: none;
    color: #fff;
    font: 400 18px Sen;
    cursor: pointer;
    padding: 8px 4px;
}

.industry-tab.active {
    color: #91d04f;
    font-weight: 600;
}

/* Remove the green focus outline for industry tabs while keeping other focus styles site-wide.
   If keyboard users need a visible indicator, we can add a subtle focus-ring instead. */
.industry-tab:focus,
.industry-tab:focus-visible,
.industry-tab.active:focus {
    outline: none;
    box-shadow: none;
}

.active-indicator {
    transition: transform 220ms ease, width 220ms ease;
    transform: translateX(0);
}

.impact-panels {
    position: relative;
    width: 100%;
}

.impact-panel {
    display: none;
}

.impact-panel.active {
    display: block;
}

/* Ensure impact-stats layout remains consistent and left-aligned inside the visualization */
.impact-stats {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    position: absolute;
    left: 39px;
    /* align with industry tabs */
    bottom: 100px;
    /* max-width: calc(50% - 48px); keep stats readable while leaving space for background */
    width: auto;
    z-index: 5;
    /* make sure it sits above the background image */
    padding-right: 24px;
}

/* Responsive adjustments for smaller viewports */
@media (max-width: 991px) {
    .impact-stats {
        left: 24px;
        bottom: 80px;
        max-width: calc(60% - 40px);
    }
}

@media (max-width: 640px) {
    .impact-stats {
        position: relative;
        /* flow above background on small screens */
        left: 0;
        bottom: 0;
        max-width: 100%;
        width: 100%;
        padding: 20px;
        background: linear-gradient(180deg, rgba(10, 12, 30, 0.0), rgba(10, 12, 30, 0.5));
        z-index: 2;
    }
}

.stat-number {
    color: #91d04f;
    font: 700 100px Sen, -apple-system, Roboto, Helvetica, sans-serif;
}

.stat-title {
    color: #fff;
    font: 400 40px Sen, -apple-system, Roboto, Helvetica, sans-serif;
}

.stat-description {
    width: 100%;
    /* max-width: 1103px; */
    color: #fff;
    font: 400 20px Sen, -apple-system, Roboto, Helvetica, sans-serif;
}

.stat-cta {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    text-decoration: none;
}

.cta-text-green {
    color: #91d04f;
    text-align: center;
    font: 600 18px Sen, -apple-system, Roboto, Helvetica, sans-serif;
    text-decoration: none;
    
}

.stat-cta:hover .cta-text-green {
    text-decoration: none;
}

.cta-arrow-green {
    width: 24px;
    height: 24px;
}

/* Contact Section */
.contact-section {
    padding: 60px 20px;
    background-color: #0B132B;
}

.contact-form {
    max-width: 1261px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: flex;
    gap: 12px;
}

.form-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-field.full-width {
    width: 100%;
}

.field-label {
    color: #fff;
    font: 500 14px Sen;
}

.field-input,
.field-textarea,
.field-select {
    background: transparent;
    border: none;
    border-bottom: 1px solid #fff;
    color: #fff;
    font: 400 16px Sen;
    padding: 12px 0;
    outline: none;
}

.field-input::placeholder,
.field-textarea::placeholder {
    color: rgba(255, 255, 255, 0.34);
}

.field-textarea {
    min-height: 80px;
    resize: vertical;
}

.phone-input-wrapper {
    display: flex;
    gap: 8px;
}

.country-code-selector {
    display: flex;
    align-items: center;
    gap: 24.5px;
    border-bottom: 1px solid #fff;
    padding: 12px 0;
    min-width: 78px;
    position: relative;
}

.country-code-text {
    color: #fff;
    font: 400 14px Sen;
}

.phone-input {
    flex: 1;
    background: transparent;
    border: none;
    border-bottom: 1px solid #fff;
    color: #fff;
    font: 400 16px Sen;
    padding: 12px 0;
    outline: none;
}

.select-wrapper {
    position: relative;
}

.field-select {
    width: 100%;
    appearance: none;
    cursor: pointer;
}

.dropdown-arrow {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    margin-top: 20px;
}

.btn-secondary {
    background: transparent;
    color: #91d04f;
    border: 1px solid #91d04f;
    border-radius: 4px;
    padding: 15px 76px;
    font: 600 18px Sen;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #91d04f;
    color: #000;
}

.btn-primary {
    background-color: #91d04f;
    color: #000;
    border: none;
    border-radius: 4px;
    padding: 15px 68px;
    font: 500 18px Sen;
    cursor: pointer;
    transition: all 0.3s ease;
}

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



/* Responsive Design */
@media (max-width: 991px) {
    .header-container {
        padding: 0 20px;
    }

    .main-navigation {
        gap: 20px;
    }

    .nav-text {
        font-size: 15px;
    }

    .hero-title-word {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 28px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-description {
        font-size: 16px;
        padding: 0 20px;
    }

    .industries-grid {
        height: 1000px;
        flex-direction: column;
        gap: 20px;
    }

    .industry-card {
        /* max-width: 600px; */

        margin: 0 auto;
        width: 100%;
        height: 20px;
    }

    .insights-grid {
        flex-direction: column;
        height: auto;
        gap: 20px;
    }

    .video-card {
        width: 100%;
        /* max-width: 600px; */
        height: auto;
        margin: 0 auto;
    }

    .video-thumbnail {
        position: relative;
        height: 250px;
    }

    .blog-cards-row {
        flex-direction: column;
        height: auto;
        gap: 16px;
    }

    .blog-card {
        height: 250px;
    }

    .partners-grid {
        gap: 12px;
    }

    .form-row {
        flex-direction: column;
        gap: 20px;
    }

    .form-actions {
        justify-content: center;
    }

    .footer-container {
        padding: 0 40px;
        flex-wrap: wrap;
        gap: 32px;
    }

    .footer-links {
        gap: 32px;
    }

    .footer-column {
        width: calc(50% - 16px);
    }
}

@media (max-width: 640px) {
    .header-container {
        padding: 0 16px;
    }

    .nav-item-dropdown,
    .nav-text:not(.mobile-menu-toggle) {
        display: none;
    }

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

    .hero-section {
        min-height: 100vh;
        /* padding: 20px; */
    }

    .hero-title-line {
        flex-direction: column;
        gap: 10px;
    }

    .hero-title-word {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .cta-button {
        font-size: 16px;
        padding: 14px 40px;
    }

    .section-title {
        font-size: 28px;
        text-align: center;
    }

    .section-description {
        font-size: 14px;
        padding: 0 10px;
    }

    .industry-card {
        /* height: 300px; */
        width: 100%;
    }

    .card-content {
        bottom: 5%;
    }

    .card-title {
        font-size: 24px;
    }

    .card-description {
        font-size: 14px;
    }

    .card-cta-button {
        font-size: 14px;
    }

    .video-card {
        height: 350px;
    }

    .video-content {
        gap: 8px;
    }

    .video-title {
        font-size: 24px;
    }

    .video-description {
        font-size: 14px;
    }

    .video-thumbnail {
        height: 200px;
        top: 150px;
    }

    .blog-card {
        height: 200px;
    }

    .blog-title,
    .ai-tools-title {
        font-size: 20px;
    }

    .partners-grid {
        flex-direction: column;
        gap: 16px;
    }

    .partner-logo-container {
        width: 280px !important;
        height: 60px !important;
    }

    .kubernetes-logo {
        width: 165px;
        height: 29px;
    }

    .contact-section {
        padding: 40px 12px;
    }

    .phone-input-wrapper {
        flex-direction: column;
        gap: 12px;
    }

    .country-code-selector {
        width: 100%;
    }

    .form-actions {
        flex-direction: column;
        gap: 12px;
    }

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

    .footer-container {
        flex-direction: column;
        padding: 24px 20px;
        gap: 24px;
    }

    .footer-brand {
        width: 100%;
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 24px;
        width: 100%;
    }

    .footer-column {
        width: 100%;
    }

    .footer-column-title {
        font-size: 14px;
    }

    .footer-link {
        font-size: 14px;
    }

    .contact-text {
        font-size: 12px;
    }
}

/* Additional utility classes */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
}

/* Focus styles for accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid #8bc34a;
    outline-offset: 2px;
}

/* Loading animation for images */
img {
    transition: opacity 0.3s ease;
}

img:not([src]) {
    opacity: 0;
}

/* Print styles */
@media print {

    .main-header,
    .mobile-menu-toggle,
    .cta-button,
    .card-cta-button,
    .btn-primary,
    .btn-secondary {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    .section-title,
    .card-title,
    .video-title,
    .blog-title {
        color: black;
    }
}
.custom-dropdown {
    position: relative;
    border-bottom: 1px solid #fff;
    padding: 12px 0;
    cursor: pointer;
    min-width: 78px;
}

.custom-dropdown-selected {
    color: #fff;
    font: 400 16px Sen;
}

.custom-dropdown-options {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #0B132B;
    border: 1px solid #fff;
    border-radius: 4px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 10;
}

.custom-dropdown.open .custom-dropdown-options {
    display: block !important;
}

.custom-dropdown-option {
    padding: 10px;
    color: #fff;
    font: 400 16px Sen;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.custom-dropdown-option:hover,
.custom-dropdown-option.selected {
    background-color: #91d04f;
    color: #000;
}

.custom-dropdown-option:last-child {
    border-bottom: none;
}

.dropdown-arrow {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    transition: transform 0.3s ease;
}

.custom-dropdown.open .dropdown-arrow {
    transform: translateY(-50%) rotate(180deg);
}
.custom-dropdown-options::-webkit-scrollbar {
    width: 8px;
}

.custom-dropdown-options::-webkit-scrollbar-track {
    background: #0B132B;
}

.custom-dropdown-options::-webkit-scrollbar-thumb {
    background: #91d04f;
    border-radius: 4px;
}

.custom-dropdown-options::-webkit-scrollbar-thumb:hover {
    background: #7cb342;
}

@media (max-width: 768px) {
    .g-recaptcha {
        transform: scale(0.8);
        transform-origin: 0 0;
    }
}
.btn-primary:disabled { 
            opacity: 0.6;
            cursor: not-allowed;
        }

        
.captcha-actions {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    margin-top: 20px;
}

.read-more {
    color: #fff;
}

.text-black {
  color: #000 !important;
}
