/*
Theme Name:   BCI Theme
Theme URI:    https://yourwebsite.com/bci-theme
Description:  BCI Theme - A child theme of Hello Elementor
Author:       Your Name
Author URI:   https://yourwebsite.com
Template:     hello-elementor
Version:      1.0.0
License:      GNU General Public License v2 or later
License URI:  https://www.gnu.org/licenses/gpl-2.0.html
Text Domain:  bci-theme
Tags:         elementor, child-theme
*/

/* =========================================
   BCI Theme - Custom Styles
   Parent Theme: Hello Elementor
   ========================================= */

/* =========================
   GLOBAL VARIABLES
========================= */

:root {

    /* Colors */
    --theme-color: #01133c;
    --secondary-color: #e49a00;
    --white-color: #ffffff;
    --text-color: #666666;
    --border-color: #e5e5e5;
}

a {
    color: var(--secondary-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0 !important;
}

.inner_section {
    max-width: 1300px;
    margin: auto;
    padding: 0px 2%;
}

p {
    margin-bottom: 0 !important;
}

img {
    width: 100%;
}

section {
    padding: 2em 0px;
}

/* Main button css======================= */
.main_button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px !important;
    background-color: var(--secondary-color);
    color: #202020 !important;
    text-decoration: none;
    font-size: 18px !important;
    line-height: 25px !important;
    font-weight: 600;
    border-radius: 14px !important;
    transition: all 0.3s ease;
    gap: 10px !important;
    width: 100%;
}

.secondary_button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px !important;
    text-decoration: none;
    font-size: 18px !important;
    line-height: 25px !important;
    font-weight: 600;
    border-radius: 14px !important;
    transition: all 0.3s ease;
    gap: 10px !important;
    width: 100%;
    color: #202020 !important;
    background-color: var(--secondary-color);
}


.card_button {
    background-color: #202020;
    color: white;
    padding: 10px 25px;
    width: fit-content;
    border-radius: 14px;
    transition: 0.5ms;
}

.card_button:hover {
    color: white;
    background-color: var(--secondary-color);
}


.main_button:hover {
    color: #202020;
    transform: translateY(-3px);
    background-color: var(--secondary-color);

}

.main_button:hover::after {
    transform: translateX(4px);
}

/* FAQ Section for home page  */

.faq-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 40px;
    font-weight: 700;
    color: #005e54;
}

.faq-item {
    overflow: hidden;
}

.faq-question {
    padding: 0px 0px;
    cursor: pointer;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.3s ease;
    line-height: 40px;
    color: #202020;
}

.faq-question span {
    font-size: 28px;
    transition: 0.3s;
    color: #202020;
}


.faq-answer {
    display: none;
    font-size: 18px;
    line-height: 1.7;
    color: #202020;
    width: 80%;
}

.faq-item {
    border-bottom: 1px solid #e9e9e9;
    padding: 10px 0;
}

.faq-item:last-child {
    border-bottom: none !important;
}

.faq-item.active .faq-question {
    color: #e49a00;
}


.faq-item.active .faq-question span {
    transform: rotate(45deg);
    color: #202020;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 30px;
    }

    .faq-question {
        font-size: 18px;
        padding: 18px 20px;
    }

    .faq-answer {
        font-size: 15px;
    }
}


/* Contact form for home page  */

/* ===== PREMIUM BCI CONTACT FORM ===== */

.bci-form-wrapper {
    position: relative;
    max-width: 980px;
    margin: auto;
    padding: 50px 50px 20px 50px;
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background-color: transparent;
    backdrop-filter: blur(33px);
}

.bci-form-wrapper p {
    color: white;
    margin-bottom: 5px !important;
}

/* Glow Effects */

.bci-form-wrapper::before,
.bci-form-wrapper::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    z-index: 0;
}

.bci-form-wrapper::before {
    width: 180px;
    height: 180px;
    background: rgba(0, 255, 255, 0.18);
    bottom: -40px;
    right: -40px;
}

.bci-form-wrapper::after {
    width: 160px;
    height: 160px;
    background: rgba(124, 58, 237, 0.22);
    top: -40px;
    left: -40px;
}

/* Content Above Glow */

.bci-form-wrapper * {
    position: relative;
    z-index: 2;
}

/* Heading */

.form-heading {
    margin-bottom: 40px;
}

.form-heading h2 {
    font-size: 46px;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 14px;
    font-weight: 700;
}

.form-heading p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
    line-height: 1.8;
    max-width: 700px;
}

/* Grid Layout */

.form-row {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    width: 100%;
}

/* Labels */

.form-group label {
    display: block;
    margin-bottom: 12px;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
}

/* Inputs */

.bci-form-wrapper input,
.bci-form-wrapper textarea,
.bci-form-wrapper select {
    width: 100%;
    padding: 18px 22px;
    border-radius: 14px !important;
    background: rgba(255, 255, 255, 0);
    border: 1px solid #ffffff29 !important;
    color: #fff;
    font-size: 15px;
    transition: all 0.35s ease;
    backdrop-filter: blur(12px);
    height: 50px;
}

/* Placeholder */

.bci-form-wrapper input::placeholder,
.bci-form-wrapper textarea::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

/* Focus */

.bci-form-wrapper input:focus,
.bci-form-wrapper textarea:focus,
.bci-form-wrapper select:focus {

    outline: none;

    border-color: rgba(0, 255, 255, 0.5);

    background: rgba(255, 255, 255, 0.08);

    box-shadow:
        0 0 0 4px rgba(0, 255, 255, 0.08),
        0 0 25px rgba(0, 255, 255, 0.12);
}

/* Textarea */

.bci-form-wrapper textarea {
    height: 150px;
    resize: none;
}

/* Submit Button */

.form-submit {
    margin-top: 10px;
}

.form-submit input[type="submit"] {

    width: 100%;
    border: none;
    padding: 20px 30px;
    border-radius: 18px;
    background-color: var(--secondary-color) !important;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.35s ease;
    box-shadow:
        0 10px 25px rgba(0, 168, 132, 0.28);
}

/* Hover */

.form-submit input[type="submit"]:hover {

    transform: translateY(-3px);

    box-shadow:
        0 18px 35px rgba(0, 168, 132, 0.35);
}

/* Contact Form 7 Response */

.wpcf7-response-output {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2) !important;
    margin-top: 25px !important;
}

/* Responsive */

@media (max-width: 768px) {

    .bci-form-wrapper {
        padding: 35px 22px;
        border-radius: 24px;
    }

    .form-row {
        flex-direction: column;
        gap: 18px;
    }

    .form-heading h2 {
        font-size: 34px;
    }

    .form-group label {
        font-size: 15px;
    }

    .form-submit input[type="submit"] {
        padding: 18px 24px;
        font-size: 16px;
    }
}



/* contact page  */

.bci-contact-form {
    max-width: 700px;
    margin: auto;
    padding: 40px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 11px;
}


.bci-contact-form p {
    margin-bottom: 30px;
    color: #202020;
    font-size: 16px;
}

.bci-contact-form input,
.bci-contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 16px;
    background: #f8f8f8;
}

.bci-contact-form textarea {
    height: 150px;
    resize: none;
}

.bci-contact-form input[type="submit"] {
    background-color: var(--secondary-color);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    transition: 0.3s ease;
}

.bci-contact-form input[type="submit"]:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* Membership form =================== */

.bci-membership-form {
    background: #fff;
    padding: 30px;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    max-width: 900px;
    margin: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.bci-membership-form h3 {
    font-size: 28px;
    margin-bottom: 8px;
    color: #111;
    font-weight: 700;
}

.chapter_des {
    font-size: 18px;
    color: #202020;
    margin-bottom: 15px !important;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.form-group {
    width: 100%;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.bci-membership-form input,
.bci-membership-form select,
.bci-membership-form textarea {
    width: 100%;
    height: 52px;
    border: 1px solid #ddd !important;
    border-radius: 10px !important;
    padding: 0 16px;
    font-size: 14px;
    color: #333;
    background: #f8f8f8;
    outline: none;
    box-sizing: border-box;
}

.bci-membership-form textarea {
    height: 120px;
    padding-top: 15px;
    resize: none;
}

.bci-membership-form input:focus,
.bci-membership-form select:focus,
.bci-membership-form textarea:focus {
    border-color: #2f6fed;
    background: #fff;
}

.bci-membership-form input[type="submit"] {
    background-color:var(--theme-color);
    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.bci-membership-form input[type="submit"]:hover {
    background-color:var(--theme-color);
}

.bci-membership-form small {
    display: block;
    text-align: center;
    color:#202020;
    font-size: 18px;
}

@media(max-width:767px) {

    .form-grid {
        grid-template-columns: 1fr;
    }

}