@import url('https://fonts.googleapis.com/css2?family=Merriweather+Sans:ital,wght@0,300..800;1,300..800&display=swap');
:root {
            --primary-bg: #ffffff;
            --secondary-bg: #f8fafc;
            --accent-color: #0f172a;
            --light-accent: #64748b;
            --border-color: #e2e8f0;
            --highlight-color: #f1f5f9;
            --hover-color: #f8fafc;
            --blue-accent: #3b82f6;
            --purple-accent: #8b5cf6;
            --green-accent: #10b981;
            --red-accent: #ef4444;
            --ai-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --hero-gradient: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #ec4899 100%);
            --tech-blue: #1e40af;
            --tech-purple: #7c3aed;
            --tech-pink: #ec4899;
        }

        .dark-mode {
            --primary-bg: #0f172a;
            --secondary-bg: #1e293b;
            --accent-color: #f8fafc;
            --light-accent: #94a3b8;
            --border-color: #334155;
            --highlight-color: #1e293b;
            --hover-color: #1e293b;
        }

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

        body {
	    font-family: "Merriweather Sans", sans-serif;
            background-color: var(--primary-bg);
            color: var(--accent-color);
            line-height: 1.6;
            transition: all 0.3s ease;
        }
	p{
	    font-size: 16px;
	}

        a {
            text-decoration: none;
            color: inherit;
        }

        /* Header Styles */
        .navbar {
            background-color: var(--primary-bg);
            border-bottom: 1px solid var(--border-color);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: var(--ai-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
	    margin-right: 50px;
        }

        .nav-link {
            color: var(--light-accent) !important;
            font-weight: 500;
            transition: color 0.2s;
            margin: 0 0.5rem;
        }

        .nav-link:hover, .nav-link.active {
            color: var(--blue-accent) !important;
        }

        .ai-copilot-btn {
            background: var(--ai-gradient);
            border: none;
            color: white;
            padding: 0.5rem 1.2rem;
            border-radius: 50px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        .ai-copilot-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);
            padding: 5rem 0;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: "";
            position: absolute;
            top: -50%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0) 70%);
            border-radius: 50%;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }

        .hero-title span {
            background: var(--hero-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }


        .hero-actions {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .btn-primary-custom {
            background: var(--hero-gradient);
            border: none;
            color: white;
            padding: 0.8rem 1.8rem;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-primary-custom:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(99, 102, 241, 0.4);
        }

        .btn-outline-custom {
            background: transparent;
            border: 2px solid var(--tech-blue);
            color: var(--tech-blue);
            padding: 0.8rem 1.8rem;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-outline-custom:hover {
            background: var(--tech-blue);
            color: white;
            transform: translateY(-2px);
        }

        .hero-stats {
            display: flex;
            gap: 2rem;
        }

        .stat-item {
            display: flex;
            flex-direction: column;
        }

        .stat-value {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--tech-blue);
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--light-accent);
        }

        /* Hero Thumbnail */
        .hero-thumbnail {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            background: linear-gradient(135deg, #1e40af 0%, #7c3aed 50%, #ec4899 100%);
            display: flex;
            align-items: center;
            justify-content: center;
        }


        .thumbnail-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .thumbnail-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        .thumbnail-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }

        .shape {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
        }

        .shape-1 {
            width: 120px;
            height: 120px;
            top: -30px;
            right: 50px;
        }

        .shape-2 {
            width: 80px;
            height: 80px;
            bottom: 40px;
            left: 40px;
        }

        .shape-3 {
            width: 60px;
            height: 60px;
            top: 50%;
            right: 30%;
        }

        /* AI Features Section */
        .ai-features-section {
            padding: 5rem 0;
            background-color: var(--secondary-bg);
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-align: center;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--light-accent);
            text-align: center;
            max-width: 700px;
            margin: 0 auto 2rem;
        }

        .ai-feature-card {
            background: var(--primary-bg);
            border-radius: 12px;
            padding: 2rem;
            height: 100%;
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .ai-feature-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: var(--ai-gradient);
        }

        .ai-feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
            background: var(--ai-gradient);
            color: white;
        }

        .feature-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .feature-description {
            color: var(--light-accent);
            margin-bottom: 1.5rem;
        }

        .feature-link {
            color: var(--blue-accent);
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        /* Trending Topics */
        .trending-section {
            padding: 5rem 0;
        }

        .topic-card {
            background: var(--primary-bg);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
            height: 100%;
        }

        .topic-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
        }

        .topic-image {
            background-color: var(--secondary-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--light-accent);
            font-size: 2.5rem;
        }

        .topic-content {
            padding: 1rem;
        }

        .topic-tag {
            display: inline-block;
            padding: 0.3rem 0.8rem;
            background: var(--ai-gradient);
            color: white;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .topic-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 0.8rem;
            line-height: 1.4;
        }

        .topic-meta {
            display: flex;
            justify-content: space-between;
            color: var(--light-accent);
            font-size: 0.85rem;
        }

        /* AI Copilot Demo */
        .ai-copilot-section {
            padding: 5rem 0;
            background-color: var(--secondary-bg);
        }

        .copilot-container {
            background: var(--primary-bg);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-color);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .copilot-header {
            padding: 1.5rem;
            border-bottom: 1px solid var(--border-color);
            display: flex;
            align-items: center;
            gap: 10px;
            background: var(--ai-gradient);
            color: white;
        }

        .copilot-body {
            padding: 2rem;
            min-height: 300px;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .user-query {
            background: var(--highlight-color);
            padding: 1rem 1.5rem;
            border-radius: 12px;
            max-width: 80%;
            align-self: flex-end;
        }

        .ai-response {
            background: var(--secondary-bg);
            padding: 1rem 1.5rem;
            border-radius: 12px;
            max-width: 80%;
            position: relative;
        }

        .ai-response::before {
            content: "AI";
            position: absolute;
            top: -10px;
            left: 15px;
            background: var(--ai-gradient);
            color: white;
            font-size: 0.7rem;
            padding: 2px 8px;
            border-radius: 4px;
        }

        .copilot-input {
            display: flex;
            gap: 10px;
            padding: 1.5rem;
            border-top: 1px solid var(--border-color);
        }

        .copilot-input input {
            flex: 1;
            padding: 0.8rem 1rem;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            background: var(--primary-bg);
            color: var(--accent-color);
        }

        .copilot-input button {
            background: var(--ai-gradient);
            border: none;
            color: white;
            padding: 0.8rem 1.5rem;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .copilot-input button:hover {
            transform: translateY(-2px);
        }

        /* Blog List with Sidebar */
        .blog-section {
            padding: 5rem 0;
        }

        .blog-post-card {
            background: var(--primary-bg);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
            margin-bottom: 2rem;
        }

        .blog-post-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
        }

        .blog-post-image {
            background-color: var(--secondary-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--light-accent);
            font-size: 3rem;
        }

        .blog-post-content {
            padding: 1rem;
        }

        .blog-post-tag {
            display: inline-block;
            padding: 0.3rem 0.8rem;
            background: var(--highlight-color);
            color: var(--light-accent);
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .blog-post-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 1rem;
            line-height: 1.4;
   	    display: -webkit-box;
 	   -webkit-box-orient: vertical;
	    overflow: hidden;
	    text-overflow: ellipsis;
	    -webkit-line-clamp: 1;
	    line-height: 1.5em;
	    max-height: calc(1.7em * 1);
        }

        .blog-post-excerpt {
            color: var(--light-accent);
            margin-bottom: 1.5rem;
	    font-weight: 300;
            font-size: 16px;
	    display: -webkit-box;
	    -webkit-box-orient: vertical;
	    overflow: hidden;
	    text-overflow: ellipsis;
	    -webkit-line-clamp: 5;
	    line-height: 1.7em;
	    max-height: calc(1.7em * 5);
        }

        .blog-post-meta {
            display: flex;
            justify-content: space-between;
            color: var(--light-accent);
            font-size: 0.85rem;
        }

.table-of-contents ul{
	padding-left: 10px;
}
.table-of-contents ul li{
	font-weight: 400;
}
.table-of-contents ul ul{
	padding-left: 20px;
}
.table-of-contents ul ul li{
	font-weight: 300;
	line-height: 32px;
}
.article-content img{
	width : 100% !important;
	height: 100% !important;
}


        /* Sidebar */
        .sidebar {
            padding-left: 1rem;
        }

        .sidebar-widget {
            background: var(--primary-bg);
            border-radius: 12px;
            padding: 1.2rem;
            border: 1px solid var(--border-color);
            margin-bottom: 2rem;
        }

        .widget-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 1.2rem;
            padding-bottom: 0.8rem;
            border-bottom: 1px solid var(--border-color);
        }

        .popular-posts {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .popular-post {
            display: flex;
            gap: 1rem;
            padding: 0.8rem 0;
            border-bottom: 1px solid var(--border-color);
        }

        .popular-post:last-child {
            border-bottom: none;
        }

        .popular-post-image {
            width: 50px;
            height: 50px;
            border-radius: 8px;
            background-color: var(--secondary-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--light-accent);
            font-size: 1.2rem;
        }

        .popular-post-content {
            flex: 1;
        }

        .popular-post-title {
            font-size: 0.95rem;
            font-weight: 600;
            margin-bottom: 0.3rem;
            line-height: 1.3;
        }

        .popular-post-meta {
            font-size: 0.75rem;
            color: var(--light-accent);
        }

        .newsletter-widget {
            background: var(--ai-gradient);
            color: white;
            border-radius: 12px;
            padding: 1.5rem;
            text-align: center;
        }

        .newsletter-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .newsletter-description {
            margin-bottom: 1.5rem;
            opacity: 0.9;
        }

        .newsletter-input {
            width: 100%;
            padding: 0.8rem 1rem;
            border: none;
            border-radius: 8px;
            margin-bottom: 1rem;
            background: rgba(255, 255, 255, 0.9);
        }

        .newsletter-btn {
            width: 100%;
            background: white;
            color: var(--blue-accent);
            border: none;
            padding: 0.8rem;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .newsletter-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        /* Footer */
        .footer {
            background: var(--secondary-bg);
            padding: 2rem 0 2rem;
            border-top: 1px solid var(--border-color);
        }

        .footer-logo {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 1rem;
            background: var(--ai-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .footer-description {
            color: var(--light-accent);
            margin-bottom: 1.5rem;
            max-width: 300px;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
	    margin-top: 20px;
        }

        .footer-link {
            color: var(--light-accent);
            transition: color 0.2s;
	    font-size: 15px;
	    font-weight: 300;
        }

        .footer-link:hover {
            color: var(--blue-accent);
        }

        .footer-bottom {
            margin-top: 0rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border-color);
            text-align: center;
            color: var(--light-accent);
        }
	.footer-bottom p{
	    margin-bottom:0px;
	}


        /* Theme Toggle */
        .theme-toggle {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--ai-gradient);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            z-index: 100;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .sidebar {
                margin-top: 3rem;
            }
            
            .hero-actions {
                flex-direction: column;
            }
            
            .hero-thumbnail {
                margin-top: 2rem;
            }
        }

/**Hero Section**/
/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0) 70%);
    border-radius: 50%;
}

.hero-thumbnail-large {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    height: 500px;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--border-color);
}

.hero-thumbnail-large:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateY(-10px);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.2);
}

.hero-thumbnail-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-thumbnail-large:hover img {
    transform: scale(1.05);
}

.hero-thumbnail-large::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(59, 130, 246, 0.1) 0%,
        rgba(139, 92, 246, 0.1) 50%,
        rgba(236, 72, 153, 0.1) 100%
    );
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero-thumbnail-large:hover::before {
    opacity: 1;
}

.hero-thumbnail-large::after {
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    z-index: 2;
    opacity: 0;
    transition: all 0.5s ease;
    transform: scale(0.95);
}

.hero-thumbnail-large:hover::after {
    opacity: 1;
    transform: scale(1);
}

/* Hero Thumbnail (Right Side) */

.hero-thumbnail:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease-in-out;
}

.thumbnail-content {
    position: relative;
    z-index: 2;
    text-align: left;
    color: white;
    padding: 2.5rem;
    width: 100%;
}

.thumbnail-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.thumbnail-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}


.thumbnail-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.85rem;
    opacity: 0.8;
    flex-wrap: wrap;
}

.thumbnail-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 120px;
    height: 120px;
    top: -30px;
    right: 50px;
    animation-delay: 0s;
}

.shape-2 {
    width: 80px;
    height: 80px;
    bottom: 40px;
    left: 40px;
    animation-delay: 2s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    top: 50%;
    right: 30%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Floating Elements */
.floating-element {
    position: absolute;
    background: var(--ai-gradient);
    border-radius: 10px;
    padding: 1rem;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 3;
    animation: float-element 8s ease-in-out infinite;
}

.floating-element-1 {
    top: 20%;
    left: 5%;
    animation-delay: 0s;
}

.floating-element-2 {
    bottom: 30%;
    right: 10%;
    animation-delay: 3s;
}

.floating-element-3 {
    top: 60%;
    left: 15%;
    animation-delay: 6s;
}

@keyframes float-element {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-15px) rotate(5deg);
    }
    66% {
        transform: translateY(10px) rotate(-5deg);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-thumbnail-large {
        height: 400px;
        transform: none;
        margin-bottom: 2rem;
    }
    
    .hero-thumbnail {
        margin-left: 0;
    }
    
    .hero-thumbnail-large:hover {
        transform: translateY(-10px);
    }
    
    .thumbnail-title {
        font-size: 1.5rem;
    }
    
    .floating-element {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 0;
    }
    
    .hero-thumbnail-large {
        height: 300px;
    }
        
    .thumbnail-content {
        padding: 1.5rem;
    }
    
    .thumbnail-title {
        font-size: 1.3rem;
    }
    
    .thumbnail-description {
        font-size: 0.9rem;
    }
    
    .thumbnail-meta {
        gap: 1rem;
        font-size: 0.8rem;
    }
}

/* Glass Morphism Effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Gradient Text */
.gradient-text {
    background: var(--hero-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Pulse Animation */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(59, 130, 246, 0.6);
    }
}

.pulse-glow {
    animation: pulse-glow 2s ease-in-out infinite;
}
/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);
    padding: 4rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0) 70%);
    border-radius: 50%;
}

.hero-thumbnail-large {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    height: 450px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--border-color);
}

.hero-thumbnail-large:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.hero-thumbnail-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-thumbnail-large:hover img {
    transform: scale(1.05);
}

.hero-thumbnail-large::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(59, 130, 246, 0.1) 0%,
        rgba(139, 92, 246, 0.1) 50%,
        rgba(236, 72, 153, 0.1) 100%
    );
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero-thumbnail-large:hover::before {
    opacity: 1;
}

/* Hero Thumbnail (Right Side) */
.hero-thumbnail:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.thumbnail-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.thumbnail-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.thumbnail-description {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-weight: 300;
}

.thumbnail-meta {
    display: flex;
    gap: 1.2rem;
    font-size: 0.8rem;
    opacity: 0.8;
    flex-wrap: wrap;
}

.thumbnail-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: -20px;
    right: 40px;
    animation-delay: 0s;
}

.shape-2 {
    width: 60px;
    height: 60px;
    bottom: 30px;
    left: 30px;
    animation-delay: 2s;
}

.shape-3 {
    width: 40px;
    height: 40px;
    top: 50%;
    right: 25%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(180deg);
    }
}

/* Hero Content */
.hero-content {
    padding-right: 2rem;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: var(--hero-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--light-accent);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary-custom {
    background: var(--hero-gradient);
    border: none;
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
    color: white;
}

.btn-outline-custom {
    background: transparent;
    border: 2px solid var(--tech-blue);
    color: var(--tech-blue);
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-outline-custom:hover {
    background: var(--tech-blue);
    color: white;
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--tech-blue);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--light-accent);
}

/* Make all cards clickable */
.topic-card,
.blog-post-card,
.ai-feature-card,
.popular-post {
    cursor: pointer;
    transition: all 0.3s ease;
}

.topic-card:hover,
.blog-post-card:hover,
.ai-feature-card:hover,
.popular-post:hover {
    transform: translateY(-5px);
}

/* Add links to topic tags and badges */
.topic-tag,
.blog-post-tag,
.thumbnail-badge {
    cursor: pointer;
    transition: all 0.2s ease;
}

.topic-tag:hover,
.blog-post-tag:hover,
.thumbnail-badge:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-thumbnail-large {
        height: 350px;
        margin-bottom: 2rem;
    }
        
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.3;
    }
    
    .hero-content {
        padding-right: 0;
        text-align: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 0 1rem;
    }
    .section-subtitle {
        font-size: 0.9rem;
        color: var(--light-accent);
        text-align: center;
        max-width: 700px;
        margin: 0 auto 1rem;
}
.section-title {
    font-size: 1.5rem;
}
.ai-features-section {
    padding: 2rem 0;
}
.trending-section {
    padding: 2rem 0;
}
.ai-copilot-section {
    padding: 2rem 0;
    background-color: var(--secondary-bg);
}
.blog-section {
    padding: 2rem 0;
}
.blog-post-excerpt {
    font-size: 14px;
}
.blog-post-title {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}
.blog-post-card{
    margin-bottom: 1rem;
}
.blog-post-image img {
    height: auto !important;
}
    
    .hero-thumbnail-large {
        height: 280px;
    }
                
    .thumbnail-content {
        padding: 1.5rem;
    }
    
    .thumbnail-title {
        font-size: 1.3rem;
    }
    
    .thumbnail-description {
        font-size: 0.9rem;
    }
    
    .thumbnail-meta {
        gap: 1rem;
        font-size: 0.75rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-custom,
    .btn-outline-custom {
        width: 100%;
        justify-content: center;
    }
}

.topic-image img{
	width: 100%;
	height: 250px;
}
.blog-post-image img {
    width: 100%;
    height: 300px;
}
img.header-logo {
    height: 50px;
    width: auto;
}

.sticky_side{
    position: sticky;
    top: 100px;
}
#postContent h2, h3, h4 {
  scroll-margin-top: 90px;
}

.load-more-container{
	display: table;
	margin: 0 auto;
}
#loadItems {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--ai-gradient);
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}
.newsletter-widget{
    margin-bottom: 30px;
}

/* search bar section css start here */
.search-container {
    position: relative;
    display: inline-block;
}
.search-boxx {
    display: none;
    margin-top: 10px;
    position: absolute;
    top: 70px;
    transform: translateX(-60%);
    background: var(--ai-gradient);
    padding: 5px;
    border-radius: 5px;
}
.search-btn {
    background-color: var(--primary-700);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
}
.search-boxx button{
    background: #000;
    border: #000;
    padding: 11px;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
}
.search-btn:hover {
    background-color: var(--primary-500);
}
.search-boxx input[type="text"] {
    padding: 8px;
    border: none;
    border-radius: 4px;
}