 /* About Section */
.about-section {
    padding: 120px 20px;
    background: linear-gradient(to bottom, #000814, #001d3d);
    color: #d1d5db;
}

/* Container */
.about-container {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

/* Section Heading */
.about-container h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--brand-yellow);
    margin-bottom: 60px;
    position: relative;
}

.about-container h2::after {
    content: "";
    width: 90px;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-yellow), var(--brand-red));
    display: block;
    margin: 18px auto 0;
    border-radius: 2px;
}

/* Cards Grid */
.about-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

/* Individual Card */
.about-card {
    background: #0a0a23;
    padding: 36px 28px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 18px 50px rgba(0,0,0,0.7);
    border-top: 4px solid var(--brand-yellow);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

/* Hover Effect */
.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.85);
    border-top-color: var(--brand-red);
}

/* Card Icon */
.card-icon {
    font-size: 28px;
    color: var(--brand-yellow);
    margin-bottom: 16px;
    transition: color 0.4s ease, transform 0.4s ease;
}

.about-card:hover .card-icon {
    color: var(--brand-red);
    transform: scale(1.1);
}

/* Card Heading */
.about-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--brand-yellow);
    margin-bottom: 16px;
}

/* Card Paragraph */
.about-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #d1d5db;
    text-align: left;
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Text Alignment for Mobile */
@media (max-width: 768px) {
    .about-card p {
        text-align: center;
    }
}


/* About Section */
.about-section {
    position: relative;
    padding: 120px 20px;
    background: linear-gradient(to bottom, #000814, #001d3d);
    color: #d1d5db;
    overflow: hidden;
}

/* Background overlay with subtle map */
.about-bg-overlay {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 100%;
    background: url('assets/images/world-map-light.png') center/cover no-repeat;
    opacity: 0.05; /* very faint */
    z-index: 0;
    pointer-events: none;
}

/* Optional: geometric luxury accents */
.about-bg-overlay::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle at 25% 25%, rgba(255, 204, 0, 0.03) 0%, transparent 60%),
                radial-gradient(circle at 75% 75%, rgba(255, 204, 0, 0.03) 0%, transparent 60%);
    z-index: 1;
}

/* Ensure cards are above overlay */
.about-container {
    position: relative;
    z-index: 2;
}

/* Cards Grid & Cards - same as before */
.about-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

/* Card styling remains same as luxury dark version */
.about-card {
    background: #0a0a23;
    padding: 36px 28px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 18px 50px rgba(0,0,0,0.7);
    border-top: 4px solid var(--brand-yellow);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.85);
    border-top-color: var(--brand-red);
}
