#contact{
    width: 100%;
    padding: 20px;
    min-height: 500px;
    background-color: darkblue
}

.visit{
    width: 100%;
    padding: 20px;
    min-height: 500px;
    background-color: rgb(230, 230, 230);
    
}

.contact-container{
    max-width: 1200px;
    margin: auto;
    margin-top:4rem ;
    margin-bottom: -10rem;
}

.visit-container{
    max-width: 1200px;
    margin: auto;
    margin-top:12rem ;
    margin-bottom: 4rem;
}


#contact h1{
    font-size: 2rem;
    margin-bottom: 2rem;
    color: white;
}

.contact-content{
    font-size: .8rem;
    color: black;
    max-width: 35rem;
    text-align: center;
    margin: auto;
    line-height: 1.3rem;
    color: white;
    margin-bottom: 10rem;

}

.heading-section {
    display: flex;
    justify-content: space-between;
}


.contact-cards{
    display: flex;
    justify-content: space-around;
    gap: 3rem;
    flex-wrap: wrap;
}

.card{
    position: relative;
    border-radius: 4px;
    background-color: #fff;
    color: #4a4a4a;
    max-width: 25rem;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    text-align: center;
    flex: 1 1;
    padding: 25px 15px 35px;
}

.card-icon{
    width: 4rem;
    height: 4rem;
    margin: auto;
    border-radius: 50%;
    color: darkblue;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    font-size: 2.5rem;
    margin-top: -3.5rem;
    background-color: white;
    align-items: center;
    margin-bottom: 1rem;
}

.card p{
    margin-bottom: 1rem;
}

.card h3{
    margin-top: 1rem;
    margin-bottom: 1rem;
}


/*============== visit section========= */

.visit-heading h1{
    font-size: 2rem;
    margin-bottom: 2rem;
}

.visit-cards{
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.v-card{
    background-color: white;
    padding: 1.5rem;
    max-width: 15rem;
    border-radius: 5px;
}

.visit-icon{
    width: 3rem;
    height: 3rem;
    background-color: darkblue;
    color: white;
    font-size: 2.2rem;
    border-radius: 50%;
    text-align: center;
    margin-bottom: 1rem;
}

.v-card h3{
    font-weight: 600;
    margin-bottom: 1rem;
}

.v-card p{
    color: grey;
    font-size: .9rem;
    line-height: 1.4rem;
}

button {
    padding: 10px 20px;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}


