
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');

html {
    height: 100%;
}

body {
    min-height: 100%; /* Use min-height instead of height for scrolling */
    margin: 0;
    overflow-x: hidden; /* Keep horizontal hidden */
    overflow-y: auto;   /* Allow vertical scrolling */
    font-family: 'Orbitron', sans-serif;
    background-color: #0a0a1a;
    color: #e0e0e0;

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #0a0a1a; /* Background color behind particles */
    background-image: url(''); /* No image needed for particles */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    z-index: -1; /* Place behind all other content */
}

header {
    background-color: rgba(10, 10, 30, 0.4);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(26, 26, 58, 0.4);
}

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

.logo a {
    color: #00f0ff;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: bold;
    text-shadow: 0 0 10px #00f0ff;
}

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

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s, text-shadow 0.3s;
    position: relative;
}

nav ul li a:hover {
    color: #00f0ff;
    text-shadow: 0 0 10px #00f0ff;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #00f0ff;
    transition: width 0.3s;
}

nav ul li a:hover::after {
    width: 100%;
}

section {
    padding: 8rem 2rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

#hero {
    color: white;
    text-align: center;
    padding: 15rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    animation: slideInUp 1s ease-in-out;
}

@keyframes slideInUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 20px #00f0ff;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 3rem;
}

.cta-button {
    background: transparent;
    border: 2px solid #00f0ff;
    color: #00f0ff;
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.3rem;
    transition: background-color 0.3s, color 0.3s, box-shadow 0.3s, transform 0.3s;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    background-color: #00f0ff;
    color: #0a0a1a;
    box-shadow: 0 0 20px #00f0ff;
    transform: translateY(-5px);
}

#about, #services, #contact, #employees, #testimonials, #hiring {
    background-color: rgba(20, 20, 40, 0.4);
    margin-bottom: 3rem;
    border-radius: 10px;
    padding: 4rem;
    border: 1px solid #1a1a3a;
    backdrop-filter: blur(5px);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 0 0 40%; /* Adjust the width of the image container */
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    max-width: 100%;
    height: auto; /* Maintain aspect ratio */
    border-radius: 10px;
    border: 2px solid #00f0ff;
    box-shadow: 0 0 15px #00f0ff;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for hover */
}

.about-image img:hover {
    transform: scale(1.05); /* Slightly enlarge on hover */
    box-shadow: 0 0 25px #00f0ff; /* Intensify shadow on hover */
}

h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #00f0ff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.card {
    background-color: rgba(30, 30, 50, 0.4); /* Adjusted transparency */
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #2a2a4a;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.card h3 {
    color: #00f0ff;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background-color: rgba(30, 30, 50, 0.8);
    padding: 2.5rem;
    border-radius: 10px;
    border: 1px solid #2a2a4a;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.testimonial-card cite {
    font-weight: bold;
    color: #00f0ff;
}

#contact-form, #hiring-form {
    display: flex;
    flex-direction: column;
    max-width: 800px;
    margin: 0 auto;
}

#contact-form input,
#contact-form textarea,
#hiring-form input,
#hiring-form textarea,
#hiring-form select {
    padding: 1.2rem;
    margin-bottom: 1.5rem;
    border: 1px solid #2a2a4a;
    border-radius: 5px;
    font-size: 1rem;
    background-color: #1a1a3a;
    color: #e0e0e0;
    transition: border-color 0.3s, box-shadow 0.3s;
}

#contact-form input:focus,
#contact-form textarea:focus,
#hiring-form input:focus,
#hiring-form textarea:focus,
#hiring-form select:focus {
    outline: none;
    border-color: #00f0ff;
    box-shadow: 0 0 10px #00f0ff;
}

#hiring-form label {
    margin-bottom: 0.8rem;
    font-weight: bold;
    color: #00f0ff;
    font-size: 1.1rem;
}

#contact-form button, #hiring-form button {
    cursor: pointer;
    border: none;
    background-color: #00f0ff;
    color: #0a0a1a;
    padding: 1.2rem;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: background-color 0.3s, box-shadow 0.3s;
}

#contact-form button:hover, #hiring-form button:hover {
    background-color: #00b0c0;
    box-shadow: 0 0 15px #00f0ff;
}


#employees .employee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.employee-card {
    background-color: rgba(30, 30, 50, 0.8);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #2a2a4a;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.employee-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top; /* Adjusts the image to show the top part */
    margin-bottom: 1.5rem;
    border: 3px solid #00f0ff;
    box-shadow: 0 0 15px #00f0ff;
}

.employee-card h3 {
    color: #00f0ff;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

#founders {
    background-color: rgba(20, 20, 40, 0.4);
    margin-bottom: 3rem;
    border-radius: 10px;
    padding: 4rem;
    border: 1px solid #1a1a3a;
    backdrop-filter: blur(5px);
}

.founder-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    justify-items: center;
}

.founder-card {
    background-color: rgba(30, 30, 50, 0.4);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #2a2a4a;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.founder-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top; /* Adjusts the image to show the top part */
    margin-bottom: 1.5rem;
    border: 3px solid #00f0ff;
    box-shadow: 0 0 15px #00f0ff;
}

.founder-card h3 {
    color: #00f0ff;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

footer {
    text-align: center;
    padding: 2.5rem 0;
    background-color: #0a0a1a;
    border-top: 1px solid #1a1a3a;
    margin-top: 4rem;
}

@media (max-width: 768px) {
    nav ul {
        display: none;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .about-content {
        flex-direction: column;
    }
}
