/* banner */
/* Banner styling */

#banner-contact1{
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 15px;
    background-color: #050f17;
    padding-bottom: 20px;

}
.banner-contact {
    height: 400px; /* Ensure height is set */
    background-size: cover; /* Cover the entire area */
    background-position: center; /* Center the image */
    display: flex; /* Flex for centering content */
    align-items: center; /* Vertically center content */
    justify-content: center; /* Horizontally center content */
    color: #FFFFFF; /* Set text color to pure white */
    background-image: url('../images/banner/5.png');
    background-color: #000; /* Fallback color if image fails to load */
    position: relative; /* Position relative for overlay */
}

/* Overlay for better text visibility */
.banner-contact::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7); /* Dark overlay for better contrast */
    z-index: 1;
}

.contact-content {
    position: relative;
    text-align: center;
    z-index: 2; /* Ensures content is above the overlay */
}

/* Heading styling */
.banner-bread {
    color: #fff; /* Keep breadcrumb links white */
}

.contact-heading {
    color: #e8e8e8; /* Set heading color to pure white */
    font-family: "Italiana", Sans-serif;    
    font-size: 50px;
    font-weight: 400;
    line-height: 1.3em;
}

/* Breadcrumb styling */
.contact-para {
    font-size: 14px; /* Set font size to 14px */
    font-family: 'Lexend', sans-serif; /* Lexend font for breadcrumbs */
    margin: 10px 0 0; /* Space below the heading */
    text-align: center;
}

/* Links inside the breadcrumbs */
.contact-para a {
    color: #FFFFFF; /* Set breadcrumb link color to pure white */
    text-decoration: none;
    font-family: 'Lexend', sans-serif;
}

/* Hover effect for links */
.contact-para a:hover {
    text-decoration: underline; /* Underline on hover */
    color: #A8894D; /* Change color on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
    .banner-contact {
        height: 300px; /* Reduce height for smaller screens */
    }

    .banner h1 {
        font-size: 36px; /* Smaller font for mobile */
    }

    .banner p {
        font-size: 12px; /* Adjust breadcrumb text size on smaller screens */
    }
}


/* end banner */


/* get in touch */
.contact-section {
    padding: 115px 0;
    background-color: #050F17;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.form-container {
    flex: 1;
    padding: 40px;
    border: 1px solid #6c6c6c;
    max-width: 550px;
}

.input-group {
    display: flex;
    gap: 20px; /* Adjust the gap between first and last name fields */
    margin-bottom: 20px;
    
}

.email-group{
    margin-bottom: 20px;
}

.input-group input {
    width: 47%; /* Make both input fields take up equal space */
    font-size: 14px;
    font-family: 'Lexend', sans-serif;
    font-weight: 300;
    line-height: 1.7em;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid #fff;
    color: #fff;
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
}

input::placeholder, textarea::placeholder {
    color: #fff;
}

textarea {
    height: 120px; /* Adjust the height of the message box */
    resize: vertical; /* Make the textarea resizable */
}

button {
    padding: 15px 30px; /* Increase the padding for a larger button */
    background-color: #a38755;
    color: #050F17;
    border: none;
    cursor: pointer;
    margin-top: 20px; /* Adjust margin for space between form elements */
    font-family: 'Lexend', sans-serif;
}

button:hover {
    background-color: #fff;
}

.contact-info {
    flex: 1;
    padding: 20px;
    max-width: 555px;
}

.contact-info h2 {
    font-size: 50px;
    font-weight: 400;
    line-height: 1.3em;
    margin-bottom: 20px;
    color: #e8e8e8;
    font-family: "Italiana", Sans-serif;
}

.contact-info p {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.7em;
    font-weight: 300;
    font-family: "Lexend", Sans-serif;
    text-align: left;
}

.contact-info ul {
    list-style: none;
    padding-left: 0;

}

.contact-info ul li {
    color: #e8e8e8  ;
    margin-bottom: 10px;
    font-size: 14px;
    font-family: "Lexend", Sans-serif;
    font-weight: 300;
    line-height: 1.7em;
}

.contact-info ul li i {
    margin-right: 10px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .form-container, .contact-info {
        width: 100%;
    }

    .input-group {
        flex-direction: column; /* Make first and last name stack on top of each other on mobile */
    }

    .contact-info h2 {
        font-size: 28px;
    }
}

.social-icon {
    background-color: #071a28; /* Default dark background */
    padding: 15px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    transition: background-color 0.4s ease, transform 0.4s ease, color 0.4s ease;
    /* margin: 10px; Space between icons */
    margin-right: 10px;
}

.social-icon i {
    color: #b08c4b; /* Default gold icon color */
    font-size: 20px;
    transition: color 0.4s ease; /* Smooth color transition */
}

.social-icon:hover {
    background-color: #A8894D; /* Background color on hover */
    transform: scale(1.1); /* Slight zoom effect */
}

.social-icon:hover i {
    color: #ffffff; /* Icon color on hover */
}

/* Responsive behavior for smaller screens */
@media (max-width: 600px) {
    .social-icon {
        width: 40px;
        height: 40px;
        padding: 10px;
    }

    .social-icon i {
        font-size: 18px;
    }
}


/*end  get in touch */

/* map */
.map-container {
    width: 100%;
    height: 450px;
    /* border: 2px solid #000; Optional: Adds a border for a defined section */
    display: flex;
    justify-content: center; /* Centers the map within the container */
    align-items: center;
    background-color: #050f17; /* Dark background similar to the image */
    padding: 20px;
    padding-bottom: 50px;
    /* border-radius: 8px; */
}

/* end map */

