/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --safety-yellow: #FFD700;
    --yellow-primary: #FFD700;
    --yellow-secondary: #FFD600;
    --yellow-accent: #FEDB03;
    --deep-navy: #0B1120;
    --dark-blue: var(--deep-navy);
    --black: #000000;
    --white: #FFFFFF;
    --grey-1: #B3B3B3;
    --grey-2: #4A4A4A;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--black);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.section-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 35px;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

/* Header Styles */
.header {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: var(--black);
    overflow: hidden;
    /* layout header into a fixed header row and a hero row to avoid overlap */
    display: grid;
    grid-template-rows: 140px 1fr;
    grid-template-areas: "headerbar" "hero";
}

.header-bg-image {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background-size:cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    z-index: 1;
}

.header-bg-image-1 {
    background-image: url('images/Back.png');
}



.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* cinematic deep navy overlay to improve text readability */
    background: linear-gradient(to bottom, rgba(11,17,32,0.35) 20%, rgba(11,17,32,0.8) 100%);
    z-index: 2;
}

.header-container {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    grid-template-areas: "logo actions" "nav nav";
    align-items: center;
    gap: 8px 24px;
    padding: 20px 70px 0;
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    grid-area: headerbar;
    z-index: 30; /* ensure header sits above hero */
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
}

.header.nav-hidden .header-container {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-20px);
}

.logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    flex-shrink: 0;
    margin-bottom: 0;
    grid-area: logo;
    margin-top: -180px;
    margin-left: -40px;
}

.logo-image {
    width: 380px;
    height: auto;
    object-fit: contain;
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger-menu span {
    width: 100%;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-text-main {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 40px;
    line-height: 1;
    color: var(--white);
    letter-spacing: 3px;
    display: block;
}

.logo-text-sub {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1;
    color: var(--white);
    letter-spacing: 2px;
    display: block;
    text-transform: uppercase;
}

.logo-text {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 32px;
    color: var(--yellow-primary);
    letter-spacing: 2px;
    text-decoration: none;
    display: block;
}

.logo-text:hover {
    color: var(--yellow-accent);
}

.nav {
    display: flex;
    gap: 0;
    align-items: center;
    margin: 0;
    position: relative;
    flex: 1;
    justify-content: flex-start;
    padding: 0;
    border-top: none;
    padding-top: 0;
    grid-area: nav;
    width: 100%;
    margin-top: -350px;
}

.nav-item {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.5;
    color: var(--white);
    text-decoration: none;
    padding: 15px 0;
    position: relative;
    transition: all 0.3s;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 100px;
    background: transparent;
    border: none;
    box-sizing: border-box;
    margin-right: 60px;
}

.nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--white);
    transition: width 0.4s ease;
}

.nav-item:hover::before {
    width: 100%;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--white);
    opacity: 0;
    transition: opacity 0.3s;
}

.nav-item.active::after {
    opacity: 1;
}

.nav-item .nav-text {
    position: relative;
    z-index: 2;
}

.nav-item .nav-arrow {
    width: 16px;
    height: 16px;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.nav-item .nav-arrow path {
    stroke: currentColor;
    fill: none;
}

.nav-item.active {
    color: var(--yellow-accent);
}

.nav-item.active .nav-arrow {
    color: var(--yellow-accent);
}

.nav-item:hover {
    color: var(--yellow-accent);
}

.nav-item:hover .nav-arrow {
    color: var(--yellow-accent);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
    justify-content: flex-end;
    grid-area: actions;
    justify-self: end;
    align-self: center;
    margin-top: -180px;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 20px;
    width: 300px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.search-box svg {
    flex-shrink: 0;
}

.search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.21;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0;
    width: auto;
    height: auto;
    background: transparent;
    backdrop-filter: none;
    border-radius: 0;
}

.lang-active {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    color: var(--white);
}

.lang-divider {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.5);
}

.lang-inactive {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.6);
}

.btn-contact {
    padding: 15px 40px;
    background: var(--yellow-primary);
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
    color: var(--white);
    cursor: pointer;
    transition: background 0.3s;
    white-space: nowrap;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ensure header actions don't get pushed and remain at top-right */
.header-actions .language-switcher,
.header-actions .search-box,
.header-actions .btn-contact {
    margin: 0;
}

.btn-contact:hover {
    background: var(--yellow-secondary);
}

.scroll-indicator {
    position: absolute;
    left: 70px;
    transform: none;
    bottom: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    color: var(--white);
    z-index: 12;
}

.scroll-indicator span {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.95;
}

.scroll-indicator svg {
    opacity: 0.9;
}

.about-hero .scroll-indicator {
    left: 70px;
    transform: none;
    bottom: 50px;
    gap: 14px;
    flex-direction: row-reverse;
}

.about-hero .scroll-indicator span {
    font-size: 12px;
    opacity: 0.75;
}

.about-hero .scroll-indicator svg {
    animation: scroll-indicator-bounce 1.8s ease-in-out infinite;
}

@keyframes scroll-indicator-bounce {
    0%,
    100% {
        transform: translateY(0);
        opacity: 0.9;
    }
    50% {
        transform: translateY(6px);
        opacity: 0.6;
    }
}

/* Home Page Hero Styles */
.hero-content {
    /* hero placed in the second grid row; center content in remaining viewport */
    position: relative;
    grid-area: hero;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
    text-align: center;
    z-index: 10;
    padding: 0 40px;
    min-height: calc(100vh - 140px);
    margin-top: -140px;
}

.hero-main-title {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 80px;
    line-height: 1.1;
    color: var(--white);
    text-align: center;
    text-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-subtitle-box {
    position: relative;
    display: inline-block;
    width: auto;
    min-width: 500px;
    height: auto;
    max-width: 100%;
}

.hero-subtitle-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--yellow-primary);
    border-radius: 0;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 5% 100%);
}

.hero-subtitle-text {
    position: relative;
    z-index: 1;
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 64px;
    line-height: 1.2;
    color: var(--black);
    padding: 15px 80px;
}

.hero-description-section {
    position: absolute;
    top: 1099px;
    left: 30%;
    transform: translateX(-50%);
    z-index: 10;
    width: 649px;
    max-width: calc(100% - 40px);
}

.hero-description-box {
    position: relative;
}

.hero-description-title {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 28px;
    line-height: 1.21;
    color: var(--white);
    margin-bottom: 0;
}

.hero-description-underline {
    width: 100%;
    max-width: 647px;
    height: 2px;
    background: var(--grey-2);
    margin-top: 46px;
}

.hero-description-text {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.21;
    color: var(--white);
    margin-top: 78px;
}

/* About Us Page Hero Styles */
.about-hero {
    display: block;
    min-height: 100vh;
}

.about-hero .header-overlay {
    background: linear-gradient(180deg, rgba(6, 20, 52, 0.85) 0%, rgba(6, 20, 52, 0.7) 45%, rgba(0, 0, 0, 0.75) 100%);
}

.about-hero .header-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 24px 70px 0;
    height: 130px;
    background: transparent;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
}

@media (max-width: 768px) {
    .about-hero.nav-hidden .header-container {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-20px);
        transition-delay: 0s;
    }
}


.about-hero .header-actions {
    gap: 18px;
}

.about-hero .search-box {
    width: 260px;
    height: 46px;
    border-radius: 999px;
    padding: 0 18px;
    flex-direction: row-reverse;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.about-hero .btn-contact {
    border-radius: 12px;
    color: var(--white);
}

.about-hero .hero-content {
    min-height: 100vh;
    padding: 240px 40px 90px;
}

.about-hero .hero-title-box {
    background: var(--safety-yellow);
    padding: 18px 44px;
    margin: 0 0 26px;
    display: inline-block;
    width: auto;
    max-width: 90%;
    box-shadow: none;
    box-sizing: border-box;
}

.about-hero .hero-title {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 34px;
    line-height: 1.25;
    color: var(--black);
    margin: 0;
    text-align: center;
    letter-spacing: -0.4px;
}

.about-hero .hero-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.65;
    color: var(--white);
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    padding: 0;
    width: auto;
}

.about-hero .hero-images {
    display: none;
}

/* safety: prevent banner from overlapping header on narrow widths */
@media (max-width: 1200px) {
    .hero-content { padding-top: 160px; }
    .hero-title { font-size: 40px; }
    .hero-title-box { max-width: 620px; padding: 10px 20px; }

    .about-hero .header-container {
        padding: 20px 40px 0;
        height: 120px;
    }

    .about-hero .hero-content {
        padding: 230px 32px 80px;
    }

    .about-hero .hero-title {
        font-size: 36px;
    }

    .about-hero .hero-title-box {
        padding: 14px 32px;
        max-width: 95%;
    }

    .about-hero .search-box {
        width: 220px;
    }

    .about-hero .scroll-indicator {
        left: 40px;
        bottom: 40px;
    }
}

@media (max-width: 768px) {
    .header { grid-template-rows: auto 1fr; }
    .header-container { padding: 12px 20px; }
    .hero-content { padding-top: 120px; }
    .hero-title { font-size: 32px; }
    .hero-description { font-size: 18px; max-width: 92%; }

    .about-hero .header-container {
        position: fixed;
        padding: 14px 18px 0;
        height: 110px;
    }

    .about-hero .hero-content {
        padding: 210px 18px 70px;
    }

    .about-hero .hero-title {
        font-size: 30px;
    }

    .about-hero .hero-title-box {
        padding: 12px 22px;
        max-width: 100%;
    }

    .about-hero .hero-description {
        font-size: 16px;
        max-width: 100%;
    }

    .about-hero .search-box {
        width: 100%;
        max-width: 240px;
    }

    .about-hero .scroll-indicator {
        left: 20px;
        bottom: 30px;
    }
}

.scroll-indicator svg {
    width: 48px;
    height: 48px;
}

.scroll-indicator svg path {
    stroke-width: 3;
}

/* Hero Small Images Section */
.hero-small-images {
    position: absolute;
    bottom: 80px;
    right: 70px;
    display: flex;
    flex-direction: row;
    gap: 15px;
    z-index: 10;
}

.hero-small-image {
    width: 180px;
    height: 120px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 3px;
    flex-shrink: 0;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

.hero-small-image-1 {
    background-image: url('images/Intro3.jpg');
}

.hero-small-image-2 {
    background-image: url('images/Intro4.jpg');
}





/* Cracken Introduction Section */
.cracken-intro-section {
    padding: 80px 0;
    background: var(--black);
    position: relative;
}

.cracken-intro-content {
    display: flex;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-direction: row;
}

@media (max-width: 1200px) {
    .cracken-intro-content {
        flex-direction: column;
    }
    
    .cracken-intro-image {
        flex: 1;
        width: 100%;
        max-width: 350px;
    }
}

.cracken-intro-image {
    flex: 0 0 350px;
    width: 350px;
    height: 350px;
    position: relative;
    top: -130px;
}

.cracked-rock-image {
    width: 120%;
    height: 120%;
    background-image: url('images/introCracken.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 5px;
}

.cracken-intro-text {
    flex: 1;
    margin-left: 40px;
}

.cracken-intro-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.3;
    color: var(--white);
    margin-bottom: 25px;
}

.cracken-intro-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: var(--white);
    margin-bottom: 30px;
}
/* How It Works Section */
.how-it-works {
    padding: 0;
    background: var(--white);
    position: relative;
}

.applied-split {
    position: relative;
    display: flex;
    width: 100%;
    height: 460px;
    margin: 0;
    padding: 0;
    gap: 0;
    overflow: hidden;
}

.applied-split::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 46px;
    height: 46px;
    background: #FFC400;
    z-index: 1;
}

.applied-split__left,
.applied-split__right {
    flex: 1 1 50%;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 80px 90px;
    margin: 0;
    box-sizing: border-box;
}

.applied-split__left {
    background: #ffffff;
    color: #000000;
    justify-content: center;
    text-align: center;
}

.applied-split__right {
    background: #ffffff;
    padding: 40px 0;
    align-items: stretch;
    justify-content: stretch;
    color: #ffffff;
}

.applied-split__right-inner {
    background: #050A73;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 90px;
    box-sizing: border-box;
}

.applied-split__title {
    font-family: 'Inter', sans-serif;
    font-size: 40px;
    font-weight: 400;
    margin: 0;
    line-height: 1.2;
}

.applied-split__title-strong {
    font-weight: 800;
}

.applied-split__copy {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    line-height: 1.4;
    margin: 0;
    max-width: 680px;
}

.applied-split__highlight {
    color: #FFC400;
    font-weight: 700;
}

.how-split {
    position: relative;
    background: var(--white);
    border-top: 1px solid #d9d9d9;
}

.how-split-square {
    position: absolute;
    top: -1px;
    left: 0;
    width: 46px;
    height: 46px;
    background: #ffc800;
}

.how-split-inner {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    padding: 60px 35px;
    gap: 40px;
}

.how-split-left {
    flex: 0 0 46%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.how-split-title {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    line-height: 1.3;
    color: var(--black);
    margin: 0;
    font-weight: 400;
}

.how-split-strong {
    font-weight: 800;
}

.how-split-right {
    flex: 0 0 54%;
    background: #0a0e6a;
    padding: 40px 46px;
    display: flex;
    align-items: center;
}

.how-split-right p {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    line-height: 1.6;
    color: var(--white);
    margin: 0;
}

.how-split-highlight {
    color: #ffc800;
    font-weight: 700;
}

.workflow-list {
    position: relative;
    background: var(--black) url('images/Mortar.png') center/cover no-repeat;
}

.workflow-list::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.62);
    z-index: 1;
}

.workflow-list-inner {
    position: relative;
    z-index: 2;
    min-height: 520px;
    display: flex;
    align-items: center;
    padding: 60px 70px;
    width: 100%;
    box-sizing: border-box;
}

.workflow-panel {
    width: 100%;
    background: rgba(10, 10, 10, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 38px 64px;
    box-sizing: border-box;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.workflow-items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin: 0;
    padding: 0;
}

.workflow-badge {
    width: 32px;
    height: 32px;
    background: #FFC400;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #0b0b0b;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.workflow-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.workflow-text {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    line-height: 1.55;
    color: #f2f2f2;
    max-width: 980px;
}

@media (max-width: 992px) {
    .how-split-inner {
        flex-direction: column;
        padding: 50px 35px;
    }

    .how-split-left,
    .how-split-right {
        flex: 1 1 auto;
        width: 100%;
    }

    .how-split-right {
        padding: 34px 36px;
    }

    .workflow-list-inner {
        min-height: 520px;
        padding: 60px 35px;
    }

    .workflow-panel {
        padding: 34px 46px;
    }

    .workflow-text {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .how-split-square {
        width: 36px;
        height: 36px;
    }

    .how-split-inner {
        padding: 40px 20px;
    }

    .how-split-title {
        font-size: 22px;
    }

    .how-split-right p {
        font-size: 18px;
    }

    .workflow-list-inner {
        min-height: auto;
        padding: 50px 20px;
    }

    .workflow-items {
        gap: 18px;
    }

    .workflow-panel {
        padding: 28px 24px;
    }

    .workflow-text {
        font-size: 16px;
    }
}

/* Technical Notes + QA Section */
.technical-showcase {
    --tech-height: 360px;
    --frame-width: 760px;
    --frame-height: 250px;
    --card-width: 460px;
    --card-padding: 28px 34px 32px;
    --title-size: 26px;
    --body-size: 16px;
    --body-line: 1.7;
    --yellow-accent: #ffc800;
    --shadow-soft: 0 10px 28px rgba(0, 0, 0, 0.2);
    position: relative;
    padding: 60px 0;
    background-color: #0f0f10;
    background-image:
        radial-gradient(1200px 600px at 10% -10%, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0) 65%),
        radial-gradient(900px 520px at 90% 20%, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0) 70%),
        radial-gradient(800px 600px at 50% 120%, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0) 72%),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0 2px, rgba(0, 0, 0, 0.03) 2px 4px),
        linear-gradient(180deg, #121315 0%, #0b0b0c 100%);
    background-blend-mode: soft-light, soft-light, multiply, overlay, normal;
}

.technical-showcase::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(120% 90% at 50% 0%, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.55));
    z-index: 1;
}

.technical-showcase::after {
    content: none;
}

.technical-showcase-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, var(--card-width));
    gap: 40px;
    align-items: start;
    min-height: var(--tech-height);
}

.technical-collage {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.collage-frame {
    background: var(--white);
    padding: 8px;
    border-radius: 4px;
    border: 2px solid var(--white);
    width: 100%;
    max-width: var(--frame-width);
    box-shadow: var(--shadow-soft);
}

.collage-image-single {
    width: 100%;
    height: var(--frame-height);
    object-fit: cover;
    display: block;
    border-radius: 2px;
}

.technical-card {
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    justify-self: end;
    width: 100%;
    max-width: var(--card-width);
}

.technical-card-strip {
    height: 9px;
    background: var(--yellow-accent);
}

.technical-card-body {
    padding: var(--card-padding);
}

.technical-card-title {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.technical-card-badge {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--yellow-accent);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
}

.technical-card-title h3 {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: var(--title-size);
    color: #111111;
}

.technical-card-body p {
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
    font-size: var(--body-size);
    line-height: var(--body-line);
    color: #222222;
    max-width: 360px;
    text-align: left;
}

.quality-divider {
    background: var(--white);
    padding: 70px 20px;
    text-align: center;
    position: relative;
    border-top: 1px solid #111111;
    overflow: hidden;
}

.quality-divider-text {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #111111;
}

.quality-divider-block {
    position: absolute;
    top: 50%;
    right: 0;
    width: 72px;
    height: 160px;
    background: #ffc800;
    transform: translateY(-50%);
}

.qa-section {
    position: relative;
    background: #000000;
    padding: 80px 0;
}

.qa-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.aboutus-qa-block::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #0c0c0c;
    opacity: 0.85;
    z-index: 2;
}

.qa-section-square {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 42px;
    height: 42px;
    background: #ffc800;
    z-index: 2;
}

.qa-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.6fr 0.8fr;
    gap: 70px;
    align-items: center;
}

.qa-text {
    color: var(--white);
    max-width: 620px;
}

.qa-text p {
    margin: 0 0 24px;
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    line-height: 1.7;
}

.qa-highlight {
    color: #ffc800;
    font-weight: 700;
}

.qa-badge {
    justify-self: end;
    width: 200px;
    height: 200px;
    border-radius: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aboutus-qa-heading {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #ffc800;
    margin: 4px 0 18px;
}

.aboutus-qa-text p:last-child {
    margin-bottom: 0;
}

.aboutus-qa-badge {
    justify-self: start;
    margin-left: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.aboutus-qa-badge img {
    width: 190px;
    height: 190px;
    object-fit: contain;
    display: block;
}

.aboutus-qa-badge h5 {
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
    text-align: center;
    max-width: 200px;
}

.aboutus-qa-block .aboutus-qa-inner {
    position: relative;
    padding: 60px 35px;
}

.aboutus-qa-block .aboutus-qa-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('images/Mortar.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

.aboutus-qa-block .aboutus-qa-inner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.62);
    z-index: -1;
}

.aboutus-qa-block .qa-bottom {
    position: relative;
    padding: 50px 35px 60px;
    margin-top: 0;
}

.aboutus-qa-block .qa-bottom::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 100vw;
    height: 100%;
    transform: translateX(-50%);
    background: #000000;
    z-index: -1;
}

.aboutus-qa-block .qa-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.aboutus-qa-block .qa-card-title h3 {
    color: #111111;
    font-size: 22px;
}

.aboutus-qa-block .qa-card-body ul {
    color: #1a1a1a;
    font-size: 16px;
    line-height: 1.7;
}

.aboutus-qa-block .qa-card-body li::marker {
    color: #1f2a8a;
}

.qa-bottom {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    align-items: center;
    margin-top: 50px;
}

.qa-collage {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.qa-collage-image {
    width: 100%;
    height: 400px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border: none;
    border-radius: 0;
}

.qa-collage-image-1 {
    background-image: url('images/796b926f94ded7aff2573db696cdb01e79474ba4.png');
}

.qa-collage-image-2 {
    background-image: url('images/quality.png');
}

.qa-card {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
}

.qa-card-strip {
    height: 6px;
    background: #ffc800;
}

.qa-card-body {
    padding: 20px 24px 24px;
}

.qa-card-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.qa-card-badge {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #ffc800;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
}

.qa-card-title h3 {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--white);
}

.qa-card-body ul {
    margin: 0;
    padding-left: 18px;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.6;
}

.qa-card-body li::marker {
    color: #ffc800;
}

.qa-card-body li {
    margin-bottom: 6px;
}

@media (max-width: 992px) {
    .technical-showcase-inner,
    .qa-inner,
    .qa-bottom {
        grid-template-columns: 1fr;
    }

    .technical-card {
        justify-self: stretch;
        width: 100%;
    }

    .collage-frame {
        max-width: 100%;
    }

    .collage-image-single {
        height: 230px;
    }

    .aboutus-qa-badge {
        justify-self: start;
    }

    .qa-badge {
        justify-self: start;
    }

    .aboutus-qa-block .aboutus-qa-inner {
        padding: 50px 20px;
    }

    .aboutus-qa-block .qa-bottom {
        padding: 40px 20px 50px;
    }
}

@media (max-width: 768px) {
    .technical-showcase {
        padding: 50px 0;
    }

    .collage-frame {
        width: 100%;
    }

    .collage-image-single {
        height: 200px;
    }

    .technical-card-body {
        padding: 18px 18px 22px;
    }

    .technical-card-title h3 {
        font-size: 20px;
    }

    .technical-card-body p {
        font-size: 14px;
    }

    .quality-divider {
        padding: 50px 16px;
    }

    .quality-divider-text {
        font-size: 18px;
    }

    .quality-divider-block {
        width: 44px;
        height: 110px;
    }

    .aboutus-qa-text p {
        font-size: 19px;
    }

    .aboutus-qa-heading {
        font-size: 24px;
    }

    .aboutus-qa-badge {
        margin-left: 0;
    }

    .aboutus-qa-badge img {
        width: 140px;
        height: 140px;
    }

    .aboutus-qa-badge h5 {
        font-size: 12px;
        max-width: 160px;
    }

    .qa-section {
        padding: 60px 0;
    }

    .qa-text p {
        font-size: 16px;
    }

    .qa-badge {
        width: 120px;
        height: 120px;
    }

    .qa-bottom {
        margin-top: 35px;
    }

    .qa-collage-image {
    width: 100%;
    height: 400px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border: none;
    border-radius: 0;
}
}

/* About Us: Packaging & Sizes */
.about-packaging {
    position: relative;
    background: var(--white);
    border-top: 1px solid #111111;
    padding-bottom: 70px;
}

.packaging-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    background: #ffc800;
}

.packaging-top-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: #111111;
}

.packaging-header {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 40px;
    padding-top: 40px;
}

.packaging-header-left {
    flex: 0 0 36%;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 26px;
    color: #111111;
    padding: 18px 0;
}

.packaging-header-right {
    flex: 1 1 auto;
    background: #0a0e6a;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.45;
    padding: 28px 40px;
    display: flex;
    align-items: center;
}

.packaging-body {
    padding-top: 28px;
}

.packaging-hero-image {
    width: 100%;
    border-radius: 0;
    overflow: hidden;
    margin-top: 8px;
}

.packaging-hero-image img {
    display: block;
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.packaging-title-strong {
    font-weight: 800;
}
.packaging-description {
    margin: 10px 0 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #111111;
}

.packaging-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #111111;
    margin: 0 0 24px;
}

.packaging-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 44px;
    text-align: center;
}

.packaging-option-image {
    width: 100%;
    height: 280px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 18px;
}

.option-image-1 {
    background-image: url('images/5kilos.jpg');
}

.option-image-2 {
    background-image: url('images/20 bulk.jpg');
}

.option-image-3 {
    background-image: url('images/20 buckets.jpg');
}

.packaging-option p {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: #111111;
    margin: 0;
}

.packaging-footnote {
    margin: 18px 0 18px;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #111111;
}

.packaging-divider {
    height: 2px;
    background: #111111;
    margin: 26px auto 40px;
    width: 72%;
    max-width: 820px;
}

.packaging-highlight {
    display: inline-block;
    background: #ffc800;
    color: #111111;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 36px;
    padding: 10px 22px;
    border-radius: 10px;
}

.packaging-highlight-wrap {
    text-align: center;
}

/* About Us: Audience Cards */
.about-audience {
    background: var(--white);
    padding: 30px 0 60px;
}

.audience-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.audience-card {
    display: grid;
    grid-template-columns: 0.42fr 0.58fr;
    border-radius: 22px;
    overflow: hidden;
    background: #000000;
}

.audience-card.reverse {
    grid-template-columns: 0.58fr 0.42fr;
}

.audience-card.reverse .audience-icon-panel {
    order: 2;
}

.audience-card.reverse .audience-text-panel {
    order: 1;
}

.audience-icon-panel {
    background: #0a0e6a;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    position: relative;
    padding: 0;
    min-height: 500px;
}

.audience-icon-image {
    width: 100%;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 40px 20px 40px;
}

.audience-icon-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.audience-label {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    background: #ffc800;
    color: #111111;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 24px;
    padding: 12px 18px;
    text-align: center;
    border-radius: 0;
    margin: 0 40px 40px 40px;
}

.audience-text-panel {
    background: #000000;
    color: var(--white);
    padding: 42px 48px;
}

.audience-block {
    margin-bottom: 26px;
}

.audience-block h4 {
    margin: 0 0 10px;
    color: #ffc800;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}

.audience-block ul {
    margin: 0;
    padding-left: 22px;
    font-size: 18px;
    line-height: 1.75;
    font-family: 'Inter', sans-serif;
}

.audience-block li::marker {
    color: #ffc800;
}


/* About Us: Request a Test */
.about-request-test {
    background: var(--white);
    padding: 60px 0 70px;
    text-align: center;
}

.request-test-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.request-test-title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 34px;
    color: #111111;
    line-height: 1.15;
}

.request-test-title span {
    display: block;
}

.request-test-highlight {
    display: inline-block;
    background: #ffc800;
    color: #111111;
    padding: 6px 20px;
    margin-bottom: 12px;
    border-radius: 10px;
}

.request-test-copy {
    max-width: 820px;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #111111;
}

.request-test-image {
    width: 100%;
    max-width: 980px;
    height: 320px;
    background-image: url('images/request a test.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 0;
    position: relative;
}


/* About Us: Footer */
.about-footer {
    position: relative;
    background: #0b0b0b;
    background-image: url('images/Mortar.png');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 70px 0 34px;
}

.about-footer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
    z-index: 1;
}

.about-footer-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 1.2fr 0.7fr;
    gap: 80px;
}

.about-footer-column h3 {
    color: #ffc800;
    margin: 0 0 16px;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}

.about-footer-column p {
    margin: 0 0 10px;
    font-size: 16px;
    line-height: 1.7;
    font-family: 'Inter', sans-serif;
}

.about-footer-divider {
    position: relative;
    z-index: 2;
    height: 1px;
    background: #1a1d6b;
    margin: 36px 0 14px;
    width: 100%;
}

.about-footer-copy {
    position: relative;
    z-index: 2;
    text-align: left;
    font-size: 14px;
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 992px) {
    .packaging-header {
        flex-direction: column;
    }

    .packaging-header-left,
    .packaging-header-right {
        flex: 1 1 auto;
        width: 100%;
    }

    .packaging-options {
        grid-template-columns: 1fr;
    }

    .audience-card,
    .audience-card.reverse {
        grid-template-columns: 1fr;
    }

    .audience-icon-panel {
        min-height: 160px;
    }

    .about-footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .packaging-hero-image {
        height: auto;
    }

    .request-test-image {
        height: 200px;
    }

    .request-test-title {
        font-size: 20px;
    }
}

/* Packaging Section */
.packaging-section {
    padding: 100px 0;
    background: var(--white);
}

.packaging-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin-top: 60px;
}

.packaging-image-wrapper {
    flex-shrink: 0;
}

.packaging-image {
    width: 680px;
    height: 347px;
    background: var(--dark-blue);
    border-radius: 10px;
    background-image: url('images/packaging.jpg');
    background-size: cover;
    background-position: center;
}

.packaging-info {
    flex: 1;
}

.packaging-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 35px;
    line-height: 1.71;
    color: var(--black);
    background: transparent;
    padding: 0;
    border-radius: 0;
    margin-bottom: 40px;
    margin-left: 60px;
}

.packaging-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 25px;
    line-height: 1.21;
    color: var(--black);
    margin-bottom: 60px;
    margin-left: 36px;
    max-width: 1134px;
}

.packaging-sizes {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.size-item {
    display: flex;
    gap: 30px;
    align-items: center;
}

.size-image {
    width: 348px;
    height: 232px;
    background: var(--white);
    border: 1px solid var(--grey-2);
    border-radius: 10px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
}

.size-label {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 25px;
    line-height: 1.21;
    color: var(--black);
}

/* Who Needs Section */
.who-needs-section {
    padding: 100px 0;
    background: var(--white);
}

.section-headline-box {
    background: var(--yellow-primary);
    padding: 20px;
    border-radius: 10px 10px 0 0;
    margin-bottom: 60px;
    text-align: center;
    max-width: 579px;
    margin-left: auto;
    margin-right: auto;
}

.section-headline {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 50px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--black);
    margin: 0;
}

.target-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    max-width: 1405px;
    margin: 0 auto;
}

.target-card {
    position: relative;
    min-height: 524px;
    padding: 52px;
    border-radius: 0;
    overflow: hidden;
}

.card-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.card-1 .card-background,
.card-3 .card-background,
.card-5 .card-background {
    background: var(--dark-blue);
}

.card-2 .card-background,
.card-4 .card-background,
.card-6 .card-background,
.card-8 .card-background {
    background: var(--white);
}

.card-7 .card-background {
    background: var(--black);
}

.target-card.featured {
    grid-column: 1 / -1;
}

.card-icon-wrapper {
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

.card-icon {
    width: 278px;
    height: 277px;
    background: var(--yellow-primary);
    border-radius: 10px;
    background-image: url('images/card-icon.jpg');
    background-size: cover;
    background-position: center;
}

.card-content {
    position: relative;
    z-index: 2;
}

.card-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 30px;
    line-height: 1.33;
    letter-spacing: -0.01em;
    margin-bottom: 30px;
    text-align: left;
    background: var(--yellow-primary);
    color: var(--white);
    padding: 18px;
    border-radius: 10px;
    border-left: 7px solid var(--white);
}

.card-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 2;
    letter-spacing: -0.01em;
    color: var(--white);
    margin-left: 25px;
}

.card-2 .card-description,
.card-4 .card-description,
.card-6 .card-description,
.card-8 .card-description {
    color: var(--black);
    margin-left: 25px;
}

.card-description p {
    margin-bottom: 20px;
}

.card-description strong {
    font-weight: 700;
}

/* About Cracken Section */
.about-cracken-section {
    padding: 100px 0;
    background: var(--black);
    position: relative;
}

.about-cracken-section::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 1;
}

.about-cracken-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-cracken-title-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    
}

.about-cracken-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 1.21;
    color: var(--white);
    margin: 0;
}

.title-underline {
    flex: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
}

.about-cracken-description {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.6;
    color: var(--white);
    margin: 0;
    line-height: 0.6;

}

/* Company History Section */
.company-history-section {
    padding: 80px 0;
    background: #030372;
}

.company-history-content {
    display: flex;
    gap: 80px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    flex-direction: row;
}

@media (max-width: 1200px) {
    .company-history-content {
        flex-direction: column;
    }
    
    .company-history-image {
        flex: 1;
        width: 100%;
        max-width: 500px;
    }
}

.company-history-text {
    flex: 1;
    padding-top: 20px;
}

.company-history-image {
    flex: 0 0 500px;
    width: 500px;
    height: 550px;
}

.mining-operation-image {
    width: 100%;
    height: 100%;
    background-image: url('images/history.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 5px;
}

.company-history-title-wrapper {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 40px;
}

.company-history-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 30px;
    line-height: 1.3;
    color: var(--white);
    margin: 0;
    text-align: left;
    white-space: nowrap;
}

.title-underline-blue {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    margin-left: 20px;
}

.company-history-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: var(--white);
    margin: 0 0 40px 0;
}

.btn-learn-more {
    padding: 15px 32px;
    background: var(--yellow-primary);
    border: none;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.21;
    color: var(--white);
    cursor: pointer;
    transition: background 0.3s;
    height: 53px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin-top: 20px;
}

.btn-learn-more:hover {
    background: var(--yellow-secondary);
}

/* How It Works Video Section */
.how-it-works-video-section {
    padding: 100px 0;
    background: var(--white);
}

.how-it-works-video {
    width: 100%;
    max-width: 1168px;
    height: 513px;
    margin: 0 auto;
    background: var(--dark-blue);
    border-radius: 10px;
    background-image: url('images/about.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: -160px;
}

/* Experience Section */
.experience-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.experience-bg-image {
    position: absolute;
    left: 0;
    top: 100px;
    bottom: 0;
    width: 150px;
    background: url('images/About.jpg') no-repeat center;
    background-size: cover;
    z-index: 1;
    opacity: 0.8;
}

.experience-section .section-container {
    position: relative;
    z-index: 2;
}

.experience-header {
    text-align: center;
    margin-bottom: 80px;
}

.experience-top-line {
    width: 100%;
    height: 2px;
    background: #000066;
    margin-bottom: 30px;
}

.experience-yellow-bar {
    width: 60px;
    height: 12px;
    background: #FFC125;
    margin: 0 auto 20px;
}

.experience-tagline {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #FFC125;
    margin-bottom: 30px;
}

.experience-title {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.experience-title-blue {
    color: #000066;
    display: inline;
}

.experience-title-black {
    color: #000000;
    font-weight: 900;
    display: inline;
}

.experience-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.experience-card {
    background: #000066;
    padding: 60px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 400px;
}

.experience-icon-box {
    width: 150px;
    height: 150px;
    background: #FFC125;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    flex-shrink: 0;
}

.experience-icon-box i {
    font-size: 80px;
    color: #000000;
}

.experience-card-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 25px;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.4;
}

/* Partnerships Section */
.partnerships-section {
    padding: 100px 0;
    background: var(--white);
}

.partnerships-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 50px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--dark-blue);
    text-align: center;
    margin-bottom: 40px;
}

.partnerships-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 28px;
    line-height: 1.21;
    color: var(--black);
    text-align: center;
    max-width: 1103px;
    margin: 0 auto 60px;
}

.partnerships-image {
    width: 100%;
    height: 772px;
    background: var(--black);
    background-image: url('images/Global.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: var(--black);
}

.testimonials-title-wrapper {
    text-align: center;
    margin-bottom: 30px;
}

.testimonials-subtitle-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.testimonials-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 16px;
    line-height: 1.5;
    color: var(--white);
    text-align: center;
}

.subtitle-underline-yellow {
    width: 50px;
    height: 5px;
    background: var(--yellow-accent);
}

.testimonials-main-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 50px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--white);
    margin: 0;
}

.testimonials-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 33px;
    max-width: 1329px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--white);
    border-radius: 10px;
    padding: 54px 23px;
    box-shadow: 0px 0.77px 3.87px 0px rgba(0, 0, 0, 0.2);
    position: relative;
    min-height: 324px;
}

.quote-icon {
    position: absolute;
    top: 195.68px;
    left: 50%;
    transform: translateX(-50%);
    width: 77.34px;
    height: 77.34px;
    background: transparent;
    opacity: 0.1;
    background-image: url('images/quote-icon.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

.quote-icon::before {
    content: '"';
    font-size: 77px;
    color: var(--black);
    opacity: 0.1;
    font-family: serif;
}

.testimonial-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 12.375px;
    line-height: 1.5;
    color: var(--black);
    margin-bottom: 21px;
    text-align: justified;
}

.testimonial-author {
    display: flex;
    gap: 23px;
    align-items: center;
}

.author-avatar {
    width: 77.34px;
    height: 77.34px;
    border-radius: 50%;
    background: var(--grey-1);
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.author-avatar-1 {
    background-image: url('images/About.jpg');
    background-size: cover;
    background-position: center;
}

.author-avatar-2 {
    background-image: url('images/About.jpg');
    background-size: cover;
    background-position: center;
}

.author-avatar-3 {
    background-image: url('images/About.jpg');
    background-size: cover;
    background-position: center;
}

.author-info {
    flex: 1;
}

.author-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 15.47px;
    line-height: 1.5;
    color: #022A4D;
    margin-bottom: 9px;
}

.author-role {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 12.375px;
    line-height: 1.5;
    color: #85A1B9;
    margin-bottom: 9px;
}

.rating-stars {
    width: 100px;
    height: 20px;
    background: var(--yellow-accent);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: #000066;
}

.faq-title {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 40px;
    line-height: 1.5;
    text-transform: uppercase;
    color: var(--white);
    text-align: center;
    margin-bottom: 60px;
}

.faq-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 43px;
    max-width: 1166px;
    margin: 0 auto;
}

.faq-card {
    background: var(--white);
    border-radius: 12px;
    border-bottom: 8px solid var(--yellow-primary);
    padding: 39px 54px;
    min-height: 100px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.3;
    color: var(--dark-blue);
    opacity: 0.88;
}

.faq-icon {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--dark-blue);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease;
    margin-top: 0;
}

.faq-card:hover .faq-answer {
    max-height: 200px;
    opacity: 1;
    margin-top: 20px;
}

.faq-card:hover .faq-icon {
    transform: rotate(45deg);
}

.faq-answer p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: var(--grey-2);
    margin: 0;
}

/* Request Test Section */
.request-test-section {
    padding: 0;
    background: #000066;
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

/* Top Bar */
.hero-top-bar {
    width: 100%;
    height: 60px;
    background: #000066;
}

/* Middle Section with Background Image */
.hero-middle-section {
    position: relative;
    width: 100%;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/Contact.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-content-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.hero-headline {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.2;
    color: #000066;
    margin: 0;
    text-align: center;
}

.hero-subtext {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: var(--black);
    margin: 0;
    max-width: 800px;
}

/* Bottom Section */
.hero-bottom-section {
    width: 100%;
    background: #000066;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.hero-scroll-up {
    font-size: 36px;
    color: var(--white);
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.hero-scroll-up:hover {
    transform: translateY(-5px);
    color: var(--yellow-primary);
}

.hero-scroll-up:active {
    transform: translateY(-3px);
}

/* Button Styles */
.btn-contact-sales {
    padding: 16px 40px;
    background: #FFC125;
    border: none;
    border-radius: 25px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 23px;
    line-height: 1.5;
    color: var(--black);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
    height: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-contact-sales:hover {
    background: var(--yellow-secondary);
    transform: translateY(-2px);
}

.btn-request-test {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    background: var(--black);
    border: none;
    border-radius: 25px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 1.5;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
}

.btn-request-test span {
    flex: 1;
    text-align: center;
}

.btn-request-test svg {
    flex-shrink: 0;
}

.btn-request-test:hover {
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    position: relative;
    width: 100%;
    min-height: auto;
    background: var(--black);
    overflow: hidden;
}

.footer-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/Footer.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2;
}

.footer-content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    padding: 80px 50px;
    max-width: 1440px;
    margin: 0 auto;
}

.footer-section {
    max-width: 100%;
    flex: 1;
    min-width: 200px;
}

.footer-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #FFC125;
    text-transform: none;
}

.footer-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.8;
    color: var(--white);
    margin: 0;
}

.footer-divider {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 60px 0 30px;
    max-width: 100%;
}

.footer-copyright {
    position: relative;
    z-index: 3;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    color: var(--white);
    text-align: center;
    padding: 0 50px 40px;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1440px) {
    .section-container {
        padding: 0 40px;
    }
    
    .header-container {
        padding: 60px 40px 0;
    }
    
    .workflow-visual {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        margin-top: 40px;
    }
    
    .steps-wrapper {
        flex-direction: column;
    }
}

@media (max-width: 1200px) {
    .packaging-content {
        flex-direction: column;
    }
    
    .packaging-image {
        width: 100%;
        max-width: 680px;
    }
    
    .target-cards {
        grid-template-columns: 1fr;
    }
    
    .target-card.featured {
        grid-column: 1;
    }
    
    .hero-images {
        flex-wrap: wrap;
        gap: 16px;
        padding: 0 40px;
    }
    
    .hero-image {
        width: calc(50% - 8px);
        max-width: 203px;
        height: auto;
        aspect-ratio: 203 / 163;
    }
    
    .hero-content {
        margin-top: -100px;
    }
    
    .hero-main-title {
        font-size: 60px;
    }
    
    .hero-subtitle-text {
        font-size: 48px;
        padding: 12px 60px;
    }
    
    .hero-subtitle-box {
        min-width: 400px;
    }
    
    .hero-small-images {
        bottom: 60px;
        right: 40px;
        gap: 12px;
    }
    
    .hero-small-image {
        width: 140px;
        height: 95px;
    }
}

@media (max-width: 992px) {
    .header-container {
        padding: 25px 40px 0;
    }
    
    .logo-image {
        width: 200px;
        height: 80px;
    }
    
    .nav-item {
        font-size: 18px;
        margin-right: 40px;
    }
    
    .header-actions {
        top: 25px;
        right: 40px;
        gap: 15px;
    }
    
    .search-box {
        width: 250px;
    }
    
    .hero-content {
        margin-top: -80px;
    }
    
    .hero-main-title {
        font-size: 50px;
    }
    
    .hero-subtitle-text {
        font-size: 42px;
        padding: 12px 50px;
    }
    
    .hero-subtitle-box {
        min-width: 350px;
    }
    
    .hero-small-images {
        bottom: 50px;
        right: 30px;
        gap: 12px;
    }
    
    .hero-small-image {
        width: 120px;
        height: 80px;
    }
    
    .scroll-indicator {
        left: 30px;
        bottom: 50px;
    }
}

@media (max-width: 768px) {
    .section-container {
        padding: 0 20px;
    }
    
    .header {
        min-height: 100vh;
        overflow-x: hidden;
    }
    
    .header-container {
        padding: 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        gap: 12px;
        flex-wrap: nowrap;
        overflow-x: hidden;
    }
    
    .logo {
        width: auto;
        justify-content: flex-start;
        gap: 10px;
        margin: 0;
        flex: 0 0 auto;
        flex-shrink: 0;
        min-width: 140px;
    }
    
    .logo-image {
        width: auto;
        height: 40px;
        min-height: 36px;
        max-height: 44px;
        margin-right: 10px;
        object-fit: contain;
        opacity: 1;
    }
    
    .burger-menu {
        display: flex;
        margin-left: auto;
        flex: 0 0 auto;
    }
    
    .nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        z-index: 1000;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        pointer-events: none;
        margin-top: 0;
        padding: 80px 20px 40px;
        box-sizing: border-box;
    }
    
    .nav.active {
        display: flex;
        pointer-events: auto;
    }
    
    .nav-item {
        font-size: 24px;
        margin-right: 0;
        padding: 16px 20px;
        min-height: 44px;
        width: 100%;
        max-width: 360px;
        justify-content: space-between;
    }

    .nav-extras {
        display: flex;
        flex-direction: column;
        gap: 18px;
        width: 100%;
        max-width: 360px;
        margin-top: 10px;
    }

    .nav-extras .language-switcher {
        justify-content: center;
    }

    .nav-extras .admin-signin-icon,
    .nav-extras .btn-contact {
        align-self: center;
    }

    .nav-extras .nav-extra-item {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .header-actions {
        position: static;
        margin-top: 0;
        flex: 1;
        gap: 0;
        justify-content: center;
        width: auto;
    }
    
    .search-box {
        width: 100%;
        max-width: 100%;
        flex: 1 1 auto;
        min-width: 0;
        height: 40px;
        padding: 0 10px;
    }
    
    .btn-contact {
        padding: 12px 25px;
        font-size: 12px;
        height: 40px;
    }

    .header-actions .language-switcher,
    .header-actions .admin-signin-icon,
    .header-actions .btn-contact {
        display: none !important;
    }

    .header-container .admin-signin-icon {
        display: none !important;
    }
    
    .hero-content {
        margin-top: -40px;
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .hero-main-title {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .hero-subtitle-box {
        min-width: auto;
        width: 100%;
        max-width: 90%;
    }
    
    .hero-subtitle-text {
        font-size: 28px;
        padding: 8px 20px;
    }
    
    .hero-small-images {
        bottom: 30px;
        right: 15px;
        gap: 8px;
        flex-wrap: wrap;
        max-width: calc(100% - 30px);
    }
    
    .hero-small-image {
        width: 80px;
        height: 55px;
    }
    
    .scroll-indicator {
        left: 15px;
        bottom: 30px;
    }
    
    .scroll-indicator span {
        font-size: 12px;
    }
    
    .cracken-intro-section,
    .company-history-section,
    .about-cracken-section,
    .improve-experience-section,
    .partnerships-section,
    .testimonials-section,
    .faq-section,
    .request-test-section {
        padding: 50px 0;
    }
    
    .cracken-intro-content,
    .company-history-content {
        flex-direction: column;
        gap: 30px;
        padding: 0 15px;
    }
    
    .cracken-intro-image,
    .company-history-image {
        width: 100%;
        max-width: 100%;
        flex: none;
    }
    
    .about-cracken-section::before {
        width: 100%;
        opacity: 0.2;
    }
    
    .about-cracken-content,
    .section-container {
        padding: 0 20px;
    }
    
    .feature-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonials-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .faq-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .faq-card {
        padding: 25px 30px;
    }
    
    .request-test-content {
        padding: 80px 20px 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        padding: 40px 20px;
        gap: 40px;
    }
    
    .footer-divider {
        width: 100%;
        margin: 40px 0 30px;
    }
    
    .footer-copyright {
        padding: 0 20px 30px;
    }
}

@media (max-width: 768px) {
    body.menu-open {
        overflow: hidden;
        height: 100vh;
    }
}

@media (max-width: 768px) {
    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
    }

    .header.home-page {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .header.home-page .logo {
        margin-left: 0;
    }

    .home-page {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .home-page section,
    .home-page .section-container {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .home-page * {
        box-sizing: border-box;
    }

    .home-page .section-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .home-page h1,
    .home-page h2,
    .home-page h3,
    .home-page h4,
    .home-page p,
    .home-page a,
    .home-page span {
        overflow-wrap: anywhere;
        word-wrap: break-word;
        word-break: break-word;
    }

    .home-page img:not(.logo-image) {
        max-width: 100%;
        height: auto;
        display: block;
    }

    .header.home-page .logo-image {
        width: auto;
        height: 40px;
        min-height: 36px;
        max-height: 44px;
        object-fit: contain;
        opacity: 1;
        max-width: none;
    }

    .about-cracken-content {
        max-width: 100%;
    }

    .about-cracken-title-wrapper {
        flex-wrap: wrap;
        min-width: 0;
    }

    .about-cracken-title,
    .title-underline {
        min-width: 0;
        max-width: 100%;
    }

    .about-cracken-description {
        max-width: 100%;
        line-height: 1.4;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .home-page .company-history-section,
    .home-page .company-history-section .section-container,
    .home-page .company-history-content,
    .home-page .company-history-text,
    .home-page .company-history-description {
        height: auto !important;
        max-height: none !important;
        min-height: 0 !important;
        overflow: visible !important;
        overflow-y: visible !important;
    }

    .home-page .company-history-content {
        align-items: stretch;
        flex-wrap: wrap;
        min-width: 0;
    }

    .home-page .company-history-text {
        min-width: 0;
    }
}

@media (max-width: 480px) {
    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
    }

    .home-page .company-history-section,
    .home-page .company-history-section .section-container,
    .home-page .company-history-content,
    .home-page .company-history-text,
    .home-page .company-history-description,
    .home-page .company-history-title-wrapper,
    .home-page .company-history-title {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .home-page .company-history-section .section-container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .home-page .company-history-title,
    .home-page .company-history-description {
        overflow-wrap: anywhere !important;
        word-break: break-word !important;
    }

    .home-page .company-history-section,
    .home-page .company-history-section .section-container,
    .home-page .company-history-content,
    .home-page .company-history-text,
    .home-page .company-history-description {
        height: auto !important;
        max-height: none !important;
        min-height: 0 !important;
        overflow: visible !important;
        overflow-y: visible !important;
    }

    .home-page .company-history-content {
        align-items: stretch !important;
        flex-wrap: wrap !important;
        min-width: 0 !important;
    }
}

@media (max-width: 768px) {
    .header,
    .header.home-page {
        height: auto !important;
        max-height: none !important;
        overflow: visible !important;
    }

    .header-container {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 10px !important;
        padding: 10px 12px !important;
        height: auto !important;
        min-height: 56px !important;
        max-height: none !important;
        overflow: visible !important;
    }

    .logo {
        flex: 0 0 auto !important;
        flex-shrink: 0 !important;
        width: auto !important;
        min-width: 160px !important;
        height: auto !important;
        min-height: 48px !important;
        max-height: none !important;
        max-width: none !important;
        overflow: visible !important;
        display: flex !important;
        align-items: center !important;
    }

    .logo .logo-image {
        height: 48px !important;
        min-height: 48px !important;
        width: auto !important;
        max-height: none !important;
        max-width: none !important;
        display: block !important;
        align-self: center !important;
    }

    .search-box {
        flex: 1 1 auto !important;
        min-width: 0 !important;
        max-width: 45vw !important;
        padding: 0 8px !important;
    }

    .search-input {
        font-size: 12px !important;
    }

    .burger-menu {
        flex: 0 0 auto !important;
    }
}
/* Header Updates for All Pages */
.nav-item.active {
    color: var(--yellow-accent);
    font-weight: 500;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: 5px;
}

.search-input {
    background: transparent;
    border: none;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    outline: none;
    width: 120px;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.lang-divider {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.5);
    margin: 0 8px;
}

.logo-text {
    text-decoration: none;
    color: var(--yellow-primary);
}

/* Projects Page Styles */
.projects-section {
    padding: 40px 0 90px;
    background: var(--white);
}


.projects-page .project-title-bar {
    font-size: 28px;
    padding: 14px 28px;
}

.projects-page .project-desc {
    font-size: 16px;
    line-height: 1.7;
    max-width: 820px;
}

.projects-page .project-card {
    padding: 0 36px 28px;
}

.projects-page .project-hero-overlay {
    position: relative;
    margin-top: -340px;
    padding-top: 0;
    background: transparent;
    z-index: 5;
}

.projects-page .project-hero-overlay .project-section-line {
    display: none;
}

.projects-page .project-hero-overlay .project-card {
    max-width: 980px;
    margin: 0 auto;
    border-radius: 22px;
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.25);
}


.project-section {
    padding: 40px 0 60px;
    position: relative;
}

.project-section--dark {
    background: #0b0b0b;
}

.project-section--black {
    background: #000000;
}

.project-section--blue {
    background: #0a1b6f;
}

.project-section--white {
    background: var(--white);
}

.project-section-line {
    height: 4px;
    background: #ffc400;
    max-width: 900px;
    margin: 0 auto 24px;
}

.project-card {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 18px;
    padding: 0 30px 24px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    position: relative;
}

.project-header {
    position: relative;
    padding-top: 24px;
    margin-bottom: 20px;
}

.project-banner {
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    height: 44px;
    background: #0a1b6f;
    z-index: 1;
}

.project-header-bar {
    position: relative;
    background: var(--white);
    height: 48px;
    border-radius: 8px 8px 0 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flag-badge {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 5px solid var(--white);
    background: transparent;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
    z-index: 5;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
}

.flag-badge::before {
    content: '';
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-image: var(--flag-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: var(--flag-blend, normal);
    display: block;
}

.flag-zambia {
    --flag-image: linear-gradient(90deg, #267a2f 0 70%, #d81f1f 70% 80%, #000000 80% 90%, #f6c443 90% 100%);
}

.flag-egypt {
    --flag-image: linear-gradient(#ce1126 0 33%, #ffffff 33% 66%, #000000 66% 100%);
}

.flag-sudan {
    --flag-image: linear-gradient(#ce1126 0 33%, #ffffff 33% 66%, #000000 66% 100%), linear-gradient(135deg, #007a3d 0 50%, transparent 50% 100%);
    --flag-blend: normal;
}

.flag-south-africa {
    --flag-image: linear-gradient(135deg, #007a4d 0 45%, #ffb612 45% 55%, #de3831 55% 100%), linear-gradient(45deg, #002395 0 50%, #000000 50% 100%);
    --flag-blend: screen;
}

.flag-saudi {
    --flag-image: linear-gradient(#1e7b3c, #1e7b3c);
}

.flag-ethiopia {
    --flag-image: linear-gradient(#078930 0 33%, #fcd116 33% 66%, #e91d2d 66% 100%);
}

.project-title-bar {
    position: relative;
    display: inline-block;
    background: #ffc400;
    color: #111111;
    font-weight: 800;
    font-size: 24px;
    padding: 12px 24px;
    margin-top: -6px;
    z-index: 3;
}

.project-image-wrapper {
    margin: 0 auto 18px;
    border: 2px solid #cfcfcf;
    max-width: 820px;
}

.project-image-wrapper img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

.project-desc {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #222222;
    max-width: 760px;
    margin: 0 auto 18px;
    line-height: 1.6;
}

.project-divider {
    height: 4px;
    background: #ffc400;
    max-width: 700px;
    margin: 0 auto;
}

.projects-map {
    margin-top: 80px;
}

.map-container {
    position: relative;
    width: 100%;
    height: 600px;
    background: var(--grey-1);
    border-radius: 10px;
    overflow: hidden;
}

.map-image {
    width: 100%;
    height: 100%;
    background-image: url('images/world-map.jpg');
    background-size: cover;
    background-position: center;
}

.map-markers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.map-marker {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--yellow-primary);
    border-radius: 50%;
    border: 3px solid var(--white);
    cursor: pointer;
}

.marker-zambia-1 { top: 60%; left: 55%; }
.marker-zambia-2 { top: 61%; left: 56%; }
.marker-zambia-3 { top: 62%; left: 55%; }
.marker-egypt-1 { top: 45%; left: 52%; }
.marker-egypt-2 { top: 46%; left: 53%; }
.marker-egypt-3 { top: 47%; left: 52%; }
.marker-egypt-4 { top: 48%; left: 53%; }
.marker-south-africa { top: 75%; left: 52%; }
.marker-sudan { top: 42%; left: 54%; }
.marker-saudi { top: 48%; left: 58%; }
.marker-ethiopia { top: 52%; left: 57%; }

/* Distributors Page Styles */
.distributors-section {
    padding: 80px 0 110px;
    background: #0b0b0b;
}

.distributors-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.6fr);
    gap: 30px;
    align-items: stretch;
}

.distributors-side {
    background: #000000;
    color: var(--white);
    padding: 28px 26px 40px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.distributors-side-note {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    color: var(--white);
}

.distributors-side-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.3;
    margin: 0 0 16px;
    color: var(--white);
}

.distributors-side-title.support-title {
    font-size: 24px;
    margin-top: 18px;
}

.distributors-rule-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    counter-reset: rule;
}

.distributors-rule-list li {
    position: relative;
    padding-left: 32px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.5;
    color: var(--white);
}

.distributors-rule-list li::before {
    counter-increment: rule;
    content: counter(rule);
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--yellow-primary);
    color: #111111;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.distributors-support-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.distributors-support-list li {
    position: relative;
    padding-left: 18px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.5;
    color: var(--white);
}

.distributors-support-list li::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--yellow-primary);
    position: absolute;
    left: 0;
    top: 6px;
}

.distributors-media {
    display: flex;
    align-items: stretch;
}

.distributors-media-card {
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    background: #0b0b0b;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
}

.distributors-media-title {
    background: var(--yellow-primary);
    color: #111111;
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 28px;
    line-height: 1.2;
    padding: 18px 24px;
    text-align: center;
}

.distributors-media-single {
    width: 100%;
}

.distributors-media-image {
    background-size: cover;
    background-position: center;
    width: 100%;
}

.distributors-media-image-single {
    background-image: url('images/dis2.png');
    min-height: 600px;
    border-radius: 4px;
}


.distributors-cta-section {
    padding: 80px 0 120px;
    background: var(--white);
    text-align: center;
}

.distributors-cta-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
}

.distributors-cta-title-box {
    background: #0a0e6a;
    color: var(--yellow-primary);
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 26px;
    line-height: 1.2;
    padding: 10px 26px;
    border-radius: 4px;
}

.distributors-cta-title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 30px;
    line-height: 1.2;
    color: #0a0e6a;
    margin: 0;
}

.distributors-cta-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    color: #555555;
    max-width: 720px;
    margin: 0 auto 30px;
}

.distributors-cta-media {
    position: relative;
    max-width: 980px;
    margin: 0 auto;
}

.distributors-cta-image {
    width: 100%;
    height: 360px;
    background-image: url('images/dis2.png');
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

.distributors-cta-button {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    display: inline-block;
    padding: 14px 32px;
    background: var(--yellow-primary);
    color: #111111;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.distributors-cta-button:hover {
    background: var(--yellow-secondary);
}

.distributors-hero {
    position: relative;
    z-index: 10;
    padding: 110px 70px 90px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.distributors-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 0;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.distributors-hero-media {
    display: flex;
    flex-direction: column;
    background: #0b0b0b;
}

.distributors-hero-title {
    background: var(--yellow-primary);
    color: #111111;
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 32px;
    line-height: 1.2;
    padding: 22px 26px;
}

.distributors-hero-image {
    min-height: 380px;
    background-image: url('images/dis1.png');
    background-size: cover;
    background-position: center;
}

.distributors-hero-panel {
    background: #0b0b0b;
    color: var(--white);
    padding: 26px 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.distributors-hero-intro {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    color: var(--white);
    margin: 0;
}

.distributors-rules {
    margin: 0;
}

.rules-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.3;
    color: var(--white);
    margin: 0 0 18px;
}

.rules-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rule-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.rule-number {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    background: var(--yellow-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #111111;
}

.rule-text p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.5;
    color: var(--white);
    margin: 0;
}

.distributors-details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.distributors-responsibilities {
    background: var(--dark-blue);
    padding: 40px;
    border-radius: 10px;
}

.responsibilities-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 1.21;
    color: var(--white);
    margin-bottom: 30px;
}

.responsibilities-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.responsibilities-list li {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    color: var(--white);
    margin-bottom: 15px;
    padding-left: 18px;
    position: relative;
}

.responsibilities-list li::before {
    content: '-';
    position: absolute;
    left: 0;
    color: var(--yellow-primary);
    font-size: 18px;
}

.responsibilities-note {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    color: var(--white);
    font-style: italic;
}

.distributors-support {
    background: var(--yellow-primary);
    padding: 40px;
    border-radius: 10px;
}

.support-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 1.21;
    color: var(--black);
    margin-bottom: 30px;
}

.support-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.support-list li {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    color: var(--black);
    margin-bottom: 15px;
    padding-left: 18px;
    position: relative;
}

.support-list li::before {
    content: '-';
    position: absolute;
    left: 0;
    color: var(--black);
    font-size: 18px;
}

.distributors-cta {
    text-align: center;
    padding: 60px 40px;
    background: var(--dark-blue);
    border-radius: 10px;
}

.cta-headline-box {
    background: var(--yellow-primary);
    padding: 20px 40px;
    display: inline-block;
    margin-bottom: 30px;
}

.cta-headline {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 35px;
    line-height: 1.21;
    color: var(--black);
    margin: 0;
}

.cta-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: var(--white);
    margin-bottom: 40px;
}

.btn-apply-distributor {
    display: inline-block;
    padding: 20px 50px;
    background: var(--yellow-primary);
    color: var(--black);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 20px;
    text-decoration: none;
    border-radius: 10px;
    transition: background 0.3s;
}

.btn-apply-distributor:hover {
    background: var(--yellow-secondary);
}
/* Request Test Page Styles */
.request-test-page {
    background: #0b1120 url('images/Back.png') center/cover no-repeat;
    position: relative;
}

.request-test-page > * {
    position: relative;
    z-index: 1;
}

.request-hero .header-bg-image {
    display: none;
}

.request-hero .header-overlay {
    display: none;
}

.request-hero.about-hero .header-container {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    height: auto;
}

.request-hero {
    min-height: auto;
    background: transparent;
}

.request-test {
    padding: 30px 0 120px;
    background: transparent;
}

.request-test .section-container {
    position: relative;
    z-index: 1;
}

.request-test-header {
    text-align: center;
    margin: 0 auto 26px;
}

.request-test-title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 34px;
    line-height: 1.2;
    color: #ffc400;
    margin: 0 0 10px;
}

.request-test-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    color: var(--white);
    margin: 0 auto;
    max-width: 640px;
}

.request-card {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-panel {
    width: 40%;
    background: #0b0b0b !important;
    color: #ffffff;
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.form-panel {
    width: 60%;
    padding: 48px 44px;
    background: var(--white);
}

.form-container {
    border-radius: 0;
    box-shadow: none;
    grid-column: auto;
}

.test-request-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 11px;
    color: #9b9b9b;
}

.form-input,
.form-textarea {
    padding: 8px 0 10px;
    border: none;
    border-bottom: 1px solid #d6d6d6;
    border-radius: 0;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--black);
    background: transparent;
    outline: none;
    transition: border-color 0.3s;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--yellow-primary);
}

.form-textarea {
    resize: none;
    min-height: 70px;
}

.category-options {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.category-option {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: #4a4a4a;
}

.category-option input {
    width: 12px;
    height: 12px;
    appearance: none;
    border-radius: 50%;
    border: 1px solid #d3d3d3;
    background: #d3d3d3;
    display: inline-block;
    position: relative;
}

.category-option input:checked {
    background: #111111;
    border-color: #111111;
}

.btn-submit-request {
    align-self: flex-end;
    padding: 10px 24px;
    background: var(--yellow-primary);
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 18px;
    color: white;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 8px;
    min-width: 190px;
}

.btn-submit-request:hover {
    background: var(--yellow-secondary);
}

.contact-info-panel {
    background: transparent;
    padding: 50px;
    border-radius: 0;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    ;
}

.contact-info-header {
    margin-bottom: 4px;
}

.contact-info-title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 20px;
    line-height: 1.3;
    color: #f5b400;
    margin: 0 0 6px;
}

.contact-info-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

.contact-info-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin: 18px 0;
    color: #ffffff;
}

.contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: #ffffff;
}

.contact-item p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.5;
    color: #ffffff;
    margin: 0;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: #f5b400;
    border-radius: 50%;
    transition: background 0.3s;
}

.social-link svg path {
    fill: #000000;
}
/* Success Page Styles */
.success-section {
    padding: 150px 0;
    background: var(--white);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.success-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.success-icon-wrapper {
    margin-bottom: 40px;
}

.success-icon-wrapper svg {
    width: 173px;
    height: 173px;
}

.success-title {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 50px;
    line-height: 1.21;
    color: var(--black);
    margin-bottom: 30px;
}

.success-message {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.6;
    color: var(--black);
    margin-bottom: 50px;
}

.btn-go-home {
    display: inline-block;
    padding: 20px 50px;
    background: var(--yellow-primary);
    color: var(--black);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 20px;
    text-decoration: none;
    border-radius: 10px;
    transition: background 0.3s;
}

.btn-go-home:hover {
    background: var(--yellow-secondary);
}

/* Responsive Updates for New Pages */
@media (max-width: 1200px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .distributors-layout {
        grid-template-columns: 1fr;
    }

    .distributors-side {
        order: 2;
    }

    .distributors-media {
        order: 1;
    }

    .distributors-cta-image {
        height: 320px;
    }

    .distributors-hero {
        padding: 30px 40px 70px;
    }

    .distributors-hero-grid {
        grid-template-columns: 1fr;
    }

    .distributors-hero-image {
        min-height: 320px;
    }

    .distributors-details {
        grid-template-columns: 1fr;
    }
    
    .request-test-form-wrapper {
        grid-template-columns: 1fr;
    }

    .projects-page .project-hero-overlay {
        margin-top: -280px;
    }

    .projects-page .project-hero-overlay .project-card {
        max-width: 90%;
    }
}

@media (max-width: 900px) {
    .request-card {
        flex-direction: column;
    }

    .contact-panel,
    .form-panel {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .project-card {
        padding: 0 18px 20px;
    }

    .project-title-bar {
        font-size: 18px;
        padding: 10px 16px;
    }

    .project-image-wrapper img {
        height: 220px;
    }

    .project-desc {
        font-size: 13px;
    }

    .project-main-title {
        font-size: 28px;
    }

    .projects-page .project-hero-overlay {
        margin-top: -220px;
    }

    .projects-page .project-hero-overlay .project-card {
        max-width: 94%;
    }
    
    .request-test-title {
        font-size: 26px;
    }

    .request-test-subtitle {
        font-size: 12px;
    }

    .request-test-form-section {
        padding: 24px 0 80px;
    }

    .request-card {
        border-radius: 12px;
    }

    .contact-panel {
        padding: 32px 26px;
    }

    .form-panel {
        padding: 32px 26px 28px;
    }

    .contact-info-panel {
        padding: 24px 20px;
    }

    .form-container {
        padding: 28px 22px 26px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .distributors-section {
        padding: 60px 0 90px;
    }

    .distributors-side {
        padding: 24px 20px 32px;
        gap: 32px;
    }

    .distributors-media-title {
        font-size: 22px;
        padding: 14px 16px;
    }

    .distributors-media-divider {
        height: 6px;
    }

    .distributors-media-image-single {
        min-height: 400px;
    }

    .distributors-cta-section {
        padding: 60px 0 90px;
    }

    .distributors-cta-title-box {
        font-size: 20px;
        padding: 8px 20px;
    }

    .distributors-cta-title {
        font-size: 24px;
    }

    .distributors-cta-text {
        font-size: 13px;
        margin-bottom: 22px;
    }

    .distributors-cta-image {
        height: 240px;
    }

    .distributors-cta-button {
        font-size: 14px;
        padding: 12px 22px;
        bottom: 12px;
    }

    .distributors-hero {
        padding: 24px 18px 60px;
    }

    .distributors-hero-title {
        font-size: 24px;
        padding: 16px 18px;
    }

    .distributors-hero-image {
        min-height: 240px;
    }

    .distributors-hero-panel {
        padding: 20px;
    }

    .rules-title {
        font-size: 16px;
    }

    .rule-text p {
        font-size: 12px;
    }

    .distributors-details {
        gap: 24px;
    }

    .distributors-responsibilities,
    .distributors-support {
        padding: 28px;
    }
    
    .request-test-page-title {
        font-size: 35px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .success-title {
        font-size: 35px;
    }
}

/* Extra small screen adjustments */
@media (max-width: 600px) {
    .how-it-works-video {
        height: auto;
        aspect-ratio: 16 / 9;
        margin-top: 0;
    }

    .experience-cards-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .experience-card {
        min-height: auto;
        padding: 36px 24px;
    }

    .experience-icon-box {
        width: 110px;
        height: 110px;
        margin-bottom: 28px;
    }

    .experience-icon-box i {
        font-size: 56px;
    }

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

    .experience-tagline {
        font-size: 18px;
    }

    .experience-card-text {
        font-size: 20px;
    }

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

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

@media (max-width: 768px) {
    .logo-image,
    .header.home-page .logo-image,
    .logo .logo-image {
        width: auto !important;
        height: 144px !important;
        min-height: 144px !important;
        max-height: 144px !important;
        object-fit: contain;
    }
}

@media (max-width: 768px) {
    .home-page .company-history-section,
    .home-page .company-history-section .section-container {
        width: 100%;
        max-width: 100vw;
        overflow-x: visible;
    }

    .home-page .company-history-section .section-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .home-page .company-history-content {
        width: 100%;
        max-width: 100vw;
        overflow-x: visible;
    }

    .home-page .company-history-title-wrapper {
        width: 100%;
        max-width: 100vw;
        overflow-x: visible;
        flex-wrap: wrap;
    }

    .home-page .company-history-title {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        white-space: normal;
        overflow-wrap: anywhere;
        word-break: break-word;
    }
}





