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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fc;
}

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

/* Header Styles */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.nav-brand .logo {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.nav-brand .logo i {
    color: #4FC3F7;
    margin-right: 8px;
    font-size: 16px;
    background: #4FC3F7;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #4FC3F7;
}

.btn-signup {
    background: #4FC3F7;
    color: white !important;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
}

.btn-signup:hover {
    background: #29B6F6;
}

.profile-link {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(79, 195, 247, 0.1);
    transition: all 0.3s ease;
}

.profile-link:hover {
    background: #4FC3F7;
    color: white !important;
    transform: scale(1.1);
}

.profile-link i {
    font-size: 1.2rem;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -5px);
}

/* Main Content */
.main-content {
    padding: 60px 0;
}

/* Hero Section */
.hero {
    text-align: center;
    margin-bottom: 60px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
    line-height: 1.2;
}

.search-container {
    max-width: 800px;
    margin: 0 auto;
}

.search-box {
    display: flex;
    background: white;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.search-input,
.location-input {
    flex: 1;
    padding: 20px 25px;
    border: none;
    outline: none;
    font-size: 16px;
    color: #333;
}

.search-input::placeholder,
.location-input::placeholder {
    color: #999;
}

.location-input {
    border-left: 1px solid #eee;
}

.search-btn {
    background: #4FC3F7;
    color: white;
    border: none;
    padding: 20px 35px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-btn:hover {
    background: #29B6F6;
}

.search-subtitle {
    color: #666;
    font-size: 16px;
}

/* Job Cards */
.job-cards {
    margin-bottom: 80px;
    text-align: center;
}

.job-cards-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.job-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 280px;
}

.job-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: #4FC3F7;
    transition: width 0.3s ease;
}

.job-card:hover::after {
    width: 100%;
}

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

.icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4FC3F7 0%, #29B6F6 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.content p {
    color: #666;
    font-size: 14px;
}

.company-info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.company-icon {
    width: 50px;
    height: 50px;
    background: #f0f8ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.company-icon i {
    color: #4FC3F7;
    font-size: 20px;
}

.company-name {
    color: #666;
    font-size: 14px;
}

.job-title {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.job-location {
    color: #999;
    margin-bottom: 25px;
}

.apply-btn {
    background: #4FC3F7;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.apply-btn:hover {
    background: #29B6F6;
}

/* Trending Categories */
.trending-categories {
    margin-bottom: 80px;
}

.trending-categories h2 {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    margin-bottom: 40px;
    text-align: center;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.category-item {
    background: white;
    padding: 25px 15px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.category-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.category-item i {
    font-size: 24px;
    color: #4FC3F7;
    margin-bottom: 10px;
    display: block;
}

.category-item span {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Footer */
.footer {
    background: white;
    border-top: 1px solid #eee;
    padding: 60px 0 30px;
}

/* Featured Companies */
.featured-companies {
    margin-bottom: 80px;
    text-align: center;
}

.featured-companies h2 {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    margin-bottom: 40px;
}

.scroll-velocity-container {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.scroll-velocity-scroller {
    display: flex;
    gap: 40px;
    width: max-content;
    align-items: center;
}

.company-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 20px;
    min-width: 150px;
    height: 80px;
}

.company-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.company-logo {
    max-width: 120px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.company-item:hover .company-logo {
    filter: grayscale(100%);
}

/* Footer Content */

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.footer-brand .logo i {
    color: #4FC3F7;
    margin-right: 8px;
    font-size: 16px;
    background: #4FC3F7;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-brand p {
    color: #666;
    line-height: 1.6;
}

.footer-section h4 {
    color: #333;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #4FC3F7;
}

.testimonial {
    background: #f8f9fc;
    padding: 20px;
    border-radius: 10px;
    position: relative;
}

.testimonial p {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.testimonial-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.testimonial-dots {
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
}

.dot.active {
    background: #4FC3F7;
}

.see-all {
    color: #4FC3F7;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.footer-bottom p {
    color: #999;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        position: relative;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu .nav-link {
        padding: 15px 0;
        border-bottom: 1px solid #f0f0f0;
        width: 100%;
        text-align: center;
    }
    
    .nav-menu .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-menu .profile-link {
        width: auto;
        height: auto;
        border-radius: 0;
        background: transparent;
        font-size: 1rem;
        justify-content: center;
        padding: 15px 0;
    }
    
    .nav-menu .profile-link:hover {
        background: transparent;
        transform: none;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .search-box {
        flex-direction: column;
        border-radius: 15px;
    }
    
    .location-input {
        border-left: none;
        border-top: 1px solid #eee;
    }
    
    .search-btn {
        border-radius: 0 0 15px 15px;
    }
    
    .job-cards {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .job-card {
        padding: 20px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
