 
 
  /* Smooth hamburger menu animation */
        .hamburger {
            width: 24px;
            height: 20px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .hamburger span {
            width: 100%;
            height: 2px;
            background-color: #1f2937;
            display: block;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        /* Hamburger active state */
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translateY(10px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translateY(-10px);
        }

        /* Mobile menu slide animation */
        .mobile-menu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }

        .mobile-menu.active {
            max-height: 500px;
        }

        /* Smooth link hover effect */
        .nav-link {
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: #3b82f6;
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-link:hover {
            color: #3b82f6;
        }

        /* Button hover effects */
        .btn-outline:hover {
            background-color: #f3f4f6;
            transition: background-color 0.3s ease;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
            transition: all 0.3s ease;
        }


         .hero {
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%), url('https://images.unsplash.com/photo-1517673132405-a56a62b18caf?q=80&w=876&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
            background-size: cover;
            background-position: center;
        }

        .gradient-text {
            background: linear-gradient(90deg, #FFD700 0%, #87CEEB 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .card {
            transition: all 0.3s ease;
        }

        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .card-blue {
            background: linear-gradient(135deg, #3B82F6 0%, #1E40AF 100%);
            border: 2px solid #1E40AF;
        }

        .card-orange {
            background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
            border: 2px solid #EA580C;
        }

        .card-green {
            background: linear-gradient(135deg, #10B981 0%, #059669 100%);
            border: 2px solid #059669;
        }

        .badge {
            background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
            border: 2px solid #DC2626;
        }

        .cta-button {
            background: linear-gradient(135deg, #10B981 0%, #059669 100%);
            border: 2px solid #059669;
            transition: all 0.3s ease;
        }

        .cta-button:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 35px rgba(16, 185, 129, 0.4);
        }

        img.h-390.w-auto.object-contain {
    position: absolute !important;
    height: 237px !important;
        }
  @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700&display=swap');
        
        body {
            font-family: 'Poppins', sans-serif;
        }
        
        .card-hover {
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .card-hover:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(59, 130, 246, 0.25);
        }

        /* Added modal styles with smooth fade and scale animations */
        .modal-overlay {
            animation: fadeIn 0.3s ease;
        }

        .modal-content {
            animation: slideUp 0.3s ease;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .job-card {
            transition: all 0.2s ease;
        }

        .job-card:hover {
            transform: translateX(5px);
        }

        .hidden {
            display: none;
        }

        .show {
            display: flex;
        }

         /* Sidebar filter styles */
        .price-slider {
            width: 100%;
            height: 6px;
            border-radius: 5px;
            background: #e5e7eb;
            outline: none;
            -webkit-appearance: none;
        }

        .price-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: #3b82f6;
            cursor: pointer;
            box-shadow: 0 2px 6px rgba(59, 130, 246, 0.4);
        }

        .price-slider::-moz-range-thumb {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: #3b82f6;
            cursor: pointer;
            border: none;
            box-shadow: 0 2px 6px rgba(59, 130, 246, 0.4);
        }

        /* Job card hover effect */
        .job-card {
            transition: all 0.3s ease;
            border: 1px solid #e5e7eb;
        }

        .job-card:hover {
            box-shadow: 0 8px 24px rgba(59, 130, 246, 0.15);
            transform: translateY(-4px);
        }

        .job-card:hover .view-more-btn {
            background-color: #2563eb;
            transform: translateX(2px);
        }

        /* Smooth animations */
        .filter-section {
            border-radius: 8px;
            background-color: #f9fafb;
            padding: 16px;
            border: 1px solid #e5e7eb;
        }
 .testimonial-card {
            transition: all 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
        }

        .star-rating {
            display: flex;
            gap: 2px;
        }

        .star {
            width: 16px;
            height: 16px;
            color: #fbbf24;
        }

        .profile-image {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #dbeafe;
        }





/* === FORCE LOGO TO FIT HEADER === */
.logo-wrap {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo-wrap img {
    height: 190px;        /* Desktop */
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
    position: absolute;
}

/* Tablet */
@media (max-width: 1024px) {
    .logo-wrap img {
        height: 165px;
        position: absolute;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .logo-wrap img {
        height: 165px;
        position: absolute;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .logo-wrap img {
        height: 165px;
        position: absolute;
    }
}
