

/* ===============================
   ABOUT US SECTION - SPORTS CLUB ENHANCED VERSION
   =============================== */

/* ===== MAIN SECTION STYLING ===== */
.elementor-section.elementor-element-7581f0a {
    background-color: #202020 !important; /* Dark gray background */
    background-image: none !important;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Add dynamic background pattern for sports vibe */
.elementor-section.elementor-element-7581f0a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    background: radial-gradient(circle at 20% 50%, rgba(93, 214, 44, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(51, 116, 24, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}
.elementor-background-overlay{
    background-image: none !important;

}
/* ===== INNER SECTION CONTAINER ===== */
.elementor-element-a48331c {
    background: rgba(15, 15, 15, 0.8) !important;
    border-radius: 25px;
    padding: 50px 30px !important;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(93, 214, 44, 0.1);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(93, 214, 44, 0.1);
    position: relative;
    z-index: 2;
}

/* Add glowing edge effect */
.elementor-element-a48331c::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #5DD62C, #337418, #5DD62C);
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.elementor-element-a48331c:hover::before {
    opacity: 0.3;
    animation: pulse-glow 2s infinite;
}

/* ===== VIDEO COLUMN STYLING ===== */
.elementor-element-62378b7 {
    background: linear-gradient(135deg, #0f0f0f 0%, #202020 100%) !important;
    border-radius: 20px;
    padding: 20px !important;
    position: relative;
    overflow: hidden;
}

/* Add video frame enhancement */
.elementor-element-62378b7::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 2px solid rgba(93, 214, 44, 0.3);
    border-radius: 15px;
    pointer-events: none;
    z-index: 1;
}

/* ===== VIDEO STYLING ===== */
.elementor-element-c8c656e .elementor-video {
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.elementor-element-c8c656e .elementor-video:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(93, 214, 44, 0.2);
}

/* Add play button overlay enhancement */
.elementor-element-c8c656e .e-hosted-video::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(93, 214, 44, 0.9);
    border-radius: 50%;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

/* ===== TEXT CONTENT COLUMN ===== */
.elementor-element-9fa7277 {
    padding: 30px 20px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ===== SUB-TITLE STYLING ===== */
.elementor-element-87a3d32 .sub-title {
    color: #5DD62C !important; /* Bright green */
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

/* Add animated underline to sub-title */
.elementor-element-87a3d32 .sub-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #5DD62C, #337418);
    border-radius: 2px;
    animation: expand-line 2s ease-in-out infinite alternate;
}

/* ===== MAIN TITLE STYLING ===== */
.elementor-element-87a3d32 .sec-title {
    color: #f8f8f8 !important; /* White text */
    font-size: 48px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
}

/* Add highlight effect to main title */
.elementor-element-87a3d32 .sec-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10px;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, #5DD62C, #337418);
    border-radius: 3px;
}

/* ===== PARAGRAPH TEXT STYLING ===== */
.elementor-element-cf96825 p {
    color: #f8f8f8 !important;
    font-size: 18px !important;
    line-height: 1.8 !important;
    font-weight: 400;
    margin-bottom: 0;
    text-align: justify;
    position: relative;
    padding: 25px 0;
}

/* Add quotation marks styling */
.elementor-element-cf96825 p::before {
    content: '"';
    font-size: 60px;
    color: #5DD62C;
    position: absolute;
    top: -10px;
    left: -15px;
    font-family: serif;
    opacity: 0.7;
}

.elementor-element-cf96825 p::after {
    content: '"';
    font-size: 60px;
    color: #337418;
    position: absolute;
    bottom: -30px;
    right: -10px;
    font-family: serif;
    opacity: 0.7;
}

/* ===== ANIMATIONS ===== */
@keyframes pulse-glow {
    0% { opacity: 0.3; }
    50% { opacity: 0.6; }
    100% { opacity: 0.3; }
}

@keyframes expand-line {
    0% { width: 0; }
    100% { width: 60px; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ===== HOVER EFFECTS ===== */
.elementor-element-a48331c:hover {
    transform: translateY(-5px);
    transition: all 0.4s ease;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .elementor-section.elementor-element-7581f0a {
        padding: 80px 0;
    }
    
    .elementor-element-a48331c {
        padding: 40px 20px !important;
        border-radius: 20px;
    }
    
    .elementor-element-87a3d32 .sec-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .elementor-section.elementor-element-7581f0a {
        padding: 60px 0;
    }
    
    .elementor-element-a48331c {
        padding: 30px 15px !important;
        border-radius: 15px;
        margin: 20px;
    }
    
    .elementor-element-62378b7,
    .elementor-element-9fa7277 {
        margin-bottom: 30px !important;
        padding: 20px 10px !important;
    }
    
    .elementor-element-87a3d32 .sec-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .elementor-element-cf96825 p {
        font-size: 16px !important;
        padding: 20px 0;
    }
    
    .elementor-element-cf96825 p::before,
    .elementor-element-cf96825 p::after {
        font-size: 40px;
    }
}

/* ===== ADDITIONAL SPORTS CLUB ENHANCEMENTS ===== */

/* Add subtle animation to the entire section */
.elementor-element-a48331c.elementor-invisible {
    animation: fadeInUp 1s ease-out forwards;
}

/* Energy lines effect around video */
.elementor-element-62378b7::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 40%, rgba(93, 214, 44, 0.1) 50%, transparent 60%);
    transform: translateX(-100%);
    animation: energy-sweep 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes energy-sweep {
    0% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Strength indicator bars */
.elementor-element-9fa7277::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    width: 4px;
    height: 60%;
    background: linear-gradient(180deg, #5DD62C 0%, #337418 50%, #5DD62C 100%);
    border-radius: 2px;
    animation: strength-pulse 2s ease-in-out infinite;
}

@keyframes strength-pulse {
    0%, 100% { opacity: 0.5; height: 60%; }
    50% { opacity: 1; height: 70%; }
}

