	* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #0b0f19;
    color: #fff;
    padding: 20px;
}

.boxfnabpage-container {
    max-width: 1250px;
    margin: 0 auto;
}

/* Leadership Main Section */
.boxfnableadership-section {
    background: #ffffff;
    color: #111;
    border-radius: 25px;
    padding: 50px;
    margin-bottom: 30px;
}

.boxfnableadership-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
    align-items: center;
}

/* Left Profile Box */
.boxfnableft-profile-box {
    background: #0b0f19;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    text-align: center;
}

.boxfnabimage-wrapper {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
}

.boxfnabimage-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.boxfnabexp-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: #0f172a;
    border: 2px solid #ffc107;
    padding: 15px 20px;
    border-radius: 15px;
    text-align: left;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.boxfnabexp-badge h3 {
    font-size: 26px;
    color: #ffc107;
    font-weight: 800;
}

.boxfnabexp-badge p {
    font-size: 11px;
    color: #fff;
    line-height: 1.2;
}

/* Right Content Box */
.boxfnableadership-tag {
    color: #0056b3;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.boxfnabright-content-box h1 {
    font-size: 38px;
    font-weight: 900;
    color: #0b0f19;
    margin-bottom: 15px;
}

.boxfnableader-desc {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Quote Box */
.boxfnabquote-box {
    background: #f1f5f9;
    border-left: 4px solid #ffc107;
    padding: 15px 20px;
    border-radius: 10px;
    position: relative;
    margin-bottom: 25px;
}

.boxfnabquote-icon {
    font-size: 30px;
    color: #ffc107;
    line-height: 0.5;
    display: block;
    margin-bottom: 5px;
}

.boxfnabquote-box p {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
}

.boxfnabquote-box span {
    color: #0056b3;
}

/* Feature Cards Grid */
.boxfnabfeature-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.boxfnabf-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 15px 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.boxfnabf-card i {
    font-size: 20px;
    color: #0056b3;
    margin-bottom: 8px;
}

.boxfnabf-card h3 {
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 4px;
}

.boxfnabf-card p {
    font-size: 11px;
    color: #64748b;
}

/* Social Links */
.boxfnabsocial-links {
    display: flex;
    gap: 12px;
}

.boxfnabsocial-links a {
    width: 35px;
    height: 35px;
    background: #fff;
    border: 1px solid #cbd5e1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0056b3;
    text-decoration: none;
    transition: 0.3s;
}

.boxfnabsocial-links a:hover {
    background: #0056b3;
    color: #fff;
    border-color: #0056b3;
}

/* Bottom Footer Banner */
.boxfnabbottom-banner {
    background: #0f172a;
    border: 1px solid #1e293b;
    border-radius: 20px;
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.boxfnabbanner-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.boxfnabbanner-icon {
    width: 50px;
    height: 50px;
    background: #1e293b;
    border: 1px solid #ffc107;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffc107;
    font-size: 20px;
    flex-shrink: 0;
}

.boxfnabbanner-item h3 {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
}

.boxfnabbanner-item p {
    font-size: 12px;
    color: #94a3b8;
    display: flex;
    flex-direction: column;
}

.boxfnabbanner-item p span {
    font-size: 11px;
    color: #cbd5e1;
}

/* Responsive Design for Mobile & Tablets */
@media (max-width: 1024px) {
    .boxfnableadership-grid {
        grid-template-columns: 1fr;
    }
    
    .boxfnabbottom-banner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
   
    .boxfnableadership-section {
        padding: 20px;
    }

    .boxfnabfeature-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .boxfnabbottom-banner {
        grid-template-columns: 1fr;
    }
}