:root {
    --primary-color: #4e54c8;
    --secondary-color: #8f94fb;
    --accent-color: #ff6b6b;
    --light-color: #f8f9fa;
}

.counter-section {
    padding: 60px 0;
}

.counter-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.counter-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.counter-circle:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.counter-circle::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    z-index: -1;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    opacity: 0.7;
}

.counter-value {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 5px;
}

.counter-label {
    font-size: 18px;
    font-weight: 600;
    color: #555;
    max-width: 150px;
    padding: 0 10px;
}

.counter-icon {
    font-size: 30px;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.counter-circle-1::before {
    background: linear-gradient(45deg, #4e54c8, #8f94fb);
}

.counter-circle-2::before {
    background: linear-gradient(45deg, #4CAF50, #8BC34A);
}

.counter-circle-3::before {
    background: linear-gradient(45deg, #FF9800, #FFC107);
}

.counter-circle-4::before {
    background: linear-gradient(45deg, #9C27B0, #E91E63);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.instructions {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    margin-top: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 5px solid var(--accent-color);
}

.instructions h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.instructions ul {
    padding-left: 20px;
}

.instructions li {
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .counter-circle {
        width: 170px;
        height: 170px;
    }
    
    .counter-value {
        font-size: 36px;
    }
    
    .counter-label {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .counter-circle {
        width: 150px;
        height: 150px;
    }
    
    .counter-value {
        font-size: 32px;
    }
    
    .counter-label {
        font-size: 14px;
    }
}
/*<!-- ==================== Key Features Section ==================== -->*/

.feature-card {
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}
.feature-card h4 {
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}
.feature-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}
.feature-icon {
    height: 80px;
    width: 80px;
    line-height: 80px;
    border-radius: 50%;
    background: rgba(0,123,255,0.1);
    margin: 0 auto;
}

/*<!-- ==================== CSS for 50/50 Section ==================== -->*/

/* Content Styles */
.section-badge {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 20px;
}

.content-wrapper h2 {
    font-size: 2.2rem;
    line-height: 1.3;
}

.content-wrapper h2 span {
    position: relative;
}

.content-wrapper h2 span::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 6px;
    background: rgba(0, 123, 255, 0.2);
    z-index: -1;
}

/* Features List */
.feature-item {
    padding: 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(0, 123, 255, 0.05);
    transform: translateX(5px);
}

.feature-icon {
    font-size: 1.2rem;
    margin-top: 3px;
}

.feature-item h5 {
    color: #2c3e50;
    font-size: 1.1rem;
}

/* CTA Buttons */
.cta-buttons .btn {
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
}

.cta-buttons .btn-outline-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.1);
}

/* Stats */
.stats h3 {
    font-size: 2rem;
    font-weight: 700;
}

/* Image Wrapper */
.image-wrapper {
    padding: 20px;
}

.main-image {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 15px !important;
}

.main-image img {
    width: 100%;
    height: auto;
    transition: transform 0.6s ease;
}

.main-image:hover img {
    transform: scale(1.05);
}

/* Floating Elements */
.floating-element {
    position: absolute;
    z-index: 2;
    max-width: 200px;
    animation: float 3s ease-in-out infinite;
}

.element-1 {
    top: 30px;
    right: 30px;
    animation-delay: 0s;
}

.element-2 {
    bottom: 40px;
    left: 20px;
    animation-delay: 1.5s;
}

.icon-wrapper {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Floating Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .content-wrapper h2 {
        font-size: 1.8rem;
    }
    
    .floating-element {
        max-width: 180px;
    }
    
    .element-1 {
        top: 20px;
        right: 20px;
    }
    
    .element-2 {
        bottom: 30px;
        left: 10px;
    }
}

@media (max-width: 768px) {
    .content-wrapper {
        padding-right: 0 !important;
    }
    
    .floating-element {
        position: relative;
        margin: 10px auto;
        max-width: 100%;
        animation: none;
    }
    
    .element-1, .element-2 {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        margin: 15px 0;
    }
    
    .image-wrapper {
        padding: 0;
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .content-wrapper h2 {
        font-size: 1.5rem;
    }
    
    .feature-item h5 {
        font-size: 1rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .cta-buttons .btn.me-3 {
        margin-right: 0 !important;
    }
}

