       
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;            
        }

        :root {
            --primary: #6C63FF;
            --primary-dark: #554fd8;
            --secondary: #FF6584;
            --dark: #2A2A3C;
            --light: #F8F8FA;
            --gray: #8A8A9E;
            --light-gray: #e8e8f0;
            --transition: all 0.3s ease;
            --shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 15px 40px rgba(108, 99, 255, 0.15);
            --radius: 12px;
        }

        .by {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.6;
            min-height: 100vh;
        }

        /* Main Content */
        .maiin-content {
            width: 100%;
            transition: var(--transition);
        }

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

        section {
            padding: 60px 0;
        }

        /* Hero Section */
        .heero {
            background: linear-gradient(135deg, var(--primary) 0%, #8A84FF 50%, #6C63FF 100%);
            color: white;
            text-align: center;
            padding: 120px 0;
            position: relative;
            overflow: hidden;
        }

        .heero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><path d="M500,100 L0,0 L1000,0 Z" fill="rgba(255,255,255,0.05)"/></svg>');
            background-size: cover;
        }

        .heero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            font-weight: 700;
            animation: fadeInDown 1s ease;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .heero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
            animation: fadeInUp 1s ease;
            opacity: 0.9;
        }

        .heero-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            margin-bottom: 20px;
            animation: fadeIn 1s ease;
            backdrop-filter: blur(10px);
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* Search Section */
        .search-section {
            background-color: white;
            border-radius: var(--radius);
            padding: 40px;
            margin-top: -60px;
            box-shadow: var(--shadow);
            position: relative;
            z-index: 2;
            border: 1px solid var(--light-gray);
        }

        .search-conttainer {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            align-items: center;
        }

        .search-bar {
            flex: 1;
            min-width: 300px;
            position: relative;
        }

        .search-bar input {
            width: 100%;
            padding: 18px 20px 18px 55px;
            border: 2px solid var(--light-gray);
            border-radius: 50px;
            font-size: 1rem;
            transition: var(--transition);
            background: var(--light);
        }

        .search-bar input:focus {
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 0 4px rgba(108, 99, 255, 0.1);
            background: white;
        }

        .search-bar i {
            position: absolute;
            left: 25px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--primary);
            font-size: 1.1rem;
        }

        .filter-btn {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 15px 25px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: var(--transition);
            font-weight: 500;
        }

        .filter-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
        }

        /* Categories Filter */
        .categories-filter {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 30px 0;
            padding: 20px;
            background: white;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }

        .category-chip {
            padding: 10px 20px;
            background: var(--light);
            border: 2px solid transparent;
            border-radius: 50px;
            cursor: pointer;
            transition: var(--transition);
            font-size: 0.9rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .category-chip:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-2px);
        }

        .category-chip.active {
            background: var(--primary);
            color: white;
            border-color: var(--primary-dark);
            box-shadow: 0 5px 15px rgba(108, 99, 255, 0.2);
        }

        .category-chip i {
            font-size: 0.9rem;
        }

        /* Section Header */
        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 2px solid var(--light-gray);
        }

        .section-title {
            font-size: 2rem;
            font-weight: 700;
            color: var(--dark);
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -22px;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--primary);
            border-radius: 2px;
        }

        /* Blogs Section */
        .bllogs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }

        .bllog-card {
            background: white;
            border-radius: var(--radius);
            overflow: hidden;
            transition: var(--transition);
            box-shadow: var(--shadow);
            animation: fadeIn 0.5s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            border: 1px solid var(--light-gray);
            text-decoration: none;
            color: inherit;
        }

        .bllog-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
            border-color: var(--primary);
        }

        .bllog-img {
            height: 220px;
            overflow: hidden;
            position: relative;
        }

        .bllog-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .bllog-card:hover .bllog-img img {
            transform: scale(1.1);
        }

        .bllog-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--primary);
            color: white;
            padding: 6px 15px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            z-index: 1;
        }

        .bllog-content {
            padding: 25px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .bllog-meta {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
            font-size: 0.85rem;
            color: var(--gray);
        }

        .bllog-meta span {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .bllog-meta i {
            color: var(--primary);
        }

        .bllog-title {
            font-size: 1.4rem;
            margin-bottom: 15px;
            font-weight: 600;
            line-height: 1.4;
            color: var(--dark);
            transition: var(--transition);
        }

        .bllog-card:hover .bllog-title {
            color: var(--primary);
        }

        .bllog-excerpt {
            color: var(--gray);
            margin-bottom: 20px;
            line-height: 1.6;
            flex: 1;
        }

        .bllog-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 15px;
            border-top: 1px solid var(--light-gray);
        }

        .bllog-author {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .author-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            overflow: hidden;
            border: 2px solid var(--light-gray);
        }

        .author-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .author-info h5 {
            font-size: 0.9rem;
            font-weight: 600;
            margin: 0;
        }

        .author-info span {
            font-size: 0.8rem;
            color: var(--gray);
        }

        .read-more {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: var(--transition);
        }

        .read-more:hover {
            color: var(--primary-dark);
            gap: 10px;
        }

        /* Newsletter Section */
        .newsletter {
            background: linear-gradient(135deg, var(--dark) 0%, #3a3a5d 100%);
            color: white;
            text-align: center;
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .newsletter::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><path d="M0,0 Q500,100 1000,0 L1000,100 L0,100 Z" fill="rgba(255,255,255,0.05)"/></svg>');
            background-size: cover;
        }

        .newsletter .conttainer {
            position: relative;
            z-index: 1;
        }

        .newsletter h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .newsletter p {
            max-width: 600px;
            margin: 0 auto 30px;
            font-size: 1.1rem;
            opacity: 0.9;
        }

        .newsletter-form {
            display: flex;
            max-width: 500px;
            margin: 0 auto;
            gap: 10px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 18px 25px;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .newsletter-form input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }

        .newsletter-form input:focus {
            outline: none;
            background: rgba(255, 255, 255, 0.15);
            border-color: var(--primary);
        }

        .newsletter-form button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 18px 40px;
            border-radius: 50px;
            cursor: pointer;
            transition: var(--transition);
            font-weight: 600;
            white-space: nowrap;
        }

        .newsletter-form button:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(108, 99, 255, 0.4);
        }

        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 50px;
        }

        .page-btn {
            padding: 12px 20px;
            border: 2px solid var(--light-gray);
            background: white;
            border-radius: 8px;
            cursor: pointer;
            transition: var(--transition);
            font-weight: 600;
        }

        .page-btn:hover {
            border-color: var(--primary);
            color: var(--primary);
        }

        .page-btn.active {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }

        /* Responsive Styles */
        @media (max-width: 1200px) {
            .bllogs-grid {
                grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .heero {
                padding: 80px 0;
            }

            .heero h1 {
                font-size: 2.2rem;
            }

            .heero p {
                font-size: 1.1rem;
            }

            .search-section {
                padding: 30px;
                margin-top: -40px;
            }

            .search-conttainer {
                flex-direction: column;
            }

            .search-bar {
                min-width: 100%;
            }

            .filter-btn {
                width: 100%;
                justify-content: center;
            }

            .bllogs-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .section-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .newsletter-form input,
            .newsletter-form button {
                width: 100%;
                border-radius: 50px;
            }
        }

        @media (max-width: 480px) {
            .heero h1 {
                font-size: 1.8rem;
            }

            .heero p {
                font-size: 1rem;
            }

            .section-title {
                font-size: 1.6rem;
            }

            .bllog-content {
                padding: 20px;
            }

            .bllog-title {
                font-size: 1.2rem;
            }

            .categories-filter {
                overflow-x: auto;
                padding: 15px;
            }

            .category-chip {
                white-space: nowrap;
            }
        }
  