@font-face {
    font-family: 'A Jannat';
    src: url('../assets/fonts/A.Jannat.LT.Regular.ttf') format('woff2');
    font-weight: 400;
}

@font-face {
    font-family: 'A Jannat';
    src: url('../assets/fonts/A.Jannat.LT.Bold.ttf') format('woff2');
    font-weight: 700;
}

html {
    scroll-behavior: smooth;
}

/* Contact Container */
.contact-container {
    max-width: 1200px;
    margin: -3rem auto 4rem;
    padding: 0 2rem;
    display: flex;
    gap: 2rem;
}

/* Contact Form */
.contact-form-section {
    flex: 1;
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-form-section h2 {
    color: #1e3a5f;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1e3a5f;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background-color: #1e3a5f;
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background-color: #2c5282;
}

/* Contact Info */
.contact-info-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.info-card h2 {
    color: #1e3a5f;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.info-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.info-icon {
    background-color: #1e3a5f;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.info-content h3 {
    color: #1e3a5f;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.info-content p {
    color: #666;
    line-height: 1.6;
}

.info-content a {
    color: #1e3a5f;
    text-decoration: none;
    transition: color 0.3s;
}

.info-content a:hover {
    color: #2c5282;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    /* background-color: #1e3a5f; */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.3s;
}

.social-links_icon{
    height: 40px;
    width: auto;
} 

/* .social-link:hover {
    background-color: #2c5282;
} */

/* Map Section */
.map-section {
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.map-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-card h2 {
    color: #1e3a5f;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Success Message */
.success-message {
    display: none;
    background-color: #4caf50;
    color: white;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    text-align: center;
}

.success-message.show {
    display: block;
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    
}