.hero {
    background: url('../images/tower.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    height: 20vh; 
    position: relative;
    z-index: 0;
}

.over {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}


.services {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 40px 20px;
    /* background-color: rgb(178 0 255 / 30%); */
    /* z-index: 2; */
}

h1 {
    font-size: 7vw;
    font-family: 'times';
    font-weight: bold;
    text-shadow: 8px 15px 4px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
    transition: transform 0.3s ease;
    margin: 0;
  
}

h1:hover{
  transform: scale(1.1);
}

.blah{
    color: #333;
    padding: 50px;
    /* z-index: 2; */
}
.please {
    color: #333;
    font-size: 4vw;
    padding: 40px 20px;
    /* background-color: rgb(178 0 255 / 30%); */
    display: flex;
    justify-content: center;
}

.please:hover{
    transform: scale(1) !important;
}

.service-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 20px;
    width: 30%;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

@media (max-width: 800px) {
    .service-card {
        width: 80%;
    }
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.service-card h2 {
    margin-top: 0;
}

.service-card p {
    color: #666;
}

.service-card .read-more {
    background-color: #8A2BE2;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s;
    border-radius: 5px;
}

.service-card .read-more:hover {
    background-color: #6A0D91;
}

.more-info {
    display: none;
    margin-top: 10px;
    text-align: left;
}


