/* Resetting default margins and paddings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    height: 100%;
    overflow: auto;
    scroll-behavior: smooth;
}

/* Body Styling */
body {
    font-family: 'Arial', sans-serif;
    background: #000;
    color: #fff;
    overflow: auto;
}
@font-face {
    font-family: 'Canvas Sans';
    src: url('Work_Sans/static/WorkSans-Light.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'Canvas Sans', sans-serif;
}
/* Header Navigation */
header {
    position: fixed;
    height: auto;
    width: 100%;
    top: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.5); /* Semi-transparent background */
    backdrop-filter: blur(1px); /* Blur effect for transparency */
    padding: 0;
    display: flex;
    justify-content: center; /* Centering the navigation */
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    justify-content: left;
    align-items: left;
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.nav-left img {
    height: 45px;
    transition: all 0.3s ease;
}

.nav-right {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-right a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.cta-button {
    background: #fff;
    color: #000 !important;
    padding: 10px 20px;
    border-radius: 3px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    background: #0066ff;
    color: #fff !important;
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.5);
    transform: translateY(-2px);
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::after {
    width: 200px;
    height: 200px;
    opacity: 0;
}

/* Hero Section */
.hero-container {
    height: 100vh;
    width: 100vw;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Add overflow hidden to prevent gradient extending beyond container */
}

/* Add the fade-out gradient overlay */
.hero-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px; /* Adjust height to control how far up the fade starts */
    background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0)); /* Fade from black to transparent */
    z-index: 1; /* Place it below the content-overlay */
    pointer-events: none; /* Allow clicks to pass through */
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/background/satellite.jpg') no-repeat center center;
    background-size: cover;
    filter: brightness(0.7);
    z-index: 0; /* Ensure it's below the gradient and content */
}

/* Remove or comment out the light-beam class and its animation */
/* .light-beam {
    position: absolute;
    top: 40%;
    right: -10%;
    width: 150%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #0066ff, #00ffff);
    transform: rotate(-45deg);
    animation: beam-pulse 2s infinite;
    box-shadow: 
        0 0 20px #0066ff,
        0 0 40px #0066ff,
        0 0 60px #0066ff,
        0 0 80px rgba(0, 102, 255, 0.5);
    opacity: 0.8;
} */

.content-overlay {
    position: relative;
    z-index: 2; /* Ensure it's above the gradient */
    text-align: center;
    max-width: 1200px;
    padding: 0 20px;
    width: 100%;
}

.content-overlay h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 
        0 0 20px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(0, 102, 255, 0.5);
    letter-spacing: 1px;
}

.subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.cta-container {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.primary-cta, .secondary-cta {
    padding: 15px 40px;
    border-radius: 3px;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.primary-cta {
    background: linear-gradient(90deg, #0066ff, #00ffff);
    color: #fff;
    border: none;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 102, 255, 0.6);
    background: linear-gradient(90deg, #00ffff, #0066ff);
}

.primary-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.7s;
}

.primary-cta:hover::before {
    left: 100%;
}

.secondary-cta {
    border: 2px solid #0066ff;
    color: #fff;
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
}

.secondary-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #0066ff;
    transition: 0.3s ease;
    z-index: -1;
}

.secondary-cta:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 102, 255, 0.6);
}

.secondary-cta:hover::before {
    width: 100%;
}

/* Sections */
section {
    padding: 60px 10%;
    text-align: center;
    margin-bottom: 40px;
}

h2 {
    font-size: 2em;
    color: #333;
    margin-bottom: 1px;
}
header h1 {
    margin: 0;
    font-size: 2.5em;
}

header p {
    font-size: 1.2em;
}

main {
    padding: 40px;
    margin: auto;
    width: 100%;
}

.services-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.service {
    background-color: #f9f9f9;
    padding: 20px;
    margin: 10px;
    border-radius: 8px;
    flex-basis: 45%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.service h3 {
    color: #333;
    margin-bottom: 10px;
}

.service p {
    color: #666;
}
#team-title {
    margin-bottom: 10px; /* Reduce the space as needed */
}
#team-title h2 {
    margin-bottom: 0; /* Ensure no extra space at the bottom of the title */
}
#team {
    display: flex;
    flex-wrap: nowrap; /* Allow wrapping if needed */
    justify-content: space-between;
    align-items: flex-start; /* Align items to the top */
    margin-top: 10px;
}

.team-member {
    flex: 1 1 calc(33.333% - 20px); /* Adjust the widtith and spacing */
    margin: 10px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.team-member h3 {
    margin-bottom: 10px; /* Adjust the value as needed */
}


.team-member p {
    margin-bottom: 10px; /* Adjust the value as needed */
}
.member-photo {
    width: 100px; /* Adjust the size as needed */
    height: 100px; /* Adjust the size as needed */
    border-radius: 50%;
    margin-bottom: 10px; /* Adjust the value as needed */
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.linkedin-logo {
    width: 25px; /* Adjust the size as needed */
    height: 25px; /* Adjust the size as needed */
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.team-member:hover {
    transform: translateY(-10px);
}
/* Footer */
footer {
    text-align: center;
    padding: 10px 10%;
    background: #02000f;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    backdrop-filter: blur(10px); /* Blur effect for transparency */
    /*padding: 10px 5%;*/
    color: #ffffff;
    font-size: 13px;
}

/* Team Page Styles */
.team-page {
    position: relative;
    background: none; /* Remove solid color so image shows */
    min-height: 100vh;
    overflow-y: auto;
    padding-top: 80px;
}

.team-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1; /* Ensure the background stays behind the content */
    background: url('images/background/satellite.jpg') no-repeat center center;
    background-size: cover;
    filter: brightness(0.4) blur(5px); /* Apply blur effect */
    transform: scale(1.2); /* Apply zoom effect */
    transform-origin: center center; /* Ensure the zoom is centered */
    margin: 0;
    padding: 0;
}

.team-header,
.team-grid {
    position: relative;
    z-index: 1;
    /* Optional: add a subtle background for readability */
    /* background: rgba(0,0,0,0.3); */
    /* border-radius: 10px; */
}

.team-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.team-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(0, 102, 255, 0.3);
}

.team-header p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto 60px;
    padding: 0 40px;
}

.team-member {
    background: rgba(0, 102, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(0, 102, 255, 0.2);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    background: rgba(0, 102, 255, 0.15);
    box-shadow: 0 0 30px rgba(0, 102, 255, 0.2);
}

.member-image-container {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
}

.member-image-container img:first-child {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}



.linkedin-link img {
    width: 20px;
    height: 20px;
    display: block;
}

.linkedin-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 255, 0.4);
}

.member-title {
    color: #65a3ff;
    font-size: 18px;
    margin: 10px 0;
    font-weight: 500;
}

.member-bio {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.6;
    font-weight: 450;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
}

.modal-content {
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid #0066ff;
    box-shadow: 0 0 30px rgba(0, 102, 255, 0.3);
    max-width: 500px;
    margin: 100px auto;
    padding: 40px;
    border-radius: 8px;
    position: relative;
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 24px;
    cursor: pointer;
}

#waitlist-form {
    margin-top: 30px;
}

#waitlist-form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: none;
    background: #333;
    color: #fff;
    border-radius: 4px;
}

#waitlist-form button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(90deg, #0066ff, #00ffff);
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

#waitlist-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 255, 0.4);
}

#waitlist-form button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
}

#waitlist-form button:hover::before {
    left: 100%;
}

/* Responsive Design */
@media (max-width: 500px) {
    .nav-links {
        flex-direction: column;
        gap: 10px;
    }
    .hero {
        height: 100vh; /* Adjust height for smaller screens */
        padding-top: 50px; /* Adjust for fixed header */
        background-size: cover;
    }
    .hero h1 {
        font-size: 2em;
    }
    .hero p {
        font-size: 1em;
    }
    h2 {
        font-size: 1.8em;
    }
    .services-container {
        flex-direction: column;
    }
    .service {
        flex-basis: 100%;
    }
    .team-member {
        flex: 1 1 100%; /* Full width for team members */
        margin: 10px 0; /* Adjust margin for spacing */
    }
    .member-photo {
        width: 80px; /* Adjust size for smaller screens */
        height: 80px; /* Adjust size for smaller screens */
    }
    .linkedin-logo {
        width: 80px; /* Adjust size for smaller screens */
        height: 80px; /* Adjust size for smaller screens */
    }
    header {
        padding: 10px 2%; /* Adjust header padding for smaller screens */
    }
    .hero-content {
        padding: 15px; /* Adjust hero content padding for smaller screens */
    }
    section {
        padding: 40px 5%; /* Adjust section padding for smaller screens */
    }
    footer {
        padding: 15px 5%; /* Adjust footer padding for smaller screens */
    }
    #team {
        flex-wrap: wrap; /* Allow wrapping for team members */
    }
}

.tech-section {
    background: #000;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*.tech-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}*/

/* The padding property sets the space inside the .tech-content container:
       - 40px for the top
       - 40px for the right
       - 20px for the bottom
       - 40px for the left
       This creates extra space around the content, making it look less cramped and more visually appealing. */

.tech-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px 20px 40px;
    position: relative;
    z-index: 1;
    width: 100%;
}
.tech-content h2 {
    text-align: center;
    color: #fff;
    font-size: 36px;
    margin-bottom: 60px;
    letter-spacing: 2px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 60px auto;
    width: 100%;
}

.tech-item {
    background: rgba(0, 102, 255, 0.1);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid rgba(0, 102, 255, 0.2);
    transition: all 0.3s ease;
}

.tech-item:hover {
    transform: translateY(-10px);
    background: rgba(0, 102, 255, 0.2);
}

.tech-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

/* Add these styles to your existing CSS */
.users-section {
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9));
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.users-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 102, 255, 0.1), transparent);
    pointer-events: none;
}
/* The padding property sets the space inside the .tech-content container:
       - 40px for the top
       - 40px for the right
       - 20px for the bottom
       - 40px for the left
       This creates extra space around the content, making it look less cramped and more visually appealing. */

.users-overlay {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 40px 210px 40px; /* Increased bottom padding */
    position: relative;
    z-index: 1;
    width: 100%;
}

.users-overlay h2 {
    text-align: center;
    color: #fff;
    font-size: 36px;
    margin-bottom: 60px;
    letter-spacing: 2px;
}

.users-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin: 60px auto;
    width: 100%;
}

.user-category {
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 10px;
    padding: 40px;
    transition: all 0.3s ease;
}

.user-category:hover {
    transform: translateY(-10px);
    background: rgba(0, 102, 255, 0.15);
    box-shadow: 0 0 30px rgba(0, 102, 255, 0.2);
}

.user-icon {
    font-size: 48px;
    margin-bottom: 20px;
    text-align: center;
}

.user-category h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.user-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.user-category li {
    color: rgba(255, 255, 255, 0.8);
    padding: 10px 0;
    text-align: center;
    font-size: 18px;
    transition: color 0.3s ease;
}

.user-category:hover li {
    color: #fff;
}

/* Add responsive styles */
@media (max-width: 1200px) {
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Add smooth scrolling to the users section */
.nav-right a[href="#Trusted By"],
.nav-right a[href="#technology"],
.nav-right a[href="team.html"],
.nav-right a[href="/"] {
    position: relative;
    transition: all 0.3s ease;
}

.nav-right a[href="#Trusted By"]::after,
.nav-right a[href="#technology"]::after,
.nav-right a[href="team.html"]::after,
.nav-right a[href="/"]::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #0066ff;
    transition: width 0.3s ease;
}

.nav-right a[href="#Trusted By"]:hover::after,
.nav-right a[href="#technology"]:hover::after,
.nav-right a[href="team.html"]:hover::after,
.nav-right a[href="/"]:hover::after {
    width: 100%;
}

.nav-right a[href="#Trusted By"]:hover,
.nav-right a[href="#technology"]:hover,
.nav-right a[href="team.html"]:hover,
.nav-right a[href="/"]:hover {
    color: #0066ff;
    text-shadow: 0 0 10px rgba(0, 102, 255, 0.3);
}

/* Add a starry effect overlay */
.hero-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(2px 2px at 20px 30px, #ffffff 50%, rgba(0,0,0,0)),
                      radial-gradient(2px 2px at 40px 70px, #ffffff 50%, rgba(0,0,0,0)),
                      radial-gradient(2px 2px at 50px 160px, #ffffff 50%, rgba(0,0,0,0)),
                      radial-gradient(2px 2px at 90px 40px, #ffffff 50%, rgba(0,0,0,0)),
                      radial-gradient(2px 2px at 130px 80px, #ffffff 50%, rgba(0,0,0,0));
    background-size: 200px 200px;
    animation: twinkle 4s infinite;
    opacity: 0.3;
}

@keyframes twinkle {
    0% { opacity: 0.3; }
    50% { opacity: 0.4; }
    100% { opacity: 0.3; }
}

/* Mobile navigation adjustments */
@media (max-width: 768px) {
    .main-nav {
        padding: 15px 20px;
    }

    .nav-left img {
        height: 25px;
    }

    .nav-right {
        gap: 15px;
    }

    .nav-right a {
        font-size: 12px;
    }

    .cta-button {
        padding: 8px 15px;
    }

    /* Team page mobile adjustments */
    .team-page {
        padding-top: 60px;
    }

    .team-header {
        margin-bottom: 30px;
        padding: 0 15px;
    }

    .team-header h1 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .team-header p {
        font-size: 16px;
        line-height: 1.4;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }

    .team-member {
        padding: 20px;
    }

    .member-image-container {
        width: 120px;
        height: 120px;
        margin-bottom: 15px;
    }

    .member-image-container img:first-child {
        border-radius: 8px;
    }

    .linkedin-link {
        position: absolute;
        bottom: 5px;
        right: 5px;
        width: 120px;    /* Increased from 25px */
        height: 120px;   /* Increased from 25px */
        background: rgba(0, 0, 0, 0.6);
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .linkedin-icon {
        width: 115px;    /* Changed from 120px to a reasonable size */
        height: 115px;   /* Changed from 120px to a reasonable size */
    }

    .team-member h3 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .member-title {
        font-size: 14px;
        margin: 5px 0;
    }

    .member-bio {
        font-size: 13px;
        line-height: 1.4;
    }
}

/* Additional mobile optimizations for smaller screens */
@media (max-width: 360px) {
    /* Header and navigation */
    .main-nav {
        padding: 10px 15px;
    }

    .nav-left img {
        height: 20px;
    }

    .nav-right {
        gap: 10px;
    }

    .nav-right a {
        font-size: 11px;
    }

    .cta-button {
        padding: 6px 12px;
    }

    /* Team page header */
    .team-header {
        margin-bottom: 20px;
        padding: 0 10px;
    }

    .team-header h1 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .team-header p {
        font-size: 13px;
        line-height: 1.3;
    }

    /* Team grid and members */
    .team-grid {
        gap: 20px;
        padding: 0 10px;
    }

    .team-member {
        padding: 15px;
    }

    .member-image-container {
        width: 100px;
        height: 100px;
        margin-bottom: 12px;
    }

    .linkedin-link {
        width: 95px;
        height: 95px;
        bottom: 3px;
        right: 3px;
    }

    .linkedin-icon {
        width: 90px;
        height: 90px;
    }

    .team-member h3 {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .member-title {
        font-size: 13px;
        margin: 4px 0;
    }

    .member-bio {
        font-size: 12px;
        line-height: 1.3;
    }

    /* Modal adjustments */
    .modal-content {
        margin: 60px auto;
        padding: 20px;
    }

    .close {
        right: 15px;
        top: 15px;
        font-size: 20px;
    }

    #waitlist-form input {
        padding: 10px;
        margin-bottom: 15px;
    }

    #waitlist-form button {
        padding: 10px;
        font-size: 13px;
    }
}

/* Add smooth scrolling for mobile */
@media (max-width: 768px) {
    .team-page {
        -webkit-overflow-scrolling: touch;
    }
}

