:root {
    --primary-color: #ffd700;
    /* Vibrant gold yellow */
    --secondary-color: #f8f9fa;
    --text-color: #212529;
    --bg-color: #ffffff;
    --card-bg: #f8f9fa;
    --border-color: rgba(0, 0, 0, 0.125);
    --nav-bg: rgba(255, 255, 255, 0.9);
    --footer-bg: #f8f9fa;
    --transition: all 0.3s ease;
    --text-color-rgb: 33, 37, 41;
}

[data-theme="dark"] {
    --primary-color: #ffa500;
    /* Deeper orange-yellow for dark mode */
    --secondary-color: #2d3748;
    --text-color: #e2e8f0;
    --bg-color: #1a202c;
    --card-bg: #2d3748;
    --border-color: rgba(255, 255, 255, 0.125);
    --nav-bg: rgba(26, 32, 44, 0.9);
    --footer-bg: #2d3748;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: var(--transition);
}

.navbar {
    background-color: var(--nav-bg);
    backdrop-filter: blur(15px);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 10px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.navbar-brand img {
    height: 50px;
    /* Increased from 40px */
    width: auto;
    margin-right: 15px;
    border-radius: 10px;
    /* Added rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    /* Subtle shadow */
    transition: all 0.4s ease;
}

.navbar-brand img:hover {
    transform: scale(1.05) rotate(3deg);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.navbar-brand::after {
    content: "Daniel Zan Baltazar";
    font-weight: 600;
    color: var(--text-color);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.navbar-brand:hover::after {
    color: var(--primary-color);
}

.nav-link {
    color: var(--text-color) !important;
    margin: 0 10px;
    position: relative;
    font-weight: 500;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
    left: 0;
}

/* Theme Switch Styling */
.theme-switch-container {
    display: flex;
    align-items: center;
    margin-left: 15px;
}

.theme-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
    margin: 0 10px;
}

.theme-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(var(--text-color-rgb), 0.2);
    transition: .4s;
    border-radius: 30px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

input:checked+.slider {
    background-color: var(--primary-color);
}

input:checked+.slider:before {
    transform: translateX(30px);
}

.switch-icon {
    color: var(--text-color);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.switch-icon:hover {
    opacity: 1;
}

.switch-icon i {
    font-size: 0.9rem;
}

@media (max-width: 991px) {
    .theme-switch-container {
        margin-top: 10px;
        justify-content: center;
    }
}

/* Hero Section Styles */
.hero-section {
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(var(--primary-color-rgb, 74, 108, 247), 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(240, 185, 235, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-color), #f0b9eb);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 25px;
    animation: slideInDown 0.8s ease-out;
}

.hero-badge i {
    font-size: 0.9rem;
}

/* Hero Title */
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
    animation: slideInLeft 0.8s ease-out 0.2s both;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), #f0b9eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 20px;
    animation: slideInLeft 0.8s ease-out 0.3s both;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.7;
    max-width: 500px;
    animation: slideInLeft 0.8s ease-out 0.4s both;
}

/* Hero Contact */
.hero-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
    animation: slideInLeft 0.8s ease-out 0.5s both;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.contact-item i {
    width: 20px;
    color: var(--primary-color);
    font-size: 1rem;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    animation: slideInLeft 0.8s ease-out 0.6s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #f0b9eb);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(var(--primary-color-rgb, 74, 108, 247), 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    animation: slideInLeft 0.8s ease-out 0.7s both;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Hero Image */
.hero-image-wrapper {
    position: relative;
    animation: slideInRight 0.8s ease-out 0.3s both;
}

.hero-image-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color), #f0b9eb);
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(60px);
    animation: pulse 4s ease-in-out infinite;
}

.hero-image-container {
    position: relative;
    width: 350px;
    height: 350px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--card-bg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
}

.hero-image-container:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(10%);
    transition: all 0.5s ease;
}

.hero-image-container:hover .hero-image {
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: var(--card-bg);
    padding: 12px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.floating-card i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.floating-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-1 {
    top: 10%;
    left: -5%;
    animation: float 3s ease-in-out infinite;
}

.card-2 {
    top: 50%;
    right: -5%;
    animation: float 3s ease-in-out infinite 1s;
}

.card-3 {
    bottom: 10%;
    left: 5%;
    animation: float 3s ease-in-out infinite 2s;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Responsive */
@media (max-width: 991px) {
    .hero-section {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .hero-image-wrapper {
        margin-top: 50px;
    }

    .hero-image-container {
        width: 280px;
        height: 280px;
    }

    .floating-card {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-image-container {
        width: 250px;
        height: 250px;
    }
}

.section {
    padding: 80px 0;
    transition: var(--transition);
}

.section-title {
    position: relative;
    margin-bottom: 40px;
    font-weight: 700;
}

.section-title::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 0;
}

/* Skills Section Styles */
.skill-category {
    background-color: var(--card-bg);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 25px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.skill-category:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.category-header i {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.category-header h3 {
    font-weight: 600;
    font-size: 1.4rem;
    margin: 0;
    color: var(--text-color);
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.skill-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(var(--primary-color-rgb, 74, 108, 247), 0.08);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-color);
    transition: var(--transition);
}

.skill-item i {
    font-size: 0.5rem;
    color: var(--primary-color);
}

.skill-item:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.skill-item:hover i {
    color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .skill-category {
        padding: 20px;
    }
    
    .category-header h3 {
        font-size: 1.2rem;
    }
    
    .skill-item {
        font-size: 0.9rem;
        padding: 6px 12px;
    }
}

.projects-section {
    padding: 80px 0;
}

        /* Section styling */
        .projects-section {
            padding: 4rem 0;
        }

        .section-header {
            margin-bottom: 3rem;
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 2.5rem);
            font-weight: 700;
            margin-bottom: 1rem;
            border-bottom: 4px solid var(--primary-color);
            display: inline-block;
            padding-bottom: 0.5rem;
        }

        .view-all-btn {
            background-color: var(--primary-color);
            color: var(--text-color);
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: var(--transition);
            font-size: 0.9rem;
            white-space: nowrap;
        }

        .view-all-btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-hover);
            color: var(--text-color);
        }

        /* Card styling */
        .project-card {
            background-color: var(--card-bg);
            border-radius: 16px;
            overflow: hidden;
            transition: var(--transition);
            box-shadow: var(--shadow-light);
            height: 100%;
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .project-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .project-img {
            position: relative;
            overflow: hidden;
            height: 220px;
            flex-shrink: 0;
        }

        .project-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .project-card:hover .project-img img {
            transform: scale(1.05);
        }

        .project-content {
            padding: 1.5rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .project-content h4 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            color: var(--text-color);
            line-height: 1.3;
        }

        .project-content > p {
            color: var(--text-color);
            margin-bottom: 1rem;
            font-size: 0.95rem;
            opacity: 0.9;
            flex-grow: 0;
        }

        /* Features list styling */
        .features-list {
            list-style: none;
            padding: 0;
            margin: 0 0 1.5rem 0;
            flex-grow: 1;
        }

        .features-list li {
            padding: 0.4rem 0;
            font-size: 0.85rem;
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
            line-height: 1.4;
        }

        .features-list li i {
            color: var(--primary-color);
            margin-top: 0.1rem;
            flex-shrink: 0;
            width: 16px;
        }

        .features-list li strong {
            font-weight: 600;
        }

        /* Tags styling */
        .project-tags {
            margin-bottom: 1rem;
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .project-tags span {
            background-color: var(--primary-color);
            color: #000;
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            white-space: nowrap;
        }

        .view-demo-btn {
            background-color: var(--primary-color);
            color: #000;
            padding: 0.75rem 1rem;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: var(--transition);
            font-size: 0.9rem;
            align-self: flex-start;
            margin-top: auto;
        }

        .view-demo-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            color: #000;
        }

        /* Responsive design */
        @media (max-width: 991.98px) {
            .projects-section {
                padding: 3rem 0;
            }
            
            .section-header {
                margin-bottom: 2rem;
            }
            
            .section-header .d-flex {
                flex-direction: column;
                align-items: flex-start !important;
                gap: 1rem;
            }
            
            .view-all-btn {
                align-self: flex-start;
            }
        }

        @media (max-width: 767.98px) {
            .projects-section {
                padding: 2rem 0;
            }
            
            .project-img {
                height: 200px;
            }
            
            .project-content {
                padding: 1.25rem;
            }
            
            .project-content h4 {
                font-size: 1.1rem;
            }
            
            .features-list li {
                font-size: 0.8rem;
            }
            
            .project-tags span {
                font-size: 0.7rem;
                padding: 0.2rem 0.6rem;
            }
        }

        @media (max-width: 575.98px) {
            .projects-section {
                padding: 1.5rem 0;
            }
            
            .section-title {
                font-size: 1.75rem;
            }
            
            .project-img {
                height: 180px;
            }
            
            .project-content {
                padding: 1rem;
            }
            
            .features-list li {
                padding: 0.3rem 0;
            }
            
            .view-all-btn, .view-demo-btn {
                font-size: 0.85rem;
                padding: 0.6rem 1rem;
            }
        }

        /* Ensure equal height cards */
        .row-equal-height {
            display: flex;
            flex-wrap: wrap;
        }

        .row-equal-height > [class*="col-"] {
            display: flex;
        }
.contact-info {
    margin-bottom: 20px;
}

.contact-info i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.2rem;
}

.social-links a {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-right: 15px;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Work Experience Section Styles */
        /* Section styling with enhanced padding */
        .work-experiences {
            background-color: transparent;
            padding: 4rem 0;
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 2.5rem);
            font-weight: 700;
            margin-bottom: 3rem;
            border-bottom: 4px solid var(--primary-color);
            display: inline-block;
            padding-bottom: 0.5rem;
        }

        /* Individual work experience cards */
        .work-experience {
            background-color: var(--card-bg);
            border-radius: 20px;
            padding: 2.5rem;
            margin-bottom: 2rem;
            border: 1px solid var(--border-color);
            box-shadow: 0 8px 25px var(--shadow-color);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .work-experience::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 6px;
            height: 100%;
            background: linear-gradient(180deg, var(--primary-color) 0%, rgba(255, 215, 0, 0.7) 100%);
            transition: var(--transition);
        }

        .work-experience:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px var(--shadow-hover);
        }

        .work-experience:hover::before {
            width: 8px;
        }

        /* Header section with improved spacing */
        .work-experience-header {
            display: flex;
            align-items: center;
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 2px solid rgba(var(--text-color-rgb), 0.1);
        }

        .company-logo {
            width: 90px;
            height: 90px;
            margin-right: 1.5rem;
            border-radius: 15px;
            object-fit: contain;
            background-color: white;
            padding: 12px;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
            transition: var(--transition);
            flex-shrink: 0;
        }

        .work-experience:hover .company-logo {
            transform: scale(1.05);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

        .job-details {
            flex-grow: 1;
            min-width: 0;
        }

        .job-title {
            margin: 0 0 0.75rem 0;
            color: var(--primary-color);
            font-size: clamp(1.2rem, 2.5vw, 1.5rem);
            font-weight: 700;
            line-height: 1.3;
        }

        .company-name {
            color: var(--text-color);
            font-size: clamp(1rem, 2vw, 1.15rem);
            opacity: 0.9;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .job-duration {
            color: rgba(var(--text-color-rgb), 0.7);
            font-size: 0.95rem;
            font-weight: 500;
            background-color: rgba(var(--text-color-rgb), 0.05);
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            display: inline-block;
        }

        /* Details section with enhanced spacing */
        .work-experience-details {
            padding: 0 1rem;
        }

        .work-experience-details ul {
            padding-left: 0;
            list-style-type: none;
            margin-bottom: 1.5rem;
        }

        .work-experience-details ul li {
            margin-bottom: 1rem;
            position: relative;
            padding-left: 2rem;
            padding-right: 1rem;
            line-height: 1.7;
            font-size: 0.95rem;
        }

        .work-experience-details ul li::before {
            content: '▶';
            color: var(--primary-color);
            position: absolute;
            left: 0;
            top: 0;
            font-size: 0.8rem;
            line-height: 1.7;
            transition: var(--transition);
        }

        .work-experience:hover .work-experience-details ul li::before {
            transform: translateX(3px);
        }

        /* Button styling */
        .btn-outline-primary {
            border-color: var(--primary-color);
            color: var(--primary-color);
            padding: 0.75rem 1.5rem;
            font-weight: 600;
            border-radius: 10px;
            transition: var(--transition);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-outline-primary:hover {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            color: #000;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
        }

        /* Responsive design */
        @media (max-width: 991.98px) {
            .work-experiences {
                padding: 3rem 0;
            }
            
            .work-experience {
                padding: 2rem;
            }
            
            .section-title {
                margin-bottom: 2rem;
            }
        }

        @media (max-width: 767.98px) {
            .work-experiences {
                padding: 2rem 0;
            }
            
            .work-experience {
                padding: 1.5rem;
                margin-bottom: 1.5rem;
            }
            
            .work-experience-header {
                flex-direction: column;
                text-align: center;
                align-items: center;
                margin-bottom: 1.5rem;
                padding-bottom: 1rem;
            }
            
            .company-logo {
                margin-right: 0;
                margin-bottom: 1rem;
                width: 80px;
                height: 80px;
            }
            
            .job-details {
                text-align: center;
                width: 100%;
            }
            
            .work-experience-details {
                padding: 0;
            }
            
            .work-experience-details ul li {
                padding-left: 1.5rem;
                padding-right: 0;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 575.98px) {
            .work-experiences {
                padding: 1.5rem 0;
            }
            
            .work-experience {
                padding: 1.25rem;
            }
            
            .company-logo {
                width: 70px;
                height: 70px;
            }
            
            .job-title {
                font-size: 1.1rem;
            }
            
            .company-name {
                font-size: 0.95rem;
            }
            
            .job-duration {
                font-size: 0.85rem;
            }
            
            .work-experience-details ul li {
                font-size: 0.85rem;
                margin-bottom: 0.75rem;
            }
        }

        /* Additional spacing utilities */
        .mt-custom {
            margin-top: 1.5rem;
        }

        /* Dark mode toggle for demo */
        .theme-toggle {
            position: fixed;
            top: 20px;
            right: 20px;
            background: var(--primary-color);
            border: none;
            padding: 10px;
            border-radius: 50%;
            cursor: pointer;
            z-index: 1000;
            transition: var(--transition);
        }

        .theme-toggle:hover {
            transform: scale(1.1);
        }

        /* Animation for smooth reveal */
        .work-experience {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.6s ease forwards;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Stagger animation delays */
        .work-experience:nth-child(2) { animation-delay: 0.1s; }
        .work-experience:nth-child(3) { animation-delay: 0.2s; }
        .work-experience:nth-child(4) { animation-delay: 0.3s; }
        .work-experience:nth-child(5) { animation-delay: 0.4s; }
        .work-experience:nth-child(6) { animation-delay: 0.5s; }
        .work-experience:nth-child(7) { animation-delay: 0.6s; }
        .work-experience:nth-child(8) { animation-delay: 0.7s; }

/* Add these styles to the existing CSS */
footer {
    background-color: var(--bg-color);
    padding: 30px 0;
    transition: var(--transition);
    font-family: 'Courier New', Courier, monospace;
    border-top: 2px solid var(--primary-color);
}

/* Terminal-style footer design */
.terminal-footer {
    background-color: var(--bg-color);
    color: var(--primary-color);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.terminal-footer::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 15px;
    width: 12px;
    height: 12px;
    background-color: #ff5f56;
    border-radius: 50%;
    box-shadow: 20px 0 #ffbd2e, 40px 0 #27c93f;
}

.terminal-line {
    white-space: nowrap;
    overflow: hidden;
    position: relative;
    animation: typing 10s steps(70, end) infinite;
}

.terminal-line span {
    color: var(--text-color);
    opacity: 0.7;
}

@keyframes typing {
    0% {
        width: 0;
    }

    50% {
        width: 100%;
    }

    100% {
        width: 0;
    }
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.code-bracket {
    color: var(--primary-color);
    font-weight: bold;
    margin: 0 5px;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-section {
        margin-bottom: 15px;
    }
}

/* 🔹 Footer Styling */
footer {
    background-color: var(--footer-bg);
    padding: 40px 0;
    font-family: 'Courier New', Courier, monospace;
    text-align: center;
    color: var(--text-color);
    border-top: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

/* 🔹 Typing Effect Container */
.terminal-text {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    font-size: 1.2rem;
    border-right: 2px solid var(--cursor-blink);
    animation: blinkCursor 0.6s infinite;
}

/* 🔹 Cursor Blinking */
@keyframes blinkCursor {
    50% {
        border-color: transparent;
    }
}

/* 🔹 Fade-in Footer Animation */
footer {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 🔹 Social Icons */
.footer-icons {
    margin-top: 15px;
}

.footer-icons a {
    color: var(--text-color);
    font-size: 1.5rem;
    margin: 0 10px;
    transition: var(--transition);
}

.footer-icons a:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}


@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
}