/* Contact Section */
.contact-section {
    padding: 50px 20px;
    /* background: #f4f4f9; */
    text-align: center;
    min-height: 70vh;
    margin-bottom: 6em;
}

.contact-section h2 {
    font-size: 2.5rem;
    color: #2A4D69;
    margin-bottom: 30px;
}

.contact-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

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

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.contact-card i {
    font-size: 2.5rem;
    color: #2dc4e5;
     /* #2A4D69; */
    margin-bottom: 15px;
}

.contact-card h3 {
    font-size: 1.5rem;
    color: #2A4D69;
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 1.1rem;
    color: #555;
}

.contact-card a {
    color: #2A4D69;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-card a:hover {
    color: #160969;
}


h1{
    color: #2A4D69; /* Deep professional blue */
    font-size: 3rem; /* Adjust size as needed */
    font-weight: bold; /* Professional and prominent */
    margin-bottom: 20px; /* Space below the heading */
    text-transform: uppercase; /* Makes it stand out */
    letter-spacing: 1px; /* Adds spacing for elegance */
}

h2{
    color: #2A4D69; /* Deep professional blue */
    font-size: 1.5rem; /* Adjust size as needed */
    font-weight: bold; /* Professional and prominent */
    margin-bottom: 10px; /* Space below the heading */
    text-transform: uppercase; /* Makes it stand out */
    letter-spacing: 1px; /* Adds spacing for elegance */
}