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

        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            line-height: 1.6;
            color: #333;
            background:  linear-gradient(135deg, #f0f9ff 0%, #dbeafe 100%)!important;
            min-height: 100vh;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

       .blog-header{
        position: relative;
        background-image: url('../../img/blogs/blog.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        color: white;
        overflow: hidden;
    }

    .blog-header.overlay {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background: rgba(0, 0, 0, 0.45); /* Adjust opacity as needed */
        z-index: 1;
    }
    .blog-header h1,
    .blog-header p {
        position: relative;
        z-index: 2;
        animation: fadeInDown 1s ease-in-out;
    }

    .blog-header h1 {
        font-size: 5rem;
        margin-bottom: 0.5rem;
        font-weight: 600;
        text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    }

    .blog-header p {
        font-size: 1.3em;
        font-weight: 400;
        text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    }


 /* Brighten the text and keep it above the overlay */
        .hero {
        position: relative;
        z-index: 2;
        font-size: 1rem;
        font-weight: bold;
        color: #ffffff;
        text-shadow: 0 2px 8px rgba(0,0,0,0.9)
        
        }
        /* Overview Page Styles */
        .overview-page {
            display: block;
        }

       .blog-overview {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-bottom: 40px;
        }

        .blog-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            cursor: pointer;
            animation: slideInUp 0.8s ease-out;
        }

        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(0,0,0,0.15);
        }

        .card-image {
            width: 100%;
            height: 200px;
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
        }


        .card-image.design-thinking {
            background-image: url('../../img/blogs/blog1.jpg');     
          }

        .card-image.startup {
            background-image: url('../../img/blogs/blog2.jpg');     
          }

        .card-image.transformation {
            background-image: url('../../img/blogs/Blog3.jpg');
               }
        .card-image.StrategicTechnology {
            background-image: url('../../img/blogs/blog4.jpg');  
             }

        .card-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            color: white;
            padding: 20px;
            text-align: center;
        }

        .card-overlay h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        .card-content {
            padding: 30px;
        }

        .card-content h2 {
            color: #2c3e50;
            font-size: 1.8rem;
            margin-bottom: 15px;
        }

        .card-content p {
            color: #666;
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .read-more {
            display: inline-block;
          background: linear-gradient(135deg, #3b82f6 0%, #0ea5e9 100%);
            color: white;
            padding: 12px 25px;
            text-decoration: none;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .read-more:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
        }

        /* Detail Page Styles */
        .detail-page {
            display: none;
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            margin-bottom: 40px;
        }

        .detail-header {
            position: relative;
            height: 300px;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
        }

        .detail-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.8));
        }

        .detail-header-content {
            position: relative;
            z-index: 1;
        }

        .detail-header h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .detail-header p {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 600px;
        }

        .detail-content {
            padding: 40px;
            max-height: 70vh;
            overflow-y: auto;
        }

        .back-button {
            position: fixed;
            top: 20px;
            left: 20px;
            background: rgba(255, 255, 255, 0.9);
            color: #333;
            padding: 10px 20px;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }

        .back-button:hover {
            background: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .section {
            margin-bottom: 30px;
        }

        .section h2 {
            color: #2c3e50;
            font-size: 2rem;
            margin-bottom: 20px;
            border-left: 4px solid #667eea;
            padding-left: 20px;
        }

        .section h3 {
            color: #2c3e50;
            font-size: 1.4rem;
            margin-bottom: 15px;
            margin-top: 25px;
        }

        .section p {
            margin-bottom: 15px;
            color: #555;
            line-height: 1.8;
        }

        .highlight-box {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 25px;
            border-radius: 15px;
            margin: 20px 0;
            position: relative;
            overflow: hidden;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 25px 0;
        }

        .stat-item {
            text-align: center;
            padding: 20px;
            background: rgba(102, 126, 234, 0.1);
            border-radius: 10px;
            border: 2px solid rgba(102, 126, 234, 0.2);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #667eea;
            display: block;
        }

        .stat-label {
            font-size: 0.9rem;
            color: #555;
            margin-top: 5px;
        }

        .key-points {
            background: #f8f9fa;
            border-radius: 15px;
            padding: 25px;
            margin: 20px 0;
            border-left: 5px solid #667eea;
        }

        .key-points h4 {
            color: #2c3e50;
            margin-bottom: 15px;
            font-size: 1.2rem;
        }

        .key-points ul {
            list-style: none;
            padding: 0;
        }

        .key-points li {
            padding: 8px 0;
            padding-left: 25px;
            position: relative;
            color: #555;
        }

        .key-points li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #667eea;
            font-weight: bold;
        }

        .image-placeholder {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999;
            font-size: 1rem;
            margin: 20px 0;
            border: 2px dashed #ddd;
        }

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

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

        @media (max-width: 768px) {
            .header h1 {
                font-size: 2.5rem;
            }
            
            .header p {
                font-size: 1.1rem;
            }
            
           .blog-overview {
        grid-template-columns: 1fr;
    }
            
            .detail-header h1 {
                font-size: 2rem;
            }
            
            .detail-content {
                padding: 20px;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }