
.about-section {
    padding: 80px 15px;
    background: linear-gradient(to right, #1C1C1C 50%, #7a3131 50%);
    color: #fff;
    font-family:'Arial, Helvetica, sans-serif';/* Default body text */
}

/* ========================= */
/* Container Layout */
/* ========================= */
.about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

/* ========================= */
/* Left Side: Text & Stats */
/* ========================= */
.about-left {
    flex: 1;
    min-width: 280px;
    opacity: 0;
    animation: slideFromLeft 1s forwards;
}

.venue-title {
    font-family:'Arial, Helvetica, sans-serif'; /* Heading font */
    font-size: 48px;
    margin-bottom: 5px;
}

.about-subtitle {
    font-family:'Arial, Helvetica, sans-serif'; /* Heading font */
    font-size: 36px;
    margin-bottom: 20px;
    color: #dd1a1e;
}

.about-left p {
    font-size: 19px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #ffffff;
}

/* Stats */
.about-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.stat-box {
    flex: 1 1 120px;
    text-align: center;
    opacity: 0;
    animation: slideFromLeft 1s forwards;
    transition: transform 0.3s;
}

.stat-box:hover {
    transform: translateY(-5px);
}

.stat-box h3 {
    font-family:'Arial, Helvetica, sans-serif'; /* Heading font */
    font-size: 28px;
    margin: 5px 0;
    color: #0b9025;
}

.stat-box p {
    font-size: 16px;
    margin: 0;
    color: #ffffff;
}

.stat-line {
    display: block;
    width: 60px;
    height: 3px;
    background-color: #dd1a1e;
    margin: 0 auto 10px auto;
    border-radius: 2px;
}

/* ========================= */
/* Center: Overlapping Images */
/* ========================= */
.about-images {
    display: flex;
    position: relative;
    width: 400px;
    height: 400px;
    justify-content: center;
    align-items: center;
    opacity: 0;
    animation: slideFromBottom 1s forwards;
    animation-delay: 0.7s;
}

.about-images .image-box {
    width: 180px;
    height: 180px;
    overflow: hidden;
    border-radius: 20px;
    border: 5px solid #ffffff;
    position: absolute;
    transition: transform 0.3s, box-shadow 0.3s;
}

.about-images .image-box:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

/* Image positions */
.about-images .image-box:nth-child(1) { left: 0; top: 100px; z-index: 4; }
.about-images .image-box:nth-child(2) { left: 110px; top: 0; z-index: 3; }
.about-images .image-box:nth-child(3) { left: 220px; top: 100px; z-index: 2; }
.about-images .image-box:nth-child(4) { left: 110px; top: 220px; z-index: 1; }

.about-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========================= */
/* Right Side: Points & Text */
/* ========================= */
.about-right {
    flex: 1;
    min-width: 280px;
    opacity: 0;
    animation: slideFromRight 1s forwards;
    animation-delay: 0.3s;
}

.about-right h3 {
    font-family:'Arial, Helvetica, sans-serif'; /* Heading font */
    font-size: 30px;
    margin-bottom: 15px;
    color: #dd1a1e;
}

.about-right ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.about-right ul li {
    font-size: 19px;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.about-right ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ffffff;
}

.about-right ul li strong {
    color: #0b9025;
    font-size: 21px;
}

.about-right p {
    font-size: 17px;
    line-height: 1.5;
    color: #ffffff;
}

/* ========================= */
/* Animations Keyframes */
/* ========================= */
@keyframes slideFromLeft {
    0% { opacity: 0; transform: translateX(-50px); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes slideFromRight {
    0% { opacity: 0; transform: translateX(50px); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes slideFromBottom {
    0% { opacity: 0; transform: translateY(50px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Optional: stagger stats animation */
.stat-box:nth-child(1) { animation-delay: 0.6s; }
.stat-box:nth-child(2) { animation-delay: 0.7s; }
.stat-box:nth-child(3) { animation-delay: 0.8s; }
.stat-box:nth-child(4) { animation-delay: 0.9s; }

/* ========================= */
/* Responsive Adjustments */
/* ========================= */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        align-items: center;
    }

    .about-images {
        width: 300px;
        height: 300px;
        margin: 30px 0;
    }

    .about-images .image-box {
        width: 140px;
        height: 140px;
    }

    .about-images .image-box:nth-child(2) { left: 80px; top: 0; }
    .about-images .image-box:nth-child(3) { left: 160px; top: 80px; }
    .about-images .image-box:nth-child(4) { left: 80px; top: 160px; }
}

@media (max-width: 600px) {
    .venue-title { font-size: 36px; }
    .about-subtitle { font-size: 28px; }
    .about-left p, .about-right p { font-size: 14px; }

    .about-images {
        width: 250px;
        height: 250px;
    }

    .about-images .image-box {
        width: 120px;
        height: 120px;
        border-width: 3px;
    }

    .about-images .image-box:nth-child(1) { left: 0; top: 60px; z-index: 4; }
    .about-images .image-box:nth-child(2) { left: 65px; top: 0; z-index: 3; }
    .about-images .image-box:nth-child(3) { left: 130px; top: 60px; z-index: 2; }
    .about-images .image-box:nth-child(4) { left: 65px; top: 130px; z-index: 1; }
}

@media (max-width: 400px) {
    .about-images {
        width: 200px;
        height: 200px;
    }

    .about-images .image-box {
        width: 90px;
        height: 90px;
        border-width: 2px;
    }

    .about-images .image-box:nth-child(1) { left: 0; top: 45px; }
    .about-images .image-box:nth-child(2) { left: 55px; top: 0; }
    .about-images .image-box:nth-child(3) { left: 110px; top: 45px; }
    .about-images .image-box:nth-child(4) { left: 55px; top: 110px; }
}


