/* Search container */
.sicgbor_search_index {
    display: flex;
    justify-content: center;
    margin: 3rem 0; /* more spacing above/below */
    padding: 0 1rem;
}

/* Form wrapper */
.sicgbor_search_form {
    display: flex;
    width: 100%;
    max-width: 800px;
    border-radius: 40px;
    overflow: hidden;
    background-color: #f4f4f5;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25), 0 4px 10px rgba(0, 0, 0, 0.15); /* stronger shadow */
    transition: all 0.3s ease;
}

/* Input focus effect */
.sicgbor_search_input:focus {
     outline: none;  /* shadow intensifies on focus */
    border-radius: 40px;
}/* Input field */
.sicgbor_search_input {
    flex: 1;
    padding: 1rem 1.5rem;   /* adjust as needed */
    font-size: 1.2rem;
    border: none;
    outline: none;           /* ensures no outline on focus */
    box-shadow: none;        /* remove browser shadow */
    background-color: transparent;
    color: #231f20;
}

/* Placeholder */
.sicgbor_search_input::placeholder {
    color: #c2c2bf;
    outline: none;           /* ensures no outline on focus */

}

/* Focus effect */
.sicgbor_search_input:focus {
    outline: none;           /* ensures no outline on focus */
 /* shadow effect */
    border-radius: 40px;
}


/* Search button */
.sicgbor_search_button {
    width: 60px;             /* bigger button */
    background-color: #249cd1;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.sicgbor_search_button:hover {
    background-color: #eec21b;
    color: #231f20;
}

.sicgbor_search_button i {
    font-size: 1.5rem; /* bigger icon */
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
    .sicgbor_search_form {
        flex-direction: column;
        max-width: 95%;
        border-radius: 30px;
    }

    .sicgbor_search_input {
        width: 100%;
        padding: 0.8rem 1rem;
        font-size: 1.1rem;
        min-height: 45px;
    }

    .sicgbor_search_button {
        width: 100%;
        margin-top: 0.5rem;
        border-radius: 30px;
        padding: 0.7rem 0;
    }
}


/* Section container */
.sicgbor_adverticing_index {
    display: flex;
    justify-content: center;
    padding: 2rem 1rem;
    background-color: #f4f4f5; /* soft background */
}

/* Inner container */
.sicbgor_services_index {
    max-width: 900px;
    width: 100%;
    text-align: center;
}

/* Header with icons */
.sicgbor_services_header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.3rem;
    color: #231f20; /* dark */
    margin-bottom: 1.5rem;
}

.sicgbor_search_link_icon {
    color: #249cd1; /* blue arrow */
    font-size: 1.5rem;
}

.sicbgor_services_link_index {
    text-decoration: none;
    color: #231f20;
    font-weight: 600;
    transition: color 0.3s;
}

.sicbgor_services_link_index:hover {
    color: #eec21b; /* yellow hover */
}

/* Service buttons container */
.sicbor_services_buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

/* Service buttons */
.sicgbor_services_buttons_index {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #249cd1;
    color: #f4f4f5;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
}

.sicgbor_services_buttons_index:hover {
    background-color: #eec21b;
    color: #231f20;
    transform: translateY(-3px);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .sicgbor_services_buttons_index {
        padding: 0.7rem 1.2rem;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .sicgbor_services_header {
        flex-direction: column;
        gap: 0.3rem;
        font-size: 1.1rem;
    }

    .sicgbor_services_buttons {
        flex-direction: column;
        gap: 0.7rem;
    }

    .sicgbor_services_buttons_index {
        width: 100%;
        text-align: center;
        padding: 0.7rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .sicgbor_services_header {
        font-size: 1rem;
    }

    .sicgbor_services_buttons_index {
        font-size: 0.95rem;
        padding: 0.6rem;
    }
}

