.bg {
    background: url('/assets/images/about-hero.jpg') center/cover no-repeat;
}
.bg1 {
    background: url('/assets/images/about-hero.jpeg') center/cover no-repeat;
    margin-top: 0
}
section {
    padding: 100px 20px;
    background: linear-gradient(180deg, #0a0f2c, #111a3a);
}
.about .container .grid .card .lotte-title {
    display: flex;
    align-items: center;
}
.about .card h3,
.about .card p {
    text-align: left;
}
.about .card p {
    color: var(--muted);
    margin-top: 10px
}
.about .card .list li {
    color: var(--muted);
    padding-bottom: 10px;
}
/* Leadership */
.leaders {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}
.leader-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    color: #fff;
    width: 300px;
    transition: transform 0.3s;
}
.leader-card img {
    width: 150px;
    height: 150px;
    margin: 0 auto;
}
.leader-card:hover {
    transform: translateY(-8px);
}
.leader-card a {
    margin-top: 10px;
    display: inline-block;
    color: #0af;
    font-weight: 500;
    transition: color 0.3s;
}
.leader-card a:hover {
    color: #4ff;
}
.floating-btn {
    background: linear-gradient(135deg, #410f37, #213278);
}