.elementor-6211 .elementor-element.elementor-element-6eb2f84 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-6eb2f84 *//*=========================
  BUSINESS CONNECT HERO
=========================*/

/* 1. MAGIC FIX: Force your theme to respect widths inside this section */
.bc-hero, .bc-hero * {
    box-sizing: border-box !important;
    max-width: 100%; 
}

.bc-hero {
    position: relative;
    background: url("http://businessconnect.com.ng/wp-content/uploads/2026/06/African-american-student-walking-in-the-street-and-talking-on-the-phone-Free-Photo-06-27-2026_01_13_AM.png") center center/cover no-repeat;
    background-color: #0b2f67;
    min-height: 700px;
    display: flex;
    align-items: center;
    padding: 80px 20px;
    overflow-x: hidden; /* Stops horizontal scrolling */
    width: 100%;
}

.bc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
        rgba(7,28,58,.92),
        rgba(11,47,103,.78),
        rgba(0,0,0,.45));
}

.bc-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1250px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 60px;
    align-items: center;
}

/* LEFT */
.bc-badge {
    display: inline-block;
    background: rgba(255,255,255,.15);
    color: #fff;
    padding: 10px 18px;
    border-radius: 40px;
    backdrop-filter: blur(12px);
    font-weight: 600;
    margin-bottom: 20px;
}

.bc-left h1 {
    color: #fff;
    font-size: 62px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.bc-intro {
    color: #fff;
    font-size: 18px;
    line-height: 1.8;
    max-width: 620px;
    margin-bottom: 30px;
}

.bc-features {
    list-style: none;
    padding: 0;
    margin: 0 0 35px;
}

.bc-features li {
    color: #fff;
    margin-bottom: 14px;
    font-size: 17px;
}

.bc-btn {
    display: inline-block;
    background: #ff9800;
    color: #fff;
    text-decoration: none;
    padding: 16px 36px;
    border-radius: 10px;
    font-weight: 700;
    transition: .3s;
}

.bc-btn:hover {
    background: #f57c00;
}

.bc-trust {
    display: flex;
    gap: 40px;
    margin-top: 45px;
    flex-wrap: wrap; /* Allows text to wrap naturally */
}

.bc-trust div {
    display: flex;
    flex-direction: column;
}

.bc-trust strong {
    color: #fff;
    font-size: 28px;
}

.bc-trust span {
    color: #d8d8d8;
    font-size: 14px;
}

/* CARD */
.bc-card {
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,.25);
    width: 100%;
}

.bc-card h2 {
    color: #fff;
    font-size: 30px;
    margin-bottom: 20px;
}

.bc-line {
    width: 70px;
    height: 4px;
    background: #ff9800;
    border-radius: 30px;
    margin-bottom: 25px;
}

.bc-box {
    margin-bottom: 20px;
}

.bc-box label {
    display: block;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 600;
}

.bc-input-row {
    display: flex;
    width: 100%;
}

.bc-input-row input {
    flex: 1;
    height: 60px;
    border: none;
    outline: none;
    padding: 0 18px;
    font-size: 26px;
    border-radius: 10px 0 0 10px;
}

.bc-input-row select {
    width: 100px;
    border: none;
    outline: none;
    background: #fff;
    font-size: 16px;
    border-radius: 0 10px 10px 0;
    cursor: pointer;
    padding: 0 10px;
}

.bc-result {
    background: rgba(255,255,255,.12);
    border-radius: 10px;
    padding: 18px;
    margin-top: 10px;
    color: #fff;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    word-break: break-word; /* Prevents long numbers from blowing out the box */
}

.bc-date {
    text-align: center;
    color: #ddd;
    margin-top: 12px;
    font-size: 14px;
}

/* TABLET */
@media(max-width: 992px) {
    .bc-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .bc-left {
        text-align: center;
    }
    
    .bc-intro {
        margin: 0 auto 30px;
    }
    
    .bc-features {
        display: inline-block;
        text-align: left;
    }
    
    .bc-trust {
        justify-content: center;
    }
    
    .bc-card {
        max-width: 600px;
        margin: auto;
    }
    
    .bc-left h1 {
        font-size: 48px;
    }
}

/* MOBILE */
@media(max-width: 768px) {
    .bc-hero {
        padding: 60px 15px !important; /* Force override */
    }
    
    .bc-left h1 {
        font-size: 36px !important;
        line-height: 1.2 !important;
    }
    
    .bc-intro {
        font-size: 16px !important;
    }
    
    .bc-trust {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
        text-align: center;
    }
    
    .bc-card {
        padding: 20px 15px !important; /* Slightly tighter padding for small screens */
        border-radius: 15px !important;
    }
    
    .bc-card h2 {
        font-size: 24px !important;
    }
    
    .bc-input-row {
        flex-direction: column !important; /* Force them to stack */
    }
    
    .bc-input-row input {
        width: 100% !important;
        border-radius: 10px !important; /* Force full rounded corners */
        margin-bottom: 10px !important;
        font-size: 22px !important;
    }
    
    .bc-input-row select {
        width: 100% !important;
        height: 55px !important;
        border-radius: 10px !important; /* Force full rounded corners */
    }
    
    .bc-result {
        font-size: 18px !important;
    }
}

/* SMALL MOBILE */
@media(max-width: 480px) {
    .bc-left h1 {
        font-size: 30px !important;
    }
    
    .bc-trust {
        grid-template-columns: 1fr !important;
    }
    
    .bc-badge {
        font-size: 13px !important;
    }
    
    .bc-features li {
        font-size: 15px !important;
    }
}/* End custom CSS */