.colorful-line {
    width: 100px; /* Adjust width of the line */
    height: 3px; /* Adjust height of the line */
    background: #add8e6; /* Single color */
    margin-bottom: 20px; /* Adjust margin as needed */
}
.bold-text {
    font-weight: bold; /* Make the text bold */
}
.video-container {
    position: relative;
    height: 55vh;
    overflow: hidden;
    border-radius: 5px;
}
#video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
}
.video-container img {
    width: 100%;
    height: 90%;
    display: block;
    border-radius: 5px;
}
.heading-container {
    position: absolute;
    bottom: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 30%;
    max-width: 500px;
    height: 25%;
    background-color: #add8e6;
    z-index: 1;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.heading-container h2 {
    color: #fff; /* Set text color */
    margin: 0;
    text-align: center; /* Center text */ /* Prevent wrapping */
    overflow: hidden; /* Hide overflow text */
    text-overflow: ellipsis;
    margin-top: 3.5%;/* Show ellipsis for overflow text */
}
.ouroffices {
    padding: 20px;
    border-radius: 5px;
    background-color: #ffffff;
}
.office {
    display: flex; /* Display maps in the same line */
    margin-bottom: 40px;
    align-items: flex-start; /* Align items at the start of the container */
}
.office-details {
    flex: 1; /* Each map takes equal width */
    margin-right: 5px; /* Add spacing between maps */
}
h2 {
    margin-bottom: 20px;
}
h3, h4 {
    margin-bottom: 10px;
    margin-left: 5px;
}
.map {
    height: 300px;
    width: 100%;/* Adjust map width as needed */
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-top: 10px; /* Add margin between address and map */
}
.oursocialmedia {
    margin-top: 20px;
    margin-bottom: 40px;
    background-color: #ffffff;
    padding: 10px;
    border-radius: 5px;
}

.oursocialmedia img {
    width: 50px; /* Adjust size as needed */
    height: auto;
    cursor: pointer;
}

.Getintouch {
    max-width: 600px;
    padding: 20px;
    border-radius: 5px;
    align-self: flex-end;
}
.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

button {
    background-color: #add8e6;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    cursor: pointer;
}

button:hover {
    background-color: #ffffff;
    color: #add8e6;
    border: #add8e6 solid 1px;
}

@media screen and (max-width: 768px) {
    .heading-container {
        left: 5%;
        transform: none;
        max-width: 500px;/* Remove the translation */
    }
    .heading-container h2{
        margin-top:7.5%;
        font-size: 20px;
    }
    .office{
        flex-direction: column;
    }
    .office-details {
        width:100% ; /* Each map takes equal width */
        margin-right: 5px; /* Add spacing between maps */
    }
}
@media screen and (max-width: 430px) and (min-width :312px){
    .map {
        height: 300px;
        /* width: 400px; */
        border: 1px solid #ccc;
        border-radius: 5px;
        /* padding: 20px; */
        margin-top: 10px;
    }
    .heading-container {
        left: 5%;
        transform: none;
        width:90%;/* Remove the translation */
    }
    .heading-container h2 {
        margin-top: 5.5%;
        font-size: 15px;
    }
    .office{
        flex-direction: column;
    }
    .office-details {
        width:100% ; /* Each map takes equal width */
        margin-right: 5px; /* Add spacing between maps */
    }
}
