/* Main Blocks CSS File */

/* Import block-specific styles */
@import 'features.css';
@import 'touchpoints.css';
@import 'benefits.css';
@import 'about.css';
@import 'faqs.css';

/* Common styles for all blocks */
.b-section {
    position: relative;
    width: 100%;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
}

/* Utility classes */
.text-center {
    text-align: center;
}

.align-items-center {
    align-items: center;
}

/* Animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

/* Button styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: #007bff;
    color: #ffffff;
    border: 2px solid #007bff;
}

.btn-primary:hover {
    background-color: transparent;
    color: #007bff;
}

/* Reverse layout */
.row.reverse {
    flex-direction: row-reverse;
}

/* Responsive styles */
@media (max-width: 768px) {
    .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .row.reverse {
        flex-direction: column;
    }
} 