.custom-input,
.custom-textarea {
    border: 1px solid #fff;
    padding-left: 15px;
    font-size: 15px;
    background-color: transparent;
    color: #fff;
    height: 55px;
}

.custom-input::placeholder,
.custom-textarea::placeholder {
    color: #aaa;
    /* This color is just an example; adjust as desired */
}

.custom-textarea {
    resize: vertical;
    /* Allows the textarea to be resized vertically */
}

.form-spacing {
    margin-bottom: 20px;
    
    /* Adds vertical spacing between rows */
}

.text-center {
    padding: 0 20% 45px 20%;
    /* Centers the button */
}

@media (max-width: 768px) {
    .form-group {
        margin-bottom: 20px;
        /* Adjust the spacing as needed */
    }
}

.footer-container {
    display: flex;
    justify-content: space-between;
    /* space out the main columns */
}

.service-section {
    display: flex;
    flex-direction: column;
    width: 30%;
    /* Makes sure each section takes up around 1/3 of the container width */
}

.service-item {
    flex: 1;
    /* Distributes space equally between service items */
    margin-bottom: 10px;
    /* Add some spacing between items */
}

.top-header-area {
    background-color: #18181a;
    border-bottom: 1px solid #18181a;
    padding: 10px 0;
    transition: top 0.3s ease-in-out;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1020;
    /* Above the navbar */
}

/* Content and social icons styling */
.top-header-content span,
.top-header-content a,
.top-header-social span,
.top-header-social a {
    color: #fff;
    margin-right: 15px;
    display: inline-block;
    vertical-align: middle;
}

.top-header-social a {
    font-size: 16px;
}

.top-header-content a:hover,
.top-header-social a:hover {
    color: #007bff;
}

.fa-phone,
.fa-envelope {
    margin-right: 5px;
}

/* Add initial transition for smooth sticky effect */
.navbar-area {
    transition: top 0.3s ease-in-out;
    position: fixed;
    width: 100%;
    top: 40px;
    /* Adjust based on the actual height of your top header */
    z-index: 1010;
}

/* Sticky nav style */
.sticky-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Hide the top header initially */


@media (max-width: 991px) {
    .top-header-area {
        top: 0;
        /* If hiding the top header on mobile, this should be -height of the header */
    }

    .navbar-area {
        top: 32px;
        /* Adjust if the top header is not hidden on mobile, otherwise 0 */
    }
}