
    /* Variables */
    :root {
        --primary-color: #4361ee;
        --primary-dark: #3a56d4;
        --secondary-color: #3f37c9;
        --accent-color: #4895ef;
        --dark-color: #2b2d42;
        --light-color: #f8f9fa;
        --gray-color: #6c757d;
        --light-gray: #e9ecef;
        --border-radius: 12px;
        --box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        --transition: all 0.3s ease;
    }

    /* Base Styles */
    .main-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
        overflow: hidden;
    }

    section {
        margin-bottom: 80px;
    }

    .section-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .section-title {
        font-size: 2.5rem;
        color: var(--dark-color);
        margin-bottom: 15px;
        font-weight: 700;
        line-height: 1.2;
    }

    .section-subtitle {
        font-size: 1.1rem;
        color: var(--gray-color);
        max-width: 700px;
        margin: 0 auto;
    }

    /* Hero Section */
    .hero-section {
        padding: 80px 0;
        position: relative;
        overflow: hidden;
    }

    .hero-container {
        display: flex;
        align-items: center;
        gap: 60px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .hero-content {
        flex: 1;
        z-index: 2;
    }

    .hero-title {
        font-size: 3rem;
        color: var(--dark-color);
        margin-bottom: 20px;
        line-height: 1.2;
        font-weight: 800;
    }

    .hero-subtitle {
        font-size: 1.3rem;
        color: var(--gray-color);
        margin-bottom: 30px;
        line-height: 1.5;
    }

    .hero-features {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        margin-bottom: 40px;
    }

    .feature-item {
        display: flex;
        align-items: center;
        gap: 10px;
        background: rgba(255,255,255,0.8);
        padding: 12px 20px;
        border-radius: 50px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        backdrop-filter: blur(5px);
    }

    .feature-icon {
        width: 20px;
        height: 20px;
        color: var(--primary-color);
    }

    .hero-actions {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
    }

    .hero-image {
        flex: 1;
        position: relative;
        z-index: 1;
    }

    .hero-image img {
        width: 100%;
        border-radius: var(--border-radius);
        box-shadow: var(--box-shadow);
        transform: perspective(1000px) rotateY(-15deg);
        transition: var(--transition);
    }

    .hero-image:hover img {
        transform: perspective(1000px) rotateY(-5deg);
    }

    .hero-badge {
        position: absolute;
        top: -20px;
        right: -20px;
        background: var(--primary-color);
        color: white;
        width: 100px;
        height: 100px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 10px 30px rgba(67, 97, 238, 0.4);
        animation: pulse 2s infinite;
    }

    .badge-content {
        text-align: center;
    }

    .badge-number {
        font-size: 2rem;
        font-weight: 700;
        display: block;
        line-height: 1;
    }

    .badge-text {
        font-size: 0.8rem;
        display: block;
    }

    /* Buttons */
    .primary-button, .secondary-button {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 15px 30px;
        border-radius: 50px;
        font-weight: 600;
        text-decoration: none;
        transition: var(--transition);
        cursor: pointer;
    }

    .primary-button {
        background: var(--primary-color);
        color: white;
        box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
    }

    .primary-button:hover {
        background: var(--primary-dark);
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(67, 97, 238, 0.4);
    }

    .secondary-button {
        background: white;
        color: var(--primary-color);
        border: 2px solid var(--primary-color);
    }

    .secondary-button:hover {
        background: var(--primary-color);
        color: white;
        transform: translateY(-3px);
    }

    .button-icon {
        width: 20px;
        height: 20px;
    }

    /* Services Section */
    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .service-card {
        background: white;
        border-radius: var(--border-radius);
        padding: 40px 30px;
        box-shadow: var(--box-shadow);
        transition: var(--transition);
        text-align: center;
    }

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    }

    .service-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 25px;
        background: rgba(67, 97, 238, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .service-icon svg {
        width: 30px;
        height: 30px;
        color: var(--primary-color);
    }

    .service-card h3 {
        font-size: 1.5rem;
        color: var(--dark-color);
        margin-bottom: 15px;
    }

    .service-card p {
        color: var(--gray-color);
        line-height: 1.6;
    }

    /* Blog Section */
    .categories-filter {
        margin-bottom: 40px;
    }

    .filter-container {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }

    .filter-item {
        padding: 10px 20px;
        border-radius: 50px;
        background: var(--light-gray);
        color: var(--gray-color);
        text-decoration: none;
        font-weight: 500;
        transition: var(--transition);
    }

    .filter-item:hover, .filter-item.active {
        background: var(--primary-color);
        color: white;
    }

    .post-count {
        font-size: 0.8em;
        opacity: 0.8;
    }

    .posts-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 30px;
        margin-bottom: 50px;
    }

    .post-card {
        background: white;
        border-radius: var(--border-radius);
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        transition: var(--transition);
    }

    .post-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--box-shadow);
    }

    .post-link {
        text-decoration: none;
        color: inherit;
    }

    .post-image {
        position: relative;
        height: 200px;
        overflow: hidden;
    }

    .post-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .post-card:hover .post-image img {
        transform: scale(1.05);
    }

    .post-category {
        position: absolute;
        top: 20px;
        left: 20px;
        background: var(--primary-color);
        color: white;
        padding: 5px 15px;
        border-radius: 50px;
        font-size: 0.8rem;
        font-weight: 500;
    }

    .post-content {
        padding: 25px;
    }

    .post-date {
        display: block;
        color: var(--gray-color);
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .post-title {
        font-size: 1.4rem;
        color: var(--dark-color);
        margin-bottom: 15px;
        line-height: 1.4;
    }

    .post-excerpt {
        color: var(--gray-color);
        margin-bottom: 20px;
        line-height: 1.6;
    }

    .post-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: var(--gray-color);
        font-size: 0.9rem;
    }

    .post-views {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .post-views svg {
        width: 16px;
        height: 16px;
    }

    .read-more {
        color: var(--primary-color);
        font-weight: 600;
    }

    /* CTA Section */
    .cta-section {
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        color: white;
        border-radius: var(--border-radius);
        padding: 60px 40px;
        text-align: center;
    }

    .cta-container {
        max-width: 800px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .cta-content h2 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .cta-content p {
        font-size: 1.2rem;
        opacity: 0.9;
        margin-bottom: 30px;
    }

    /* Pagination */
    .pagination-wrapper {
        display: flex;
        justify-content: center;
    }

    /* Animations */
    @keyframes pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.05); }
        100% { transform: scale(1); }
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .hero-container {
            flex-direction: column;
            text-align: center;
        }
        
        .hero-actions {
            justify-content: center;
        }
        
        .hero-badge {
            right: 20px;
        }
    }

    @media (max-width: 768px) {
        .section-title {
            font-size: 2rem;
        }
        
        .hero-title {
            font-size: 2.2rem;
        }
        
        .hero-subtitle {
            font-size: 1.1rem;
        }
        
        .posts-grid {
            grid-template-columns: 1fr;
        }
        
        .services-grid {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 480px) {
        .hero-title {
            font-size: 1.8rem;
        }
        
        .hero-actions {
            flex-direction: column;
            gap: 15px;
        }
        
        .primary-button, .secondary-button {
            width: 100%;
            justify-content: center;
        }
    }
	.pagination {
    display: flex;
    list-style: none;
    padding-left: 0;
    justify-content: center;
    margin-top: 20px;
    gap: 6px;
    flex-wrap: wrap;
}

.pagination li {
    display: inline-block;
}

.pagination a,
.pagination span {
    display: inline-block;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    color: #007bff;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.pagination a:hover {
    background-color: #007bff;
    color: #fff;
}

.pagination .active span {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
    cursor: default;
}

.pagination .disabled span {
    color: #6c757d;
    background-color: #f8f9fa;
    border-color: #dee2e6;
    cursor: not-allowed;
}


 