/* ==========================================================================
   1. GLOBAL STYLES
   ========================================================================== */

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

html {
    scroll-behavior: smooth; /* Smooth scrolling for anchor links */
}

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

/* ==========================================================================
   2. HEADER & NAV
   ========================================================================== */



header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 37, 77, 0);
    color: #fff;
    padding: 0.75rem 1rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: all 0.3s ease;
}
header.scrolled {
    background: rgba(0, 0, 0, 0.9); /* Your current background color */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}


/* Logo styles */
.logo h1 {
    font-size: 1.5rem;
    font-family: 'Helvetica Neue', sans-serif;
    margin: 0;
}

/* Navbar styles */
.navbar {
    position: relative;
    width: auto;
    height: auto;
    background: transparent;
    box-shadow: none;
    padding: 0;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list li {
    border: none;
    margin: 0 5px;
}

.nav-list a {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1rem;
    transition: color 0.2s ease;
}

.nav-list a:hover {
    background: transparent;
    color: #ccc;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        padding: 1rem;
    }

    .logo {
        margin-bottom: 1rem;
    }

    .nav-list {
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-list li {
        margin: 5px;
    }
}
/* ==========================================================================
   3. HERO SECTION
   ========================================================================== */

.hero {
    height: 120vh;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: -100px;
    left: -100px;
    width: calc(100% + 100px);
    height: calc(100% + 100px);
    object-fit: cover;
    object-position: 40% 30%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 4rem;
    margin-top: -20rem;
    border-radius: 8px;
}

.hero-title {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 6.5rem;
    margin-bottom: 2rem;
    color: #fff;
}

.hero-subtitle {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 2rem;
}


/* ==========================================================================
   3. Values SECTION
   ========================================================================== */


#values {
    padding: 4rem 2rem;
    text-align: center;
    color: #fff;
    background: #000000;
}

.values-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 3rem auto;
    max-width: 1500px;
}

.value-box {
    width: 300px;
    padding: 2rem;
    border: 2px solid #fff;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: rgba(0, 0, 0, 0.5);
}

.value-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

.value-box h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: #fff;
    font-family: 'Helvetica Neue', sans-serif;
}

.value-box p {
    font-size: 1rem;
    line-height: 1.5;
    color: #fff;
    font-family: 'Helvetica Neue', sans-serif;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .values-container {
        flex-direction: column;
        align-items: center;
    }

    .value-box {
        width: 100%;
        max-width: 280px;
    }
}
/* ==========================================================================
   3. About Us SECTION
   ========================================================================== */
#about {
    background-color: #000000;
    color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
}

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

#about h2 {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

#about p {
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1.3rem;
}

#about iframe {
    margin-top: 2rem;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    #about {
        padding: 3rem 1rem;
    }

    #about h2 {
        font-size: 2rem;
    }

    #about p {
        font-size: 1rem;
    }
}
/* Technology */
#technology {
    background-color: #000;
    color: #fff;
    padding: 100px 0;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    font-family: 'Helvetica Neue', sans-serif;
}

#technology h2 {
    text-align: center;
    color: #fff;
    margin-bottom: 70px;
    font-size: 2.8rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.tech-intro {
    max-width: 900px;
    margin: 0 auto 100px;
    text-align: center;
    padding: 0 40px;
}

.tech-intro p {
    font-size: 1.3rem;
    line-height: 1.8;
}

.tech-container {
    width: 100%;
    height: 105vh;
    margin: 0 auto 120px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.03);
}
.tech-section {
    height: 105vh;
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.tech-section-left,
.tech-section-right {
    height: 105vh;
    display: flex;
    align-items: stretch;
}

.tech-section-left {
    flex-direction: row;
}

.tech-section-right {
    flex-direction: row-reverse;
}

.tech-content {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff;
    line-height: 1.7;
    font-size: 1.3rem;
    max-width: 600px;

}

.tech-content h3 {
    text-align: left;
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 25px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 15px;
    text-transform: uppercase
}

.tech-image {
    flex: 1;
    position: relative;
    min-width: 50%;
}

.tech-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.tech-section-left .tech-image img {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: none;
}

.tech-section-right .tech-image img {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-left: none;
}



.tech-section-overlay {
    position: relative;
    height: 105vh;
    width: 100%;
    margin: 120px auto;
    max-width: 1400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.overlay-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
}
.overlay-container:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.9));
    z-index: 1;
}

.overlay-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.overlay-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 50px;
    color: #fff;
    text-align: left;
    z-index: 2;


    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.overlay-content h3 {
    margin-bottom: 30px;
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
    color: #ffffff;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 15px;
    text-transform: uppercase
}

.overlay-content p {
    line-height: 1.8;
    font-size: 1.3rem;
    max-width: 95%;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .tech-section-left,
    .tech-section-right {
        height: auto;
    }

    .overlay-content {
        width: 50%;
    }
}

@media (max-width: 768px) {
    .tech-section-left,
    .tech-section-right {
        flex-direction: column;
    }

    .tech-content {
        max-width: 100%;
        padding: 40px 30px;
    }

    .tech-image {
        width: 100%;
        height: 350px;
    }

    .tech-section-overlay {
        height: 550px;
    }

    .overlay-content {
        width: 100%;
        height: auto;
        bottom: 0;
        top: auto;
        right: 0;
        left: 0;
        background-color: rgba(0, 0, 0, 0.7);
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .overlay-container::before {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    }
}

/* ==========================================================================
   Values Section with Background Video
   ========================================================================== */
.video-values-section {
    position: relative;
    background-color: #000;
    /* Let the section grow with content rather than forcing height */
    min-height: 100vh;
    /* padding, margin, etc. if desired */
}

.background-video-container {
    position: absolute; /* stays behind everything */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; /* hides any overflow from the video */
    z-index: 1;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

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

.values-content {
    /* This ensures the content sits above the overlay and video */
    position: relative;
    z-index: 3;
    padding: 6rem 2rem; /* or however much top/bottom spacing you want */
    max-width: 1200px;
    margin: 0 auto;
    /* text-align, etc. as needed */
}

/* "Our Values" heading */
.values-content h2 {
    text-align: center;
    color: #fff;
    margin-bottom: 4rem;
    font-size: 2.8rem;
    font-weight: 600;
    letter-spacing: 1px;
}



/* Value box styling */
.value-box {
    background-color: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.value-box h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: #fff;
}

.value-box p {
    font-size: 1rem;
    line-height: 1.5;
    color: #fff;
}

/* Responsive tweaks if you want 2 columns or 1 column at smaller breakpoints */
@media (max-width: 992px) {
    .top-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .top-row,
    .bottom-row {
        grid-template-columns: 1fr;
    }
}


/* ==========================================================================
   5. CONTACT FORM
   ========================================================================== */

#careers, #contact {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

#careers h2, #contact h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

#careers h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

#careers p, #contact p {
    color: #fff;
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Contact form styling */
.contact-form {
    max-width: 600px;
    margin: 40px auto;
    text-align: left;
}

.contact-form label {
    display: block;
    margin: 15px 0 5px;
    color: #fff;
    font-size: 1.1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    color: #fff;
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    outline: none;
}

.contact-form button {
    margin-top: 25px;
    padding: 12px 30px;
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 4px;
    font-size: 1.0rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 1px;
    font-family: 'Helvetica Neue', sans-serif;
}

.contact-form button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.contact-form button:active {
    transform: translateY(1px);
}

.contact-form .button-container {
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

#careers {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #careers, #contact {
        padding: 60px 15px;
    }

    .contact-form {
        max-width: 100%;
    }
}
/* ==========================================================================
   6. FOOTER
   ========================================================================== */

footer {
    background: #000000;
    color: #fff;
    text-align: center;
    padding: 1rem;
}

/* ==========================================================================
   7. MEDIA QUERIES (RESPONSIVE)
   ========================================================================== */

@media (max-width: 768px) {
    .nav-list {
        display: none;
        position: absolute;
        top: 60px; /* just below the header */
        right: 0;
        background: #00254d;
        flex-direction: column;
        width: 200px;
        border-top: 1px solid #fff;
    }

    .nav-list.show {
        display: flex;
    }

    .nav-list li {
        padding: 1rem;
        border-bottom: 1px solid #444;
    }

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

    .hero {
        min-height: 40vh;
    }

    .hero-title {
        font-size: 2rem;
    }
}
