* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #3498db;
    --secondary: #2ecc71;
    --accent: #e74c3c;
    --light-bg: #f8f9fa;
    --light-surface: #ffffff;
    --light-card: #ffffff;
    --light-text: #333333;
    --light-text-secondary: #666666;
    --light-border: #e0e0e0;
    --shadow: 0 4px 6px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
    --topbar-height: 70px;
    --nav-height: 70px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2980b9;
    background-color: var(--light-bg);
    padding-top: var(--topbar-height);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Enhanced Topbar with Animation - Light Theme */
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 15px 0;
    height: var(--topbar-height);
    animation: slideDown 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    border-bottom: 1px solid var(--light-border);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo h2 {
    color: var(--primary);
    font-weight: 800;
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--primary), #2980b9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    from {
        filter: drop-shadow(0 0 10px rgba(52, 152, 219, 0.3));
    }
    to {
        filter: drop-shadow(0 0 20px rgba(52, 152, 219, 0.5));
    }
}

.info-btn {
    background: linear-gradient(135deg, var(--primary), #2980b9);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 0.9rem;
    white-space: nowrap;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
    position: relative;
    overflow: hidden;
}

.info-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.info-btn:hover::before {
    left: 100%;
}

.info-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.5);
}

/* Enhanced Banner Slider with Advanced Animations - Light Theme */
.banner-slider {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 0 0 30px 30px;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.banner-container {
    position: relative;
    height: 100%;
    width: 100%;
    perspective: 1000px;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.1) rotateY(5deg);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    filter: brightness(0.9);
}

.banner-slide.active {
    opacity: 1;
    transform: scale(1) rotateY(0deg);
    pointer-events: auto;
    filter: brightness(1);
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: zoomInOut 20s infinite alternate;
}

@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 40px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.6s ease 0.3s;
}

.banner-slide.active .banner-overlay {
    transform: translateY(0);
    opacity: 1;
}

.banner-overlay h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    animation: textGlow 2s ease-in-out infinite alternate;
}

@keyframes textGlow {
    from {
        text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    }
    to {
        text-shadow: 2px 2px 20px rgba(255,255,255,0.3);
    }
}

.banner-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(0,0,0,0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.dot::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    transition: left 0.5s;
}

.dot:hover::before {
    left: 100%;
}

.dot.active {
    background: white;
    transform: scale(1.3);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(52,152,219,0.3);
    animation: dotPulse 2s infinite;
}

@keyframes dotPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(52,152,219,0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(52,152,219,0.5);
    }
}

/* Enhanced Navigation Buttons - Light Theme */
.nav-buttons {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 20px 0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    z-index: 999;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-bottom: 1px solid var(--light-border);
}

.nav-buttons.sticky {
    position: fixed;
    top: var(--topbar-height);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    animation: navSlideDown 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes navSlideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-buttons .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: nowrap;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 15px;
}

.nav-buttons .container::-webkit-scrollbar {
    display: none;
}

.nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #2980b9;
    padding: 15px 12px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-width: 80px;
    flex-shrink: 0;
    border: 2px solid transparent;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.1), transparent);
    transition: left 0.6s;
}

.nav-btn:hover::before {
    left: 100%;
}

.nav-btn:hover,
.nav-btn:active {
    background: var(--primary);
    transform: translateY(-5px) scale(1.05);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.2);
    color: white;
}

.nav-btn:hover i,
.nav-btn:hover span {
    color: white;
}

.nav-btn i {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--primary);
    transition: all 0.3s ease;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

.nav-btn span {
    font-size: 0.85rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    transition: all 0.3s ease;
}

/* Enhanced Main Content - Light Theme */
.main-content {
    padding: 30px 0;
    min-height: calc(100vh - var(--topbar-height));
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-content.with-sticky-nav {
    margin-top: var(--nav-height);
}

/* Enhanced Cards Grid with Stagger Animation - Light Theme */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.job-card {
    background: var(--light-card);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--light-border);
    backdrop-filter: blur(10px);
    animation: cardSlideIn 0.6s ease-out;
    animation-fill-mode: both;
}

@keyframes cardSlideIn {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.job-card:nth-child(1) { animation-delay: 0.1s; }
.job-card:nth-child(2) { animation-delay: 0.2s; }
.job-card:nth-child(3) { animation-delay: 0.3s; }
.job-card:nth-child(4) { animation-delay: 0.4s; }
.job-card:nth-child(5) { animation-delay: 0.5s; }

.job-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border-color: rgba(52, 152, 219, 0.3);
}

.card-image-slider {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    background: var(--light-surface);
}

.card-image.active {
    opacity: 1;
    transform: scale(1.05);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.card-image.active img {
    transform: scale(1.1);
}

.card-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.card-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0,0,0,0.4);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid transparent;
}

.card-dot.active {
    background: var(--primary);
    transform: scale(1.4);
    border-color: white;
    box-shadow: 0 0 15px rgba(52,152,219,0.3);
}

.card-content {
    padding: 25px;
    background: var(--light-card);
}

.card-title {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--light-text);
    line-height: 1.4;
    background: linear-gradient(135deg, var(--primary), #2980b9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-dates {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.date-item {
    display: flex;
    flex-direction: column;
    padding: 12px;
    background: linear-gradient(135deg, var(--light-bg), #eef2f7);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid var(--light-border);
}

.date-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-color: rgba(52, 152, 219, 0.3);
}

.date-label {
    font-size: 0.75rem;
    color: var(--light-text-secondary);
    margin-bottom: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.date-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--light-text);
}

.card-description {
    color: var(--light-text);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 24px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 0.95rem;
    flex: 1;
    min-width: 130px;
    text-align: center;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #2980b9);
    color: white;
    border: 2px solid var(--primary);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2980b9, var(--primary));
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary), #27ae60);
    color: white;
    border: 2px solid var(--secondary);
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #27ae60, var(--secondary));
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--light-text);
    color: var(--light-text);
    position: relative;
    overflow: hidden;
}

.btn-outline::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--light-text);
    transition: left 0.4s;
    z-index: -1;
}

.btn-outline:hover::after {
    left: 0;
}

.btn-outline:hover {
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Enhanced Search Form - Light Theme */
.search-form {
    background: var(--light-card);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    border: 1px solid var(--light-border);
    backdrop-filter: blur(10px);
    animation: formSlideIn 0.8s ease-out;
    
}

@keyframes formSlideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--light-text);
    font-size: 1.1rem;
}

.form-control {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--light-border);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: var(--light-surface);
    color: var(--light-text);
    position: relative;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.1);
    transform: translateY(-2px);
}

/* Enhanced Category Cards - Light Theme */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.category-card {
    background: var(--light-card);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    color: inherit;
    border: 1px solid var(--light-border);
    backdrop-filter: blur(10px);
    animation: categorySlideIn 0.6s ease-out;
    animation-fill-mode: both;
}

@keyframes categorySlideIn {
    from {
        opacity: 0;
        transform: translateX(-50px) rotate(-5deg);
    }
    to {
        opacity: 1;
        transform: translateX(0) rotate(0deg);
    }
}

.category-card:nth-child(1) { animation-delay: 0.1s; }
.category-card:nth-child(2) { animation-delay: 0.2s; }
.category-card:nth-child(3) { animation-delay: 0.3s; }
.category-card:nth-child(4) { animation-delay: 0.4s; }

.category-card:hover {
    transform: translateY(-10px) scale(1.05) rotate(2deg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border-color: rgba(52, 152, 219, 0.3);
}

.category-image {
    height: 180px;
    overflow: hidden;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    position: relative;
}

.category-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), transparent);
    z-index: 1;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    filter: brightness(0.95);
}

.category-card:hover .category-image img {
    transform: scale(1.2) rotate(2deg);
    filter: brightness(1);
}

.category-title {
    padding: 25px;
    text-align: center;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--light-text);
    background: var(--light-card);
    position: relative;
    overflow: hidden;
}

.category-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.1), transparent);
    transition: left 0.6s;
}

.category-card:hover .category-title::before {
    left: 100%;
}

/* Enhanced Job Details - Light Theme */
.job-details {
    background: var(--light-card);
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-bottom: 40px;
    border: 1px solid var(--light-border);
    backdrop-filter: blur(10px);
    animation: detailsSlideIn 0.8s ease-out;
}

@keyframes detailsSlideIn {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.detail-image-slider {
    position: relative;
    height: 450px;
    overflow: hidden;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.detail-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transform: scale(1.1);
}

.detail-image.active {
    opacity: 1;
    transform: scale(1);
}

.detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: slowZoom 30s infinite alternate;
}

@keyframes slowZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.detail-content {
    padding: 40px;
}

.detail-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    color: var(--light-text);
    line-height: 1.2;
    background: linear-gradient(135deg, var(--primary), #2980b9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from {
        text-shadow: 0 0 20px rgba(52, 152, 219, 0.1);
    }
    to {
        text-shadow: 0 0 30px rgba(52, 152, 219, 0.2);
    }
}

/* Enhanced Detail Dates Grid - Light Theme */
.detail-dates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
    padding: 40px;
    background: linear-gradient(135deg, var(--light-bg) 0%, #eef2f7 100%);
    border-radius: 25px;
    border: 1px solid var(--light-border);
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.detail-dates-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.date-card {
    text-align: center;
    padding: 30px 25px;
    background: var(--light-card);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--light-border);
    position: relative;
    overflow: hidden;
    animation: dateCardPop 0.6s ease-out;
    animation-fill-mode: both;
}

@keyframes dateCardPop {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.date-card:nth-child(1) { animation-delay: 0.1s; }
.date-card:nth-child(2) { animation-delay: 0.2s; }
.date-card:nth-child(3) { animation-delay: 0.3s; }
.date-card:nth-child(4) { animation-delay: 0.4s; }

.date-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.date-card:hover::before {
    transform: scaleX(1);
}

.date-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    border-color: rgba(52, 152, 219, 0.3);
}

.date-card.featured {
    background: linear-gradient(135deg, var(--primary) 0%, #2980b9 100%);
    color: white;
    border: none;
    animation: featuredGlow 2s ease-in-out infinite alternate;
}

@keyframes featuredGlow {
    from {
        box-shadow: 0 10px 40px rgba(52, 152, 219, 0.3);
    }
    to {
        box-shadow: 0 15px 50px rgba(52, 152, 219, 0.4);
    }
}

.date-card.featured::before {
    background: white;
}

.date-card.featured .date-label {
    color: rgba(255,255,255,0.9);
}

.date-card.featured .date-value {
    color: white;
}

.date-card.featured .date-icon {
    background: rgba(255,255,255,0.2);
    color: white;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.date-card.past {
    opacity: 0.7;
    background: linear-gradient(135deg, var(--light-bg) 0%, #e0e6ed 100%);
}

.date-card.past .date-label {
    color: var(--light-text-secondary);
}

.date-card.past .date-value {
    color: var(--light-text-secondary);
    text-decoration: line-through;
}

.date-card.upcoming {
    border-left: 5px solid var(--secondary);
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.date-card.urgent {
    border-left: 5px solid var(--accent);
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    animation: urgentPulse 2s infinite;
}

@keyframes urgentPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 40px rgba(231, 76, 60, 0.3);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 15px 50px rgba(231, 76, 60, 0.4);
    }
}

.date-card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    gap: 15px;
}

.date-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--primary) 0%, #2980b9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.date-card:hover .date-icon {
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 12px 35px rgba(52, 152, 219, 0.4);
}

.date-card.featured .date-icon {
    background: rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

.date-card-content {
    position: relative;
    z-index: 2;
}

.date-label {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    display: block;
    transition: color 0.3s ease;
}

.date-card.featured .date-label {
    color: rgba(255,255,255,0.9);
}

.date-value {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--light-text);
    line-height: 1.3;
    margin-bottom: 10px;
    display: block;
    transition: color 0.3s ease;
}

.date-card.featured .date-value {
    color: white;
}

.date-days {
    font-size: 0.85rem;
    color: var(--light-text-secondary);
    font-weight: 600;
    margin-top: 8px;
    padding: 6px 16px;
    background: var(--light-bg);
    border-radius: 25px;
    display: inline-block;
    transition: all 0.3s ease;
}

.date-card.featured .date-days {
    background: rgba(255,255,255,0.2);
    color: white;
}

.date-card:hover .date-days {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.date-status {
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    margin-top: 10px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.status-completed {
    background: linear-gradient(135deg, var(--secondary), #27ae60);
    color: white;
}

.status-upcoming {
    background: linear-gradient(135deg, var(--primary), #2980b9);
    color: white;
}

.status-urgent {
    background: linear-gradient(135deg, var(--accent), #c0392b);
    color: white;
    animation: statusBlink 2s infinite;
}

@keyframes statusBlink {
    0%, 50% {
        opacity: 1;
        transform: scale(1);
    }
    51%, 100% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.detail-description {
    line-height: 1.8;
    margin-bottom: 40px;
    font-size: 1.1rem;
    color: var(--light-text);
}

.detail-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Enhanced Related Jobs - Light Theme */
.related-jobs {
    margin-top: 50px;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 30px;
    color: var(--light-text);
    border-left: 6px solid var(--primary);
    padding-left: 25px;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--primary), #2980b9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: sectionSlideIn 0.8s ease-out;
}

@keyframes sectionSlideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Enhanced Info Page - Light Theme */
.info-section {
    background: var(--light-card);
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    border: 1px solid var(--light-border);
    backdrop-filter: blur(10px);
    animation: infoSlideIn 0.8s ease-out;
}

@keyframes infoSlideIn {
    from {
        opacity: 0;
        transform: translateY(50px) rotateX(10deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

.info-section h2 {
    color: var(--primary);
    margin-bottom: 25px;
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), #2980b9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-list {
    list-style: none;
    margin-left: 0;
}

.feature-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 45px;
    font-size: 1.1rem;
    line-height: 1.6;
    animation: listItemSlide 0.6s ease-out;
    animation-fill-mode: both;
}

@keyframes listItemSlide {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.feature-list li:nth-child(1) { animation-delay: 0.1s; }
.feature-list li:nth-child(2) { animation-delay: 0.2s; }
.feature-list li:nth-child(3) { animation-delay: 0.3s; }
.feature-list li:nth-child(4) { animation-delay: 0.4s; }

.feature-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
    font-size: 1.4rem;
    top: -2px;
    animation: checkmarkPop 0.6s ease-out 0.5s both;
}

@keyframes checkmarkPop {
    from {
        transform: scale(0) rotate(-180deg);
    }
    to {
        transform: scale(1) rotate(0);
    }
}

/* Enhanced responsive design */
@media (max-width: 1200px) {
    .detail-dates-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
        padding: 30px;
    }
}

@media (max-width: 768px) {
    :root {
        --topbar-height: 60px;
        --nav-height: 60px;
    }
    
    body {
        padding-top: var(--topbar-height);
    }
    
    .container {
        padding: 0 15px;
    }
    
    .banner-slider {
        height: 250px;
        margin-bottom: 5px;
    }
    
    .banner-overlay {
        padding: 20px;
    }
    
    .banner-overlay h3 {
        font-size: 1.8rem;
    }
    
    .topbar {
        padding: 10px 0;
    }
    
    .logo h2 {
        font-size: 1.4rem;
    }
    
    .info-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .nav-buttons {
        padding: 15px 0;
    }
    
    .nav-buttons.sticky {
        top: var(--topbar-height);
    }
    
    .nav-btn {
        padding: 12px 8px;
        min-width: 70px;
        border-radius: 15px;
    }
    
    .nav-btn i {
        font-size: 1.3rem;
        margin-bottom: 6px;
    }
    
    .nav-btn span {
        font-size: 0.8rem;
    }
    
    .main-content {
        padding: 20px 0;
    }
    
    .main-content.with-sticky-nav {
        margin-top: var(--nav-height);
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 20px;
    }
    
    .category-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
    
    .detail-image-slider {
        height: 300px;
    }
    
    .detail-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .detail-content {
        padding: 25px;
    }
    
    .detail-dates-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 15px;
        padding: 25px;
        border-radius: 20px;
    }
    
    .date-card {
        padding: 25px 20px;
    }
    
    .date-card-header {
        margin-bottom: 15px;
    }
    
    .date-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .date-label {
        font-size: 0.85rem;
        letter-spacing: 1px;
    }
    
    .date-value {
        font-size: 1.3rem;
    }
    
    .date-days {
        font-size: 0.8rem;
    }
    
    .card-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn {
        width: 100%;
        padding: 16px 24px;
        font-size: 1rem;
    }
    
    .search-form {
        padding: 25px;
        margin-bottom: 25px;
    }
    
    .info-section {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .banner-slider {
        height: 200px;
    }
    
    .banner-overlay {
        padding: 15px;
    }
    
    .banner-overlay h3 {
        font-size: 1.4rem;
    }
    
    .logo h2 {
        font-size: 1.2rem;
    }
    
    .nav-buttons .container {
        gap: 5px;
        padding: 0 8px;
    }
    
    .nav-btn {
        min-width: 65px;
        padding: 10px 6px;
    }
    
    .nav-btn i {
        font-size: 1.2rem;
    }
    
    .nav-btn span {
        font-size: 0.75rem;
    }
    
    .cards-grid {
        gap: 15px;
    }
    
    .card-content {
        padding: 20px;
    }
    
    .card-title {
        font-size: 1.2rem;
    }
    
    .category-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .category-title {
        padding: 20px;
        font-size: 1rem;
    }
    
    .detail-title {
        font-size: 1.6rem;
    }
    
    .detail-actions {
        gap: 15px;
    }
    
    .detail-dates-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px;
    }
    
    .date-card {
        padding: 20px 15px;
        border-radius: 15px;
    }
    
    .date-card-header {
        justify-content: flex-start;
        margin-bottom: 12px;
    }
    
    .date-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        border-radius: 12px;
    }
    
    .date-label {
        font-size: 0.8rem;
    }
    
    .date-value {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 25px;
        padding-left: 20px;
    }
}

@media (max-width: 360px) {
    .nav-btn {
        min-width: 60px;
        padding: 8px 4px;
    }
    
    .nav-btn span {
        font-size: 0.7rem;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
    }
}

/* Additional utility classes */
.date-card-completed {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-left: 5px solid var(--secondary);
}

.date-card-pending {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border-left: 5px solid #f39c12;
}

.date-card-future {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-left: 5px solid var(--primary);
}

/* Utility Classes */
.text-center { text-align: center; }
.mb-20 { margin-bottom: 20px; }
.mt-30 { margin-top: 30px; }
.hidden { display: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* Enhanced Toast Notification - Light Theme */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--secondary), #27ae60);
    color: white;
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(46, 204, 113, 0.3);
    z-index: 1100;
    animation: toastSlideIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    font-weight: 700;
    max-width: 350px;
    backdrop-filter: blur(10px);
}

@keyframes toastSlideIn {
    from {
        transform: translateX(100%) scale(0.8);
        opacity: 0;
    }
    to {
        transform: translateX(0) scale(1);
        opacity: 1;
    }
}

/* Enhanced Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
    position: relative;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    border: 3px solid var(--light-border);
    border-top: 3px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Enhanced Focus styles for accessibility */
button:focus-visible,
a:focus-visible,
.nav-btn:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 3px;
    box-shadow: 0 0 0 6px rgba(52, 152, 219, 0.2);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Prevent horizontal scroll */
body {
    overflow-x: hidden;
}

/* Floating particles background effect - Light Theme */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(52, 152, 219, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(46, 204, 113, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(231, 76, 60, 0.03) 0%, transparent 50%);
    z-index: -1;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(120deg);
    }
    66% {
        transform: translateY(20px) rotate(240deg);
    }
}

/* Image Modal Styles */
.image-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    border-radius: 5px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    transition: 0.3s;
}

.modal-close:hover {
    color: #bbb;
    transform: scale(1.1);
}

#modalCaption {
    text-align: center;
    color: #fff;
    padding: 10px 20px;
    position: absolute;
    bottom: 20px;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
}

/* Add cursor pointer to zoomable images */
.zoomable-image {
    cursor: zoom-in;
    transition: transform 0.3s;
}

.zoomable-image:hover {
    transform: scale(1.02);
}

/* Card image slider fixes */
.card-image {
    display: none;
    width: 100%;
}

.card-image.active {
    display: block;
}

.modal-open {
    overflow: hidden;
}

