   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
        
            line-height: 1.6;
            color: #333;
            background: #f8f9fa;
        }
 
 .hero-slider {
            position: relative;
            width: 100%;
            height: 600px;
            overflow: hidden;
            background: #000;
        }

        .slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .slide.active {
            opacity: 1;
        }

        .slide-bg {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.5);
        }

        .slide-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: white;
            width: 90%;
            max-width: 800px;
            z-index: 2;
        }

        .slide-content h1 {
            font-size: 3.5em;
            font-weight: 800;
            margin-bottom: 20px;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
            animation: slideInDown 0.8s ease;
        }

        .slide-content p {
            font-size: 1.3em;
            margin-bottom: 30px;
            text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
            animation: slideInUp 0.8s ease;
        }

        .slide-btn {
            display: inline-block;
            padding: 15px 40px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: transform 0.3s ease;
            animation: fadeIn 1s ease;
        }

        .slide-btn:hover {
            transform: scale(1.05);
        }

        .slider-control {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.3);
            color: white;
            border: none;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 24px;
            transition: all 0.3s ease;
            z-index: 10;
            backdrop-filter: blur(10px);
        }

        .slider-control:hover {
            background: rgba(255,255,255,0.5);
            transform: translateY(-50%) scale(1.1);
        }

        .slider-control.prev { left: 30px; }
        .slider-control.next { right: 30px; }

        .slider-dots {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            z-index: 10;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: white;
            width: 40px;
            border-radius: 6px;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 60px 20px;
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 40px;
        }

        .main-content {
            width: 100%;
        }

        .section-title {
            font-size: 2.5em;
            font-weight: 800;
            margin-bottom: 40px;
            color: #1a1a1a;
            position: relative;
            padding-bottom: 15px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .posts-grid {
            display: grid;
            gap: 30px;
        }

        .post-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            display: grid;
            grid-template-columns: 350px 1fr;
        }

        .post-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .post-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            min-height: 280px;
        }

        .post-content {
            padding: 30px;
        }

        .post-meta {
            display: flex;
            gap: 20px;
            margin-bottom: 15px;
            flex-wrap: wrap;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #666;
            font-size: 0.9em;
        }

        .meta-item i {
            color: #667eea;
        }

        .post-title {
            font-size: 1.8em;
            font-weight: 700;
            margin-bottom: 15px;
            color: #1a1a1a;
            line-height: 1.3;
        }

        .post-title a {
            color: inherit;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .post-title a:hover {
            color: #667eea;
        }

        .post-excerpt {
            color: #555;
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .read-more-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: #667eea;
            font-weight: 600;
            text-decoration: none;
            transition: gap 0.3s ease;
        }

        .read-more-btn:hover {
            gap: 15px;
        }

        .sidebar {
            position: sticky;
            top: 20px;
            height: fit-content;
        }
        .article-content {
  max-width: 1400px;
  margin: 0px auto;
  padding: 0 20px 10px;
  display: grid;
  grid-template-columns: 1fr 350px;  /* Left = post, Right = sidebar */
  gap: 40px;
  align-items: start;
}


        .widget {
            background: white;
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }

        .widget-title {
            font-size: 1.5em;
            font-weight: 700;
            margin-bottom: 20px;
            color: #1a1a1a;
        }

        .search-form {
    display: flex;
    gap: 10px;
}

.search-input {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #667eea;
}

.search-btn {
    padding: 12px 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.search-btn:hover {
    transform: scale(1.05);
}

        .category-list {
            list-style: none;
        }

        .category-item {
            padding: 12px 0;
            border-bottom: 1px solid #f0f0f0;
        }

        .category-item:last-child {
            border-bottom: none;
        }

        .category-item a {
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #333;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .category-item a:hover {
            color: #667eea;
        }

        .category-count {
            background: #f0f0f0;
            padding: 3px 10px;
            border-radius: 15px;
            font-size: 0.85em;
        }

        .recent-post {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #f0f0f0;
        }

        .recent-post:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }

        .recent-post-image {
            width: 80px;
            height: 80px;
            border-radius: 10px;
            object-fit: cover;
        }

        .recent-post-content h4 {
            font-size: 1em;
            margin-bottom: 8px;
            line-height: 1.4;
        }

        .recent-post-content h4 a {
            color: #333;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .recent-post-content h4 a:hover {
            color: #667eea;
        }

        .recent-post-date {
            font-size: 0.85em;
            color: #999;
        }

        .tags-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .tag {
            display: inline-block;
            padding: 8px 16px;
            background: #f8f9fa;
            color: #666;
            border-radius: 20px;
            font-size: 0.9em;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .tag:hover {
            background: #667eea;
            color: white;
        }
 

        .newsletters-form input {
            width: 100%;
            padding: 12px 20px;
            border: 2px solid #e0e0e0;
            border-radius: 25px;
            margin-bottom: 15px;
            font-size: 1em;
        }

        .newsletter-form input:focus {
            outline: none;
            border-color: #667eea;
        }

        .newsletters-btn{
            width: 100%;
            padding: 12px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .newsletter-btn:hover {
            transform: translateY(-2px);
        }

        @keyframes slideInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideLeft {
            from {
                opacity: 0;
                transform: translateX(-100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideRight {
            from {
                opacity: 0;
                transform: translateX(100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(60px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes zoomIn {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes flipIn {
            from {
                opacity: 0;
                transform: perspective(1000px) rotateY(-90deg);
            }
            to {
                opacity: 1;
                transform: perspective(1000px) rotateY(0);
            }
        }

        .animate-slide-left,
        .animate-slide-right,
        .animate-fade-up,
        .animate-zoom-in,
        .animate-flip-in {
            opacity: 0;
        }

        .animate-slide-left.in-view {
            animation: slideLeft 0.8s ease forwards;
        }

        .animate-slide-right.in-view {
            animation: slideRight 0.8s ease forwards;
        }

        .animate-fade-up.in-view {
            animation: fadeUp 0.8s ease forwards;
        }

        .animate-zoom-in.in-view {
            animation: zoomIn 0.8s ease forwards;
        }

        .animate-flip-in.in-view {
            animation: flipIn 0.8s ease forwards;
        }

        @media (max-width: 1200px) {
            .container {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: relative;
                top: 0;
            }
        }

        @media (max-width: 768px) {
            .hero-slider {
                height: 400px;
            }
            .slide-content h1 {
                font-size: 2em;
            }
            .slide-content p {
                font-size: 1em;
            }
            .slider-control {
                width: 45px;
                height: 45px;
                font-size: 18px;
            }
            .slider-control.prev {
                left: 15px;
            }
            .slider-control.next {
                right: 15px;
            }
            .post-card {
                grid-template-columns: 1fr;
            }
            .post-image {
                min-height: 250px;
            }
            .section-title {
                font-size: 2em;
            }
        }


        
        