/* Custom Styles */
body {
    font-family: Arial, sans-serif;
}

/* Banner Styling */
.banner img {
    width: 100%;
    height: auto;
}

/* Contact Form */
.contact-form {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
}

.contact-form h2 {
    font-size: 2rem;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.custom-navbar {
    background-color: #010812;
  }


  h2{
    color: #ec1c24;
  }

h1{
    font-size: 54px;
}

.custom-btn {
    background-color: #ec1c24; 
    color: #fff;               
    border: none;             
}

.custom-btn:hover {
    background-color: #ffd54c;
    color: #2d2d2d;          
}

.lead{
    font-weight: 600;
    color: #ffd54c;
}

.banner-text {
    width: auto; 
}

@media (max-width: 768px) { /* Mobile view */
    .banner-text {
        width: 75%; 
        left: 50%; 
        transform: translate(-50%, -50%); 
        text-align: center; 
    }

    .banner-text h1 {
        font-size: 1.3rem; 
    }

    .banner-text p {
        font-size: 0.6rem; 
    }
    .contact-form h2 {
        font-size: 1.5rem;
    }
}