/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: url('../assets/images/sci-fi-lab-bg.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #ffffff;
    line-height: 1.6;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 180px 20px 120px;
    background-color: rgba(0, 0, 0, 0.6);
}

.hero h1 {
    font-size: 4.5rem;
    letter-spacing: 2px;
    color: #00ffe7;
    margin-bottom: 15px;
    text-shadow: 0 0 20px #00ffe7, 0 0 30px #00d0ff;
}

.hero h2 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 30px;
    color: #a2f2ff;
    text-shadow: 0 0 10px #5ddcff;
}

.cta-button {
    padding: 12px 30px;
    font-size: 1rem;
    background-color: #6c63ff;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #5a52d1;
}

/* Video Section */
.video-section {
    max-width: 100%;
    overflow: hidden;
    padding: 30px 0;
    background-color: rgba(0, 0, 0, 0.7);
    text-align: center;
}

video {
    display: inline-block;
    width: 70%;
    border-radius: 10px;
}

/* About Section */
#about {
    padding: 80px 20px;
    background-color: rgba(0, 0, 0, 0.85);
    text-align: center;
}

#about h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #00ffe7;
    text-shadow: 0 0 10px #00ffe7;
}

#about p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: auto;
    color: #d4f9ff;
}

/* RAPHA AI Section */
#rapha {
    padding: 80px 20px;
    background-color: rgba(10, 10, 10, 0.9);
    text-align: center;
}

#rapha h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #00ffe7;
    text-shadow: 0 0 10px #00ffe7;
}

#rapha p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: auto auto 30px;
    color: #c4eaff;
}
.try-me {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    background: #0ff; /* glowing cyan for now */
    color: #000;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
}
.try-me:hover {
    background: #0cc;
}


.product-image {
    width: 100%;
    max-width: 300px;
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    margin-top: 20px;
}

/* Team Section */
.trust-section {
    padding: 60px 20px;
    text-align: center;
    background-color: rgba(20, 20, 20, 0.85);
}

.trust-section h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.founder-details {
    color: #f0f0f0;
    font-size: 1rem;
    line-height: 1.8;
}

.founder-details a {
    color: #6c63ff;
    text-decoration: none;
    margin: 0 10px;
}

.founder-details a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    padding: 30px 20px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.9);
    color: #aaaaaa;
    font-size: 0.9rem;
}

.footer-links a {
    color: #888;
    margin: 0 8px;
    text-decoration: none;
}

.footer-links a:hover {
    color: #ffffff;
}
