* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #fff;
    color: #000;
    overflow-x: hidden;
}

/* Animated network background */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: linear-gradient(180deg, #fff 0%, #fff5f5 50%, #fff 100%);
}

.network-line {
    position: absolute;
    background: rgba(220, 38, 38, 0.15);
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.15; }
    50% { opacity: 0.4; }
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 2px solid #dc2626;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo-nav {
    height: 50px;
}

nav ul {
    display: flex;
    gap: 3rem;
    list-style: none;
}

nav a {
    color: #000;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.5px;
}

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

nav a:hover {
    color: #dc2626;
}

nav a:hover::after {
    width: 100%;
}

.section {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem 2rem;
    position: relative;
    z-index: 1;
}

.content {
    max-width: 1200px;
    width: 100%;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero {
    text-align: center;
}

.logo-hero {
    width: 600px;
    max-width: 90%;
    margin-bottom: 2rem;
	margin-top: 2rem;
    /* filter: drop-shadow(0 0 5px rgba(220, 38, 38, 0.3)); */
}

.orange {
	color: #bf3d09;
	font-weight: 600;
}

.logo-hero-blue {
    width: 600px;
    max-width: 90%;
    margin-bottom: 2rem;
	margin-top: 2rem;
    /* filter: drop-shadow(0 0 5px rgba(0, 17, 255, 0.623)); */
}

.hero .tagline {
    font-size: 2rem;
    margin-top: 2rem;
    font-weight: 600;
    color: #333;
    letter-spacing: 1px;
}

 .hero .blurb {
    font-size: 0.7rem;
    margin-top: 1rem;
    font-weight: 500;
    color: #222;
    letter-spacing: 1px;
    text-align:left;
    width: 90%;
}

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

.feature-card {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    border: 1px solid rgba(220, 38, 38, 0.2);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.2), transparent);
    transition: left 0.5s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #dc2626;
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.3);
}

.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #000;
}

.feature-card p {
    line-height: 1.7;
    color: #333;
}

.icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

h2 {
    font-size: 3.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #000;
    position: relative;
    display: inline-block;
    width: 100%;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #dc2626;
}

.about-content {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.03) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3.5rem;
    border: 1px solid rgba(220, 38, 38, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.about-content p {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: #333;
}

.contact-form {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.03) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid rgba(220, 38, 38, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #000;
}

input, textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(220, 38, 38, 0.3);
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    color: #000;
    font-size: 1rem;
    transition: all 0.3s ease;
}

input::placeholder, textarea::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

input:focus, textarea:focus {
    outline: none;
    border-color: #dc2626;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.2);
}

textarea {
    resize: vertical;
    min-height: 150px;
}

button {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: #fff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    letter-spacing: 1px;
    text-transform: uppercase;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.5);
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-20px);
    }
    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.scroll-indicator::after {
    content: '↓';
    font-size: 2rem;
    color: #dc2626;
}

/* Hexagon decorative elements */
.hex-decoration {
    position: absolute;
    width: 100px;
    height: 100px;
    opacity: 0.1;
    animation: float 6s infinite;
}

/* Blue theme overrides */
.theme-blue .background-animation {
    background: linear-gradient(180deg, #fff 0%, #e6f2ff 50%, #fff 100%);
}

.theme-blue nav {
    border-bottom: 2px solid #2563eb; /* blue-600 */
}

.theme-blue nav a::after {
    background: #2563eb;
}

.theme-blue nav a:hover {
    color: #2563eb;
}

.theme-blue .feature-card {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(255, 255, 255, 0.9) 100%);
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.theme-blue .feature-card::before {
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.2), transparent);
}

.theme-blue .feature-card:hover {
    border-color: #2563eb;
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.3);
}

.theme-blue h2::after {
    background: #2563eb;
}

.theme-blue input, .theme-blue textarea {
    border: 1px solid rgba(37, 99, 235, 0.3);
}

.theme-blue input:focus, .theme-blue textarea:focus {
    border-color: #2563eb;
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.2);
}

.theme-blue button {
    background: linear-gradient(135deg, #2563eb 0%, #1e3a8a 100%);
}

.theme-blue button:hover {
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.5);
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.theme-blue .scroll-indicator::after {
    color: #2563eb;
}


@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@media (max-width: 768px) {
    .logo-hero {
        width: 90%;
    }
    .hero .tagline {
        font-size: 1.3rem;
    }
    .hero .blurb {
        font-size: 0.7rem;
        text-align: left;
        width: 50%;
    }
    
    h2 {
        font-size: 2.5rem;
    }
    nav ul {
        gap: 1.5rem;
    }
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    .logo-nav {
        height: 40px;
    }
}