body {
    font-family: 'Poppins', sans-serif;
    background-color: rgb(255, 255, 255);
    color: #1f2937;
}

.color1 {
    color: #fc855c;
}

.color2 {
    color: #e34670;
}

.color3 {
    color: #044478;
}

.color4 {
    color: #5361a7;
}

.color5 {
    color: #dbd3d5;
}

.color6 {
    color: #ffffff;
}

.color7 {
    color: #ffc148;
}

.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 250%;
    background: radial-gradient(circle at 100% -45%, #fc855c 50%, #e34670 70%, rgba(213, 129, 94, 0) 90%);
    filter: blur(50px);
    z-index: -1;
}

nav {
    background-color: rgba(255, 255, 255, 0.9);
}

nav a {
    color: #333333;
    text-decoration: none;
    font-weight: 600;
}

nav a:hover {
    color: #fc855c;
}

.hero h2 {
    background: linear-gradient(90deg, #fc855c, #e34670);
    -webkit-background-clip: text;
    color: transparent;
}

.startup-card,
.tech-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.startup-card:hover,
.tech-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.icon {
    font-size: 2rem;
    color: #fc855c;
    margin-bottom: 1rem;
}

.hero {
    position: relative;
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.5));
}

.hero-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.glass-effect {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
}

.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
}

.floating-animation {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-spacing {
    padding: 6rem 0;
}

.gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-counter {
    font-variant-numeric: tabular-nums;
}

.custom-shadow {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.gradient-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-card {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.pulse-animation {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .5;
    }
}

.input-focus {
    transition: all 0.3s ease;
}

.input-focus:focus {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.2);
}

.btn-hover {
    transition: all 0.3s ease;
}

.btn-hover:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.4);
}