* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    scroll-behavior: smooth;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 255, 127, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(50, 255, 150, 0.03) 0%, transparent 50%);
    z-index: -1;
}

.container {
    display: flex;
    min-height: 100vh;
}

/* Skip to main content link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #00ff7f;
    color: #000;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10000;
    font-weight: bold;
}

.skip-link:focus {
    top: 6px;
}

/* Sidebar Navigation */
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 280px;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(20px);
    border-right: 1px solid rgba(0, 255, 127, 0.1);
    z-index: 1000;
    padding: 2rem 0;
    transform: translateX(0);
    transition: transform 0.3s ease;
    box-shadow: 
        inset -1px 0 0 rgba(0, 255, 127, 0.1),
        20px 0 40px rgba(0, 0, 0, 0.5);
}

.sidebar.hidden {
    transform: translateX(-100%);
}

.logo {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 2rem;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, #00ff7f, #00ffff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(0, 255, 127, 0.3);
}

.logo p {
    font-size: 0.9rem;
    color: #888;
}

.nav-menu {
    list-style: none;
    padding: 0 1rem;
}

.nav-item {
    margin-bottom: 0.5rem;
}

.nav-link {
    display: block;
    padding: 1rem 1.5rem;
    color: #ffffff;
    text-decoration: none;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    background: #1a1a1a;
    box-shadow: 
        inset 8px 8px 16px #0f0f0f,
        inset -8px -8px 16px #252525;
}

.nav-link:hover, .nav-link.active {
    background: #1a1a1a;
    box-shadow: 
        0 0 25px rgba(0, 255, 127, 0.4),
        inset 0 0 20px rgba(0, 255, 127, 0.1),
        inset 8px 8px 16px #0f0f0f,
        inset -8px -8px 16px #252525;
    transform: translateY(-2px);
    color: #00ff7f;
}

/* Main Content */
.main-content {
    margin-left: 280px;
    flex: 1;
    transition: margin-left 0.3s ease;
}

.main-content.expanded {
    margin-left: 0;
}

.mobile-toggle {
    display: none;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1001;
    background: #1a1a1a;
    border: none;
    color: #00ff7f;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
    backdrop-filter: blur(10px);
    box-shadow: 
        8px 8px 16px #0f0f0f,
        -8px -8px 16px #252525;
}

/* Fixed Social Buttons */
.fixed-social-buttons {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1000;
}

.fixed-social-btn {
    width: 60px;
    height: 60px;
    background: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #00ff7f;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 
        10px 10px 20px #0f0f0f,
        -10px -10px 20px #252525;
    position: relative;
}

.fixed-social-btn::after {
    content: attr(data-text);
    position: absolute;
    left: -120px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.fixed-social-btn::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid rgba(0, 0, 0, 0.9);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    opacity: 0;
    transition: all 0.3s ease;
}

.fixed-social-btn:hover::after {
    opacity: 1;
    left: -130px;
}

.fixed-social-btn:hover::before {
    opacity: 1;
    left: -18px;
}

.fixed-social-btn:hover {
    transform: scale(1.1);
    box-shadow: 
        0 0 20px rgba(0, 255, 127, 0.5),
        10px 10px 20px #0f0f0f,
        -10px -10px 20px #252525;
}

.fixed-social-btn.linkedin {
    background: #0077b5;
    color: white;
}

.fixed-social-btn.fiverr {
    background: #1dbf73;
    color: white;
}

.fixed-social-btn.blog {
    background: #ff6b35;
    color: white;
}

.fixed-social-btn.portfolio {
    background: #8b5cf6;
    color: white;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00ff7f;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 
        10px 10px 20px #0f0f0f,
        -10px -10px 20px #252525;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: scale(1.1);
    box-shadow: 
        0 0 20px rgba(0, 255, 127, 0.5),
        10px 10px 20px #0f0f0f,
        -10px -10px 20px #252525;
}

/* Sections */
.section {
    min-height: 100vh;
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-content {
    max-width: 1200px;
    width: 100%;
}

/* Hero Section */
.hero {
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 255, 127, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    background: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    box-shadow: 
        20px 20px 40px #0f0f0f,
        -20px -20px 40px #252525,
        inset 0 0 20px rgba(0, 255, 127, 0.1);
    position: relative;
    overflow: hidden;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 127, 0.1), transparent);
    animation: rotate 3s linear infinite;
}

.hero-profile-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    z-index: 1;
    position: relative;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #00ff7f, #00ffff, #ffffff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s ease;
    text-shadow: 0 0 30px rgba(0, 255, 127, 0.3);
}

.hero p {
    font-size: 1.3rem;
    color: #bbb;
    margin-bottom: 2rem;
    line-height: 1.6;
    animation: fadeInUp 1s ease 0.2s both;
}

.social-icons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 15px 30px;
    background: #1a1a1a;
    color: #00ff7f;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 
        15px 15px 30px #0f0f0f,
        -15px -15px 30px #252525;
    animation: fadeInUp 1s ease 0.4s both;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 0 30px rgba(0, 255, 127, 0.5),
        15px 15px 30px #0f0f0f,
        -15px -15px 30px #252525;
}

.social-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, #00ff7f, #00ffff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #000;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: #1a1a1a;
    color: #00ff7f;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 
        15px 15px 30px #0f0f0f,
        -15px -15px 30px #252525;
    animation: fadeInUp 1s ease 0.4s both;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 0 30px rgba(0, 255, 127, 0.5),
        15px 15px 30px #0f0f0f,
        -15px -15px 30px #252525;
    background: #1a1a1a;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid .service-card:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid .service-card:nth-child(5) {
        grid-column: 1;
        max-width: none;
        margin: 0;
    }
}

.service-cta-section {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem; /* Reduced from 3rem to 2rem */
    flex-wrap: wrap;
}

.service-cta-btn {
    padding: 15px 30px;
    background: #1a1a1a;
    color: #00ff7f;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 
        15px 15px 30px #0f0f0f,
        -15px -15px 30px #252525;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 0 25px rgba(0, 255, 127, 0.4),
        15px 15px 30px #0f0f0f,
        -15px -15px 30px #252525;
}

.service-card {
    background: #1a1a1a;
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 
        20px 20px 40px #0f0f0f,
        -20px -20px 40px #252525;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 0 40px rgba(0, 255, 127, 0.3),
        20px 20px 40px #0f0f0f,
        -20px -20px 40px #252525,
        inset 0 0 20px rgba(0, 255, 127, 0.1);
}

.service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(45deg, #00ff7f, #00ffff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 
        10px 10px 20px #0f0f0f,
        -10px -10px 20px #252525,
        inset 0 0 20px rgba(0, 255, 127, 0.2);
}

.service-card h3 {
    color: #00ff7f;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.service-card p {
    color: #bbb;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    text-align: center; /* Center the container */
    margin: 1rem 0;
    padding: 0; /* Removed padding */
    display: flex;
    flex-direction: column;
    align-items: center; /* Center the list items */
}

.service-features li {
    padding: 0.3rem 0;
    color: #bbb;
    position: relative;
    text-align: left; /* Keep text left-aligned */
    padding-left: 1.5rem; /* Add padding for checkmark space */
}

.service-features li::before {
    content: '✓ ';
    color: #00ff7f;
    font-weight: bold;
    position: absolute;
    left: 0; /* Position checkmark at the left of each item */
}

.service-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.service-link {
    padding: 10px 20px;
    background: #1a1a1a;
    color: #00ff7f;
    text-decoration: none;
    border-radius: 15px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 
        8px 8px 16px #0f0f0f,
        -8px -8px 16px #252525;
}

.service-link:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 0 15px rgba(0, 255, 127, 0.4),
        8px 8px 16px #0f0f0f,
        -8px -8px 16px #252525;
}

/* Portfolio Section */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.portfolio-grid .portfolio-item:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 500px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid .portfolio-item:nth-child(5) {
        grid-column: 1;
        max-width: none;
        margin: 0;
    }
}

.portfolio-item {
    background: #1a1a1a;
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 
        20px 20px 40px #0f0f0f,
        -20px -20px 40px #252525;
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 0 35px rgba(0, 255, 127, 0.3),
        20px 20px 40px #0f0f0f,
        -20px -20px 40px #252525,
        inset 0 0 15px rgba(0, 255, 127, 0.1);
}

.portfolio-item .service-icon {
    width: 80px;
    height: 80px;
    font-size: 2rem;
}

.portfolio-item h4 {
    color: #00ff7f;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* Contact Info Section */
.contact-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem; /* Reduced from 3rem to 2rem */
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1024px) {
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
    }
}

@media (max-width: 640px) {
    .contact-info {
        grid-template-columns: 1fr;
        max-width: 400px;
        gap: 1.5rem;
    }
}

.contact-item {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 
        15px 15px 30px #0f0f0f,
        -15px -15px 30px #252525;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 180px;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 0 25px rgba(0, 255, 127, 0.3),
        15px 15px 30px #0f0f0f,
        -15px -15px 30px #252525;
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(45deg, #00ff7f, #00ffff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #000;
}

.contact-item h4 {
    color: #00ff7f;
    margin-bottom: 0.5rem;
}

.contact-item p, .contact-item a {
    color: #bbb;
    text-decoration: none;
}

.contact-item a:hover {
    color: #00ff7f;
}

/* Section Headers */
.section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #00ff7f, #00ffff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(0, 255, 127, 0.3);
}

/* About Section Styling */
.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    color: #bbb;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.education-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .education-grid {
        grid-template-columns: 1fr;
    }
}

.cv-button {
    display: inline-block;
    margin-top: 2rem;
    padding: 15px 30px;
    background: linear-gradient(45deg, #00ff7f, #00ffff);
    color: #000;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 
        15px 15px 30px #0f0f0f,
        -15px -15px 30px #252525;
}

.cv-button:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 0 25px rgba(0, 255, 127, 0.5),
        15px 15px 30px #0f0f0f,
        -15px -15px 30px #252525;
}

.education-item {
    background: #1a1a1a;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 
        15px 15px 30px #0f0f0f,
        -15px -15px 30px #252525;
    transition: all 0.3s ease;
    text-align: center; /* Center align all content */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.education-item:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 0 25px rgba(0, 255, 127, 0.3),
        15px 15px 30px #0f0f0f,
        -15px -15px 30px #252525;
}

.education-item h4 {
    color: #00ff7f;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    text-align: center;
}

.education-item .degree {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.education-item .institution {
    color: #bbb;
    margin-bottom: 0.5rem;
    text-align: center;
}

.education-item .gpa {
    color: #00ff7f;
    font-weight: 600;
    text-align: center;
}

/* Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin: 2rem auto; /* Reduced top margin from 3rem to 2rem */
    max-width: 900px;
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

.blog-category {
    background: #1a1a1a;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 
        15px 15px 30px #0f0f0f,
        -15px -15px 30px #252525;
}

.blog-category:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 0 25px rgba(0, 255, 127, 0.3),
        15px 15px 30px #0f0f0f,
        -15px -15px 30px #252525;
}

.blog-category .category-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.blog-category h4 {
    color: #00ff7f;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.blog-category p {
    color: #bbb;
    line-height: 1.6;
    font-size: 1rem;
}

/* Blog section button spacing fix */
.blog-section .cv-button {
    margin-top: 1.5rem; /* Reduced from 2rem to 1.5rem */
}

/* Call to Action Section */
.cta-section {
    text-align: center;
    padding: 4rem 2rem;
    margin: 0 auto;
    max-width: 800px;
}

.cta-section p {
    color: #bbb;
    line-height: 1.8;
    margin-bottom: 3rem;
    font-size: 1.2rem;
}

.footer-social-icons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.footer-social-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 25px;
    background: #1a1a1a;
    color: #00ff7f;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 
        15px 15px 30px #0f0f0f,
        -15px -15px 30px #252525;
    font-size: 0.95rem;
}

.footer-social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 0 25px rgba(0, 255, 127, 0.4),
        15px 15px 30px #0f0f0f,
        -15px -15px 30px #252525;
}

.footer-social-icon {
    width: 25px;
    height: 25px;
    background: linear-gradient(45deg, #00ff7f, #00ffff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #000;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    .sidebar {
        transform: translateX(-100%);
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .main-content {
        margin-left: 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section {
        padding: 2rem 1rem;
    }

    .services-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .fixed-social-buttons {
        display: none;
    }

    .service-links {
        flex-direction: column;
        align-items: center;
    }

    .footer-social-icons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

@media (max-width: 1024px) {
    .services-grid,
    .portfolio-grid {
        max-width: 600px;
    }
    
    .fixed-social-buttons {
        display: none;
    }
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.5);
    text-align: center;
    padding: 2rem;
    margin-left: 280px;
    transition: margin-left 0.3s ease;
    border-top: 1px solid rgba(0, 255, 127, 0.1);
}

.footer.expanded {
    margin-left: 0;
}

@media (max-width: 768px) {
    .footer {
        margin-left: 0;
    }
}
