
/*not used here, experimented only
.project-bg {
    padding: 96px 0;
    clip-path: polygon(0 8%, 100% 0%, 100% 93%, 0% 100%);
}


.hero1-bg {
    background-image: url('../assets/bg1.svg');
    background-repeat: no-repeat;
    background-size: cover;
}

.info-bg{
    background-image: url('../assets/info.svg');
    background-repeat: no-repeat;
    background-size: cover;
}

.footer-bg {
    background-image: url('../assets/footer-bg.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

 */
 
 *{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
 }


.bg{
  
    background-color: #2D3748;
}


#particles-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Place it behind your other content */
  }

.section-divider {
    height: 1px;
    width: 100%;
    margin: 28px 0;
    background: rgba(255, 255, 255, 0.12);
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 10px 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
    text-decoration: none;
}

.btn-primary {
    background-color: #16a34a;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #22c55e;
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: #111827;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn-secondary:hover {
    background-color: #1f2937;
    transform: translateY(-1px);
}

.info-card {
    background-color: #f3f4f6;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.event-card {
    background-color: #f3f4f6;
    margin: 0 16px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}