.container-contact {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    gap: 40px;
}

.left-section {
    flex: 1;
    min-width: 300px;
}

.right-section {
    flex: 1;
    min-width: 300px;
}

.contact-header {
    background: rgba(0, 0, 0, 0.0);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 20px;
}

.contact-header h1 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
}

.contact-header p {
    font-size: 1.1rem;
    color: #fff;
    line-height: 1.7;
}

.contact-content {
    background: rgba(0, 0, 0, 0.0);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact-form, .contact-info {
    flex: 1;
    min-width: 300px;
    background: rgba(0, 0, 0, 0.0);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form h2, .contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #fff;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #fff;
}


.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    font-size: 1rem;
    border: none;
    border-bottom: 5px solid;
    background: rgba(0, 0, 0, 0.0);
    color: #fff;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: #fff;
}

.form-group input::placeholder, .form-group textarea::placeholder {
    color: #fff;
}

.btn-submit {
    background: #007BFF;
    color: white;
    padding: 15px 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1rem;
    width: 30%;
    font-weight: bold;
}

.btn-submit:hover {
    background: #0056b3;
}

.contact-info p {
    margin: 10px 0;
    color: #333;
}

.social-links {
    list-style: none;
    padding: 0;
}

.social-links li {
    display: inline;
    margin-right: 15px;
}

.social-links a {
    color: #007BFF;
    text-decoration: none;
}

.social-links a:hover {
    text-decoration: underline;
}
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    font-weight: bold;
    color: #fff;
}

@media (max-width: 768px) {
    .container-contact {
        flex-direction: column;
        padding: 20px 15px;
    }
    
    .left-section,
    .right-section {
        width: 50%;
        min-width: auto;
    }
    
    .contact-header {
        position: static;
        margin-bottom: 30px;
    }
}
.bluecolor{
    color: #0197FB;
}
.contact-header h3{
    color: #fff;
    font-weight: 0;
}

.social-links {
    margin-top: 30px;
}

.social-links h3 {
    margin-bottom: 20px;
    color: #2c3e50;
}

.social-links a {
    display: inline-block;
    margin-right: 15px;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.social-links img {
    width: 40px;
    height: 40px;
}
.social-links h3{
    color: #fff;
} 

@media (max-width: 1024px) {
    .container-contact {
        padding: 40px 30px;
        gap: 30px;
    }
    
    .contact-header h1 {
        font-size: 2.2rem;
    }
    
    .btn-submit {
        width: 40%;
    }
}

@media (max-width: 768px) {
    .container-contact {
        flex-direction: column;
        padding: 30px 20px;
        gap: 30px;
    }
    
    .left-section,
    .right-section {
        width: 100%;
        min-width: auto;
    }
    
    .contact-header {
        position: static;
        padding: 20px;
        text-align: center;
    }
    
    .contact-content {
        padding: 20px;
    }
    
    .contact-header h1 {
        font-size: 2rem;
    }
    
    .btn-submit {
        width: 100%;
        padding: 15px;
    }
    
    .social-links {
        text-align: center;
    }
    
    .social-links img {
        width: 35px;
        height: 35px;
        margin: 0 10px;
    }
}

@media (max-width: 480px) {
    .container-contact {
        padding: 20px 15px;
    }
    
    .contact-header h1 {
        font-size: 1.8rem;
    }
    
    .contact-header p {
        font-size: 1rem;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 0.9rem;
    }
    
    .social-links img {
        width: 30px;
        height: 30px;
        margin: 0 8px;
    }
}

/* Add these to existing styles */
.form-group input,
.form-group textarea {
    width: 100%;
    box-sizing: border-box;
}

.alert {
    box-sizing: border-box;
    width: 100%;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}