
        :root {
            --primary: #1a59ff;
            --primary-dark: #6D28D9;
            --primary-light: #8B5CF6;
            --secondary: #F59E0B;
            --dark: #1F2937;
            --light: #F9FAFB;
            --gray: #6B7280;
            --gray-light: #E5E7EB;
            --success: #10B981;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background-color: #ffffff;
            overflow-x: hidden;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        h1, h2, h3, h4 {
            font-family: 'Inter', sans-serif;
            font-weight: 800;
            line-height: 1.2;
        }
        
        a {
            text-decoration: none;
        }
        
        /* Header */
        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }
        
        .logo {
            font-family: 'Inter', sans-serif;
            font-weight: 900;
            font-size: 28px;
            color: var(--primary);
            text-decoration: none;
        }
        
        .logo span {
            color: var(--secondary);
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        
        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: var(--primary);
        }
        
        .nav-links a.active {
            color: var(--primary);
            font-weight: 600;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--dark);
            cursor: pointer;
        }
        
        /* Hero Section for Blog */
        .blog-hero {
            padding: 160px 0 80px;
            background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(245, 158, 11, 0.05) 100%);
            position: relative;
            overflow: hidden;
        }
        
        .blog-hero::before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
            top: -100px;
            right: -100px;
        }
        
        .blog-hero-content {
            text-align: center;
            position: relative;
            z-index: 1;
        }
        
        .blog-hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            color: var(--dark);
        }
        
        .blog-hero p {
            font-size: 18px;
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto 30px;
        }
        
        /* Search Bar with Auto-complete */
        .search-container {
            max-width: 600px;
            margin: 40px auto;
            position: relative;
        }
        
        .search-box {
            position: relative;
        }
        
        .search-input {
            width: 100%;
            padding: 16px 50px 16px 20px;
            border: 2px solid var(--gray-light);
            border-radius: 8px;
            font-family: 'Poppins', sans-serif;
            font-size: 16px;
            transition: all 0.3s;
            background-color: white;
        }
        
        .search-input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
        }
        
        .search-icon {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--gray);
            font-size: 18px;
        }
        
        .search-input:focus + .search-icon {
            color: var(--primary);
        }
        
        /* Auto-complete Dropdown */
        .autocomplete-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background-color: white;
            border: 1px solid var(--gray-light);
            border-radius: 0 0 8px 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            z-index: 100;
            max-height: 300px;
            overflow-y: auto;
            display: none;
        }
        
        .autocomplete-item {
            padding: 12px 20px;
            cursor: pointer;
            border-bottom: 1px solid var(--gray-light);
            transition: background-color 0.2s;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .autocomplete-item:last-child {
            border-bottom: none;
        }
        
        .autocomplete-item:hover {
            background-color: rgba(124, 58, 237, 0.05);
        }
        
        .autocomplete-item.active {
            background-color: rgba(124, 58, 237, 0.1);
        }
        
        .autocomplete-icon {
            color: var(--primary);
            font-size: 14px;
        }
        
        .autocomplete-title {
            font-weight: 500;
            color: var(--dark);
            font-size: 15px;
            margin-bottom: 2px;
        }
        
        .autocomplete-category {
            font-size: 12px;
            color: var(--gray);
            display: inline-block;
            background-color: rgba(124, 58, 237, 0.1);
            padding: 2px 8px;
            border-radius: 12px;
        }
        
        .no-results {
            padding: 20px;
            text-align: center;
            color: var(--gray);
            font-style: italic;
        }
        
        /* Blog Grid */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            margin: 60px 0;
        }
        
        .blog-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }
        
        .blog-card-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .blog-card-content {
            padding: 25px;
        }
        
        .blog-category {
            display: inline-block;
            background-color: rgba(124, 58, 237, 0.1);
            color: var(--primary);
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .blog-category.resume {
            background-color: rgba(245, 158, 11, 0.1);
            color: var(--secondary);
        }
        
        .blog-category.interview {
            background-color: rgba(16, 185, 129, 0.1);
            color: var(--success);
        }
        
        .blog-category.linkedin {
            background-color: rgba(0, 119, 181, 0.1);
            color: #0077B5;
        }
        
        .blog-category.networking {
            background-color: rgba(156, 39, 176, 0.1);
            color: #9C27B0;
        }
        
        .blog-card-content h3 {
            font-size: 20px;
            margin-bottom: 15px;
            line-height: 1.4;
        }
        
        .blog-card-content p {
            color: var(--gray);
            margin-bottom: 20px;
            font-size: 14px;
        }
        
        .blog-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid var(--gray-light);
        }
        
        .blog-date {
            color: var(--gray);
            font-size: 14px;
        }
        
        .blog-read-more {
            color: var(--primary);
            font-weight: 600;
            font-size: 14px;
            transition: color 0.3s;
        }
        
        .blog-read-more:hover {
            color: var(--primary-dark);
        }
        
        /* Search Results Info */
        .search-results-info {
            text-align: center;
            margin: 20px 0;
            color: var(--gray);
        }
        
        .search-results-info strong {
            color: var(--primary);
        }
        
        /* Load More Button */
        .load-more-container {
            text-align: center;
            margin: 60px 0 100px;
        }
        
        .btn {
            display: inline-block;
            background-color: var(--primary);
            color: white;
            padding: 16px 40px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 18px;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            text-align: center;
        }
        
        .btn:hover {
            background-color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(124, 58, 237, 0.2);
        }
        
        .btn-secondary {
            background-color: var(--secondary);
        }
        
        .btn-secondary:hover {
            background-color: #D97706;
            box-shadow: 0 10px 20px rgba(245, 158, 11, 0.2);
        }
        
        /* Footer */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 80px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .footer-logo {
            font-family: 'Inter', sans-serif;
            font-weight: 900;
            font-size: 28px;
            color: white;
            margin-bottom: 20px;
        }
        
        .footer-logo span {
            color: var(--secondary);
        }
        
        .footer-links h4 {
            margin-bottom: 20px;
            font-size: 18px;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links ul li {
            margin-bottom: 12px;
        }
        
        .footer-links ul li a {
            color: #D1D5DB;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links ul li a:hover {
            color: white;
        }
        
        .social-icons a {
            display: inline-block;
            width: 35px;
            height: 35px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            color: white;
            transition: background-color 0.3s;
        }
        
        .social-icons a:hover {
            background-color: var(--primary);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #9CA3AF;
            font-size: 14px;
        }

        .mobile-nav {
            display: none;
        }
        
        @media (max-width: 992px) {
            .nav-links {
                display: none;
            }

                        .mobile-menu-btn {
                display: block;
            }
            
            .mobile-nav {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: white;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
                padding: 20px;
                display: none;
                z-index: 999;
            }
            
            .mobile-nav.active {
                display: block;
            }
            
            .mobile-nav ul {
                list-style: none;
            }
            
            .mobile-nav ul li {
                margin-bottom: 15px;
            }
            
            .mobile-nav ul li a {
                text-decoration: none;
                color: var(--dark);
                font-weight: 500;
                font-size: 18px;
                display: block;
                padding: 3px 0;
            }
            
            .mobile-nav a:hover {
                background-color: var(--gray-light);
                padding: 5px;
            }
            
            
            .hero-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .hero-text {
                text-align: center;
                 order: 2;
            }
            

            .highlight-box {
                text-align: center;
            }
            
            .price-tag {
                justify-content: center;
            }
            
            .countdown {
                justify-content: center;
            }
            
            .mentor-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .mentor-image {
                order: 1;
            }
            
            .mentor-info {
                order: 2;
                text-align: center;
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            

            .blog-hero {
                padding: 140px 0 60px;
            }
            
            .blog-hero h1 {
                font-size: 36px;
            }
            
            .blog-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 576px) {
            .blog-hero h1 {
                font-size: 32px;
            }
            
            .btn {
                padding: 14px 30px;
                width: 100%;
            }
        }
