/* Hero Section */

.iccaglobal .hero-section {
/*     background-image: url('../assets/images/icca-banner.png'); */
    background-size: cover;
    background-position: center;
    height: 383px;
    display: flex;
    align-items: center;
    color: #fff;
}

.iccaglobal .hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.iccaglobal .hero-text h1 {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
}
 
.iccaglobal .hero-logo-box {
    background: rgba(0,0,0,0.3);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.iccaglobal .hero-logo-box h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: 24px;
    margin-top: 15px;
}

/* About Section */
.iccaglobal .about-section {
    padding: 80px 0;
    background: #fff;
    background-image: url('../assets/images/corrupack-background.png');
    background-size: cover;
    background-position: center;
}

.iccaglobal .about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.iccaglobal .about-section .about-text-content .text-color {
    color: #C8A054;
}

.iccaglobal .section-title {
    font-size: 24px;
    font-weight: 800;
    color: #28303d;
    margin-bottom: 10px;
}

.iccaglobal .sub-title {
    font-size: 18px;
    font-weight: 700;
    color: #28303d;
    margin-bottom: 20px;
}

.iccaglobal .event-details {
    margin: 30px 0;
}

.iccaglobal .detail-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.iccaglobal .icon-gold {
    color: #c8a054;
}

.iccaglobal .btn-primary {
    display: inline-block;
    background: #c8a054;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: background 0.3s;
}

.iccaglobal .btn-primary:hover {
    background: #b08d4a;
}

/* Stats Section */
.iccaglobal .stats-section {
    background: #c8a054;
    padding: 60px 0;
    color: #fff;
    text-align: center;
}

.iccaglobal .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.iccaglobal .stat-icon {font-size: 40px;margin-bottom: 15px;display: flex;flex-direction: column;justify-content: center;align-items: center;}

.iccaglobal .stat-card h3 {
    font-size: 28px;
    font-weight: 800;
}

.iccaglobal .stat-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 10px 0;
}

.iccaglobal .stat-card p {
    font-size: 14px;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 1024px) {
   
}

@media (max-width: 640px) {
   .iccaglobal  .stats-grid, .platforms-grid, .categories-grid, .footer-grid {
        grid-template-columns: 1fr;
    }

   .iccaglobal  .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .iccaglobal .hero-logo-box {
        margin-top: 30px;
    }

    .iccaglobal .info-row {
        flex-direction: column;
    }

    .iccaglobal .info-label {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #eee;
    }
}