

.hero-image {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/main2.jpg");
    height: 100vh;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

}


.hero-text {
  text-align: center;
  position: absolute;
  top: 40vh;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 3rem;
  margin-top: 6%;
}

.hero-text hr {
    border: 5px solid rgba(255, 82, 82, 1);

}

.main-services h1 {
    font-size: 3rem;
    text-align: center;

}

.main-services hr {
    border: 2px solid rgba(255, 82, 82, 1);
    margin: 0 15%;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 10px 15%;
}

.card {
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    margin: 10px 10px;
}

.card img {
    width: 100%;
    min-width:100px;
    min-height: 100px;
    border: 2px solid black;
}


.container {
    text-align: center;
    font-size: 1rem;
    gap: 0;
    padding: 0;
}


.button-div {
    display: flex;
    justify-content: center; /* horizontal */
    align-items: center;     /* vertical */
}


.more-services-button {
    background-color: rgba(255, 82, 82, 1);
    border: none;
    color: white; 
    padding: 15px 32px;
    text-align: center;
    font-size: 1.2rem;
    cursor: pointer;
    margin: 8px;
}

.about-me {
    margin-top: 20px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2)), url("../images/services2.png");
    height: 100vh;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.about-me-text {
    position: static;

    width: min(92vw, 700px);
    text-align: center;

    color: white;
    font-size: clamp(18px, 2.2vw, 28px);  
    line-height: 1.55;

    padding: clamp(16px, 3vw, 32px);     
    box-shadow: 0 10px 30px rgba(0,0,0,0.35), 0 2px 8px rgba(0,0,0,0.2);

    border-radius: 14px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.15);

}

.about-me hr {
    display: flex;
    border: 4px solid rgba(255, 82, 82, 1);
    width: 20%;
}

.contact-info {
    text-align: center;
    padding: 20px;
    background-color: rgba(186, 179, 179, 0.3);
}
