/* Homepage Cohesive Theme - Matches Video Section */

/* Global section styling */
section {
    position: relative;
    overflow: hidden;
}

/* Alternating section backgrounds */
section:nth-child(odd) {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

section:nth-child(even) {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

/* Section with background images */
.section-with-bg {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.section-with-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.85);
    z-index: 1;
}

.section-with-bg > * {
    position: relative;
    z-index: 2;
}

/* Glass-morphism cards */
.glass-card {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
}

.glass-card:hover {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(224, 16, 53, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(224, 16, 53, 0.2);
}

/* Consistent headings */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #94a3b8;
    text-align: center;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Consistent buttons */
.btn-primary {
    background: linear-gradient(135deg, #F2062F, #E01035);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(224, 16, 53, 0.4);
    background: linear-gradient(135deg, #E01035, #C50729);
}

.btn-outline-light {
    border: 2px solid white;
    background: transparent;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: white;
    color: #E01035;
    transform: translateY(-3px);
}

/* Feature icons */
.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #F2062F, #E01035);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.feature-icon:hover {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 10px 30px rgba(224, 16, 53, 0.4);
}

/* Statistics/Counter section */
.stat-card {
    text-align: center;
    padding: 30px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #F2062F, #E01035);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1.1rem;
    color: #94a3b8;
    margin-top: 10px;
}

/* Consistent spacing */
.section-padding {
    padding: 80px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Remove any conflicting backgrounds */
.sp_banner,
.sp_card,
.sp_section {
    background: transparent !important;
}
