/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #222;
    color: white;
    padding: 15px 20px;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    width: 100%;
}

.cookie-btn {
    background-color: #e74c3c;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.cookie-btn:hover {
    background-color: #c0392b;
}

.cookie-btn.secondary {
    background-color: transparent;
    border: 2px solid #e74c3c;
}

.cookie-btn.secondary:hover {
    background-color: #e74c3c;
}

.cookie-banner.hidden {
    display: none;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 999;
    padding: 0;
}

.navbar {
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e74c3c;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: unset;
}

.logo img {
    width: 40px;
    height: 40px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #e74c3c;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    min-height: 100vh;
     background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.6)), 
                url('./images/hero.jpg') center center;
    color: white;
    background-size: cover;
    padding: 100px 20px 50px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: #e74c3c;
    text-align: center;
}

.hero-content p {
    font-size: 1.2rem;
    text-align: center;
}

.hero-info {
    display: flex;
    gap: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.date h3 {
    font-size: 1.5rem;
    color: #e74c3c;
    margin-bottom: 5px;
}

.stats {
    display: flex;
    gap: 20px;
}

.stat {
    text-align: center;
}

.stat h4 {
    font-size: 2rem;
    color: #e74c3c;
    margin-bottom: 5px;
}

.cta-btn {
    background-color: #e74c3c;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: bold;
}

.cta-btn:hover {
    background-color: #c0392b;
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* About Event Section */
.about-event {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.about-event h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.event-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.event-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.event-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.feature {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature h4 {
    color: #e74c3c;
    margin-bottom: 10px;
}

.event-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Competitions Section */
.competitions {
    padding: 80px 20px;
    background-color: white;
}

.competitions h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.competition-days {
    display: grid;
    gap: 40px;
}

.day {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid #e74c3c;
}

.day h3 {
    color: #e74c3c;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.category {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.category h4 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

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

/* Artists Section */
.artists {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.artists h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.artists-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.artists-info h3 {
    color: #e74c3c;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.coming-soon {
    font-size: 1.5rem;
    color: #e74c3c;
    font-weight: bold;
    margin-bottom: 20px;
}

.artists-info p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.artists-info a {
    color: #e74c3c;
    text-decoration: none;
}

.artists-info a:hover {
    text-decoration: underline;
}

.booking-options {
    display: grid;
    gap: 20px;
    margin-top: 30px;
}

.booking-option {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.booking-option h4 {
    color: #e74c3c;
    margin-bottom: 10px;
}

.artists-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.artist-preview img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Jobs Section */
.jobs {
    padding: 80px 20px;
    background-color: white;
}

.jobs h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.jobs-intro {
    text-align: center;
    margin-bottom: 50px;
}

.jobs-intro p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.jobs-page-btn {
    background-color: #e74c3c;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: bold;
}

.jobs-page-btn:hover {
    background-color: #c0392b;
}

.jobs-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.job-card {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #e74c3c;
    transition: transform 0.3s ease;
}

.job-card:hover {
    transform: translateY(-5px);
}

.job-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.job-card p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.job-type {
    background-color: #e74c3c;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

/* Jobs Page */
.jobs-page {
    padding: 100px 20px 80px;
    background-color: #f8f9fa;
    min-height: 100vh;
}

.jobs-header {
    text-align: center;
    margin-bottom: 50px;
}

.back-btn {
    background-color: #6c757d;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    margin-bottom: 20px;
    transition: background-color 0.3s;
}

.back-btn:hover {
    background-color: #5a6268;
}

.jobs-header h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
}

.jobs-subtitle {
    font-size: 1.2rem;
    color: #e74c3c;
    font-weight: bold;
}

.jobs-grid {
    display: grid;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.job-listing {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.job-header {
    background-color: #333;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.job-header h2 {
    margin: 0;
    font-size: 1.5rem;
}

.job-badges {
    display: flex;
    gap: 10px;
}

.badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.badge.full-time {
    background-color: #28a745;
    color: white;
}

.badge.part-time {
    background-color: #ffc107;
    color: #333;
}

.badge.freelance {
    background-color: #17a2b8;
    color: white;
}

.badge.urgent {
    background-color: #dc3545;
    color: white;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

.job-details {
    padding: 30px;
}

.job-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.info-item {
    color: #666;
    line-height: 1.6;
}

.info-item strong {
    color: #333;
}

.job-description h3 {
    color: #e74c3c;
    margin: 20px 0 10px;
    font-size: 1.1rem;
}

.job-description ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.job-description li {
    margin-bottom: 8px;
    color: #666;
    line-height: 1.5;
}

.apply-job-btn {
    background-color: #e74c3c;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: bold;
    width: 100%;
    margin-top: 20px;
    text-decoration: unset;
}

.apply-job-btn:hover {
    background-color: #c0392b;
}

.jobs-footer {
    margin-top: 50px;
    text-align: center;
}

.contact-hr {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto;
}

.contact-hr h3 {
    color: #e74c3c;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.contact-hr p {
    color: #666;
    margin-bottom: 10px;
    line-height: 1.6;
}

.contact-hr a {
    color: #e74c3c;
    text-decoration: none;
    font-weight: bold;
}

.contact-hr a:hover {
    text-decoration: underline;
}

/* Job Application Modal */
.job-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.job-modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 40px;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.job-modal h2 {
    color: #e74c3c;
    margin-bottom: 20px;
    text-align: center;
}

.job-form {
    display: grid;
    gap: 20px;
}

.job-form-group {
    display: flex;
    flex-direction: column;
}

.job-form-group label {
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.job-form-group input,
.job-form-group select,
.job-form-group textarea {
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.job-form-group input:focus,
.job-form-group select:focus,
.job-form-group textarea:focus {
    outline: none;
    border-color: #e74c3c;
}

.file-upload {
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.file-upload input[type="file"] {
    position: absolute;
    left: -9999px;
}

.file-upload-btn {
    background-color: #6c757d;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.file-upload-btn:hover {
    background-color: #5a6268;
}

.submit-job-btn {
    background-color: #e74c3c;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: bold;
    margin-top: 20px;
}

.submit-job-btn:hover {
    background-color: #c0392b;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial h4 {
    color: #333;
    margin-bottom: 10px;
}

.rating {
    color: #f39c12;
    font-size: 1.2rem;
}

/* FAQ Section */
.faq {
    padding: 80px 20px;
    background-color: white;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #f8f9fa;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f8f9fa;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #e9ecef;
}

.faq-question h4 {
    color: #333;
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #e74c3c;
    font-weight: bold;
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h3 {
    color: #e74c3c;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item h4 {
    color: #333;
    margin-bottom: 10px;
}

.contact-item p {
    color: #666;
    line-height: 1.6;
}

.contact-item a {
    color: #e74c3c;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-form {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form h3 {
    color: #e74c3c;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e74c3c;
}

.submit-btn {
    background-color: #e74c3c;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: bold;
    width: 100%;
}

.submit-btn:hover {
    background-color: #c0392b;
}

/* Footer */
.footer {
    background-color: #222;
    color: white;
    padding: 50px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3,
.footer-section h4 {
    color: #e74c3c;
    margin-bottom: 20px;
}

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

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

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #e74c3c;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #ccc;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 40px;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #e74c3c;
}

.modal-content h2 {
    color: #e74c3c;
    margin-bottom: 20px;
}

.modal-text {
    line-height: 1.6;
    color: #333;
}

.modal-text h3 {
    color: #333;
    margin: 20px 0 10px;
}

.modal-btn {
    background-color: #e74c3c;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 20px;
}

.modal-btn:hover {
    background-color: #c0392b;
}

.sitemap-list {
    list-style: none;
    padding: 0;
}

.sitemap-list li {
    margin-bottom: 10px;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 5px;
}

.sitemap-list a {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 500;
}

.sitemap-list a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 30px 0;
        gap: 20px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-info {
        justify-content: center;
    }
    
    .event-grid,
    .artists-content,
    .jobs-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .categories {
        grid-template-columns: 1fr;
    }
    
    .artists-gallery {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-info {
        flex-direction: column;
        gap: 20px;
    }
    
    .stats {
        justify-content: center;
    }
    
    .competitions h2,
    .about-event h2,
    .artists h2,
    .jobs h2,
    .testimonials h2,
    .faq h2,
    .contact h2 {
        font-size: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 20px;
    }
}

textarea {
  resize: none;
}

/* ===================================
   JOBS SECTION STYLES
   =================================== */

/* Main Jobs Section */
.jobs {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.jobs .container {
    position: relative;
    z-index: 2;
}

.jobs h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 50px;
    color: #2c3e50;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.jobs h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    border-radius: 2px;
}

/* Jobs Intro Section */
.jobs-intro {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.jobs-intro p {
    font-size: 1.3rem;
    color: #5d6d7e;
    margin-bottom: 35px;
    line-height: 1.8;
    font-weight: 400;
}

.jobs-page-btn {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
    position: relative;
    overflow: hidden;
}

.jobs-page-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.jobs-page-btn:hover::before {
    left: 100%;
}

.jobs-page-btn:hover {
    background: linear-gradient(45deg, #c0392b, #a93226);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(231, 76, 60, 0.5);
}

.jobs-page-btn:active {
    transform: translateY(-1px) scale(1.02);
}

/* Jobs Preview Cards */
.jobs-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.job-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(45deg, #e74c3c, #c0392b);
}

.job-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(231, 76, 60, 0.03) 0%, transparent 70%);
    transition: all 0.4s ease;
    transform: scale(0);
}

.job-card:hover::after {
    transform: scale(1);
}

.job-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(231, 76, 60, 0.2);
    border-color: rgba(231, 76, 60, 0.3);
}

.job-card h3 {
    color: #2c3e50;
    margin-bottom: 18px;
    font-size: 1.4rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.job-card p {
    color: #5d6d7e;
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 1.05rem;
    position: relative;
    z-index: 2;
}

.job-type {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    position: relative;
    z-index: 2;
}

/* ===================================
   JOBS PAGE STYLES
   =================================== */

.jobs-page {
    padding: 120px 20px 80px;
    background: linear-gradient(135deg, #f1f2f6 0%, #ffffff 50%, #f8f9fa 100%);
    min-height: 100vh;
    position: relative;
}



.job-positions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 35px 0;
    padding: 0;
}

.position {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid transparent;
    border-left: 5px solid #e74c3c;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.position:hover::before {
    opacity: 1;
}

/* Hover effects */
.position:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(231, 76, 60, 0.3);
    box-shadow: 0 15px 40px rgba(231, 76, 60, 0.15);
    border-left-color: #c0392b;
}

/* Position title */
.position h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
    line-height: 1.3;
}

.position h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.position:hover h4::after {
    width: 60px;
}

/* Position description */
.position p {
    color: #5d6d7e;
    line-height: 1.7;
    font-size: 1.05rem;
    margin: 0;
    position: relative;
    z-index: 2;
    font-weight: 400;
}

/* Special styling for different position types */
.position:nth-child(1) {
    border-left-color: #e74c3c;
}

.position:nth-child(1):hover {
    border-left-color: #c0392b;
}

.position:nth-child(2) {
    border-left-color: #3498db;
}

.position:nth-child(2):hover {
    border-left-color: #2980b9;
    box-shadow: 0 15px 40px rgba(52, 152, 219, 0.15);
}

.position:nth-child(2)::before {
    background: radial-gradient(circle at 100% 0%, rgba(52, 152, 219, 0.05) 0%, transparent 50%);
}

.position:nth-child(2) h4::after {
    background: linear-gradient(45deg, #3498db, #2980b9);
}

.position:nth-child(3) {
    border-left-color: #2ecc71;
}

.position:nth-child(3):hover {
    border-left-color: #27ae60;
    box-shadow: 0 15px 40px rgba(46, 204, 113, 0.15);
}

.position:nth-child(3)::before {
    background: radial-gradient(circle at 100% 0%, rgba(46, 204, 113, 0.05) 0%, transparent 50%);
}

.position:nth-child(3) h4::after {
    background: linear-gradient(45deg, #2ecc71, #27ae60);
}

/* Additional positions (if more than 3) */
.position:nth-child(4) {
    border-left-color: #f39c12;
}

.position:nth-child(4):hover {
    border-left-color: #e67e22;
    box-shadow: 0 15px 40px rgba(243, 156, 18, 0.15);
}

.position:nth-child(4)::before {
    background: radial-gradient(circle at 100% 0%, rgba(243, 156, 18, 0.05) 0%, transparent 50%);
}

.position:nth-child(4) h4::after {
    background: linear-gradient(45deg, #f39c12, #e67e22);
}

.position:nth-child(5) {
    border-left-color: #9b59b6;
}

.position:nth-child(5):hover {
    border-left-color: #8e44ad;
    box-shadow: 0 15px 40px rgba(155, 89, 182, 0.15);
}

.position:nth-child(5)::before {
    background: radial-gradient(circle at 100% 0%, rgba(155, 89, 182, 0.05) 0%, transparent 50%);
}

.position:nth-child(5) h4::after {
    background: linear-gradient(45deg, #9b59b6, #8e44ad);
}

.position:nth-child(6) {
    border-left-color: #1abc9c;
}

.position:nth-child(6):hover {
    border-left-color: #16a085;
    box-shadow: 0 15px 40px rgba(26, 188, 156, 0.15);
}

.position:nth-child(6)::before {
    background: radial-gradient(circle at 100% 0%, rgba(26, 188, 156, 0.05) 0%, transparent 50%);
}

.position:nth-child(6) h4::after {
    background: linear-gradient(45deg, #1abc9c, #16a085);
}

@media (max-width:768px){
    .jobs h2 {
      font-size: 30px;
    }
    .logo {
      font-size: 20px;
      line-height: 1.1;
    }
}