/* Global Styles */
html, body, main {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #1e1e1e, #333);
    color: white;
    overflow-x: hidden;
}

body {
    overflow-y: hidden;
}

main {

    overflow-y: hidden;
}

/* Hero Section */
#fh5co-home {
    position: relative;
    height: 90vh;
    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;
    background: linear-gradient(135deg, #1e1e1e, #333);

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

@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.8), rgba(255,0,150,0.5));
}

.text-wrap h1 {
    font-size: 4rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    animation: slideInDown 1s ease-in-out;
}

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

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

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

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

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

.box-services:hover {
    transform: translateY(-10px);
}

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

.icon {
    font-size: 3rem;
    color: green;
    margin-bottom: 15px;
    animation: popIn 1s ease-in-out;
}

@keyframes popIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.fh5co-post {
    min-height: 10vh;
}

.fh5co-post h3 {
    font-size: 2.8rem;
    font-weight: bold;
    padding: 1em;
    color: green;
}

.fh5co-post p {
    font-size: 2.2rem;
    color: whitesmoke;
}

/* Card Container */
.cardContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 0;
}

.card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    width: 80%;
    text-align: center;
    transition: transform 0.3s;
    animation: fadeIn 1.5s ease-in-out;
}

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

.image {
    height: 200px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.content {
    padding: 20px;
}

.content h2 {
    font-size: 4.5rem;
    color: whitesmoke;
}
.content p {
    font-size: 2.5rem;
    color: whitesmoke;
}

.divider {
    width: 50%;
    height: 3px;
    background: #ff007a;
    margin: 15px auto;
}

@media (max-width: 768px) {
    .text-wrap h1 {
        font-size: 3rem;
    }
    .text-wrap h3 {
        font-size: 2.5rem;
    }
    .card {
        width: 100%;
    }
    .fh5co-post {
        min-height: 10vh;
    }
}