@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700&display=swap');

* {
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    width: 100%;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* Variables */
:root {
    --primary-text-color: #fff;
    --secondary-color: #000;
}

/* Button-Section */
.primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 4px;
    padding: 0.8rem 0.8rem;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    background-color: rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
}

.primary-button:hover {
    background-color: #ffffff;
    color: #000000;
}


.primary-button span {
    position: relative;
    z-index: 2;
    color: white !important;
}

.arrow-icon {
    display: inline-block;
    width: 14px;
    height: auto;
    margin-left: 12px;
    transition: transform 0.3s ease, filter 0.3s ease;
    vertical-align: middle;
    position: relative;
    z-index: 10;
    filter: invert(1);
    color: white !important;
}

.primary-button:hover .arrow-icon {
    transform: translateX(10px);
    filter: invert(0);
}


/* Hero-Section */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--secondary-color);
}

.logo {
    margin-left: 3rem;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1440px;
    padding: 0 40px;
    margin: 0 auto;
}

/* NavBar-Section */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1000;
    background: transparent;
    transition: background-color 0.3s ease;
}

.nav-container {
    max-width: 1440px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo img {
    width: 150px;
    height: auto;
    display: block;
    padding-bottom: 5px;
}

.nav-menu {
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.nav-item {
    color: rgba(240, 240, 250, 0.8);
    text-decoration: none;
    font-size: 13px;
    font-weight: 410;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: .2s ease;
}


.nav-item:hover {
    color: #fff;
}

.nav-item:hover::after {
    width: 100%;
}

.chevron {
    width: 8px;
    transition: transform 0.3s ease;
}

.nav-time {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 60px;
    box-sizing: border-box;
}

/* Dropdown */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: transparent;
    list-style: none;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.has-dropdown:hover .chevron {
    transform: rotate(180deg);
}

.dropdown-menu li {
    margin-bottom: 12px;
}

.dropdown-menu li:last-child {
    margin-bottom: 0;
}

.dropdown-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    transition: opacity 0.2s;
}

.dropdown-menu a:hover {
    opacity: 0.7;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
    width: 230px;
    border: 0.2px solid rgb(128, 128, 128);
    border-radius: 6px;
    padding: 4px 1px;
    padding-left: 10px;
}

.countdown {
    font-weight: 900;
    font-size: 12px;
}

.time-bar {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    gap: 20px;
}

.time-bar span {
    display: flex;
    align-items: center;
}

.launch-label {
    font-size: 10px;
    opacity: 0.8;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 14px;
  cursor: pointer;
  z-index: 2000;
  margin-right: 20px;
}

.nav-toggle span {
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s ease;
}

/* hero-content-section */
.hero-content-section {
    position: relative;
    width: 100%;
    height: 100vh;
    margin-top: -100vh;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding-bottom: 100px;
    z-index: 10;
    pointer-events: none;
}

.hero-text-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    pointer-events: auto;
}

.hero-date {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    color: #fff;
    font-size: clamp(30px, 5vw, 48px);
    line-height: 1.1;
    font-weight: 600;
    margin-bottom: 30px;
    text-transform: uppercase;
}

/* Mars-Section */
.mars-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    background-color: #000;
}

.mars-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.mars-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mars-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
}

.mars-content {
    position: relative;
    z-index: 3;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.mars-title {
    color: #fff;
    font-size: clamp(26px, 5vw, 48px);
    line-height: 1.1;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.mars-description {
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
    max-width: 500px;
    margin-bottom: 35px;
    font-weight: 300;
}

/* Revolutionizing-Space-Section */
.revolution-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    background-color: #000;
    background-image: url('./assets spacex/starship-render.jpg');
    background-size: cover;
    background-position: center;
}

.revolution-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.revolution-content {
    position: relative;
    z-index: 2;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.revolution-title {
    color: #fff;
    font-size: clamp(26px, 5vw, 48px);
    line-height: 1.1;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.revolution-description {
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
    max-width: 550px;
    margin-bottom: 35px;
    font-weight: 300;
}

.revolution-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #000;
}

.revolution-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.revolution-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to left, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 50%);
    z-index: 2;
}

.revolution-content-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 80px;
    display: flex;
    justify-content: flex-end;
}

.revolution-content {
    max-width: 700px;
    text-align: left;
    left: 10%;
}

.revolution-title {
    color: #fff;
    font-size: clamp(26px, 4vw, 44px);
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.revolution-description {
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 300;
    opacity: 0.9;
}


/* Launch-Section */
.launch-service-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #000;
}

.launch-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.launch-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.launch-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(30deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
}

.launch-content-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 80px;
}

.launch-content {
    max-width: 650px;
    position: absolute;
    bottom: 50%;
}

.launch-title {
    color: #fff;
    font-size: clamp(26px, 4vw, 44px);
    line-height: 1.1;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.launch-description {
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 300;
    opacity: 0.9;
}

@media (max-width: 992px) {
    .launch-content-wrapper {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .launch-content {
        max-width: 100%;
        text-align: left;
    }

    .launch-title {
        font-size: 32px;
    }

}

/* advancing-human-section */
.advancing-human-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 0 0 80px 50px;
    box-sizing: border-box;
    background-color: #000;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)),
        url('https://testpylot.com/images/stagesection_background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.human-content {
    max-width: 600px;
    z-index: 5;
}

.section-desc {
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 300;
    opacity: 0.9;
}

/*internet-section */
.internet-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #000;
}

.internet-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.internet-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.internet-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.1) 60%);
    z-index: 2;
}

.internet-content-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 80px;
}

.internet-content {
    max-width: 580px;
}

.internet-title {
    color: #fff;
    font-size: clamp(26px, 4vw, 44px);
    line-height: 1.1;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.internet-description {
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 300;
    opacity: 0.9;
}

/* main-footer-Section */
.main-footer {
    width: 100%;
    background: linear-gradient(to bottom, #101010, #000000);
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1440px;
    width: 100%;
    padding: 0 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-left {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.60);
    object-fit: cover;
    padding: 8px;
}

.footer-left img {
    width: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: 0.3s ease;
}

.footer-links a:hover {
    opacity: .8;
}

.footer-copyright {
    color: #fff;
    font-family: D-DIN;
    font-size: .75rem;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
}

.copyright {
    color: #fff;
    font-size: .9rem;
}