/* body {
    margin: 0;
    padding: 0;
} */

/* location hero  */
.hero-container {
    background-color: #f8f9fa;
    /* Light background color */
    color: #343a40;
    text-align: center;
    overflow: hidden;
}

.hero-image {
    width: 50%;
    height: auto;
    object-fit: cover;
}

.text-container {
    text-align: left;
}

.button-container {
    text-align: right;
    margin-top: 20px;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.btn-outline-secondary {
    color: #6c757d;
    border-color: #6c757d;
}

.btn-outline-secondary:hover {
    color: #495057;
    border-color: #495057;
}

/* form  */

/* ... Existing CSS code ... */

.contact-form {
    margin-top: 50px;
    padding: 20px;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    background-color: #fff;
    text-align: left;
}

.contact-form h2 {
    color: #007bff;
}

.form-control {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ced4da;
    border-radius: 5px;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    color: #fff;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

/* social media icons */
.media {
text-align: center;


}

.medialink {

padding-top: 80px;

}

.social-menu ul {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-menu ul li {
    list-style: none;
    margin: 0 15px;
}

.social-menu ul li .fab {
    font-size: 30px;
    line-height: 60px;
    transition: .3s;
    color: #000;
}

.social-menu ul li .fab:hover {
    color: #fff;
}

.social-menu ul li a {
    position: relative;
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #fff;
    text-align: center;
    transition: .6s;
    box-shadow: 0 5px 4px rgba(0, 0, 0, .5);
}

.social-menu ul li a:hover {
    transform: translate(0, -10%);
}

.social-menu ul li:nth-child(1) a:hover {
    background-color: rgba(0, 0, 0, 0.829);
}

.social-menu ul li:nth-child(2) a:hover {
    background-color: #E4405F;
}

.social-menu ul li:nth-child(3) a:hover {
    background-color: #0077b5;
}

.social-menu ul li:nth-child(4) a:hover {
    background-color: #000;
}

/* Media Query for Mobile */
@media (max-width: 767px) {
    .social-menu ul {
        flex-direction: column;
        align-items: center;
    }

    .social-menu ul li {
        margin: 10px 0;
    }
}


   /* Contact button styles call/email */
   .btn {
       display: inline-block;
       padding: 10px 20px;
       border: 2px solid transparent;
       border-radius: 5px;
       font-size: 16px;
       text-decoration: none;
       transition: all .6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
       /* Adjust the cubic-bezier for smoother transition */
       /* Add initial transition */
       transition-property: transform;
   }

   .btn:hover {
       background-color: #007bff;
       color: #fff;
       border-color: #007bff;
       /* Add lift effect on hover */
       transform: translateY(-5px);
   }

