/* Reset some margins */
.crbwc-main-wrapper {
    position: relative;
    background: #fff;
    font-family: 'Poppins', sans-serif;
}
.crbwc-hero-section {
    background-image: url('../images/crbwc-from/crbwc-bg-img.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 180px 0 100px 0;
    color: #fff;
    min-height: 850px;
    position: relative;
    z-index: 100;
}
.crbwc-hero-section:before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 100%);
}
.crbwc-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    flex-wrap: wrap;
}
.crbwc-left-col {
    width: 55%;
    padding-right: 60px;
}
.crbwc-right-col {
    width: 45%;
    position: relative;
}
.crbwc-top-label {
    color: #e5b122;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.crbwc-top-label:before {
    content: "";
    display: inline-block;
    width: 3px;
    height: 20px;
    background-color: #e5b122;
    margin-right: 15px;
}
.crbwc-hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #fff;
}
.crbwc-hero-desc {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 50px;
    line-height: 1.4;
    color: #ffffff;
}
.crbwc-icon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}
.crbwc-icon-box {
    display: flex;
    flex-direction: column;
}
.crbwc-icon-box img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-bottom: 15px;
}
.crbwc-icon-box h4 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}
.crbwc-icon-box p {
    font-size: 14px;
    line-height: 1.4;
    color: #e0e0e0;
    margin: 0;
}
/* Right side form absolute positioning strategy */
.crbwc-form-card {
    background: #fff;
    border-radius: 8px;
    padding: 35px 35px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    position: absolute;
    top: -50px; 
    right: 0;
    width: 100%;
    z-index: 10;
}
.crbwc-form-header {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 15px;
    margin-bottom: 25px;
}
.crbwc-form-header h3 {
    font-size: 24px;
    font-weight: 800;
    color: #333;
    margin: 0;
}
.crbwc-form-header h3 span {
    color: #e5b122;
}
.crbwc-form-group {
    margin-bottom: 15px;
}
.crbwc-form-group label {
    display: block;
    font-weight: 700;
    color: #333;
    margin-bottom: 6px;
    font-size: 15px;
}
.crbwc-form-group label span {
    color: #dc3545;
}
.crbwc-form-group p.sub-label {
    font-size: 12px;
    color: #777;
    margin-top: 5px;
    margin-bottom: 0px;
}
.crbwc-form-control {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    background: #fff;
    color: #333333;
}
select.crbwc-form-control {
    padding-right: 15px; 
    cursor: pointer;
}
select.crbwc-form-control:invalid {
    color: #999999;
}

.crbwc-form-control:focus {
    border-color: #e5b122;
    outline: none;
    box-shadow: 0 0 0 3px rgba(229,177,34,0.1);
}

.crbwc-custom-dropdown {
    position: relative;
    width: 100%;
}
.crbwc-dropdown-trigger {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    background: #fff url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23999%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E') no-repeat right 15px top 50%;
    background-size: 10px auto;
    color: #999999;
    cursor: pointer;
    line-height: normal;
    height: 55px;
    display: flex;
    align-items: center;
}
.crbwc-dropdown-trigger.selected-value {
    color: #333333;
}
.crbwc-custom-dropdown.open .crbwc-dropdown-trigger {
    border-color: #e5b122;
    box-shadow: 0 0 0 3px rgba(229,177,34,0.1);
}
.crbwc-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    margin-top: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: all 0.2s ease;
    overflow: hidden;
}
.crbwc-custom-dropdown.open .crbwc-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.crbwc-dropdown-item {
    padding: 10px 15px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    transition: background 0.2s;
}
.crbwc-dropdown-item:hover {
    background: #f7f7f7;
    color: #e5b122;
}
.crbwc-submit-btn {
    width: 100%;
    background: #e1ad21;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 15px;
}
.crbwc-submit-btn:hover {
    background: #d4a015;
}
.crbwc-secure-text {
    text-align: center;
    font-size: 12px;
    color: #777;
    margin-top: 15px;
}
.crbwc-secure-text i {
    margin-right: 5px;
}

.crbwc-hidden-validator {
    position: absolute;
    opacity: 0;
    width: 100%;
    bottom: 0;
    left: 0;
    height: 10px;
    z-index: -1;
    pointer-events: none;
}

/* Why Choose Section */
.crbwc-why-section {
    padding: 80px 0;
    background: #fff;
    min-height: 400px;
}
.crbwc-why-left {
    width: 55%;
    padding-right: 40px;
}
.crbwc-why-title {
    font-size: 32px;
    font-weight: 800;
    color: #333;
    margin-bottom: 15px;
}
.crbwc-why-title span {
    color: #e5b122;
}
.crbwc-why-desc {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.5;
}
.crbwc-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.crbwc-why-icon-box {
    display: flex;
    flex-direction: column;
}
.crbwc-why-icon-box img {
    height: 40px;
    width: 40px;
    object-fit: contain;
    margin-bottom: 20px;
}
.crbwc-why-icon-box h4 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}
.crbwc-why-icon-box p {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    margin: 0;
}

/* Small adjustments to integrate with header/footer */

@media (max-width: 991px) {
    .crbwc-left-col, .crbwc-right-col, .crbwc-why-left {
        width: 100%;
        padding-right: 0;
    }
    .crbwc-form-card {
        position: relative;
        top: 0;
        margin-top: 50px;
    }
    .crbwc-hero-title {
        font-size: 40px;
    }
    .crbwc-icon-grid, .crbwc-why-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .crbwc-hero-section{
        padding: 110px 0px 100px;
    }
}
/* Imported Header Styles */
/* --- Navbar Style Overrides --- */
.main-header {
    background-color: #ffffff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); 
}

.main-header .main-menu .navigation > li > a {
    color: #333333 !important;
    font-weight: 500;
    font-size: 15px;
    text-transform: capitalize !important; 
    text-decoration: none !important;
}

.main-header .main-menu .navigation > li:hover > a,
.main-header .main-menu .navigation > li.current > a {
    color: #e4ae1f !important;
    text-decoration: none !important;
}

/* Force ALL dropdown and sub-menu links to have no text decoration (underlines) */
.main-header .main-menu .navigation li a {
    text-decoration: none !important;
}

.main-header .main-menu .navigation > li.dropdown > a::after {
    content: '\f107'; 
    font-family: 'Font Awesome 5 Free', 'FontAwesome', sans-serif;
    font-weight: 900;
    margin-left: 6px;
    font-size: 12px;
}

.main-header .main-menu .navigation > li > a.btn {
    background-color: #e2a613 !important; 
    color: #111111 !important;
    padding: 12px 30px !important;
    border-radius: 0px !important; 
    font-weight: 600 !important;
    margin-left: 20px;
    border: none !important;
    display: inline-block;
    text-transform: none !important;
}

.main-header .main-menu .navigation > li > a.btn:hover {
    background-color: #c9930f !important;
    color: #ffffff !important;
}
.main-menu .navigation > li {
    padding: 25px 0px;
}


/* FORCE FIX FOR HEADER TRANSPARENCY */
.main-header {
    background-color: #ffffff !important;
    background: #ffffff !important;
    position: absolute !important;
    width: 100% !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 999 !important;
}

.main-header .main-box {
    background-color: #ffffff !important;
    background: #ffffff !important;
}


/* Industries We Serve Section */
.crbwc-iws-section {
    padding: 80px 0;
    background: #f8f9fb;
}
.crbwc-iws-title {
    font-size: 30px;
    font-weight: 800;
    color: #2b2b2b;
    margin-bottom: 70px;
    position: relative;
    display: inline-block;
}
.crbwc-iws-title:after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #e5b122;
}
.crbwc-iws-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    width: 100%;
}
.crbwc-iws-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.crbwc-iws-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    width: 45%;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    margin-bottom: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.crbwc-iws-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}
.crbwc-iws-card img {
    max-width: 60%;
    max-height: 60%;
    object-fit: contain;
}
.crbwc-iws-item h4 {
    font-size: 14px;
    font-weight: 700;
    color: #4a4f55;
    margin: 0;
    text-align: center;
}

@media (max-width: 1199px) {
    .crbwc-iws-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}
@media (max-width: 767px) {
    .crbwc-iws-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}
