/* Base styles */
html, body {
    min-height: 100vh;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: black;
    font-family: 'Inter', sans-serif;
}

body {
    background: linear-gradient(to bottom, black, rgb(24, 24, 27), black);
    color: #fff;
}

/* Custom properties */
:root {
    --primary-red: rgb(239, 68, 68);
    --primary-cyan: rgb(6, 182, 212);
    --border-red: rgba(239, 68, 68, 0.2);
    --glow-red: rgba(239, 68, 68, 0.3);
    --glow-cyan: rgba(6, 182, 212, 0.3);
    --gradient: linear-gradient(45deg, #ffffff 0%, #f87171 30%, #67e8f9 70%);

}

/* Layout and Background */
.background-wrapper {
    position: fixed;
    inset: 0;
    background: black;
    z-index: 0;
}

.particle-field {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: .9;
}

.bg-gradient {
    position: fixed;
    inset: 0;
    opacity: 0.5;
    pointer-events: none;
    background: 
        radial-gradient(circle at 30% 20%, rgba(239, 68, 68, 0.05), transparent 25%),
        radial-gradient(circle at 70% 60%, rgba(6, 182, 212, 0.05), transparent 25%);
    min-height: 100vh;
    z-index: 2;
}

.content-wrapper {
    position: relative;
    z-index: 3;
    min-height: 100vh;
    padding-top: 4rem;
    background: transparent;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-red);
    z-index: 50;
}

/* Button Styles */
.secondary-button {
    background: transparent;
    border: 1px solid var(--border-red);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
}

.secondary-button:hover {
    border-color: var(--primary-red);
    box-shadow: 0 0 20px var(--glow-red);
    transform: translateY(-2px);
}

.contact-button {
    background: linear-gradient(to right, var(--primary-red), rgba(239, 68, 68, 0.8));
    color: white;       
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    display: inline-flex; 
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;    
}
.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--glow-red);
}

.linkedin-button {
    background: #0077b7;
    color: white;
    width: 100%;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.linkedin-button:hover {
    background: #006396;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 119, 181, 0.3);
}

/* Feature Cards */
.feature-card {
    background: rgba(17, 17, 17, 0.8);
    border: 1px solid var(--border-red);
    border-radius: 0.75rem;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(239, 68, 68, 0.4);
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.2);
}

.feature-card h3 {
    color: var(--primary-red);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.feature-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-card ul li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgb(156, 163, 175);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.feature-card ul li i {
    color: var(--primary-cyan);
    width: 1.25rem;
    height: 1.25rem;
}

.feature-icon {
    background: rgba(17, 17, 17, 0.6);
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.feature-icon::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 0.75rem;
    padding: 1px;
    background: linear-gradient(45deg, rgba(239, 68, 68, 0.5), rgba(6, 182, 212, 0.5));
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.feature-icon i {
    color: var(--primary-red);
    width: 1.5rem;
    height: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card:hover .feature-icon i {
    filter: drop-shadow(0 0 8px rgba(239, 68, 68, 0.5));
}

/* Investment Section */
.investment-card {
    background: rgba(17, 17, 17, 0.8);
    border: 1px solid var(--border-red);
    border-radius: 0.75rem;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
}

.investment-card:hover {
    transform: translateY(-4px);
    border-color: rgba(239, 68, 68, 0.4);
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.2);
    display: block;
}


.investment-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    vertical-align: middle;
    justify-content: center;
    background: rgba(239, 68, 68, 0.1);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.investment-icon i {
    color: var(--primary-red);
    width: 1.25rem;
    height: 1.25rem;
}

/* Text Gradients */
.gradient-text {
    background: linear-gradient(to right, var(--primary-red), var(--primary-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.gradient-text-hero {
    background: linear-gradient(45deg, #fff 0%, var(--primary-red) 30%, var(--primary-cyan) 70%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
    text-shadow: 0 0 30px rgba(239, 68, 68, 0.3);
}

/* Nav Links */
.nav-link {
    position: relative;
    color: rgb(209, 213, 219);
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--primary-red);
}

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

/* Animations */
@keyframes glow {
    0% { box-shadow: 0 0 5px var(--glow-red); }
    50% { box-shadow: 0 0 20px var(--glow-red), 0 0 30px var(--glow-cyan); }
    100% { box-shadow: 0 0 5px var(--glow-red); }
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.animate-glow {
    animation: glow 3s infinite;
}

.animate-float {
    animation: float 6s infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-wrapper {
        padding-top: 3rem;
    }
    
    .feature-card {
        margin-bottom: 1.5rem;
    }
    
    .contact-button,
    .secondary-button {
        padding: 0.75rem 1.5rem;
    }
}


.hero-gif-container {
    overflow: hidden;
    opacity: 1;
    pointer-events: none;
    z-index: 1;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Add mask for better edge blending */
    mask-image: radial-gradient(circle at center, black 40%, transparent 70%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 70%);
}

.hero-gif {
    opacity: 0;  /* Adjust opacity as needed */
    max-width: 700px;
    min-width: 500px;
    width: 70%;
    height: 70%;
    object-fit: cover;
    filter: blur(0px);  /* Optional: adds slight blur effect */
    z-index: 1;
}
.hero-video {
    opacity: .3;
    max-width: 800px;
    width: 90%;
    height: auto;
    object-fit: contain;
    filter: blur(1px);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2; /* Higher z-index */
}


@media (min-width: 2000px) {
    .hero-gif {
        max-width: 1000px;  /* Slightly larger for very wide screens */
    }
}
.mobile-menu {
    transition: all 0.3s ease;
}



.mobile-link:hover {
    color: var(--primary-red);
    background: rgba(239, 68, 68, 0.1);
}

.mobile-link {
    display: flex;  /* Change to flex */
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: rgb(209, 213, 219);
    transition: all 0.3s ease;
}

.contact-button-mobile {
    background: linear-gradient(to right, var(--primary-red), rgba(239, 68, 68, 0.8));
    color: white;
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.contact-button-mobile i {
    width: 1rem;
    height: 1rem;
}
