/* style.css */

/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to bottom, #000033, #000000);
    color: #ffffff;
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}

.navbar {
    background: rgba(0, 0, 51, 0.8); /* Deep blue semi-transparent */
    backdrop-filter: blur(10px); /* Glassmorphism */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-link {
    color: #ffffff !important;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #00ffff !important; /* Neon cyan */
}

/* Hero Section */
/*.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
}

.hero-content h1 {
    font-size: 3rem;
    text-shadow: 0 0 10px #00ffff;  Neon glow 
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}*/

.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(to bottom, #000022, #000000);
}

#hero-3d {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
    max-width: 900px;
}

/* Enhance neon glow on text */
.hero-content h1 {
    font-size: 3.5rem;
    text-shadow: 0 0 30px #00ffff, 0 0 60px #00ffff;
}

.hero-content p {
    font-size: 1.6rem;
    text-shadow: 0 0 15px #00ffff;
}

.cta-buttons .btn {
    margin: 10px;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5); /* Neon glow */
}

.btn-primary {
    background: #00ffff;
    border: none;
    color: #000033;
}

.btn-outline-light {
    border-color: #00ffff;
    color: #00ffff;
}

.btn-outline-light:hover {
    background: #00ffff;
    color: #000033;
}

/* About Section */
.about-section {
    padding: 80px 0;
    text-align: center;
}

.highlights {
    margin-top: 40px;
}

.highlights div {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.5);
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
    margin-bottom: 30px;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: scale(1.05);
}

/* Why Us Section */
.why-us-section {
    padding: 80px 0;
    text-align: center;
}

.why-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.why-card i {
    display: block;
    font-size: 2rem;
    margin-bottom: 10px;
    color: #00ffff; /* Placeholder for icons, use Font Awesome or similar */
}

/* Portfolio Section */
.portfolio-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.5);
}

.portfolio-item {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 10px;
}

.portfolio-item img {
    width: 100%;
    display: block;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 255, 255, 0.7);
    color: #000033;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.portfolio-item:hover .overlay {
    opacity: 1;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    text-align: center;
}

.form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.form-control:focus {
    box-shadow: 0 0 10px #00ffff;
}

/* Footer */
.footer {
    background: rgba(0, 0, 51, 0.8);
    padding: 40px 0;
    text-align: left;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer a {
    color: #ffffff;
    text-decoration: none;
}

.social-icon {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: #00ffff; /* Placeholder, replace with actual icons */
    margin-right: 10px;
    border-radius: 50%;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
}