body {
    margin: 0;
    font-family: 'Arial', sans-serif;
}

header {
    background-color: #2155a2 !important;
    color: #fff;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.web1-footer {
    background-color: #2155a2;
    color: #fff;
    padding: 20px;
    /* Remove the 'position: fixed;' property */
    width: 100%;
}

.container1 {
    max-width: 1200px;
    margin: 0 auto;
}

.row1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.col-md-6,
.col-sm-6,
.col-12 {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 10px;
}

.footer-powered a {
    color: #ccc;
    text-decoration: none;
}

.footer-powered a:hover {
    color: #fff;
}

@media screen and (min-width: 768px) {
    .col-md-6 {
        width: 48%;
    }
}

.logo img {
    max-height: 40px;
}

#navbar {
    display: flex;
    align-items: center;
}

#navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

#navbar li {
    margin-right: 15px;
}

#navbar a {
    text-decoration: none;
    color: White;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: White;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    max-height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
    white-space: nowrap;
    margin-left: -100px;
    margin-top: 10px;
}

.dropdown-content a {
    color: black!important;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    transition: color 0.3s ease;
}

.icon {
    font-size: 24px;
    cursor: pointer;
    color: #fff;
}

@media screen and (max-width: 768px) {
    #navbar {
        flex-direction: column;
    }

    #navbar li {
        margin: 0;
        margin-bottom: 10px;
    }

    .dropdown-content {
        position: static;
        max-height: none;
        overflow-y: visible;
        overflow-x: visible;
        white-space: normal;
        width: 100%;
    }
}

/* contact us css starts */
.header {
    position: relative;
    text-align: center;
    margin-bottom: 2em;
}

.header img {
    width: 100%;
    height: auto;
}

.contact-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-120%, -120%);
    color: #fff;
    font-size: 90px;
    font-weight: bold;
}

.containerc {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    box-sizing: border-box;
    transform: translate(2.5em,0em);
}

.boxc {
    box-sizing: border-box;
    width: calc(25% - 20px);
    margin: 0;
    color: #fff;
    text-align: center;
    padding: 20px;
    transition: background-color 0.3s ease;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.boxc h4, a {
    color: #fff;
    text-align: center;
    text-decoration: none;
}

.boxc:nth-child(odd) {
    background-color: #b91c1c;
}

.boxc:nth-child(even) {
    background-color: #991b1b;
}

.boxc:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .boxc {
        width: calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .boxc {
        width: 100%;
    }
}

.form-container {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

form input,
form textarea {
    box-sizing: border-box;
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

form button {
    background-color: #3498db;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

.container3 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
}

.address-section {
    width: 100%;
    max-width: 400px;
    margin: 10px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-sizing: border-box;
    transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.address-section:hover {
    transform: scale(1.05);
    background-color: #e0e0e0; /* Lighter shade on hover */
}

.address-section:nth-child(2n) {
    background-color: #f8f8f8; /* Different shade for even boxes */
}

@media screen and (min-width: 768px) {
    .address-section {
        width: calc(50% - 20px);
    }
}

@media screen and (min-width: 1024px) {
    .address-section {
        width: calc(33.3333% - 20px);
    }
}
/* Styles for the close button */
.close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
    color: #555;
}
/* contactus css ends */