/* Hero Section */
.home_hero {
    background: #000000;
    min-height: 46vw;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 1.5vw;
    margin: 0 2.8vw;
}

/* Animated gradient blobs */
.hero_blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.85;
}

.hero_blob.blob1 {
    width: 45vw;
    height: 45vw;
    background: radial-gradient(circle, rgba(140, 80, 200, 0.9) 0%, rgba(180, 100, 220, 0.6) 40%, transparent 70%);
    top: 10%;
    left: 25%;
    animation: blob1 12s ease-in-out infinite;
}

.hero_blob.blob2 {
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(100, 120, 220, 0.85) 0%, rgba(80, 100, 200, 0.5) 40%, transparent 70%);
    top: 5%;
    right: 15%;
    animation: blob2 14s ease-in-out infinite;
}

.hero_blob.blob3 {
    width: 35vw;
    height: 35vw;
    background: radial-gradient(circle, rgba(60, 100, 180, 0.9) 0%, rgba(40, 80, 160, 0.5) 40%, transparent 70%);
    bottom: 5%;
    left: 5%;
    animation: blob3 10s ease-in-out infinite;
}

.hero_blob.blob4 {
    width: 42vw;
    height: 42vw;
    background: radial-gradient(circle, rgba(120, 60, 180, 0.9) 0%, rgba(100, 40, 160, 0.5) 40%, transparent 70%);
    bottom: -10%;
    right: 10%;
    animation: blob4 16s ease-in-out infinite;
}

@keyframes blob1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(5%, 10%) scale(1.05); }
    50% { transform: translate(-5%, 5%) scale(0.95); }
    75% { transform: translate(3%, -5%) scale(1.02); }
}
@keyframes blob2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-8%, -5%) scale(1.08); }
    50% { transform: translate(5%, 8%) scale(0.92); }
    75% { transform: translate(-3%, 3%) scale(1.05); }
}
@keyframes blob3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(6%, -8%) scale(0.95); }
    50% { transform: translate(-4%, -4%) scale(1.1); }
    75% { transform: translate(-6%, 6%) scale(0.98); }
}
@keyframes blob4 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-5%, 6%) scale(1.03); }
    50% { transform: translate(8%, -3%) scale(0.97); }
    75% { transform: translate(4%, 8%) scale(1.06); }
}

.home_hero_content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 2vw;
}

.home_hero_content h1 {
    color: #ffffff;
    font-size: 3.8vw;
    font-weight: 400;
    margin: 0;
    line-height: 1.2;
}

.home_hero_content h1 em {
    font-style: italic;
    font-family: 'Times New Roman', Times, serif;
}

/* Rotating text styles */
.rotating-text-wrapper {
    display: inline-block;
    position: relative;
    vertical-align: bottom;
    overflow: hidden;
    height: 1.2em;
}

.rotating-text {
    display: inline-block;
    position: relative;
    height: 100%;
}

.rotating-word-placeholder {
    display: inline-block;
    visibility: hidden;
    height: 0;
    overflow: hidden;
    padding-right: 0.1em;
}

.rotating-word {
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.rotating-word.active {
    opacity: 1;
    transform: translateY(0);
}

.rotating-word.exit {
    opacity: 0;
    transform: translateY(-100%);
}

.home_hero_content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15vw;
    margin-top: 1.2vw;
    max-width: 38vw;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.hero_btn {
    display: inline-block;
    background: #ffffff;
    color: #000000;
    text-decoration: none;
    padding: 0.9vw 2.2vw;
    font-size: 1vw;
    font-weight: 500;
    border-radius: 0.3vw;
    margin-top: 2vw;
    transition: all 0.3s ease;
}

.hero_btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* iPad/Tablet responsive for Hero Section */
@media (min-width: 501px) and (max-width: 1024px) {
    .home_hero {
        min-height: 60vw;
        margin: 12vw 4vw 0 4vw;
        border-radius: 3vw;
        padding: 8vw 4vw;
    }
    .home_hero_content {
        padding: 0 3vw;
    }
    .home_hero_content h1 {
        font-size: 5.5vw;
        line-height: 1.3;
    }
    .home_hero_content h1 em {
        font-size: 5.5vw;
    }
    .rotating-text-wrapper {
        height: 1.25em;
    }
    .home_hero_content p {
        font-size: 2vw;
        max-width: 70vw;
        margin-top: 3vw;
        line-height: 1.6;
    }
    .hero_btn {
        padding: 1.8vw 5vw;
        font-size: 1.8vw;
        border-radius: 1vw;
        margin-top: 4vw;
    }
    /* Hero blobs tablet optimization */
    .hero_blob {
        filter: blur(50px);
        opacity: 0.8;
    }
    .hero_blob.blob1 {
        width: 50vw;
        height: 50vw;
        top: 5%;
        left: 15%;
    }
    .hero_blob.blob2 {
        width: 45vw;
        height: 45vw;
        top: 10%;
        right: 10%;
    }
    .hero_blob.blob3 {
        width: 40vw;
        height: 40vw;
        bottom: 5%;
        left: 5%;
    }
    .hero_blob.blob4 {
        width: 48vw;
        height: 48vw;
        bottom: -5%;
        right: 5%;
    }
}

/* Mission Section */
.mission_section {
    background: #f9f8f4;
    padding: 6vw 11.3vw;
}

.mission_wrapper {
    display: flex;
    gap: 4vw;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
}

.mission_content {
    flex: 1;
    width: 50%;
}

.mission_content h2 {
    font-size: 2.5vw;
    font-weight: 400;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 2vw;
}

.mission_content h2 em {
    font-style: italic;
    font-family: 'Times New Roman', Times, serif;
}

.mission_content > p {
    font-size: 1.05vw;
    line-height: 1.6;
    color: #444;
    margin-bottom: 1.2vw;
}

.mission_video {
    flex: 1;
    width: 50%;
}

.video_frame {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
    border-radius: 1vw;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.video_frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* iPad/Tablet responsive for Mission Section */
@media (min-width: 501px) and (max-width: 1024px) {
    .mission_section {
        padding: 8vw 6vw;
    }
    .mission_wrapper {
        flex-direction: column;
        gap: 6vw;
    }
    .mission_content {
        width: 100%;
    }
    .mission_content h2 {
        font-size: 4.5vw;
        line-height: 1.35;
        margin-bottom: 3vw;
    }
    .mission_content > p {
        font-size: 2vw;
        line-height: 1.7;
        margin-bottom: 2vw;
    }
    .mission_video {
        width: 100%;
        max-width: 80%;
        margin: 0 auto;
    }
    .video_frame {
        border-radius: 2vw;
    }
}

/* Engineered Section */
.engineered_section {
    display: flex;
}

.engineered_wrapper {
    display: flex;
    width: 100%;
}

.engineered_content {
    background: #f9f8f4;
    padding: 6vw 4vw 6vw 8vw;
    width: 60%;
    position: relative;
}

.engineered_blob {
    position: absolute;
    top: 3vw;
    left: 8vw;
    width: 10vw;
    height: 10vw;
    background: radial-gradient(circle, rgba(120, 140, 220, 0.4) 0%, rgba(180, 160, 220, 0.2) 50%, transparent 70%);
    border-radius: 50%;
    filter: blur(30px);
}

.engineered_content h2 {
    font-size: 2.2vw;
    font-weight: 400;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 1.5vw;
}

.engineered_content h2 em {
    font-style: italic;
    font-family: 'Times New Roman', Times, serif;
}

.engineered_content > p {
    font-size: 0.95vw;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1vw;
    max-width: 28vw;
}

.engineered_content h3 {
    font-size: 1.6vw;
    font-weight: 400;
    line-height: 1.4;
    color: #1a1a1a;
    margin-top: 2.5vw;
    margin-bottom: 2vw;
}

.engineered_content h3 em {
    font-style: italic;
    font-family: 'Times New Roman', Times, serif;
}

.engineered_links {
    margin-top: 1.5vw;
}

.engineered_links .links_label {
    display: block;
    font-size: 0.85vw;
    color: #888;
    margin-bottom: 0.8vw;
    padding-bottom: 0.8vw;
    border-bottom: 1px solid #ddd;
}

.engineered_link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1vw 0;
    border-bottom: 1px solid #ddd;
    text-decoration: none;
    color: #1a1a1a;
    font-size: 0.95vw;
    transition: all 0.3s ease;
}

.engineered_link:hover {
    color: #555;
}

.engineered_link svg {
    opacity: 0.5;
    transition: all 0.3s ease;
}

.engineered_link:hover svg {
    opacity: 1;
    transform: translate(3px, -3px);
}

.engineered_cta {
    margin-top: 2.5vw;
}

.engineered_cta > span {
    display: block;
    font-size: 0.9vw;
    color: #666;
    margin-bottom: 1vw;
}

.connect_btn {
    display: inline-block;
    background: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    padding: 0.8vw 1.8vw;
    font-size: 0.9vw;
    font-weight: 500;
    border-radius: 0.3vw;
    transition: all 0.3s ease;
}

.connect_btn:hover {
    background: #333;
}

.engineered_visual {
    background: #0a0a0a;
    width: 50%;
    position: relative;
    overflow: hidden;
    min-height: 50vw;
}

.visual_grid_bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 3vw 3vw;
}

.stacked_images {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20vw;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stack_layer {
    position: relative;
    width: 18vw;
    height: auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    border-radius: 0.8vw;
    transition: margin-top 0.4s cubic-bezier(0.25, 0.1, 0.25, 1), opacity 0.4s ease-out, transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    will-change: margin-top, opacity, transform;
}

.stack_layer.layer1 {
    z-index: 4;
    margin-top: 0;
}

.stack_layer.layer2 {
    z-index: 3;
    margin-top: -2vw;
}

.stack_layer.layer3 {
    z-index: 2;
    margin-top: -2vw;
}

.stack_layer.layer4 {
    z-index: 1;
    margin-top: -2vw;
}

/* Foundry Section */
.foundry_section {
    background: #0a0a0a;
}

.foundry_wrapper {
    display: flex;
    min-height: 100vh;
}

.foundry_content {
    width: 50%;
    padding: 5vw 4vw 5vw 11.3vw;
}

.foundry_content h2 {
    font-size: 2.5vw;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 0.5vw;
}

.foundry_content h2 em {
    font-style: italic;
    font-family: 'Times New Roman', Times, serif;
}

.foundry_subtitle {
    font-size: 1vw;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 3vw;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.foundry_accordion {
    margin-top: 2vw;
}

.accordion_item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.accordion_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2vw 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion_header span {
    font-size: 1vw;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
}

.accordion_header:hover span {
    color: #ffffff;
}

.accordion_icon {
    color: rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease;
}

.accordion_item.active .accordion_icon {
    transform: rotate(180deg);
}

.accordion_content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.accordion_item.active .accordion_content {
    max-height: 300px;
    padding-bottom: 1.5vw;
}

.accordion_content p {
    font-size: 0.9vw;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    max-width: 28vw;
}

.foundry_visual {
    width: 50%;
    position: relative;
    overflow: hidden;
    min-height: 50vw;
}

.foundry_stack {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20vw;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.foundry_layer {
    position: relative;
    width: 18vw;
    height: auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    border-radius: 0.8vw;
    transition: margin-top 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    will-change: margin-top;
}

.foundry_layer:first-child {
    margin-top: 0;
    z-index: 9;
}

.foundry_layer:nth-child(2) {
    z-index: 8;
}

.foundry_layer:nth-child(3) {
    z-index: 7;
}

.foundry_layer:nth-child(4) {
    z-index: 6;
}

.foundry_layer:nth-child(5) {
    z-index: 5;
}

.foundry_layer:nth-child(6) {
    z-index: 4;
}

.foundry_layer:nth-child(7) {
    z-index: 3;
}

.foundry_layer:nth-child(8) {
    z-index: 2;
}

.foundry_layer:nth-child(9) {
    z-index: 1;
}

.stack_card {
    width: 22vw;
    min-height: 8vw;
    border-radius: 0.8vw;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 1.2vw 1.5vw;
    box-sizing: border-box;
    transition: margin-top 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-top: -5vw;
}

.stack_card:first-child {
    margin-top: 0;
}

.card_title {
    display: block;
    font-size: 0.85vw;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.4vw;
}

.card_desc {
    display: block;
    font-size: 0.6vw;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* Card colors - matching design gradient from purple to green */
.card_agents {
    background: linear-gradient(135deg, #a855a0 0%, #7c3d7a 100%);
    z-index: 9;
}

.card_bud_agents {
    background: linear-gradient(135deg, #7b4d9e 0%, #5a3580 100%);
    z-index: 8;
}

.card_agent_layer {
    background: linear-gradient(135deg, #4a5a9e 0%, #3a4580 100%);
    z-index: 7;
}

.card_finops {
    background: linear-gradient(135deg, #3565a0 0%, #264a80 100%);
    z-index: 6;
}

.card_catalogue {
    background: linear-gradient(135deg, #2570a0 0%, #1a5580 100%);
    z-index: 5;
}

.card_fabric {
    background: linear-gradient(135deg, #1a6580 0%, #0d4d65 100%);
    z-index: 4;
}

.card_runtime {
    background: linear-gradient(135deg, #1a7565 0%, #0d5a4a 100%);
    z-index: 3;
}

.card_os {
    background: linear-gradient(135deg, #2a8555 0%, #1d6540 100%);
    z-index: 2;
}

.card_hardware {
    background: linear-gradient(135deg, #3a9555 0%, #2d7540 100%);
    z-index: 1;
}

/* Any Model Section */
.anymodel_section {
    background: #f9f8f4;
    padding: 6vw 11.3vw 8vw 11.3vw;
    text-align: center;
}

.anymodel_wrapper h2 {
    font-size: 2.8vw;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 4vw;
}

.anymodel_wrapper h2 em {
    font-style: italic;
    font-family: 'Times New Roman', Times, serif;
}

.anymodel_container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.container_outer {
    background: #3a3a3a;
    border-radius: 5vw;
    padding: 1.2vw;
}

.container_middle {
    background: #2a2a2a;
    border-radius: 4.2vw;
    padding: 1.2vw;
}

.container_inner {
    background: #1a1a1a;
    border-radius: 3.5vw;
    padding: 1vw;
    position: relative;
}

/* Slot Machine Styles */
.slot_machine {
    display: flex;
    background: #ffffff;
    border-radius: 2.5vw;
    overflow: hidden;
}

.slot_column {
    width: 10vw;
    height: 8vw;
    overflow: hidden;
    position: relative;
    border-right: 1px solid #e5e5e5;
}

.slot_column:last-child {
    border-right: none;
}

.slot_reel {
    display: flex;
    flex-direction: column;
    transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.slot_item {
    width: 10vw;
    height: 8vw;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.slot_item img {
    max-width: 4.5vw;
    max-height: 4.5vw;
    object-fit: contain;
}

/* Enterprise Section */
.enterprise_section {
    background: #0a0a0a;
    padding: 6vw 11.3vw;
    position: relative;
    overflow: hidden;
}

.enterprise_bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 60% 50% at 10% 50%, rgba(80, 80, 100, 0.15) 0%, transparent 60%),
        radial-gradient(1px 1px at 5% 15%, rgba(255,255,255,0.3) 1px, transparent 1px),
        radial-gradient(1px 1px at 12% 45%, rgba(255,255,255,0.2) 1px, transparent 1px),
        radial-gradient(1px 1px at 8% 75%, rgba(255,255,255,0.4) 1px, transparent 1px),
        radial-gradient(1px 1px at 18% 25%, rgba(255,255,255,0.3) 1px, transparent 1px),
        radial-gradient(1px 1px at 25% 60%, rgba(255,255,255,0.2) 1px, transparent 1px),
        radial-gradient(1px 1px at 15% 85%, rgba(255,255,255,0.35) 1px, transparent 1px),
        radial-gradient(2px 2px at 3% 35%, rgba(255,255,255,0.25) 1px, transparent 1px),
        radial-gradient(1px 1px at 22% 10%, rgba(255,255,255,0.3) 1px, transparent 1px),
        radial-gradient(1px 1px at 30% 80%, rgba(255,255,255,0.2) 1px, transparent 1px),
        radial-gradient(ellipse 40% 30% at 5% 90%, rgba(100, 100, 120, 0.1) 0%, transparent 50%);
    background-size: 100% 100%;
    pointer-events: none;
}

.enterprise_wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 4vw;
}

.enterprise_left {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 1.5vw;
}

.enterprise_label {
    font-size: 1vw;
    color: #ffffff;
    font-weight: 500;
    white-space: nowrap;
    margin-top: 0.3vw;
}

.enterprise_words {
    display: flex;
    flex-direction: column;
    gap: 0.3vw;
}

.enterprise_words span {
    font-size: 2.2vw;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
}

.enterprise_words span em {
    font-style: italic;
    font-family: 'Times New Roman', Times, serif;
}

.enterprise_right {
    flex: 1.2;
}

.enterprise_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.8vw;
    overflow: hidden;
}

.enterprise_card {
    background: #1a1a1a;
    padding: 1.5vw;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.enterprise_card:hover {
    background: #222;
}

.enterprise_card .card_image {
    width: 100%;
    margin-bottom: 1vw;
    aspect-ratio: 4/3;
    background: #2a2a2a;
    border-radius: 0.5vw;
    overflow: hidden;
}

.enterprise_card .card_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.5vw;
    display: block;
}

.enterprise_card .card_label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5vw;
}

.enterprise_card .card_label span {
    font-size: 1vw;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.enterprise_card .card_label svg {
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.enterprise_card:hover .card_label span {
    color: #ffffff;
}

.enterprise_card:hover .card_label svg {
    color: #ffffff;
    transform: translate(2px, -2px);
}

/* News and Updates Section */
.news_updates_section {
    background: #0a0a0a;
    padding: 5vw 11.3vw 6vw 11.3vw;
    position: relative;
    overflow: hidden;
}

.news_updates_stars {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8vw;
    background:
        radial-gradient(1px 1px at 10% 20%, rgba(255,255,255,0.4) 1px, transparent 1px),
        radial-gradient(1px 1px at 20% 50%, rgba(255,255,255,0.3) 1px, transparent 1px),
        radial-gradient(1px 1px at 30% 30%, rgba(255,255,255,0.5) 1px, transparent 1px),
        radial-gradient(1px 1px at 40% 70%, rgba(255,255,255,0.2) 1px, transparent 1px),
        radial-gradient(1px 1px at 50% 40%, rgba(255,255,255,0.4) 1px, transparent 1px),
        radial-gradient(1px 1px at 60% 60%, rgba(255,255,255,0.3) 1px, transparent 1px),
        radial-gradient(1px 1px at 70% 20%, rgba(255,255,255,0.5) 1px, transparent 1px),
        radial-gradient(1px 1px at 80% 80%, rgba(255,255,255,0.2) 1px, transparent 1px),
        radial-gradient(1px 1px at 90% 50%, rgba(255,255,255,0.4) 1px, transparent 1px),
        radial-gradient(2px 2px at 15% 60%, rgba(255,255,255,0.3) 1px, transparent 1px),
        radial-gradient(2px 2px at 85% 30%, rgba(255,255,255,0.3) 1px, transparent 1px);
    background-size: 100% 100%;
    pointer-events: none;
}

.news_updates_wrapper {
    position: relative;
    z-index: 1;
}

.news_updates_header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3vw;
}

.news_updates_title h2 {
    font-size: 2.5vw;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 0.5vw;
}

.news_updates_title h2 em {
    font-style: italic;
    font-family: 'Times New Roman', Times, serif;
}

.news_updates_title p {
    font-size: 1vw;
    color: rgba(255, 255, 255, 0.5);
}

.view_all_link {
    display: flex;
    align-items: center;
    gap: 0.5vw;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95vw;
    font-weight: 500;
    transition: all 0.3s ease;
}

.view_all_link:hover {
    opacity: 0.7;
}

.view_all_link svg {
    transition: transform 0.3s ease;
}

.view_all_link:hover svg {
    transform: translate(3px, -3px);
}

.news_updates_list {
    margin-top: 2vw;
}

.news_item {
    display: flex;
    align-items: center;
    padding: 1.8vw 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    transition: all 0.3s ease;
}

.news_item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.news_item:hover {
    background: rgba(255, 255, 255, 0.02);
}

.news_date {
    width: 12vw;
    flex-shrink: 0;
    font-size: 0.95vw;
    color: rgba(255, 255, 255, 0.5);
}

.news_title {
    flex: 1;
    font-size: 1vw;
    color: rgba(255, 255, 255, 0.85);
    padding-right: 2vw;
}

.news_link {
    display: flex;
    align-items: center;
    gap: 0.4vw;
    font-size: 0.9vw;
    color: #ffffff;
    font-weight: 500;
    flex-shrink: 0;
}

.news_item:hover .news_link {
    opacity: 0.7;
}

.news_link svg {
    transition: transform 0.3s ease;
}

.news_item:hover .news_link svg {
    transform: translate(3px, -3px);
}

/* Old section1 styles kept for reference */
.home_section1 h2{
        text-align: center;
    padding-top: 10.8vw;
    font-size: 3.3vw;
    font-weight: 500;
}
.home_section1 p{
        width: 36vw;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1vw;
    font-size: 1.26vw;
    text-align: center;
}
.home_section1{
    background: #f9f8f4;
}
.home_section1 img{
    width: 100%;
}
.home_section2{
    background: #f9f8f4;
    min-height: 8vw;
}
.flex_section{
        display: flex;
    width: 39.6vw;
    margin-left: auto;
    margin-right: auto;
   padding-top: .7vw;
}
.flex_section .quoteImg{
    width: 1.6vw;
    height: max-content;
}
.quote_slider{
    display: flex;
}
.quote_slider img{
        width: 4.9vw;
    padding-top: .6vw;
    padding-left: .5vw;
    object-fit: contain;
}
.quote_sliderContnet{
    padding-left: .81vw;
}
.quote_sliderContnet p{
        font-size: .94vw;
    font-style: italic;
    line-height: 1.4;
    font-weight: 500;
}
.quote_sliderContnet span{
        font-size: .94vw;
    font-style: italic;
    line-height: 1.4;
    font-weight: 500;
    padding-top: .8vw;
    display: block;
}
.quoteRImg{
        width: 1.6vw;
    height: max-content;
    margin-top: auto;
    flex-shrink: 0;
    padding-bottom: .4vw;
}

.quote_block {
  position: relative;
  min-height: 80px;
}

.quote_slider {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(-20px); /* start slightly above */
  transition: opacity 0.8s ease, transform 0.8s ease;
  z-index: 0;
  pointer-events: none;
}

.quote_slider.show {
  opacity: 1;
  transform: translateY(0); /* move down into place */
  z-index: 2;
  position: relative;
  pointer-events: auto;
}

.quote_slider.hidden {
  transition: none !important;
  opacity: 0 !important;
  transform: translateY(-20px) !important; /* keep same direction */
  z-index: 0 !important;
}
.home_section3{
    background: #f9f8f4;
        position: relative;
    z-index: 2;
}
.home_section3_grid{
        z-index: 2;
    position: relative;
        display: flex;
    gap: 1vw;
    padding-top: 3.8vw;
    padding-left: 11.2vw;
    padding-right: 11.2vw;
}
.home_section3_grid .col1{
        background: #f7efe1;
   width: 37.4vw;
    flex-shrink: 0;
    border-radius: 1.3vw;
   padding: 2.7vw 2.2vw;
}
.home_section3_grid .col1 img{
       width: 93%;
    margin-left: auto;
    margin-right: auto;
    display: block;
}
.home_section3_grid .col1 h4{
        padding-top: 2.2vw;
    font-size: 1.223vw;
     font-weight: 600;
}
.home_section3_grid .col1 p{
        padding-top: .6vw;
    font-size: .95vw;
    line-height: 1.43;
}
.overlay_9934{
        position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 76%);
    z-index: 1;
    width: 59vw;
}
/* Section 3 - 5 Cards Grid */
.home_section3_grid .col2 {
    flex: 1;
}
.col2_cards_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1vw;
}
.col2_cards_grid .col2_card {
    background: #f7efe1;
    border-radius: 1vw;
    padding: 1.5vw;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.col2_cards_grid .col2_card:nth-child(5) {
    grid-column: span 2;
}
.col2_cards_grid .col2_card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}
.col2_cards_grid .col2_card img {
    width: 2.5vw;
    height: 2.5vw;
    object-fit: contain;
    margin-bottom: 0.6vw;
}
.col2_cards_grid .col2_card h4 {
    font-size: 1.1vw;
    font-weight: 600;
    margin: 0 0 0.4vw 0;
    color: #1a1a1a;
}
.col2_cards_grid .col2_card p {
    font-size: 0.85vw;
    line-height: 1.4;
    color: #555;
    margin: 0;
}
.home_section4{
    background: #f9f8f4;
   padding: 8.9vw 11.5vw 3.9vw 11.5vw;
}
.home_section4_wrap{
    background: #f0f1e2;
    border-radius: .5vw;
    padding: 1.5vw 1.3vw;
        position: relative;
    z-index: 2;
}
.home_section4_wrap h4{
       font-size: .91vw;
    color: #5a6e4b;
    font-weight: 600;
}
.home_section4_wrap h2{
        font-size: 2.02vw;
    font-weight: 500;
    margin-top: .8vw;
    width: 29vw;
}
.tab_heading{
margin-top: 1.9vw;
display: flex;
}
.tab_heading span.active{
        font-weight: 500;
    color: black;
    font-size: .8vw;
    border-bottom: 2px solid black;
}
.tab_heading span{
    cursor: pointer;
    padding-bottom: .6vw;
    display: block;
    color: #0007149f;
    border-bottom: 1px solid #00071433;
    padding-right: .9vw;
    padding-left: .9vw;
    font-size: .74vw;
}
.tab_heading span:hover{
    color:black;
}
.tab_content {
    display: flex;
}
.tab_content .col1{
        width: 29vw;
    flex-shrink: 0;
}
.tab_content .col1 h3{
        margin-top: 2vw;
    font-size: 1.23vw;
}
.tab_content .col1 p{
        margin-top: 0.7vw;
    font-size: .95vw;
    width: 21vw;
    line-height: 1.5;
}
.tab_content .col1 ul{
        padding: 0;
    margin: 0;
    margin-top: .8vw;
}
.tab_content .col1 ul li{
       list-style-type: none;
    display: flex;
    gap: .7vw;
    margin-bottom: 1vw;
}
.tab_content .col1 ul li p{
       margin: 0;
    font-size: 1.05vw;
    line-height: 1;
    font-weight: 500;
}
.tab_content .col2 img{
    width: 100%;
}
.features_btn{
        display: flex;
    margin-top: 2vw;
    align-items: center;
}
.features_btn a{
     position: relative;
    text-decoration: unset;
    color: black;
    padding: .6vw .83vw;
    font-size: .98vw;
    font-weight: 500;
    z-index: 1;
    line-height: 1;
}
.features_btn svg{
    padding-top: .3vw;
}
.features_btn a:after{
    content: "";
    height: 2px;
    position: absolute;
    bottom: 0;
    right: 1.25rem;
    left: 1.25rem;
    background-color: #2b2b2b;
    transform-origin: bottom center;
    z-index: -1;
    border-radius: 6px;
        display: block;
    transition: all .3s cubic-bezier(.2,0,0,1);
}
.features_btn a:hover{
    color: white;
}
.features_btn a:hover:after {
    right: 0;
    left: 0;
    height: 100%;
}
.tab_content {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.tab_content.active {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}
.home_section5 .logo_wrap{
    position: relative;
    padding-bottom: 6vw;
}
.overlay_bg{
    position: relative;
}
.overlay_299{
       position: sticky;
    opacity: .3;
    object-fit: cover;
    top: 0;
    width: 78.8%;
    left: 10.5vw;
    height: 19vw;
}
.home_section5{
    padding: 1vw 10.5vw 0vw 10.5vw;
    background: #f9f8f4;
    margin-top: -20vw;
}
.logo_wrap h3{
        font-weight: 500;
    text-align: center;
    padding-top: .8vw;
    font-size: 1.7vw;
}
.logo_slider{
    margin-top: 2.7vw;
}
.logo_slider img{
        background: #e8efdb;
    padding: 1vw 1.9vw 1vw 1.9vw;
    height: 1.7vw;
    border-radius: .6vw;
    display: inline-block;
    margin: 0 8px;
    width: auto !important;
}
.home_section5 .slick-dots {
       margin: 0;
    margin-top: -1.7vw;
    display: none !important;
    gap: 15px;
    padding: 0;
    justify-content: center;
}
.home_section5 .slick-dots li{
    list-style: none;
}
.logo_slider .slick-dots li button {
    width: 8px;
    height: 10px;
    cursor: pointer;
    font-size: 0;
    line-height: 0;
    display: block;
    padding: 5px;
    color: transparent;
    border: 0;
    outline: none;
    border-radius: 50%;
    background: transparent;
    position: relative;
}
.home_section5 .slick-dots li.slick-active button:before {
    opacity: 1;
}
.home_section5 .slick-dots li button:before {
    font-family: slick;
    font-size: 23px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: "•";
    text-align: center;
    opacity: .25;
    color: #000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* iPad/Tablet responsive for Logo Slider Section */
@media (min-width: 501px) and (max-width: 1024px) {
    .home_section5 {
        padding: 4vw 4vw 4vw 4vw;
        margin-top: -10vw;
    }
    .home_section5 .logo_wrap {
        padding-bottom: 4vw;
    }
    .logo_wrap h3 {
        font-size: 2.8vw;
        padding-top: 1vw;
    }
    .logo_slider {
        margin-top: 3vw;
    }
    .logo_slider img {
        height: 3vw;
        padding: 1.8vw 3vw;
        border-radius: 1vw;
        margin: 0 6px;
    }
    .home_section5 .slick-dots {
        display: none !important;
    }
}

.home_section6{
        background: #f9f8f4;
padding: 4.4vw 11.3vw 7.4vw 11.3vw;
}
.home_section6_wrap{
        position: relative;
    z-index: 1;
        background: #e2f1d9;
    border-radius: 1.8vw;
    padding: 2.1vw 2.3vw;
}
.home_section6_content h3{
        font-size: 2vw;
    font-weight: 500;
}
.home_section6_content p{
        margin-top: .3vw;
    font-size: 1.063vw;
    width: 19vw;
}
.home_section6_content{
        display: flex;
    justify-content: space-between;
}
.home_section6_content a{
        text-decoration: unset;
    color: black;
    background: white;
    border: 1px solid;
    border-radius: .3vw;
    padding: .7vw 1.6vw;
    font-size: 1vw;
    display: block;
    margin-top: 1.4vw;
    font-weight: 500;
}
.home_section6_content a:hover{
    background: black;
    color: white;
}
.section6_card_wrap{
        display: grid;
    grid-template-columns: repeat(4, 1fr);
        margin-top: 2.5vw;
    gap: .8vw;
}
.section6_card_wrap .main_img{
    width: 100%;
        height: 10.2vw;
    object-fit: cover;
}
.section6_card{
    position: relative;
        border-radius: .9vw;
    overflow: hidden;
    background: #e9f6e3;
}
.section6_card_wrap a{
    display: block;
        text-decoration: unset;
    color: inherit;
     transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .3s;
    transition-property: all;
}
.section6_card_wrap a span{
    position: absolute;
        background: #e9f6e3;
    padding: 8px 12px;
    color: #2b2b2b;
    font-weight: 500;
    border-radius: 25px;
    right: 1vw;
    top: 1vw;
    font-size: .8vw;
}
.section6_card_wrap .col{
        padding: 1vw 1.4vw;
    margin: 0;
}
.logoRow img{
    height: 1.4vw;
    object-fit: contain;
}
.logoRow{
        display: flex;
    gap: 10px;
}
.section6_card_wrap h4{
      padding-top: .8vw;
    font-size: 1.1vw;
    font-weight: 600;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.section6_card_wrap p{
        margin-top: .5vw;
    font-size: .9vw;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;

}
.section6_card_wrap .section6_card:hover a{
        --tw-scale-x: 1.02;
    --tw-scale-y: 1.02;
    transform: scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    
}
.home_section6.home_section7 .home_section6_wrap{
background: #f5ebf9;
       position: relative;
    z-index: 1;

}
.home_section6.home_section7{
    padding: 4.7vw 11.3vw;
}
.home_section7 .home_section6_content p{
width: 28vw;
}
.home_section7 .section6_card_wrap{
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8vw;
}
.home_section7 .section6_card_wrap a span{
       position: unset;
    margin: .7vw 0;
    display: inline-block;
}
.home_section7 .section6_card{
    background: #ede0ef;
}
.home_section7 .section6_card_wrap h4{
    padding-top: 0;
}
.home_section7 .section6_card_wrap .col{
    padding: 1vw 1.4vw 2vw 1.4vw;
}
.home_section7 .section6_card_wrap p{
    margin-top: 0;
}
.home_section8{
    padding: 7.3vw 11.3vw;
    background: #f9f8f4;
}
.home_section8_wrap{
        position: relative;
    z-index: 1;
        background: #f9f4ea;
    border-radius: 1.8vw;
    padding: 2.1vw 2.3vw;
}
.home_section8_content{
        display: flex;
    justify-content: space-between;
}
.home_section8_content h3{
        font-size: 2vw;
    font-weight: 500;
}
.home_section8_content p{
        margin-top: .3vw;
    font-size: 1.063vw;
    width: 19vw;
}
.home_section8_content a{
        text-decoration: unset;
    color: black;
    background: white;
    border: 1px solid;
    border-radius: .3vw;
    padding: .7vw 1.6vw;
    font-size: 1vw;
    display: block;
    margin-top: 1.4vw;
    font-weight: 500;
}
.home_section8_content a:hover{
    background: black;
    color: white;
}
.home_section8_cardWrap{
        display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 2.8vw;
    gap: 1vw;
}
.home_section8_card{
        border-radius: .9vw;
}
.home_section8_card a{
    height: 100%;
        display: flex;
    flex-direction: column;
    gap: 1vw;
        text-decoration: unset;
    color: inherit;
}
.home_section8_card img{
        border-radius: .9vw;
    height: 8.2vw;
    width: 100%;
    object-fit: cover;
}
.home_section8_card p{
    padding: 2.1vw 1.1vw;
    font-size: 1.3vw;
    font-weight: 600;
    width: 10vw;
}
.divP{
    border-radius: .9vw;
        height: 100%;
}
.home_section8_cardWrap .home_section8_card:nth-child(1) .divP{
    background: #d2e8c8;
}
.home_section8_cardWrap .home_section8_card:nth-child(1) .divP p{
    color:#709955;
}
.home_section8_cardWrap .home_section8_card:nth-child(2) .divP{
    background: #e5dbeb;
}
.home_section8_cardWrap .home_section8_card:nth-child(1) .divP p{
    color:#6f4f82;
}
.home_section8_cardWrap .home_section8_card:nth-child(3) .divP{
    background: #dce4ea;
}
.home_section8_cardWrap .home_section8_card:nth-child(3) .divP p{
    color:#37586f;
}
.home_section8_cardWrap .home_section8_card:nth-child(4) .divP{
    background: #fae4d0;
}
.home_section8_cardWrap .home_section8_card:nth-child(4) .divP p{
    color:#c28951;
}
.home_section8_card a{
     transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .3s;
    transition-property: all;
}
.home_section8_card a:hover{
        --tw-scale-x: 1.02;
    --tw-scale-y: 1.02;
    transform: scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    
}
.home_section9{
    padding: 4.3vw 11.3vw 14.3vw 11.3vw;
    background: #f9f8f4;
}
.home_section9_wrap{
        position: relative;
    z-index: 1;
    background: #e5ecf1;
    border-radius: 1.8vw;
    padding: 2.1vw 2.3vw;
}
.home_section9_content{
        display: flex;
    justify-content: space-between;
}
.home_section9_content h3{
        font-size: 2vw;
    font-weight: 500;
}
.home_section9_content p{
        margin-top: .3vw;
    font-size: 1.063vw;
   width: 30vw;
}
.home_section9_content a{
        text-decoration: unset;
    color: black;
    background: white;
    border: 1px solid;
    border-radius: .3vw;
    padding: .7vw 1.6vw;
    font-size: 1vw;
    display: block;
    margin-top: 1.4vw;
    font-weight: 500;
}
.home_section9_content a:hover{
    background: black;
    color: white;
}
.home_section9_Cardwrap{
        display: grid;
    grid-template-columns: repeat(2, 1fr);
        gap: 1vw;
    margin-top: 2.5vw;
}
.home_section9_Cardwrap img{
    width: 100%;
}
.news_card{
        border-radius: .9vw;
    overflow: hidden;
    background: #edf4fa;
}
.news_card a{
        color: inherit;
    text-decoration: unset;
}
.news_card img{
    display: block;
        height: 11vw;
    object-fit: cover;
}
.news_card_content{
    padding: 1vw;
}
.news_card_content h4{
         font-size: 1.27vw;
    font-weight: 600;
}
.news_card_content p{
        margin-top: .4vw;
    font-size: 1.08vw;
}
.news_card_content span{
        display: block;
    margin-top: 1.1vw;
    font-size: .8vw;
}
.news_Rightcard a{
        text-decoration: unset;
    color: inherit;
    display: flex;
}
.news_Rightcard img{
        width: 12vw;
    height: 11vw;
    object-fit: cover;
}
.news_Rightcard{
        border-radius: .9vw;
    overflow: hidden;
    background: #edf4fa;
}
.news_Rightcard .news_card_content p{
        display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
}
.home_section9_Cardwrap .col2{
        display: flex;
    flex-direction: column;
    gap: 1vw;
}
.news_card a{
    display: block;
}
.home_section9_Cardwrap a{
        transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .3s;
    transition-property: all;
}
.home_section9_Cardwrap a:hover{
    --tw-scale-x: 1.02;
    --tw-scale-y: 1.02;
    transform: scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
@media(max-width:500px){
    /* Hero Section Mobile */
    .home_hero {
        min-height: auto;
        padding: 15vw 5vw;
        margin: 24vw 4vw 0 4vw;
        border-radius: 6vw;
    }
    .home_hero_content {
        padding: 0 2vw;
    }
    .home_hero_content h1 {
        font-size: 8vw;
        text-align: center;
        line-height: 1.3;
    }
    .home_hero_content h1 em {
        font-size: 8vw;
    }
    .rotating-text-wrapper {
        display: block;
        height: auto;
        min-height: 1.3em;
        margin-top: 1vw;
        text-align: center;
        width: 100%;
        overflow: visible;
        position: relative;
    }
    .rotating-text {
        display: block;
        text-align: center;
        width: 100%;
        position: relative;
        height: 1.3em;
    }
    .rotating-word-placeholder {
        display: none;
    }
    .rotating-word {
        white-space: nowrap;
        left: 50%;
        transform: translateX(-50%) translateY(100%);
        text-align: center;
        width: auto;
        position: absolute;
    }
    .rotating-word.active {
        transform: translateX(-50%) translateY(0);
    }
    .rotating-word.exit {
        transform: translateX(-50%) translateY(-100%);
    }
    .home_hero_content p {
        font-size: 3.5vw;
        max-width: 90vw;
        margin-top: 5vw;
        line-height: 1.6;
        padding: 0 2vw;
    }
    .hero_btn {
        padding: 3.5vw 8vw;
        font-size: 3.5vw;
        border-radius: 2vw;
        margin-top: 7vw;
        display: inline-block;
    }
    /* Hero blobs mobile optimization */
    .hero_blob {
        filter: blur(40px);
        opacity: 0.7;
    }
    .hero_blob.blob1 {
        width: 60vw;
        height: 60vw;
        top: 5%;
        left: 10%;
    }
    .hero_blob.blob2 {
        width: 50vw;
        height: 50vw;
        top: 20%;
        right: 5%;
    }
    .hero_blob.blob3 {
        width: 45vw;
        height: 45vw;
        bottom: 10%;
        left: 0%;
    }
    .hero_blob.blob4 {
        width: 55vw;
        height: 55vw;
        bottom: 0%;
        right: 0%;
    }

    /* Mission Section Mobile */
    .mission_section {
        padding: 10vw 6vw;
    }
    .mission_wrapper {
        flex-direction: column;
        gap: 8vw;
    }
    .mission_content {
        width: 100%;
    }
    .mission_content h2 {
        font-size: 6.5vw;
        margin-bottom: 5vw;
    }
    .mission_content > p {
        font-size: 3.8vw;
        margin-bottom: 3vw;
    }
    .mission_video {
        width: 100%;
    }
    .video_frame {
        border-radius: 3vw;
    }

    /* Engineered Section Mobile */
    .engineered_wrapper {
        flex-direction: column;
    }
    .engineered_content {
        width: 100%;
        padding: 10vw 6vw;
    }
    .engineered_blob {
        top: 5vw;
        left: 5vw;
        width: 25vw;
        height: 25vw;
    }
    .engineered_content h2 {
        font-size: 6vw;
        margin-bottom: 5vw;
    }
    .engineered_content > p {
        font-size: 3.8vw;
        max-width: 100%;
        margin-bottom: 3vw;
    }
    .engineered_content h3 {
        font-size: 5.5vw;
        margin-top: 6vw;
        margin-bottom: 5vw;
    }
    .engineered_links .links_label {
        font-size: 3.5vw;
        margin-bottom: 2vw;
        padding-bottom: 2vw;
    }
    .engineered_link {
        padding: 4vw 0;
        font-size: 4vw;
    }
    .engineered_link svg {
        width: 5vw;
        height: 5vw;
    }
    .engineered_cta {
        margin-top: 8vw;
    }
    .engineered_cta > span {
        font-size: 3.5vw;
        margin-bottom: 3vw;
    }
    .connect_btn {
        padding: 3vw 6vw;
        font-size: 3.8vw;
        border-radius: 1.5vw;
    }
    .engineered_visual {
        width: 100%;
        min-height: 80vw;
    }
    .stacked_images {
        transform: translate(-50%, -50%);
        width: 50vw;
        height: auto;
    }
    .stack_layer {
        width: 45vw;
    }
    .stack_layer.layer1 {
        margin-top: 0;
    }
    .stack_layer.layer2 {
        margin-top: -4vw;
    }
    .stack_layer.layer3 {
        margin-top: -4vw;
    }
    .stack_layer.layer4 {
        margin-top: -4vw;
    }

    /* Foundry Section Mobile */
    .foundry_wrapper {
        flex-direction: column;
    }
    .foundry_content {
        width: 100%;
        padding: 10vw 6vw;
    }
    .foundry_content h2 {
        font-size: 6vw;
        line-height: 1.3;
        margin-bottom: 4vw;
    }
    .foundry_content > p {
        font-size: 3.5vw;
        line-height: 1.6;
        margin-bottom: 3vw;
    }
    .foundry_content h3 {
        font-size: 5vw;
        margin-top: 5vw;
        margin-bottom: 4vw;
    }
    .foundry_content--swapped .engineered_links {
        margin-top: 6vw;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }
    .foundry_content--swapped .engineered_links .links_label {
        font-size: 3.2vw;
        margin-bottom: 2vw;
        padding-bottom: 2vw;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        max-width: 100%;
    }
    .foundry_content--swapped .engineered_link {
        padding: 3.5vw 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }
    .foundry_content--swapped .engineered_link span {
        font-size: 3.8vw;
    }
    .foundry_content--swapped .engineered_link svg {
        width: 4vw;
        height: 4vw;
        flex-shrink: 0;
    }
    .foundry_content {
        max-width: 100%;
        overflow: hidden;
    }
    .foundry_content--swapped .engineered_cta {
        flex-direction: column;
        align-items: center;
        gap: 3vw;
        margin-top: 8vw;
        text-align: center;
    }
    .foundry_content--swapped .engineered_cta > span {
        font-size: 3.2vw;
    }
    .foundry_content--swapped .connect_btn {
        padding: 3vw 8vw;
        font-size: 3.5vw;
        border-radius: 1.5vw;
    }
    .foundry_section {
        overflow: hidden;
        max-width: 100vw;
    }
    .foundry_wrapper {
        max-width: 100%;
        overflow: hidden;
    }
    .foundry_visual {
        width: 100%;
        min-height: 70vw;
        padding: 6vw 0;
    }
    .foundry_visual .stacked_images {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 0 10vw;
        box-sizing: border-box;
    }
    .foundry_visual .stack_layer {
        width: 80vw;
        margin-top: -10vw;
    }
    .foundry_visual .stack_layer:first-child {
        margin-top: 0;
    }
    .foundry_subtitle {
        font-size: 3.5vw;
        margin-bottom: 6vw;
    }
    .accordion_header {
        padding: 4vw 0;
    }
    .accordion_header span {
        font-size: 4vw;
    }
    .accordion_icon {
        width: 5vw;
        height: 5vw;
    }
    .accordion_item.active .accordion_content {
        padding-bottom: 4vw;
    }
    .accordion_content p {
        font-size: 3.5vw;
        max-width: 100%;
    }
    .foundry_visual {
        width: 100%;
        min-height: 80vw;
    }
    .foundry_stack {
        transform: translate(-50%, -50%);
        width: 50vw;
        height: auto;
    }
    .foundry_layer {
        width: 45vw;
    }
    .stack_card {
        width: 100%;
        min-height: 20vw;
        border-radius: 3vw;
        padding: 4vw;
        margin-top: -12vw;
    }
    .stack_card:first-child {
        margin-top: 0;
    }
    .card_title {
        font-size: 4vw;
        margin-bottom: 1.5vw;
    }
    .card_desc {
        font-size: 3vw;
    }

    /* Any Model Section Mobile */
    .anymodel_section {
        padding: 10vw 4vw 12vw 4vw;
    }
    .anymodel_wrapper h2 {
        font-size: 6.5vw;
        margin-bottom: 8vw;
    }
    .container_outer {
        border-radius: 10vw;
        padding: 2vw;
    }
    .container_middle {
        border-radius: 8.5vw;
        padding: 2vw;
    }
    .container_inner {
        border-radius: 7vw;
        padding: 2vw;
    }
    .slot_machine {
        border-radius: 5vw;
    }
    .slot_column {
        width: 22vw;
        height: 18vw;
    }
    .slot_item {
        width: 22vw;
        height: 18vw;
    }
    .slot_item img {
        max-width: 10vw;
        max-height: 10vw;
    }

    /* Enterprise Section Mobile */
    .enterprise_section {
        padding: 10vw 6vw;
    }
    .enterprise_wrapper {
        flex-direction: column;
        gap: 8vw;
    }
    .enterprise_left {
        flex-direction: column;
        gap: 3vw;
        width: 100%;
    }
    .enterprise_label {
        font-size: 3.5vw;
    }
    .enterprise_words span {
        font-size: 7vw;
    }
    .enterprise_right {
        width: 100%;
    }
    .enterprise_grid {
        border-radius: 3vw;
    }
    .enterprise_card {
        padding: 4vw;
    }
    .enterprise_card .card_image {
        margin-bottom: 3vw;
        border-radius: 2vw;
    }
    .enterprise_card .card_image img {
        border-radius: 2vw;
    }
    .enterprise_card .card_label span {
        font-size: 3.5vw;
    }
    .enterprise_card .card_label svg {
        width: 4vw;
        height: 4vw;
    }

    /* News and Updates Section Mobile */
    .news_updates_section {
        padding: 10vw 6vw 12vw 6vw;
    }
    .news_updates_header {
        flex-direction: column;
        gap: 4vw;
        margin-bottom: 6vw;
    }
    .news_updates_title h2 {
        font-size: 7vw;
        margin-bottom: 2vw;
    }
    .news_updates_title p {
        font-size: 3.5vw;
    }
    .view_all_link {
        font-size: 3.5vw;
        gap: 2vw;
    }
    .view_all_link svg {
        width: 4vw;
        height: 4vw;
    }
    .news_item {
        flex-direction: column;
        align-items: flex-start;
        gap: 2vw;
        padding: 5vw 0;
    }
    .news_date {
        width: 100%;
        font-size: 3.2vw;
    }
    .news_title {
        font-size: 4vw;
        padding-right: 0;
    }
    .news_link {
        font-size: 3.5vw;
        gap: 1.5vw;
    }
    .news_link svg {
        width: 4vw;
        height: 4vw;
    }

    .overlay_9934{
        display: none;
    }
    .overlay_299{
        display: none;
    }
    .home_section1 h2{
            padding-top: 45.8vw;
    font-size: 7.5vw;
    }
    .home_section1 p{
        line-height: 1.5;
            width: 90vw;
    margin-top: 6.6vw;
    font-size: 3.8vw;
}
.home_section1 img{
    margin-top: 6vw;
}
.flex_section .quoteImg{
    width: 4.6vw;
}
.quote_slider img{
    width: 17.9vw;
}
.quote_sliderContnet p{
    font-size: 3vw;
}
.quote_sliderContnet span{
    font-size: 3vw;
}
.quoteRImg{
    width: 4.6vw;
}
.flex_section{
    width: 84.6vw;
    padding-top: 16.7vw;
}
.home_section3_grid{
    padding-top: 14.8vw;
    padding-left: 3.2vw;
    padding-right: 3.2vw;
    flex-wrap: wrap;
}
.home_section3_grid .col1{
        width: 100%;
    box-sizing: border-box;
    padding: 8.7vw 5.2vw;
}
.home_section3_grid .col1 img{
        width: 100%;
    box-sizing: border-box;
}
.home_section3_grid .col1 h4{
        font-size: 5.44vw;
    padding-top: 12vw;
    line-height: 1.2;
}
.home_section3_grid .col1 p{
        font-size: 3.77vw;
    line-height: 1.64;
}
.home_section3 .col2_card.child1{
    margin-top: 4vw;
    margin-bottom: 5vw;
}
.home_section3 .col2_card{
    border-radius: 3.3vw;
    padding: 4.8vw 5.7vw;
}
.home_section3 .col2_card img{
    width: 13.1vw;
}
.home_section3 .col2_card h4 {
    padding-top: 2.7vw;
    font-size: 5.4vw;
}
.home_section3 .col2_card p{
        font-size: 3.8vw;
    line-height: 1.6;
    padding-top: 1.6vw;
}
.home_section3 .col2_card.child2 img {
    width: 10.7vw;
}
.home_section3 .col2_card.child2 h4 {
    padding-top: 4vw;
}
.home_section4{
    padding: 18.9vw 2.5vw 3.9vw 2.5vw;
}
.home_section4_wrap{
    padding: 12.5vw 7.3vw;
    border-radius: 3.3vw;
}
.home_section4_wrap .tab_content .col2{
    display: none;
}
.home_section4_wrap h4{
    font-size: 4.2vw;
}
.home_section4_wrap h2{
        font-size: 7vw;
    width: unset;
    padding-top: 1.3vw;
    line-height: 1.5;
}
.tab_heading span{
    font-size: 3.3vw;
    padding-bottom: 2.6vw;
    padding-right: 2.9vw;
    padding-left: 2.9vw;
}
.tab_heading span.active{
    font-size: 3.3vw;

}
.mobile_scroll{
    overflow: scroll;
       -ms-overflow-style: none;  
    scrollbar-width: none;  
}
.tab_heading{
     width: 150vw;
    margin-top: 7vw;
}
.tab_content .col1{
    width: 100%;
}
.tab_content .col1 h3 {
    margin-top: 10vw;
    font-size: 5.4vw;
}
.tab_content .col1 p {
    margin-top: 3.7vw;
    font-size: 3.7vw;
    width: 100%;
}
.tab_content .col1 ul{
    margin-top: 7.8vw;
}
.tab_content .col1 ul li{
    gap: 2.7vw;
    margin-bottom: 4vw;
}
.tab_content .col1 ul li p{
    font-size: 4.3vw;
}
.features_btn a{
        padding: 9.6vw 4.83vw 2.6vw 3.83vw;
    font-size: 4.2vw;
}
.features_btn svg {
    padding-top: 8.3vw;
}
.logo_wrap h3{
    font-size: 6.2vw;
}
.home_section5 {
    padding: 3vw 0vw 3vw 0vw;
}
.logo_slider img{
    height: 5vw;
    padding: 2.5vw 4vw;
    border-radius: 1.5vw;
}
.logo_slider {
    margin-top: 2vw;
}
.home_section5 .slick-dots{
    display: none !important;
}
.home_section6{
    padding: 16.4vw 3.3vw;
}
.home_section6.home_section7{
  padding: 9.4vw 3.3vw;
}
.home_section7 .home_section6_content p{
    width: 77vw;
}
.home_section6_wrap{
    border-radius: 5.8vw;
   padding: 11vw 4.3vw;
}
.home_section6_content{
    display: unset;
}
.home_section6_content h3{
        text-align: center;
    font-size: 6.5vw;
}
.home_section6_content p{
        width: 77vw;
    text-align: center;
    font-size: 3.87vw;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2vw;
}
.section6_card_wrap_mobile_scroll{
    overflow: scroll;
        -ms-overflow-style: none;  
    scrollbar-width: none;  
}
.section6_card_wrap{
    margin-top: 7vw;
        display: flex;
    width: 290vw;
    gap: 4vw;
}
.section6_card_wrap .main_img{
    height: 45.2vw;
}
.section6_card{
    border-radius: 3.9vw;
}
.section6_card_wrap a span{
        right: 5vw;
    top: 4vw;
    font-size: 3.2vw;
}
.section6_card_wrap .col{
    padding: 5vw 8.4vw;
}
.logoRow img{
    height: 5.4vw;
}
.section6_card_wrap h4{
        font-size: 4.2vw;
    padding-top: 4vw;
}
.section6_card_wrap p{
    -webkit-line-clamp: 3;
        font-size: 3.25vw;
    margin-top: 4vw;
}
.home_section6_content .mobile_a{
        text-align: center;
    margin-top: 6vw;
}
.home_section6_content a{
        display: inline-block;
    font-size: 4vw;
    padding: 2vw 5vw 2.6vw 5vw;
    border-radius: 1.4vw;
}
.logo_slider .slick-track {
    display: flex;
}
.home_section7 .section6_card_wrap .col {
    padding: 5vw 5.4vw 8vw 7.4vw;
}
.home_section7 .section6_card_wrap a span{
    margin: 2.7vw 0;
}
.home_section8{
    padding: 9.4vw 3.3vw;
}
.home_section8_wrap{
        border-radius: 5.8vw;
    padding: 11vw 4.3vw;
}
.home_section8_content{
    display: unset;
}
.home_section8_content h3{
        text-align: center;
    font-size: 6.5vw;
}
.home_section8_content p{
        width: 77vw;
    text-align: center;
    font-size: 3.87vw;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2vw;
}
.home_section8_content a{
        display: inline-block;
    font-size: 4vw;
    padding: 2vw 5vw 2.6vw 5vw;
    border-radius: 1.4vw;
}
.home_section8_content .mobile_a {
    text-align: center;
    margin-top: 6vw;
}
.home_section8_cardWrap_mobile{
    overflow: scroll;
      -ms-overflow-style: none;  
    scrollbar-width: none;  
}
.home_section8_cardWrap{
       display: flex;
    margin-top: 7vw;
    gap: 3vw;
}
.home_section8_card img{
        border-radius: 4.9vw;
    height: 43.2vw;
    flex-shrink: 0;
}
.divP{
        border-radius: 4.9vw;
            align-items: center;
    display: flex;

}
.home_section8_card a{
    gap: 3vw;
}
.home_section8_card p {
    padding: 10.1vw 7.1vw;
    font-size: 5vw;
    font-weight: 600;
    width: 45vw;
}
.home_section8_card{
        width: 74vw;
    flex-shrink: 0;

}

.home_section9{
   padding: 9.4vw 3.3vw 27.4vw 3.3vw;
}
.home_section9_wrap{
        border-radius: 5.8vw;
    padding: 11vw 4.3vw;
}
.home_section9_content{
    display: unset;
}
.home_section9_content h3{
        text-align: center;
    font-size: 6.5vw;
}
.home_section9_content p{
        width: 77vw;
    text-align: center;
    font-size: 3.87vw;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2vw;
}
.home_section9_content a{
        display: inline-block;
    font-size: 4vw;
    padding: 2vw 5vw 2.6vw 5vw;
    border-radius: 1.4vw;
}
.home_section9_content .mobile_a {
    text-align: center;
    margin-top: 6vw;
}
.home_section9_Cardwrap{
        display: flex;
    margin-top: 8vw;
    width: 214vw;
    gap: 3vw;
}
.home_section9_Cardwrap_mobile{
    overflow: scroll;
     -ms-overflow-style: none;  
    scrollbar-width: none;  
}
.news_card{
    border-radius: 4.9vw;
}
.news_card img{
    height: 27vw;
}
.news_card_content{
    padding: 3vw 8vw;
}
.news_card_content h4 {
       font-size: 4.7vw;
    font-weight: 600;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
}
.news_card_content p {
    margin-top: 2.4vw;
    font-size: 3.8vw;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
}
.news_card_content span {
    margin-top: 6.1vw;
    font-size: 3.2vw;
}
.news_Rightcard img{
    width: 100%;
    height: 27vw;
}
.news_Rightcard a{
    display: unset;
}
.news_Rightcard{
    border-radius: 4.9vw;
}
.home_section9_Cardwrap .col2{
    flex-direction: row;
    gap: 3vw;
}
.home_section7 .section6_card_wrap{
    gap: 3vw;

}
.home_section2 {
    min-height: 46vw;
}
}