








/* Main Contain of body  */

#main-contain-contact {
    width: 100%;
    
    position: relative;
}

.banner-contain-con {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    /* Align content to the left */
    position: absolute;
    top: 50%;

    /* Position content vertically centered */
    left: 50px;
    /* Adjust horizontal position */
    transform: translateY(-50%);
    /* Center vertically */
    color: white;
    /* Text color to stand out on the banner */
    z-index: 1;
    /* Ensure content appears above the image */
}

.banner-contain-con h1 {
    font-size: 36px;
    letter-spacing: 2px;
    text-align: left;
    /*text-shadow: 4px 2px 2px 2px red;*/
    cursor: pointer;
    margin: 0;
    /* Remove default margin */
}

.banner-contain-con h1::after {
    content: "";
    position: absolute;
    left: 10px;
    right: 0;
    top: 12%;
    background-color: red;
    width: 1%;
    /* Initial width of the underline */
    height: 5px;
    /* Thickness of the underline */
    z-index: -1;
    /* Place the line behind the text */
    transition: width 2s, background-color 0.5s;
    /* Smooth transition for width and color */
}
.banner-contain-con h1:hover::after {
    width: 25%;
    /* Expand underline to full width on hover */
    background-color: blue;
    /* Change underline color on hover */
}
.contact-heading p {
    font-size: 12px;
    letter-spacing: 2px;
    position: relative;
    color: white;
    /* Ensure readability on banner */
    margin-top: 30px;
    margin-bottom: 30px;
}


.comp-info {
    position: relative;
    text-align: justify;
}

.email-comp,
.number-comp,
.address-comp {
    font-size: 16px;
    color: white;
    margin-bottom: 20px;
}

.email-comp i,
.number-comp i,
.address-comp i {
    margin-right: 10px;
    color: red; 
    border-radius: 40%;    
    padding: 10px;
    background: white;
    outline: none;
}
.email-comp i:hover,
.number-comp i:hover,
.address-comp i:hover {
    margin-right: 10px;
    color: white;     
    background: red;
    outline: none;
    transition: 0.5s ease;
    box-shadow: 2px 2px rgba(0, 0, 0, 0.3);
}

.email-comp a {
    color: white;
    text-decoration: none;
}

.email-comp a:hover {
    text-decoration: none;
    color: red;
}

label {
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    .comp-info {
        flex-direction: row;
        gap: 40px;
    }
}
