header {
    position: relative;
    text-align: center;
    color: white;
    padding: 20px;
    top: 45%;
    font-size: 30px;
}

#welcome-section {
    background-image: url('../images/csec-alliance-1080P.png');
    background-size: fill;
    background-repeat: no-repeat;
    height: 100vh;
    width:200vh;
    overflow: hidden;
    padding: 0;
    margin: 0;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
    text-shadow: #000 0px 0px 10px;
}

#servises {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

#servises-section {
    text-align: center;
    margin: 20px;
}

#servises-section h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

.service {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
    margin: 1rem;
    gap: 20px;
}

.service:hover {
    transform: scale(1.1);
}

.service a {
    background-color: #00bfff;
    color: white;
    border-radius: 10px;
    padding: 15px;
    text-decoration: none;

}

