.banner_content{
    margin-top: 100px;
}

.contact_banner_img img{
    display: block;
    width: 100%;
}
.path ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.path ul li {
    display: flex;
    align-items: center;
    margin-right: 8px; /* Adjust spacing between items as needed */
}

.path ul li svg {
    margin-right: 4px; /* Adjust spacing between icon and text as needed */
}

.path ul li:last-child {
    margin-right: 0; /* Remove margin from the last item */
}


/* contact-banner */
.breadcrumb h4{
    color:white;
    
}
.breadcrumb h2{
    margin-top:0;
    margin-bottom: 30px;
    
}
.reachout-header{
    text-align: center;
}
.sec-heading{
    margin-bottom:30px;
    
}

.card{
    background-color: whitesmoke;
    padding: 20px;
    border-radius: 10px;
    color:black;
    border: 0px solid #ccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    transition: box-shadow 0.3s ease-in-out;
    width:100%;
    height:100%;
    text-align: center;
}
.card:hover{
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.card img{
    display: block;
    width:20%;
    margin:0 auto;
}
.card-body{
    /* display: flex;
    justify-content: center; */
}
.card-body img{
    display: block;
    width:70%
}

.card-body ul li{
    list-style: none;
    padding-bottom: 10px;
}
.card-body ul li a{
    text-decoration: none;
    color: #000;

}

.card-text a{
    text-decoration: none;
}

.social_icons{
    display: flex;
    justify-content: center;
}

/* contact-form */
.contact-form-container {
    width: 100%;
    
    
    padding: 50px;
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    background: linear-gradient(to right, #3c2ac6, #ba42d8);
}

.contact-form-container h1 {
    text-align: center;
    margin-bottom: 20px;
    color:white
}

.contact-form-container form {
    display: flex;
    flex-direction: column;
}

.contact-form-container label {
    margin-bottom: 5px;
    font-weight: bold;
    color:white
}

.contact-form-container input,
.contact-form-container textarea {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    width: 100%;
    outline: none;
}

.contact-form-container button {
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.contact-form-container button:hover {
    background-color: #0056b3;
}


.contact-details iframe{
    display: block;
    width:100%;
    height:100%;
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 30px;
}