 :root {
            --primary-color: #fdd60d;
            --dark-color: #333;
            --light-color: #fff;
            --accent-color: #FF5722;
            --text-color: #333;
            --transition: all 0.3s ease;
        }
        
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Poppins', sans-serif;
        }
        
        body {
            background-color: #f9f9f9;
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
            margin: 0;
            padding: 0;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styling */
        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 40px;
            background-color: rgba(51, 51, 51, 0.95);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }
        
        .header.scrolled {
            padding: 15px 40px;
            background-color: rgba(51, 51, 51, 0.98);
        }
        
        .logo {
            color: var(--light-color);
            text-decoration: none;
            font-size: 24px;
            font-weight: 700;
            letter-spacing: 1px;
            position: relative;
            transition: var(--transition);
        }
        
        .logo:after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--primary-color);
            transition: var(--transition);
        }
        
        .logo:hover:after {
            width: 100%;
        }
        
        .navbar {
            display: flex;
            align-items: center;
        }
        
        .navbar a {
            color: var(--light-color);
            text-decoration: none;
            margin: 0 15px;
            padding: 10px 0;
            position: relative;
            font-weight: 500;
            transition: var(--transition);
        }
        
        .navbar a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            transition: var(--transition);
        }
        
        .navbar a:hover:after {
            width: 100%;
        }
        
        .navbar a.active {
            color: var(--dark-color);
            background-color: var(--primary-color);
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 600;
        }
        
        .navbar a.active:after {
            display: none;
        }
        
        .mobile-toggle {
            display: none;
            cursor: pointer;
            font-size: 24px;
            color: var(--light-color);
        }
        
        /* Hero section */
        .hero {
            height: 100vh;
            width: 100%;
            position: relative;
            overflow: hidden;
            background-color: #f5f5f5;
        }
        
        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('images/chef.jpg');
            background-size: cover;
            background-position: center;
            filter: brightness(0.8);
            z-index: 1;
        }
        
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
            z-index: 2;
        }
        
        .hero-content {
            max-width: 1000px;
            margin: 0 auto;
            padding-right: 20px;
            position: relative;
            z-index: 3;
            display: flex;
            flex-direction: column;
            justify-content: center; /* Vertically center the content */
            align-items: flex-end; /* Align the content to the right */
            height: 100%;
            color: var(--light-color);
            text-align: left;
        }
        
        .hero-intro {
            font-size: 18px;
            font-weight: 500;
            color: var(--primary-color);
            margin-bottom: 15px;
            letter-spacing: 1px;
            text-align: left;
            animation: fadeInUp 1s ease forwards;
            opacity: 0;
            animation-delay: 0.2s;
        }
        
        .hero-title {
            font-size: 50px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease forwards;
            opacity: 0;
            animation-delay: 0.4s;
            max-width: 700px;
            text-align: right;
        }
        
        .hero-title span {
            color: var(--primary-color);
        }
        
        .hero-subtitle {
            font-size: 24px;
            font-weight: 500;
            margin-bottom: 30px;
            animation: fadeInUp 1s ease forwards;
            opacity: 0;
            animation-delay: 0.6s;
        }
        
        .hero-description {
            font-size: 18px;
            line-height: 1.7;
            margin-bottom: 40px;
            max-width: 600px;
            animation: fadeInUp 1s ease forwards;
            opacity: 0;
            animation-delay: 0.8s;
            text-align: right;
        }
        
        .hero-buttons {
            display: flex;
            gap: 20px;
            animation: fadeInUp 1s ease forwards;
            opacity: 0;
            animation-delay: 1s;
        }
        
        .btn {
            display: inline-block;
            padding: 14px 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            border-radius: 30px;
            transition: var(--transition);
            cursor: pointer;
        }
        
        .btn-primary {
            background-color: var(--primary-color);
            color: var(--dark-color);
            border: 2px solid var(--primary-color);
        }
        
        .btn-primary:hover {
            background-color: transparent;
            color: var(--primary-color);
        }
        
        .btn-secondary {
            background-color: transparent;
            color: var(--light-color);
            border: 2px solid var(--light-color);
        }
        
        .btn-secondary:hover {
            background-color: var(--light-color);
            color: var(--dark-color);
        }
        
        .scroll-down {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
            animation: bounce 2s infinite;
            cursor: pointer;
        }
        
        .scroll-down i {
            color: var(--light-color);
            font-size: 24px;
        }
        
        /* About section */
        .about {
            padding: 100px 0;
            background-color: #fff;
        }
        
        .section-title {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 20px;
            text-align: center;
            position: relative;
            padding-bottom: 15px;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--primary-color);
        }
        
        .about-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
            margin-top: 60px;
        }
        
        .about-image {
            flex: 1;
            min-width: 300px;
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .about-text {
            flex: 1;
            min-width: 300px;
        }
        
        .about-text h3 {
            font-size: 28px;
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--dark-color);
        }
        
        .about-text p {
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 20px;
            color: #555;
        }
        
        .skills {
            margin-top: 30px;
        }
        
        .skills h4 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .skill-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .skill-tag {
            background-color: #f2f2f2;
            color: var(--dark-color);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
            transition: var(--transition);
        }
        
        .skill-tag:hover {
            background-color: var(--primary-color);
            transform: translateY(-3px);
        }
        
/* About section with image background */
.about {
    padding: 100px 0;
    background-color: #fff;
    position: relative;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-top: 60px;
}

.about-text {
    flex: 1;
    min-width: 300px;
    z-index: 2;
}

.image-container {
    position: relative;
    flex: 1;
    min-width: 300px;
    height: 500px; /* Adjust as needed */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.8);
}

.foreground-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 0px solid white; /* Optional: adds a white border around your image */
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    
    .image-container {
        order: -1; /* Moves the image container above the text on mobile */
        width: 100%;
    }
}

@media (max-width: 768px) {
    .image-container {
        height: 400px; /* Smaller height on mobile */
    }
    
    .foreground-image {
        max-width: 70%;
        max-height: 70%;
    }
}
/* Rest of your existing about section styles remain the same */
        /* Footer */
        .footer {
            background-color: var(--dark-color);
            color: #fff;
            padding: 40px 0 20px;
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column {
            flex: 1;
            min-width: 200px;
        }
        
        .footer-column h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--primary-color);
        }
        
        .footer-column p {
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 15px;
            color: #bbb;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: #bbb;
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .footer-links a:hover {
            color: var(--primary-color);
            padding-left: 5px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: #fff;
            font-size: 18px;
            transition: var(--transition);
        }
        
        .social-link:hover {
            background-color: var(--primary-color);
            color: var(--dark-color);
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-bottom p {
            font-size: 14px;
            color: #999;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0) translateX(-50%);
            }
            40% {
                transform: translateY(-20px) translateX(-50%);
            }
            60% {
                transform: translateY(-10px) translateX(-50%);
            }
        }
        
        /* Responsive styles */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 42px;
            }
            
            .hero-subtitle {
                font-size: 20px;
            }
            
            .about-content {
                flex-direction: column;
                gap: 60px;
            }
            
            .about-image {
                order: -1;
            }
        }
        
        @media (max-width: 768px) {
            .header {
                padding: 15px 20px;
            }
            
            .navbar {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background-color: var(--dark-color);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: var(--transition);
                gap: 20px;
            }
            
            .navbar.active {
                left: 0;
            }
            
            .navbar a {
                margin: 15px 0;
                font-size: 18px;
            }
            
            .mobile-toggle {
                display: block;
            }
            
            .hero-content {
                padding: 20px;
                align-items: center;
                text-align: center;
            }
            
            .hero-title {
                font-size: 36px;
            }
            
            .hero-description {
                font-size: 16px;
            }
            
            .hero-buttons {
                flex-direction: column;
                gap: 15px;
                width: 100%;
                max-width: 300px;
            }
            
            .btn {
                width: 100%;
                text-align: center;
                padding: 12px 20px;
            }
            
            .section-title {
                font-size: 32px;
            }
            
            .about-text h3 {
                font-size: 24px;
            }
        }
        
        @media (max-width: 576px) {
            .hero-title {
                font-size: 30px;
            }
            
            .hero-subtitle {
                font-size: 18px;
            }
            
            .footer-content {
                flex-direction: column;
                gap: 30px;
            }
        }

        /* Portfolio Page Specific Styles */

:root {
    --primary-color: #fdd60d;
    --dark-color: #333;
    --light-color: #fff;
    --accent-color: #FF5722;
    --text-color: #333;
    --gray-color: #f5f5f5;
    --transition: all 0.3s ease;
}

/* Portfolio Hero Section */
.portfolio-hero {
    position: relative;
    height: 40vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('images/spices.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    margin-top: 80px;
}

.portfolio-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

.portfolio-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    color: var(--light-color);
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
    animation-delay: 0.2s;
}

.portfolio-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.portfolio-hero-content h1:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
}

.portfolio-hero-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Portfolio Filter Section */
.portfolio-filter {
    background-color: var(--gray-color);
    padding: 30px 0;
}

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

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-btn {
    background-color: transparent;
    border: 2px solid var(--dark-color);
    color: var(--dark-color);
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    background-color: var(--dark-color);
    color: var(--light-color);
}

.filter-btn.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--dark-color);
    font-weight: 600;
}

/* Portfolio Grid Section */
.portfolio-grid {
    padding: 60px 0;
    background-color: #fff;
}

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

.project-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    background-color: #fff;
}

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

.project-img {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-card:hover .project-img img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-btns {
    transform: translateY(20px);
    transition: var(--transition);
}

.project-card:hover .project-btns {
    transform: translateY(0);
}

.view-project-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--primary-color);
    color: var(--dark-color);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.view-project-btn:hover {
    background-color: var(--light-color);
    transform: translateY(-3px);
}

.project-info {
    padding: 20px;
}

.project-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.project-info p {
    font-size: 0.9rem;
    color: #777;
}

/* Project Modal Styles */
.project-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.project-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background-color: #fff;
    width: 100%;
    max-width: 1000px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 10px;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.modal-close:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
}

.modal-content {
    padding: 0;
}

.modal-header {
    background-color: var(--dark-color);
    color: #fff;
    padding: 30px;
    text-align: center;
}

.modal-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.modal-header p {
    font-size: 1rem;
    opacity: 0.8;
}

.modal-body {
    padding: 0;
}

.modal-image {
    width: 100%;
    position: relative;
}

.modal-image img {
    width: 100%;
    display: block;
}

.modal-description {
    padding: 40px;
}

.modal-description h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 10px;
}

.modal-description h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.modal-description p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    background-color: var(--gray-color);
    padding: 25px;
    margin-top: 30px;
    border-radius: 10px;
}

.meta-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.meta-item p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .portfolio-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .modal-body {
        flex-direction: column;
    }
    
    .modal-image, .modal-description {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .portfolio-hero {
        height: 30vh;
    }
    
    .portfolio-hero-content h1 {
        font-size: 2rem;
    }
    
    .portfolio-hero-content p {
        font-size: 1rem;
    }
    
    .filter-btn {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
    
    .projects-container {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .project-img {
        height: 200px;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-description {
        padding: 20px;
    }
    
    .modal-description h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .portfolio-hero {
        height: 25vh;
    }
    
    .portfolio-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .projects-container {
        grid-template-columns: 1fr;
    }
    
    .project-img {
        height: 220px;
    }
    
    .filter-buttons {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 6px 15px;
        font-size: 0.8rem;
        margin-bottom: 5px;
    }
    
    .modal-container {
        max-height: 85vh;
    }
    
    .modal-header {
        padding: 20px;
    }
    
    .modal-description {
        padding: 15px;
    }
    
    .project-meta {
        flex-direction: column;
        gap: 15px;
    }
}

/* Resume Hero Section */
.resume-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.resume-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/me.jpg') no-repeat center center/cover;
    z-index: -2;
}

.resume-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
    z-index: -1;
}

.resume-hero .hero-content {
    max-width: 800px;
    text-align: left;
}

.resume-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.resume-hero .hero-title span {
    color: #f1c40f; /* Adjust to match your primary accent color */
}

.resume-hero .hero-subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.resume-hero .hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.resume-hero .hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.resume-hero .scroll-down {
    position: absolute;
    bottom: 30px;
    font-size: 2rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.resume-hero .scroll-down:hover {
    transform: translateY(10px);
}

/* Resume Content Section */
.resume-content {
    padding: 80px 0;
    background: #f9f9f9; /* Adjust to match your site’s background */
}

.resume-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.resume-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.resume-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.resume-card .resume-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1rem;
}

.resume-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

.resume-list li {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.resume-list li::before {
    content: '\f058'; /* Font Awesome check-circle icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #f1c40f; /* Adjust to match your accent color */
}

.venues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.venue-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.venue-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.venue-card p {
    font-size: 0.95rem;
    line-height: 1.5;
}

.resume-cta {
    text-align: center;
    margin-top: 2rem;
}

.resume-cta p {
    font-size: 1.2rem;
}

.contact-link {
    color: #f1c40f; /* Adjust to match your accent color */
    text-decoration: none;
    font-weight: 500;
}

.contact-link:hover {
    text-decoration: underline;
}

/* Contact Hero Section */
.contact-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.contact-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.contact-hero .portfolio-slideshow {
    width: 100%;
    height: 100%;
    position: relative;
}

.contact-hero .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.contact-hero .slide.active {
    opacity: 0.3; /* Subtle opacity to keep focus on content */
}

.contact-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
    z-index: -1;
}

.contact-hero .hero-content {
    max-width: 800px;
    text-align: left;
}

.contact-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-hero .hero-title span {
    color: #f1c40f; /* Adjust to match your primary accent color */
}

.contact-hero .hero-subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.contact-hero .hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-hero .hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.contact-hero .scroll-down {
    position: absolute;
    bottom: 30px;
    font-size: 2rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.contact-hero .scroll-down:hover {
    transform: translateY(10px);
}

/* Contact Services Section */
.contact-services {
    padding: 80px 0;
    background: #f9f9f9; /* Adjust to match your site’s background */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.service-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Contact Form Section */
.contact-form {
    padding: 80px 0;
}

.form-intro {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f1c40f; /* Adjust to match your accent color */
}

.form-group textarea {
    resize: vertical;
}

.contact-form button {
    justify-self: center;
    padding: 0.75rem 2rem;
}

.form-alt {
    text-align: center;
    font-size: 1rem;
}

.contact-link {
    color: #f1c40f; /* Adjust to match your accent color */
    text-decoration: none;
    font-weight: 500;
}

.contact-link:hover {
    text-decoration: underline;
}
