
/* Hero Section */
#fh5co-home {
    position: relative;
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    animation: fadeIn 1.5s ease-in-out;
}

#fh5co-explore h2 {
 margin: 2em;

}
#fh5co-explore {
    background: #111;

}

.fh5co-portfolio h3 {
    font-size: 3em;
    margin: 1em;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.9), rgba(255,0,150,0.6));
}

.text-wrap h1 {
    font-size: 5rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    animation: neonGlow 1.5s ease-in-out infinite alternate;
}

.text-wrap h3 {
    font-size: 4.5rem;
    font-weight: 400;
    animation: slideInUp 1s ease-in-out;
}

@keyframes neonGlow {
    from { text-shadow: 0 0 10px #ff007a, 0 0 20px #ff007a; }
    to { text-shadow: 0 0 20px #ff007a, 0 0 30px #ff007a; }
}

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

/* Services Section */
.fh5co-services {
    padding: 80px 0;
    background: #1a1a1a;
}

.box-services {
    background: #222;
    padding: 30px;
    margin: 15px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(255, 0, 150, 0.5);
    transition: transform 0.3s ease-in-out;
    animation: fadeInUp 1s ease-in-out;
}

.box-services:hover {
    transform: scale(1.05);
}

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

.icon {
    font-size: 3.5rem;
    color: #ff007a;
    margin-bottom: 15px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Portfolio Section */
.fh5co-project {
    padding: 100px 0;
    background: #111;
    text-align: center;
}

.fh5co-portfolio {
    width: 70vw;
    margin: auto;
    margin-bottom: 80px;
    transition: transform 0.3s ease-in-out;
    animation: fadeInUp 1s ease-in-out;
}

.fh5co-portfolio:hover {
    transform: scale(1.08);
}

.portfolio-entry {
    position: relative;
    min-height: 20vh;
    height: 50vh;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 4px 20px rgba(255, 0, 150, 0.6);
    transition: all 0.3s ease-in-out;
}

.desc {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(150, 0, 100, 1);
    color: white;
    padding: 20px;
    font-size: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.portfolio-entry:hover .desc {
    opacity: 1;
}

@media screen and (max-width: 768px) {
    .text-wrap h1 {
        font-size: 3.5rem;
    }
    .text-wrap h3 {
        font-size: 2rem;
    }
    .portfolio-entry {
        height: 20vh;
    }
}


