
/* ===============================
   MEMBER EVENTS SECTION - ENHANCED VERSION
   =============================== */

/* Main Section Background */
.elementor-section.elementor-element-dfe47db {
    background-color: #0f0f0f !important;
    background-image: none !important;
    padding: 80px 0;
    position: relative;
}

.elementor-element-69de190 .elementor-inner-column .elementor-widget-container{
border-style: none  !important;
}
/* Content Container */
.elementor-element-8d4e15b {
    background: rgba(32, 32, 32, 0.6) !important;
    border-radius: 20px;
    padding: 40px 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(93, 214, 44, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Sub-title Enhancement */
.elementor-element-6bc9e93 .sub-title {
    color: #5DD62C;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    position: relative;  
    display: inline-block;
}

.elementor-element-6bc9e93 .sub-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #5DD62C, #337418);
}

/* Main Title Enhancement */
.elementor-element-6bc9e93 .sec-title {
    color: #f8f8f8;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Paragraph Text Enhancement */
.elementor-element-21f12c5 p,
.elementor-element-128f16a p {
    color: #f8f8f8;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.9;
}

/* Icon Boxes Section */
.elementor-element-69de190 {
    margin-top: 60px !important;
}

/* Individual Icon Box */
.elementor-icon-box-wrapper {
    background: rgba(32, 32, 32, 0.8);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(93, 214, 44, 0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.elementor-icon-box-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(93, 214, 44, 0.1), transparent);
    transition: left 0.5s ease;
}

.elementor-icon-box-wrapper:hover::before {
    left: 100%;
}

.elementor-icon-box-wrapper:hover {
    background: rgba(93, 214, 44, 0.05);
    border-color: #5DD62C;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(93, 214, 44, 0.2);
}

/* Icon Enhancement */
.elementor-icon-box-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.elementor-icon-box-icon a.elementor-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    font-size: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #337418, #5DD62C);
    color: #f8f8f8;
    transition: all 0.4s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.elementor-icon-box-icon a.elementor-icon i {
    line-height: 1;
    vertical-align: middle;
}

.elementor-icon-box-icon a.elementor-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.elementor-icon-box-wrapper:hover .elementor-icon-box-icon a.elementor-icon::before {
    width: 100%;
    height: 100%;
}

.elementor-icon-box-wrapper:hover .elementor-icon-box-icon a.elementor-icon {
    background: linear-gradient(135deg, #5DD62C, #337418);
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 10px 30px rgba(93, 214, 44, 0.4);
}

/* Title Enhancement */
.elementor-icon-box-title {
    margin-top: 20px;
}

.elementor-icon-box-title a {
    color: #f8f8f8;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.elementor-icon-box-title a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #5DD62C;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.elementor-icon-box-wrapper:hover .elementor-icon-box-title a {
    color: #5DD62C;
}

.elementor-icon-box-wrapper:hover .elementor-icon-box-title a::after {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .elementor-section.elementor-element-dfe47db {
        padding: 60px 0;
    }
    
    .elementor-element-8d4e15b {
        padding: 30px 15px;
        border-radius: 15px;
    }
    
    .elementor-element-6bc9e93 .sec-title {
        font-size: 28px;
    }
    
    .elementor-icon-box-wrapper {
        padding: 25px 15px;
        margin-bottom: 20px;
    }
    
    .elementor-icon-box-icon a.elementor-icon {
        width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 24px;
    }
}

/* Animation Classes */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.elementor-element-8d4e15b.animated {
    animation: slideInUp 0.8s ease-out;
}

.elementor-element-69de190.animated {
    animation: slideInUp 0.8s ease-out 0.2s both;
}


/* Hide the "How to Add a Sub Member / How to Register" section */
.elementor-section.elementor-element-c7e26cb {
    display: none !important;
}