/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Fira Code', monospace;
    background: #000;
    color: #00BFFF;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Matrix Rain Canvas */
#matrix-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.3;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid #00BFFF;
}

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

.logo-img {
    height: 40px;
    filter: brightness(1.2);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #00BFFF;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    text-shadow: 0 0 10px #00BFFF;
    transform: scale(1.05);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00BFFF;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.hero-content {
    z-index: 10;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px #00BFFF;
}

.typing-text {
    border-right: 3px solid #00BFFF;
    animation: typing 4s steps(40) 1s 1 normal both, blink 1s infinite;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink {
    50% { border-color: transparent; }
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

/* Sections */
section {
    padding: 5rem 0;
    position: relative;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 0 0 15px #00BFFF;
}

/* Services Section */
.services {
    background: rgba(0, 51, 102, 0.1);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #00BFFF;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 191, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.service-card:hover::before {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 191, 255, 0.3);
    border-color: #00BFFF;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: grayscale(100%) brightness(0) invert(1);
    color: #00BFFF;
}

.service-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #00BFFF;
}

.service-description {
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.service-button {
    background: transparent;
    border: 2px solid #00BFFF;
    color: #00BFFF;
    padding: 0.8rem 1.5rem;
    font-family: 'Fira Code', monospace;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.service-button:hover {
    background: #00BFFF;
    color: #000;
    transform: scale(1.05);
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.stats {
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(0, 191, 255, 0.1);
    border-radius: 10px;
    border: 1px solid #00BFFF;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #00BFFF;
    text-shadow: 0 0 15px #00BFFF;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Contact Section */
.contact {
    background: rgba(0, 51, 102, 0.1);
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #003366;
    color: #00BFFF;
    padding: 1rem;
    font-family: 'Fira Code', monospace;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00BFFF;
    box-shadow: 0 0 15px rgba(0, 191, 255, 0.3);
}

.form-group label {
    position: absolute;
    top: -10px;
    left: 15px;
    background: #000;
    padding: 0 5px;
    font-size: 0.8rem;
    color: #00BFFF;
}

.submit-button {
    width: 100%;
    background: linear-gradient(45deg, #00BFFF, #003366);
    border: none;
    color: #000;
    padding: 1rem;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.submit-button:hover {
    transform: scale(1.02);
    box-shadow: 0 0 20px #00BFFF;
}

.contact-info {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #00BFFF;
    border-radius: 10px;
    padding: 2rem;
}

.contact-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #003366;
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.contact-label {
    font-weight: 500;
}

.contact-value {
    color: #00BFFF;
}

.online {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.9);
    border-top: 1px solid #00BFFF;
    padding: 2rem 0;
    text-align: center;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .stats {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: #00BFFF;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #003366;
}



/* Hero Logo */
.hero-logo-container {
    margin-bottom: 2rem;
}

.hero-logo {
    width: 300px; /* Adjust size as needed */
    height: auto;
    filter: drop-shadow(0 0 20px #00BFFF) drop-shadow(0 0 40px #00BFFF);
    transition: all 0.5s ease-in-out;
}

.hero-logo:hover {
    filter: drop-shadow(0 0 30px #00BFFF) drop-shadow(0 0 60px #00BFFF);
    transform: scale(1.05);
}


