/* style.css */
.pb-hero-section {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #1a1a1a;
    background-size: cover;
    background-position: center;
}

.pb-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.pb-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.pb-heading {
    font-size: 56px;
    line-height: 1.1;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.pb-subheading {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 400;
}

.pb-accent-line {
    margin-bottom: 25px;
}

.pb-support {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 35px;
}

.pb-buttons-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.pb-btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    text-transform: uppercase;
}

.pb-btn-1 {
    background-color: #0D47A1;
    color: #fff;
    border: 1px solid #0D47A1;
}
.pb-btn-1:hover {
    background-color: #002171;
    border-color: #002171;
}

.pb-btn-2, .pb-btn-3 {
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.5);
}
.pb-btn-2:hover, .pb-btn-3:hover {
    background-color: rgba(255, 255, 255, 0.1);
}


.pb-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    padding: 20px;
    box-sizing: border-box;
}

.pb-footer-area {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.pb-icons-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    width: 100%;
}

.pb-icon-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pb-icon-label {
    font-size: 16px;
    font-weight: 400;
}

.pb-eyebrow {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .pb-hero-overlay {
        background: linear-gradient(to right, rgba(13, 71, 161, 0.9) 0%, rgba(13, 71, 161, 0.8) 100%) !important;
    }
    .pb-heading { font-size: 40px; }
    .pb-subheading { font-size: 20px; }
    .pb-buttons-wrapper { flex-direction: column; width: 100%; }
    .pb-btn { width: 100%; }
    .pb-icons-wrapper { flex-direction: column; gap: 15px; }
}
