/* About Section New Design */
.about-creative-section {
    padding: 120px 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Background Decorations */
.about-creative-section::before {
    content: "";
    position: absolute;
    top: 10%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(20, 23, 108, 0.03) 0%, transparent 70%);
    z-index: 0;
}

/* Left Image Area */
.about-img-wrap {
    position: relative;
    padding-right: 50px;
    padding-bottom: 50px;
    z-index: 1;
}

.about-img-main,
.about-video-main {
    position: relative;
    z-index: 2;
    border-radius: 10px;
    box-shadow: 0 30px 60px rgba(20, 23, 108, 0.1);
    width: 100%;
    max-width: 450px;
    height: 500px;
    object-fit: cover;
}

.about-img-backdrop {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80%;
    height: 80%;
    background-color: #f7a400;
    /* Gold Backdrop */
    border-radius: 10px;
    z-index: 1;
    transform: translate(20px, 20px);
}

.about-exp-badge {
    position: absolute;
    bottom: 60px;
    left: -20px;
    background: #14176c;
    /* Navy */
    color: #ffffff;
    padding: 25px 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: 0 10px 30px rgba(20, 23, 108, 0.3);
    min-width: 140px;
}

.about-exp-badge .exp-text {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

/* Right Content Area */
.about-creative-content {
    padding-left: 30px;
}

.about-tagline {
    display: inline-block;
    color: #f7a400;
    /* Gold */
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.about-headline {
    font-size: 44px;
    font-weight: 800;
    color: #14176c;
    /* Navy */
    line-height: 1.2;
    margin-bottom: 25px;
}

.about-desc {
    font-size: 16px;
    color: #5f6c7b;
    line-height: 1.8;
    margin-bottom: 35px;
}

/* Feature List */
.about-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    color: #14176c;
    font-size: 16px;
}

.about-feature-item i {
    width: 25px;
    height: 25px;
    background: #f7a400;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* Secondary Image Box */
.about-secondary-box {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.about-secondary-img {
    width: 180px;
    height: 120px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* CEO Area */
.about-ceo-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ceo-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.ceo-meta h5 {
    font-size: 17px;
    font-weight: 700;
    color: #14176c;
    margin-bottom: 2px;
}

.ceo-meta span {
    font-size: 13px;
    color: #f7a400;
    font-weight: 600;
    text-transform: uppercase;
}

/* Button */
.btn-about-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #14176c;
    color: #ffffff !important;
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.btn-about-more:hover {
    background: #f7a400;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(247, 164, 0, 0.2);
}

/* Decorative Dots */
.dots-decoration {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(#f7a400 2px, transparent 2px);
    background-size: 15px 15px;
    z-index: 0;
    opacity: 0.3;
}

.dots-decoration-right {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(#14176c 2px, transparent 2px);
    background-size: 15px 15px;
    z-index: 0;
    opacity: 0.2;
}

/* Responsive fixes */
@media (max-width: 991px) {
    .about-img-wrap {
        margin-bottom: 70px;
        padding-right: 20px;
    }

    .about-creative-content {
        padding-left: 0;
    }

    .about-headline {
        font-size: 32px;
    }

    .about-exp-badge {
        left: 0;
        bottom: 0;
    }
}