@import url('../../resources/main.css');


/* hero section */
.hero-section{
    width: 100%;
    position: relative;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 4rem;
    
}
.hero-section::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(50, 50, 50, 0.4);

}
.hero-section h1{
    color: white;
    z-index: 2;
    font-weight: 700;
    font-size: clamp(35px,2em,48px);

}

.contact-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    margin: 0 auto;
  margin-top: 4rem;
    text-align: center;
}

.contact-card3 {
    background: #ffffff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
  margin-top: 4rem;
}


.contact-card h2 {
    color: var(--dark-color);
  font-size: clamp(22px,2em,28px);
  font-weight: 700;

    margin-bottom: 15px;
}

.contact-card1 h2 {
    align-items: center;
    color: var(--dark-color);
  font-size: clamp(22px,2em,28px);
  font-weight: 700;

    margin-bottom: 15px;
}


.contact-card p {
    font-size: 16px;
    color:var(--dark-color);
    line-height: 1.4rem;
    
    margin: 5px 0;
}
.contact-card p strong{
    font-weight: 600;
}

.contact-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

.contact-card a:hover {
    text-decoration: underline;
}