/* About Page Hero Section */
.about-hero-section {
    position: relative;
    width: 100%;
    min-height: 45vh;
    display: flex;
    align-items: center;
    /* Using a professional financial/business background from Unsplash */
    background: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?q=80&w=2070&auto=format&fit=crop') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    color: #fff;
    overflow: hidden;
}

/* Background Overlay for text readability */
.about-hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(11, 30, 61, 0.95) 0%, rgba(11, 30, 61, 0.8) 40%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.about-hero-container {
    position: relative;
    z-index: 2;
    padding: 40px 20px;
    width: 100%;
}

.about-hero-content {
    max-width: 650px;
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
    text-align: left;
}

.about-hero-content .badge {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(242, 169, 0, 0.15);
    border: 1px solid #F4B400;
    border-radius: 30px;
    margin-bottom: 25px;
    backdrop-filter: blur(5px);
}

.about-hero-content .badge span {
    color: #F4B400;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.about-hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.about-hero-title .dark-blue {
    color: #ffffff;
}

.about-hero-title .orange {
    color: #F4B400;
}

.about-hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: #e2e8f0;
    margin-bottom: 35px;
    font-weight: 400;
}

/* Breadcrumb Styles */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    font-weight: 500;
    margin-top: 10px;
}

.breadcrumb a {
    color: #F4B400;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #ffffff;
}

.breadcrumb i {
    color: #cbd5e1;
    font-size: 14px;
}

.breadcrumb span {
    color: #ffffff;
    font-weight: 600;
}

/* Company Introduction Section */
.about-intro-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Image Side */
.intro-image-wrapper {
    position: relative;
    padding-bottom: 20px; /* Space for the badge */
}

.intro-image-inner {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.intro-image-inner img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.intro-image-wrapper:hover .intro-image-inner img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 0;
    right: 30px;
    background: #F4B400;
    color: #fff;
    padding: 25px 30px;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(242, 169, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 2;
}

.exp-number {
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
}

.exp-text {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.4;
}

/* Content Side */
.section-subtitle {
    color: #F4B400;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title {
    font-size: 42px;
    color: #0a1c3a;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.intro-description {
    font-size: 16px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 40px;
}

.intro-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.intro-feature-item {
    display: flex;
    gap: 15px;
}

.intro-feature-item .icon {
    width: 50px;
    height: 50px;
    background: rgba(242, 169, 0, 0.1);
    color: #F4B400;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.intro-feature-item:hover .icon {
    background: #F4B400;
    color: #fff;
}

.intro-feature-item h4 {
    font-size: 18px;
    color: #0a1c3a;
    font-weight: 700;
    margin-bottom: 5px;
}

.intro-feature-item p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
}

/* Mission and Vision Section */
.mission-vision-section {
    padding: 50px 0;
    background: #f8fafc;
    position: relative;
}

.mv-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.mv-header .section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: #F4B400;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.mv-header .section-subtitle .line {
    width: 30px;
    height: 2px;
    background: #F4B400;
}

.mv-header .section-title {
    font-size: 42px;
    color: #0a1c3a;
    font-weight: 800;
    margin-bottom: 20px;
}

.mv-header .section-title span {
    color: #F4B400;
}

.mv-header-desc {
    color: #475569;
    font-size: 16px;
    line-height: 1.6;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
}

.mv-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.mv-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.mv-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.mv-icon::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    z-index: -1;
    transition: transform 0.4s ease;
}

.mission-icon {
    background: #F4B400;
    color: #ffffff;
}

.mission-icon::before {
    background: #0B1F4D;
}

.vision-icon {
    background: #F4B400;
    color: #ffffff;
}

.vision-icon::before {
    background: #0B1F4D;
}

.mv-card:hover .mv-icon {
    transform: rotate(12deg);
}

.mv-card:hover .mv-icon::before {
    transform: scale(1.05);
}

.mv-title {
    font-size: 24px;
    color: #0B1F4D;
    font-weight: 800;
    margin: 0;
    position: relative;
    padding-bottom: 10px;
}

.mv-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    border-radius: 2px;
    background: #F4B400;
}

.mv-card:nth-child(1) .mv-title span { color: #0B1F4D; }
.mv-card:nth-child(2) .mv-title span { color: #F4B400; }

.mv-desc {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 20px;
    margin-top: 10px;
}

.mv-divider {
    height: 1px;
    background: #e2e8f0;
    margin-bottom: 20px;
    width: 100%;
}

.mv-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mv-list li {
    font-size: 14px;
    color: #334155;
    line-height: 1.5;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.mission-list li i {
    color: #0B1F4D;
    margin-top: 2px;
    font-size: 15px;
}

.vision-list li i {
    color: #F4B400;
    margin-top: 2px;
    font-size: 15px;
}



.mission-img {
    background-image: url('https://images.pexels.com/photos/3184325/pexels-photo-3184325.jpeg?auto=compress&cs=tinysrgb&w=800');
}

.vision-img {
    background-image: url('https://images.pexels.com/photos/373479/pexels-photo-373479.jpeg?auto=compress&cs=tinysrgb&w=800');
}

.mv-footer-banner {
    background: #ffffff;
    border-radius: 24px;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    max-width: 900px;
    margin: 0 auto;
    transition: all 0.5s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.mv-footer-banner:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.banner-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #f8fafc;
    color: #0B1F4D;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
    border: 2px solid #f1f5f9;
}

.banner-text h4 {
    font-size: 20px;
    color: #0B1F4D;
    font-weight: 700;
    margin-bottom: 5px;
}

.banner-text p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* Fade In Animation */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-hero-title {
        font-size: 42px;
    }
    .about-hero-subtitle {
        font-size: 16px;
    }
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .experience-badge {
        bottom: 0;
        right: 20px;
    }
    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .about-hero-section {
        background-attachment: scroll;
        min-height: auto;
        text-align: center;
    }
    
    .about-hero-bg-overlay {
        background: linear-gradient(to bottom, rgba(11, 30, 61, 0.95) 0%, rgba(11, 30, 61, 0.7) 100%);
    }

    .about-hero-container {
        padding: 40px 15px;
    }

    .about-hero-content {
        margin: 0 auto;
        text-align: center;
    }
    
    .about-hero-content .badge {
        padding: 6px 12px;
        margin-bottom: 15px;
    }
    
    .about-hero-content .badge span {
        font-size: 10px;
    }

    .about-hero-title {
        font-size: 28px;
        margin-bottom: 10px;
    }
    
    .about-hero-subtitle {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .breadcrumb {
        justify-content: center;
        font-size: 14px;
        margin-top: 5px;
    }
    
    .breadcrumb i {
        font-size: 12px;
    }

    .experience-badge {
        padding: 15px 20px;
        right: 50%;
        transform: translateX(50%);
        bottom: 10px;
        gap: 10px;
        width: max-content;
    }
    
    .exp-number {
        font-size: 28px;
    }
    
    .exp-text {
        font-size: 11px;
    }

    .section-subtitle {
        font-size: 10px;
        margin-bottom: 5px;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .intro-description {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 25px;
        text-align: justify;
    }

    .intro-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .intro-feature-item {
        gap: 10px;
    }
    
    .intro-feature-item .icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .intro-feature-item h4 {
        font-size: 15px;
        margin-bottom: 3px;
    }
    
    .intro-feature-item p {
        font-size: 12px;
    }

    .mv-header {
        margin-bottom: 25px;
        text-align: left;
    }
    
    .mv-header .section-subtitle {
        font-size: 9px;
        margin-bottom: 5px;
    }
    
    .mv-header .section-subtitle .line {
        width: 15px;
    }
    
    .mv-header .section-title {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .mv-header-desc {
        font-size: 14px;
        text-align: justify;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .mv-card {
        padding: 20px;
    }
    
    .mv-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .mv-title {
        font-size: 20px;
        padding-bottom: 6px;
    }
    
    .mv-desc {
        font-size: 12px;
        margin-bottom: 15px;
    }
    
    .mv-list li {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .mv-card {
        flex-direction: column;
    }

    .mv-card-content {
        flex: 1;
        max-width: 100%;
        padding: 30px;
    }

    .mv-card-bg {
        position: relative;
        flex: 0 0 200px;
        max-width: 100%;
        height: 200px;
        clip-path: none;
    }

    .mv-footer-banner {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 15px;
    }
    
    .banner-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .banner-text h4 {
        font-size: 18px;
        margin-bottom: 5px;
    }
    
    .banner-text p {
        font-size: 13px;
    }
}
