
body {
    background-color: #000;
    color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAAPElEQVR42mN8//9/JgYy4AFjLqgPAAACYwVBP0A2ADbC6JBNv0A2AEYM7pBtf4FsAIwY3CHb/gLZABgxuEP2/QWGAgACsQ7xO1JgZgAAAABJRU5kJggg==');
    text-align: center;
}

header {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10;
    box-sizing: border-box;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo a {
    color: #fff;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 2px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #00aaff;
}

.hamburger-menu {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

.mobile-nav {
    display: none;
    background-color: rgba(0, 0, 0, 0.9);
    position: fixed;
    top: 60px; /* Adjust based on header height */
    left: 0;
    width: 100%;
    padding: 1rem 0;
    z-index: 9;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.mobile-nav ul li {
    padding: 1rem 0;
}

.mobile-nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
}

.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 2rem;
    box-sizing: border-box;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

button, .google-login {
    background-color: #007bff;
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

button:hover, .google-login:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

#globe-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.technology {
    padding: 4rem 2rem;
    text-align: center;
    background-color: rgba(10, 10, 10, 0.8);
    position: relative;
    z-index: 5;
}

.technology h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.technology-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 10px;
    max-width: 300px;
    text-align: center;
    border: 1px solid #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card i {
    font-size: 2.5rem;
    color: #00aaff;
    margin-bottom: 1rem;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #ccc;
}

footer {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 1.5rem 2rem;
    text-align: center;
    position: relative;
    z-index: 5;
}

.social-media a {
    color: #fff;
    text-decoration: none;
    margin: 0 1rem;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-media a:hover {
    color: #00aaff;
}

/* New Page Styles */
.page-content {
    padding: 8rem 2rem 4rem;
    max-width: 1000px;
    margin: 0 auto;
    background-color: rgba(10, 10, 10, 0.8);
    position: relative;
    z-index: 5;
}

.content-section {
    text-align: left;
}

.page-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.content-section h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.content-section h3 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #00aaff;
}

.content-section ul {
    list-style: none;
    padding-left: 0;
}

.content-section ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Form Styles */
.form-section {
    text-align: center;
}

.form-section form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 2rem auto;
}

.form-section input {
    padding: 1rem;
    border-radius: 5px;
    border: 1px solid #333;
    background-color: #2a2a2a;
    color: #fff;
    font-size: 1rem;
}

.social-login {
    margin-top: 2rem;
}

.google-login i {
    margin-right: 0.5rem;
}

.form-links {
    margin-top: 1rem;
}

.form-links a {
    color: #00aaff;
    text-decoration: none;
}

/* Fixed Button Bar */
.fixed-button-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: space-around;
    padding: 0.5rem 0;
    z-index: 100;
}

.fixed-button-bar a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.fixed-button-bar a:hover {
    background-color: #00aaff;
}


/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger-menu {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .page-content {
        padding-top: 6rem;
    }
}
