/* Banner Styling */
.banner {
    background-color: #6a1b9a; 
    color: white;
    padding: 4rem 0;
}

.banner h1 {
    font-size: 3rem;
    font-weight: bold;
}

/* Contact Info Section */
.contact-info h3 {
    font-size: 100px;
    font-weight: bold;
    color: #6a1b9a;
    margin-bottom: 1rem;
}

.contact-info p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.contact-info ul {
    list-style: none;
    padding-left: 0;
}

.contact-info ul li {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.contact-info ul li a {
    color: #6a1b9a;
    text-decoration: none;
    font-size: 1.125rem;
    transition: color 0.3s;
}

.contact-info ul li a:hover {
    color: #333;
}

.contact-info ul li i {
    margin-right: 10px;
}

/* Google Map Embed */
iframe {
    border-radius: 8px;
}

/* Contact Form Styling */
.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form .form-group label {
    font-weight: bold;
}

.contact-form .form-control {
    font-size: 1rem;
    padding: 0.75rem;
}

.contact-form button {
    font-size: 1.125rem;
    padding: 1rem;
    background-color: #6a1b9a;
    border: none;
    color: white;
    width: 100%;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #5a1483;
}

.col-md-12 h3{
    font-family: 'poppins';
    color: #6a1b9a;
    font-size: 50px;
    font-weight: 700;
}

/* Responsive Styling */
@media (max-width: 767px) {
    .banner h1 {
        font-size: 2.5rem;
    }

    .contact-info ul li {
        font-size: 1rem;
    }

    .contact-info p {
        font-size: 1rem;
    }

    .contact-form button {
        font-size: 1rem;
    }

    iframe {
        height: 300px; 
    }
}

@media (max-width: 576px) {
    .banner h1 {
        font-size: 2rem;
    }
}
