/* ============================= */
/* HOMEPAGE HERO SEARCH ONLY */
/* ============================= */

.Header__searchSection [data-id="searchInput"] {
    height: 40px !important;
    padding: 10px 12px !important;
    font-size: 14px !important;
    color: #074e51 !important;
    border-radius: 8px !important;
    box-sizing: border-box !important;
}

.Header__searchSection [data-id="searchInput"]::placeholder {
    color: #074e51 !important;
}

/* Search button */
.Header__searchSection [data-id="searchButton"] {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 50px !important;
    height: 40px !important;

    line-height: 1 !important;
    padding: 0 !important;
    margin: 0 !important;

    background-color: #3ed6ae !important;
    border-radius: 4px !important;
    cursor: pointer !important;
}

/* Hover */
.Header__searchSection [data-id="searchButton"]:hover {
    background-color: #3ed6ae !important;
}

/* Icon */
.Header__searchSection [data-id="searchButton"] svg {
    display: block !important;
    fill: #ffffff !important;
}


/* Footer background */
#footerContainer .Footer__footerBg {
    background-color: #def9f0; /* dark gray, replace with your color */
    color: #ffffff; /* default text color */
}

/* Footer copyright background (bottom strip) */
#footerContainer .Footer__footerCopyrigt {
    background-color: #074e51; /* darker shade */
    color: #ffffff;
}

/* Main footer text */
#footerContainer .Footer__footerQus,
#footerContainer .Footer__footerDescription span {
    color: #074e51; /* yellowish highlight, adjust as needed */
}

/* Footer links */
#footerContainer .Footer__footerLink {
    color: #3ed6ae; /* blue link color */
    
}
#footerContainer .Button__footerBtn {
    background-color: #074e51 !important; /* button color */
    color: #def9f0; /* button text */
    border-radius: 8px; /* rounded corners */
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

/* Button hover effect */
#footerContainer .Button__footerBtn:hover {
    background-color: #3ed6ae !important; /* darker blue */
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
