.sicgbor_accordion_menu details {
    background: #fff;
    border: none;
    border-radius: 10px;
    margin-bottom: 15px;
    padding: 15px 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.sicgbor_accordion_menu details:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(36, 156, 209, 0.15);
}

.sicgbor_accordion_summary {
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sicgbor_accordion_summary i {
    color: #249cd1;
    font-size: 1.4rem;
}

.sicgbor_accordion_pharaghra {
    margin-top: 10px;
    font-size: 0.95rem;
    color: #444;
    text-align: left;
}

.sicgbor_request_service {
    display: inline-block;
    margin-top: 10px;
    color: #249cd1;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.sicgbor_request_service:hover {
    color: #1b89b9;
    text-decoration: underline;
}

.sicgbor_main_form {
    margin-top: 40px;
    padding: 40px 20px;
    background: #fff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    border-radius: 12px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.sicgbor_main_form input,
.sicgbor_main_form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: none;
    border-radius: 6px;
    background-color: #f4f4f5;
    outline: none;
}

.sicgbor_btn_send {
    background-color: #249cd1;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.sicgbor_btn_send:hover {
    background-color: #1b89b9;
}



#service {
    background-color: #f4f4f5; /* same as other inputs */
    color: #eec21b;            /* text in yellow */
    font-weight: 600;           /* optional: bold for visibility */
}


.sicgbor_accordion_summary i {
    transition: transform 0.3s ease;
}

.sicgbor_accordion_details[open] .sicgbor_accordion_summary i {
    transform: rotate(90deg); /* rotates icon when opened */
}

.sicgbor_main_form textarea {
    width: 100%;             /* full width of the form container */
    max-width: 100%;         /* prevent overflow on smaller screens */
    height: 150px;           /* fixed initial height */
    min-height: 120px;       /* optional: minimum height */
    padding: 12px;
    margin-bottom: 15px;
    border: none;
    border-radius: 6px;
    background-color: #f4f4f5;
    color: #0f172a;
    font-weight: 400;
    resize: vertical;        /* allow user to expand vertically only */
    outline: none;
    transition: all 0.3s ease;
}
.sicgbor_main_form textarea:focus {
    box-shadow: 0 0 8px #eec21b; /* yellow glow */
    background-color: #f4f4f5;   /* keep same background */
    transition: box-shadow 0.3s ease;
}


.sicgbor_hero_banner {
    width: 100%;
    min-height: 400px;
    background-color: #f4f4f5; /* same as other sections */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
    color: #0f172a; /* dark text for readability */
}

.sicgbor_hero_content {
    max-width: 900px;
    padding: 30px;
    border-radius: 12px;
}

.sicgbor_hero_banner h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #249cd1; /* accent color for title */
}

.sicgbor_hero_banner p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.6;
    color: #444; /* subtitle/text color */
}

.sicgbor_hero_banner .sicgbor_btn_send {
    background-color: #249cd1;
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.sicgbor_hero_banner .sicgbor_btn_send:hover {
    background-color: #1b89b9;
}
