        :root {
            --primary: #1a1f36;
            --secondary: #3a4f76;
            --accent: #7c3aed;
            --accent-light: #8b5cf6;
            --gold: #fbbf24;
            --light: #f8fafc;
            --dark: #0f172a;
            --success: #8b5cf6;
            --card-bg: #ffffff;
            --text-dark: #1e293b;
            --text-light: #64748b;
            --gradient: linear-gradient(135deg, #1a1f36 0%, #3a4f76 100%);
            --gradient-accent: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%);
            --gradient-gold: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
        }
        
        body {
            background-color: #f1f5f9;
            color: var(--text-dark);
            font-family: 'Inter', sans-serif;
            padding-top: 0;
            overflow-x: hidden !important;
        }
        
        .navbar-premium {
            background: var(--gradient);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
            padding: 15px 0;
        }
        
        .logo-container {
            background: var(--gradient-accent);
            width: 50px;
            height: 50px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            box-shadow: 0 4px 10px rgba(124, 58, 237, 0.3);
        }
        
        .nav-link-premium {
            color: rgba(255, 255, 255, 0.9) !important;
            font-weight: 500;
            padding: 0.7rem 1.2rem !important;
            border-radius: 10px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            position: relative;
            margin: 0 5px;
        }
        
        .nav-link-premium:before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: var(--gold);
            border-radius: 3px;
            transition: all 0.3s ease;
        }
        
        .nav-link-premium:hover {
            color: white !important;
            background: rgba(255, 255, 255, 0.1);
        }
        
        .nav-link-premium:hover:before {
            width: 70%;
        }
        
        .hero-section {
            background: var(--gradient);
            color: white;
            padding: 80px 0 100px;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section:after {
            content: '';
            position: absolute;
            bottom: -50px;
            left: 0;
            width: 100%;
            height: 100px;
            background: #f1f5f9;
            border-radius: 50% 50% 0 0;
            z-index: 1;
        }
        
        .search-container-premium {
            background: white;
            border-radius: 16px;
            padding: 25px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            margin-top: -70px;
            position: relative;
            z-index: 20;
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
        }
        
        .search-input-premium {
            border: none;
            border-radius: 10px 0 0 10px;
            background: #f8fafc;
            padding: 18px 25px;
            font-size: 1rem;
            box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
        }
        
        .search-input-premium:focus {
            outline: none;
            box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05), 0 0 0 3px rgba(124, 58, 237, 0.2);
        }
        
        .search-btn-premium {
            background: var(--gradient-accent);
            border: none;
            border-radius: 0 10px 10px 0;
            padding: 18px 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(124, 58, 237, 0.3);
        }
        
        .search-btn-premium:hover {
            background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
            transform: translateY(-2px);
            box-shadow: 0 8px 15px rgba(124, 58, 237, 0.4);
        }
        
        .category-card-premium {
            background: white;
            border-radius: 16px;
            padding: 30px 20px;
            text-align: center;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0, 0, 0, 0.03);
        }
        
        .category-card-premium:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-accent);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }
        
        .category-card-premium:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .category-card-premium:hover:before {
            transform: scaleX(1);
        }
        
        .category-icon-premium {
            width: 80px;
            height: 80px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            background: var(--gradient-accent);
            color: white;
            font-size: 32px;
            transition: all 0.4s ease;
            box-shadow: 0 5px 15px rgba(124, 58, 237, 0.2);
        }
        
        .category-card-premium:hover .category-icon-premium {
            transform: rotateY(180deg);
            background: var(--gradient-gold);
        }
        
        .job-type-section-premium {
            background: white;
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            position: relative;
            overflow: hidden;
        }
        
        .job-type-section-premium:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-gold);
        }
        
        .job-type-link-premium {
            color: var(--secondary);
            font-weight: 600;
            text-decoration: none;
            padding: 12px 25px;
            border-radius: 50px;
            transition: all 0.3s ease;
            display: inline-block;
            margin: 8px;
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            position: relative;
            overflow: hidden;
        }
        
        .job-type-link-premium:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--gradient-accent);
            transition: all 0.4s ease;
            z-index: -1;
        }
        
        .job-type-link-premium:hover {
            color: white;
            border-color: transparent;
        }
        
        .job-type-link-premium:hover:before {
            left: 0;
        }
        
        .section-title-premium {
            position: relative;
            padding-bottom: 20px;
            margin-bottom: 40px;
            text-align: center;
            font-weight: 700;
            font-size: 2.2rem;
        }
        

        
        .job-card-premium {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            height: 100%;
            position: relative;
        }
        
        .job-card-premium:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-accent);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }
        
        .job-card-premium:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .job-card-premium:hover:before {
            transform: scaleX(1);
        }
        
        .job-card-header-premium {
            background: var(--gradient);
            color: white;
            padding: 20px 25px;
            position: relative;
        }
        
        .job-card-body-premium {
            padding: 25px;
        }
        
        .job-detail-premium {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #f1f5f9;
        }
        
        .job-detail-premium:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        
        .view-details-btn {
            background: var(--gradient-accent);
            color: white;
            border: none;
            border-radius: 10px;
            padding: 12px 20px;
            font-weight: 600;
            transition: all 0.3s ease;
            width: 100%;
            margin-top: 15px;
            box-shadow: 0 4px 10px rgba(124, 58, 237, 0.3);
        }
        
        .view-details-btn:hover {
            background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
            transform: translateY(-2px);
            box-shadow: 0 8px 15px rgba(124, 58, 237, 0.4);
        }
        
        .pagination-premium .page-link {
            color: var(--accent);
            border: none;
            border-radius: 10px;
            margin: 0 5px;
            padding: 12px 20px;
            font-weight: 600;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        }
        
        .pagination-premium .page-item.active .page-link {
            background: var(--gradient-accent);
            color: white;
        }
        
        .pagination-premium .page-link:hover {
            background: #f8fafc;
        }
        
        footer {
            background: var(--gradient);
            color: white;
            padding: 70px 0 30px;
            margin-top: 80px;
        }
        
        .footer-link-premium {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            margin: 0 20px;
            position: relative;
        }
        
        .footer-link-premium:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: all 0.3s ease;
        }
        
        .footer-link-premium:hover {
            color: white;
        }
        
        .footer-link-premium:hover:after {
            width: 100%;
        }
        
        .social-icon-premium {
            width: 45px;
            height: 45px;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.1);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin: 0 8px;
            transition: all 0.3s ease;
        }
        
        .social-icon-premium:hover {
            background: var(--accent);
            transform: translateY(-5px);
        }
        
        .ad-space-premium {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            border-radius: 16px;
            padding: 40px;
            text-align: center;
            border: 2px dashed #c4b5fd;
            position: relative;
            overflow: hidden;
        }
        
        .ad-space-premium:before {
            content: 'Premium Ad Space';
            position: absolute;
            top: 10px;
            right: -30px;
            background: var(--gradient-gold);
            color: white;
            padding: 5px 40px;
            font-size: 12px;
            font-weight: 600;
            transform: rotate(45deg);
        }
        
        .floating-notification {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--gradient-accent);
            color: white;
            padding: 15px 25px;
            border-radius: 50px;
            box-shadow: 0 10px 25px rgba(124, 58, 237, 0.3);
            z-index: 1000;
            display: flex;
            align-items: center;
            animation: float 3s ease-in-out infinite;
        }


        /* Trending Jobs Page Specific Styles */
.trending-header {
  background: var(--gradient);
  color: white;
  padding: 60px 0 40px;
  position: relative;
  overflow: hidden;
}

.trending-header:after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 100%;
  height: 60px;
  background: #f1f5f9;
  border-radius: 50% 50% 0 0;
  z-index: 1;
}

.trending-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.trending-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 0;
}

.trending-badge {
  background: var(--gradient-gold);
  color: white;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 600;
  position: absolute;
  top: 0;
  right: 0;
}


.job-card-header-premium h5{
    font-size: 16px;
}

.view-more-btn {
  background: var(--gradient-accent);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.view-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.4);
  color: white;
}



/* Qualification Selection Page Specific Styles */
.qualification-header {
  background: var(--gradient);
  color: white;
  padding: 60px 0 40px;
  position: relative;
  overflow: hidden;
}

.qualification-header:after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 100%;
  height: 60px;
  background: #f1f5f9;
  border-radius: 50% 50% 0 0;
  z-index: 1;
}

.qualification-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.qualification-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 0;
}

.qualification-card {
  background: white;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text-dark);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.qualification-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--gradient-accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
}

.qualification-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  color: var(--text-dark);
}

.qualification-card:hover:before {
  transform: scaleY(1);
}

.qualification-icon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  background: var(--gradient-accent);
  color: white;
  font-size: 28px;
  flex-shrink: 0;
}

.qualification-content {
  flex-grow: 1;
}

.qualification-content h3 {
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--primary);
}

.qualification-content p {
  color: var(--text-light);
  margin-bottom: 0;
  font-size: 0.9rem;
}

.qualification-arrow {
  color: var(--accent);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.qualification-card:hover .qualification-arrow {
  transform: translateX(5px);
  color: var(--accent-light);
}

/* Active state for navigation */
.nav-link-premium.active {
  background: rgba(255, 255, 255, 0.2);
}

.nav-link-premium.active:before {
  width: 70%;
}



/* Qualification Jobs Page Specific Styles */
.qualification-jobs-header {
  background: var(--gradient);
  color: white;
  padding: 60px 0 40px;
  position: relative;
  overflow: hidden;
}

.qualification-jobs-header:after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 100%;
  height: 60px;
  background: #f1f5f9;
  border-radius: 50% 50% 0 0;
  z-index: 1;
}

.qualification-jobs-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.qualification-jobs-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 0;
}

.qualification-badge {
  background: var(--gradient-accent);
  color: white;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.no-jobs-icon {
  font-size: 4rem;
  color: #cbd5e1;
}

/* Responsive adjustments for trending page */

        
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        
        @media (max-width: 768px) {
            .nav-link-premium {
                justify-content: center;
                margin-bottom: 10px;
            }
            
            .search-container-premium {
                margin-top: 20px;
            }
            
            .job-type-link-premium {
                display: block;
                text-align: center;
            }
            
            .section-title-premium {
                font-size: 1.8rem;
            }

            .trending-title {
    font-size: 2rem;
  }
  
  .trending-subtitle {
    font-size: 1rem;
  }
  
  .view-more-btn {
    padding: 12px 25px;
    font-size: 0.9rem;
  }

  .qualification-jobs-title {
    font-size: 2rem;
  }
  
  .qualification-jobs-subtitle {
    font-size: 1rem;
  }
  
  .qualification-badge {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .navbar-brand span {
    font-size: 1.5rem !important;
  }

  .footer-link-premium{
    font-size: 14px !important;
    margin: 0 15px !important;
  }
    }