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

:root {
    --obsidian-black: #0a0a0a;
    --obsidian-dark: #121212;
    --neon-green: #00ff88;
    --neon-green-bright: #00ffaa;
    --neon-green-dark: #00cc6a;
    --text-white: #ffffff;
    --text-gray: #b0b0b0;
    --glow-color: rgba(0, 255, 136, 0.5);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--obsidian-black);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--neon-green);
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    color: var(--neon-green);
}

.diamond-icon {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 10px var(--neon-green));
    animation: pulse-glow 2s ease-in-out infinite;
}

.logo-text {
    background: linear-gradient(135deg, var(--neon-green), var(--neon-green-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px var(--glow-color);
}

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

.nav-menu a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-green);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--neon-green);
}

.nav-menu a:hover {
    color: var(--neon-green);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--neon-green);
    transition: all 0.3s ease;
    box-shadow: 0 0 10px var(--glow-color);
}

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

.hero-background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 15s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--neon-green);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: var(--neon-green-bright);
    bottom: -150px;
    right: -150px;
    animation-delay: 5s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: var(--neon-green);
    top: 50%;
    right: 20%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.logo-large {
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    color: var(--neon-green);
}

.diamond-large {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 30px var(--neon-green));
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        filter: drop-shadow(0 0 20px var(--neon-green));
        opacity: 1;
    }
    50% {
        filter: drop-shadow(0 0 40px var(--neon-green-bright));
        opacity: 0.9;
    }
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.glow-text {
    background: linear-gradient(135deg, var(--neon-green), var(--neon-green-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px var(--glow-color);
    animation: text-glow 2s ease-in-out infinite alternate;
}

@keyframes text-glow {
    from {
        filter: drop-shadow(0 0 10px var(--neon-green));
    }
    to {
        filter: drop-shadow(0 0 30px var(--neon-green-bright));
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: inline-block;
    cursor: pointer;
}

.btn-primary {
    background: var(--neon-green);
    color: var(--obsidian-black);
    box-shadow: 0 0 20px var(--glow-color);
}

.btn-primary:hover {
    background: var(--neon-green-bright);
    box-shadow: 0 0 30px var(--neon-green-bright);
    transform: translateY(-2px);
}

.btn-secondary {
    border-color: var(--neon-green);
    color: var(--neon-green);
    background: transparent;
}

.btn-secondary:hover {
    background: rgba(0, 255, 136, 0.1);
    box-shadow: 0 0 20px var(--glow-color);
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--neon-green), transparent);
    box-shadow: 0 0 10px var(--neon-green);
    animation: scroll-down 2s ease-in-out infinite;
}

@keyframes scroll-down {
    0%, 100% {
        opacity: 0;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(10px);
    }
}

/* Section Styles */
.section {
    padding: 100px 0;
    position: relative;
}

.section-dark {
    background: var(--obsidian-dark);
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 4rem;
    text-align: center;
}

.title-accent {
    color: var(--neon-green);
    text-shadow: 0 0 20px var(--glow-color);
}

/* About Section */
.about-content {
    max-width: 900px;
    margin: 0 auto;
}

/* Stat Cards - Uncomment when using stat cards
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--neon-green);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-gray);
    font-size: 1rem;
}
*/

.about-text .lead {
    font-size: 1.3rem;
    color: var(--neon-green);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Diamond Symbol Section - Uncomment CSS when using diamond section
.diamond-symbol-section {
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 20px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.diamond-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.diamond-intro {
    font-size: 1.2rem;
    color: var(--neon-green);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 600;
    line-height: 1.6;
}

.diamond-symbols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.diamond-symbol-item {
    padding: 1.5rem;
    background: rgba(18, 18, 18, 0.6);
    border: 1px solid rgba(0, 255, 136, 0.15);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.diamond-symbol-item:hover {
    border-color: var(--neon-green);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
    transform: translateY(-3px);
}

.symbol-title {
    font-size: 1.3rem;
    color: var(--neon-green);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.symbol-description {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
}

.diamond-conclusion {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    font-style: italic;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 255, 136, 0.2);
}

@media (max-width: 768px) {
    .diamond-symbol-section {
        margin-top: 3rem;
        padding: 2rem;
    }

    .diamond-symbols {
        grid-template-columns: 1fr;
    }
}
*/

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.service-card {
    padding: 3rem 2rem;
    background: rgba(18, 18, 18, 0.8);
    border: 1px solid rgba(0, 255, 136, 0.1);
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--neon-green);
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.2);
    transform: translateY(-10px);
    background: rgba(0, 255, 136, 0.05);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: var(--neon-green);
}

.service-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 15px var(--neon-green));
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--neon-green);
}

.service-description {
    color: var(--text-gray);
    line-height: 1.8;
}

.services-summary {
    margin-top: 3rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 2rem;
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 15px;
}

.services-summary p {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

.services-summary strong {
    color: var(--neon-green);
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 15px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    color: var(--neon-green);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 10px var(--neon-green));
}

.contact-item h4 {
    color: var(--neon-green);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-item p {
    color: var(--text-gray);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(18, 18, 18, 0.8);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 10px;
    color: var(--text-white);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-green);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-gray);
}

/* Footer */
.footer {
    background: var(--obsidian-dark);
    padding: 3rem 0 1.5rem;
    border-top: 1px solid rgba(0, 255, 136, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--neon-green);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    color: var(--neon-green);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    border-color: var(--neon-green);
    box-shadow: 0 0 20px var(--glow-color);
    transform: translateY(-3px);
}

.footer-social svg {
    width: 20px;
    height: 20px;
    filter: drop-shadow(0 0 5px var(--neon-green));
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 255, 136, 0.1);
    color: var(--text-gray);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        border-bottom: 1px solid rgba(0, 255, 136, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }


    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

