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

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #05070a;
    color: #ffffff;
    overflow-x: hidden;
    padding-bottom: 40px;
}

/* --- Header Styles --- */
header {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr) 180px;
    align-items: center;
    gap: 24px;
    min-height: 120px;
    padding: 18px clamp(24px, 5vw, 72px);
    background-color: #05070a;
    border-bottom: 1px solid rgba(185, 224, 32, 0.12);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.logo-container {
    display: flex;
    align-items: center;
    min-width: 0;
}

.header-logo {
    width: clamp(170px, 15vw, 230px);
    height: auto;
    object-fit: contain;
    display: block;
}

nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: clamp(18px, 2vw, 34px);
}

nav ul li a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    text-decoration: none;
    color: #b8bec8;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
    transition: color 0.25s ease;
}

nav ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 6px;
    height: 2px;
    background: #b9e020;
    border-radius: 999px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

nav ul li.active a,
nav ul li a:hover {
    color: #b9e020;
}

nav ul li.active a::after,
nav ul li a:hover::after {
    transform: scaleX(1);
}

nav ul li a:focus-visible,
.btn-outline-black:focus-visible,
.menu-circle:focus-visible {
    outline: 2px solid #b9e020;
    outline-offset: 4px;
}

nav ul li a:active {
    color: #ffffff;
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.btn-outline-black {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid #b9e020;
    color: #b9e020;
    min-height: 42px;
    padding: 0 24px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    white-space: nowrap;
}

.btn-outline-black:hover {
    background-color: #b9e020;
    color: #05070a;
    border-color: #b9e020;
}

.menu-circle {
    background: #0066ff;
    border: 0;
    width: 42px;
    height: 42px;
    border-radius: 6px;
    display: none;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

/* --- Contact Hero Section --- */
.contact-hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 75vh;
    padding: 60px 10%;
    position: relative;
    border-bottom: 1px solid #141c2c;
}

.contact-hero-content {
    max-width: 50%;
    z-index: 2;
}

.tagline {
    color: #9acd00;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 14px;
    display: block;
    margin-bottom: 20px;
}

.contact-hero-content h1 {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.contact-hero-content h1 .highlight-blue {
    color: #1e74f5;
}

.contact-hero-content p {
    font-size: 17px;
    color: #c8d0dc;
    line-height: 1.6;
    font-weight: 400;
}

.contact-hero-graphic-wrapper {
    width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-hero-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    /* Drop shadow for 3D effect */
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.6));
}

/* --- Progress Steps Section --- */
.progress-steps-section {
    position: relative;
    max-width: 1200px;
    margin: 60px auto 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

/* Dashed connecting line */
.step-line {
    position: absolute;
    top: 25px;
    left: 10%;
    right: 10%;
    height: 2px;
    border-top: 2px dashed #2a3441;
    z-index: 1;
}

/* Individual Step */
.step-item {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100px;
}

/* Circle Container */
.step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #020408;
    border: 2px solid #2a3441;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.step-num {
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
}

/* Active Step (Number 01) Styling */
.step-item.active .step-circle {
    border: 2px solid #9acd00;
    box-shadow: 0 0 15px rgba(154, 205, 0, 0.2);
}

.step-item.active .step-num {
    color: #9acd00;
}

.step-label {
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 1024px) {
    header {
        grid-template-columns: 1fr auto;
        min-height: 88px;
        padding: 12px 20px;
    }

    .header-logo {
        width: 160px;
    }

    nav {
        display: block;
        grid-column: 1 / -1;
        order: 3;
    }

    nav ul {
        position: absolute;
        left: 20px;
        right: 20px;
        top: calc(100% + 8px);
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px;
        background: rgba(5, 7, 10, 0.98);
        border: 1px solid rgba(185, 224, 32, 0.18);
        border-radius: 8px;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.38);
    }

    nav ul.active {
        display: flex;
    }

    nav ul li a {
        width: 100%;
        min-height: 46px;
        padding: 0 10px;
    }

    nav ul li a::after {
        left: 10px;
        right: auto;
        width: 42px;
    }

    .btn-outline-black {
        min-height: 40px;
        padding: 0 18px;
    }

    .menu-circle {
        display: flex;
    }

    .contact-hero { 
        flex-direction: column; 
        text-align: center; 
        padding: 40px 20px; 
        min-height: auto;
        gap: 40px;
    }
    .contact-hero-content { 
        max-width: 100%; 
    }
    .contact-hero-content p { 
        margin: 0 auto; 
    }
    .contact-hero-graphic-wrapper { 
        width: 80%; 
        max-width: 450px;
    }
    
    /* Steps Responsive */
    .progress-steps-section {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px 40px;
        padding: 0 20px;
    }
    .step-line {
        display: none; /* Hide dashed line on mobile */
    }
    .step-item {
        width: auto;
    }
}

@media (max-width: 640px) {
    header {
        min-height: 76px;
        padding: 10px 16px;
    }

    .header-logo {
        width: 132px;
    }

    .btn-outline-black {
        display: none;
    }

    nav ul {
        left: 16px;
        right: 16px;
    }
}

/* --- Contact Form Section --- */
/* ================= PROJECT INFORMATION FORM SECTION ================= */
.project-form-section {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 10px 20px 80px 20px;
}

.form-container {
    max-width: 1000px;
    width: 100%;
    background-color: #0b101a; /* Dark card background */
    border: 1px solid #1a2438;
    border-radius: 12px;
    padding: 40px 45px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.form-header {
    margin-bottom: 30px;
}

.form-title {
    color: #9acd00;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.form-subtitle {
    color: #c8d0dc;
    font-size: 14px;
    font-weight: 400;
}

/* --- Form Layout --- */
.project-form {
    display: flex;
    gap: 40px;
}

.form-col-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-col-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* --- Inputs & Labels --- */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
}

.form-group label .required {
    color: #ff3333;
    margin-left: 2px;
}

.form-group input, 
.form-group textarea, 
.custom-select-wrapper select {
    width: 100%;
    background-color: transparent;
    border: 1px solid #2a3441;
    border-radius: 6px;
    padding: 12px 14px;
    color: #ffffff;
    font-size: 14px;
    outline: none;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #6b7a90;
}

.form-group input:focus, 
.form-group textarea:focus {
    border-color: #9acd00;
    box-shadow: 0 0 5px rgba(154, 205, 0, 0.15);
}

.form-group input.field-error,
.form-group textarea.field-error,
.custom-select-wrapper select.field-error {
    border-color: #ff4d4d;
    box-shadow: 0 0 7px rgba(255, 77, 77, 0.2);
}

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

/* --- Custom Select Styling (Dark Mode) --- */
.custom-select-wrapper {
    position: relative;
}

.custom-select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

/* Custom Dropdown Arrow for Select */
.custom-select-wrapper::after {
    content: '▼';
    font-size: 10px;
    color: #6b7a90;
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

/* --- Actions / Button --- */
.form-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}

.next-step-btn {
    background-color: #9acd00;
    border: none;
    color: #000000;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 40px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.next-step-btn:hover {
    background-color: #b0e610;
    transform: scale(1.02);
}

/* --- Responsive Form --- */
@media (max-width: 800px) {
    .project-form {
        flex-direction: column;
        gap: 20px;
    }
    .form-container {
        padding: 25px 20px;
    }
    .form-actions {
        justify-content: stretch;
    }
    .next-step-btn {
        width: 100%;
        justify-content: center;
    }
}
/* footer section*/
/* ================= WHY PARTNER WITH US SECTION ================= */
.why-partner-section {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px 20px;
}

.partner-container {
    max-width: 1100px;
    width: 100%;
    background-color: #0b101a;
    border: 1px solid #1a2438;
    border-radius: 12px;
    padding: 35px 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.partner-title {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.partner-title .p-biz {
    color: #1e74f5; /* Blue */
}

.partner-title .p-bytes {
    color: #9acd00; /* Lime Green */
}

/* --- 5-Column Grid --- */
.partner-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.partner-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 10px;
    position: relative;
}

/* Vertical Dividers */
.partner-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background-color: #2a3441;
}

.partner-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.partner-icon svg {
    width: 100%;
    height: 100%;
}

.partner-text {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

/* --- Responsive Partner Section --- */
@media (max-width: 900px) {
    .partner-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
    }
    .partner-item:not(:last-child)::after {
        display: none; /* Remove dividers on mobile */
    }
    .partner-title {
        font-size: 18px;
    }
}

@media (max-width: 500px) {
    .partner-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .partner-container {
        padding: 25px 15px;
    }
}
