@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');

:root {
    --primary-color: #00ff00;
    --secondary-color: #0077be;
    --background-color: #121212;
    --text-color: #ffffff;
    --accent-color: #ff4081;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Orbitron', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

header.scrolled {
    background-color: rgba(18, 18, 18, 0.9);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;

}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-shield {
    width: 40px;
    height: 50px;
    background-color: #00ff00;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    justify-content: center;
    align-items: center;
    animation: pulse 2s infinite;
}

.logo-p {
    font-size: 30px;
    font-weight: bold;
    color: #000;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.7);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-patnutsh {
    font-size: 24px;
    font-weight: bold;
    color: #00ff00;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.7);
}

.logo-tagline {
    font-size: 12px;
    color: #888;
    letter-spacing: 1px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Add this to your existing styles for hover effect */
.logo-container:hover .logo-shield {
    animation: rotate 0.5s ease-in-out;
}

@keyframes rotate {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px 0;
    transition: 0.3s;
}



.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    z-index: 2;
}

.glitch {
    font-size: 5rem;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    text-shadow: 0.05em 0 0 #00fffc, -0.03em -0.04em 0 #fc00ff,
        0.025em 0.04em 0 #fffc00;
    animation: glitch 725ms infinite;
}

.glitch span {
    position: absolute;
    top: 0;
    left: 0;
}

.glitch span:first-child {
    animation: glitch 500ms infinite;
    clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
    transform: translate(-0.04em, -0.03em);
    opacity: 0.75;
}

.glitch span:last-child {
    animation: glitch 375ms infinite;
    clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
    transform: translate(0.04em, 0.03em);
    opacity: 0.75;
}

@keyframes glitch {
    0% {
        text-shadow: 0.05em 0 0 #00fffc, -0.03em -0.04em 0 #fc00ff,
            0.025em 0.04em 0 #fffc00;
    }
    15% {
        text-shadow: 0.05em 0 0 #00fffc, -0.03em -0.04em 0 #fc00ff,
            0.025em 0.04em 0 #fffc00;
    }
    16% {
        text-shadow: -0.05em -0.025em 0 #00fffc, 0.025em 0.035em 0 #fc00ff,
            -0.05em -0.05em 0 #fffc00;
    }
    49% {
        text-shadow: -0.05em -0.025em 0 #00fffc, 0.025em 0.035em 0 #fc00ff,
            -0.05em -0.05em 0 #fffc00;
    }
    50% {
        text-shadow: 0.05em 0.035em 0 #00fffc, 0.03em 0 0 #fc00ff,
            0 -0.04em 0 #fffc00;
    }
    99% {
        text-shadow: 0.05em 0.035em 0 #00fffc, 0.03em 0 0 #fc00ff,
            0 -0.04em 0 #fffc00;
    }
    100% {
        text-shadow: -0.05em 0 0 #00fffc, -0.025em -0.04em 0 #fc00ff,
            -0.04em -0.025em 0 #fffc00;
    }
}

.rotating-text {
    font-size: 1.5rem;
    margin: 20px 0;
}

.txt-rotate {
    color: #00ff00;
}

.hero-description {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.2rem;
    color: #cccccc;
}

.cta-btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #00ff00;
    color: #000000;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
}

.cta-btn:hover {
    background-color: #00cc00;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 255, 0, 0.2);
}

#particle-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.matrix-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(18, 18, 18, 0.9);
        padding: 20px;
        flex-direction: column;
        align-items: center;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero p {
        font-size: 18px;
    }
}

/* Rest of the CSS remains the same, but update color variables as needed */
.about-section {
    padding: 80px 0;
    background-color: #0c0c0c;
    color: #00ff00;
}

.glitch-text {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch-text::before {
    left: 2px;
    text-shadow: -2px 0 #ff00ff;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch-text::after {
    left: -2px;
    text-shadow: -2px 0 #00ffff;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% {
        clip: rect(31px, 9999px, 94px, 0);
    }
    10% {
        clip: rect(112px, 9999px, 76px, 0);
    }
    20% {
        clip: rect(85px, 9999px, 77px, 0);
    }
    /* ... add more keyframes as desired ... */
    100% {
        clip: rect(67px, 9999px, 78px, 0);
    }
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.terminal {
    flex: 1;
    background-color: #000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
}

.terminal-header {
    background-color: #333;
    padding: 10px;
    display: flex;
    gap: 5px;
}

.terminal-button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ff5f56;
}

.terminal-button:nth-child(2) {
    background-color: #ffbd2e;
}

.terminal-button:nth-child(3) {
    background-color: #27c93f;
}

.terminal-body {
    padding: 20px;
    font-family: 'Courier New', monospace;
}

.prompt {
    color: #00ff00;
}

.command {
    color: #ffffff;
}

.response {
    color: #00ff00;
    margin-bottom: 10px;
}

.typed-cursor {
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}

.about-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.glitch-image {
    width: 90%;
    height: 90%;

    filter: grayscale(100%) contrast(120%);
    animation: glitch-image 5s infinite;
}

@keyframes glitch-image {
    0% {
        transform: translate(0);
    }
    20% {
        transform: translate(-5px, 5px);
    }
    40% {
        transform: translate(-5px, -5px);
    }
    60% {
        transform: translate(5px, 5px);
    }
    80% {
        transform: translate(5px, -5px);
    }
    100% {
        transform: translate(0);
    }
}


.skills {
    background-color: #000;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.skills::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 255, 0, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 80% 80%, rgba(0, 255, 0, 0.05) 0%, transparent 20%);
    z-index: 1;
}

.skills .container {
    position: relative;
    z-index: 2;
}

.skill-network {
    width: 100%;
    height: 600px;
    margin-bottom: 40px;
}

#skill-svg {
    width: 100%;
    height: 100%;
}

.skill-node circle {
    transition: all 0.3s ease;
}

.skill-node text {
    font-size: 14px;
    fill: #fff;
    pointer-events: none;
}

.skill-node:hover circle {
    filter: brightness(1.2);
}

.skill-node.active circle {
    stroke: #00ff00;
    stroke-width: 3;
}

.skill-details {
    background-color: rgba(0, 255, 0, 0.1);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.skill-details h3 {
    color: #00ff00;
    margin-bottom: 10px;
}

.skill-details p {
    color: #ccc;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.skill-node.active {
    animation: pulse 1.5s infinite;
}

footer {
    background-color: #111;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }

    .about-content {
        flex-direction: column;
    }

    .about-image {
        flex: 0 0 100%;
        margin-bottom: 20px;
    }

    .skill-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        padding: 20px;
    }

    .nav-links.active {
        display: block;
    }

    .nav-links li {
        margin: 10px 0;
    }
}


.tech-stack {
    background-color: #0c0c0c;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.tech-carousel {
    position: relative;
    overflow: hidden;
}

.tech-grid {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
    padding: 20px 0;
}

.tech-grid::-webkit-scrollbar {
    display: none; /* WebKit */
}

.tech-item {
    flex: 0 0 auto;
    width: 120px;
    margin-right: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tech-item img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.tech-item p {
    margin-top: 10px;
    color: #fff;
    font-size: 14px;
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 255, 0, 0.3);
    border: none;
    color: #fff;
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s ease;
}

.nav-arrow:hover {
    background-color: rgba(0, 255, 0, 0.5);
}

.left-arrow {
    left: 10px;
}

.right-arrow {
    right: 10px;
}

.tech-details {
    margin-top: 30px;
}

.tech-info {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    transition: opacity 0.3s ease;
}

.tech-info h3 {
    color: #00ff00;
    margin-bottom: 10px;
}

.tech-info p {
    color: #ccc;
    line-height: 1.6;
}

.articles {
    padding: 80px 0;
    background-color: #000;
}

.articles h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: #00ff00;
}

.article-filter {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: #333333;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #ffffff;
    border-radius: 4px;
}

.filter-btn.active {
    background-color: #0077be;
}

.article-carousel {
    overflow-x: auto;
    padding-bottom: 20px;
}

.article-row {
    display: flex;
    gap: 20px;
    padding-bottom: 20px;
}

.article-card {
    flex: 0 0 300px;
    background-color: #111;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 255, 0, 0.2);
}

.article-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.article-content {
    padding: 20px;
}

.article-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #00ff00;
}

.article-excerpt {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 15px;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #888;
}

.read-more {
    color: #4CAF50;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #1DA1F2;
}

.article-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #ff4081;
    color: #000;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Scrollbar styling */
.article-carousel::-webkit-scrollbar {
    height: 8px;
}

.article-carousel::-webkit-scrollbar-track {
    background: #1a1a1a;
}

.article-carousel::-webkit-scrollbar-thumb {
    background: #0077be;
    border-radius: 4px;
}

.article-carousel::-webkit-scrollbar-thumb:hover {
    background: #005fa3;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .article-card {
        flex: 0 0 250px;
    }
}

@media (max-width: 480px) {
    .article-card {
        flex: 0 0 200px;
    }

    .filter-btn {
        padding: 8px 15px;
        font-size: 14px;
    }
}

/* Add these new styles */
.article-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.search-bar {
    display: flex;
    align-items: center;
    background-color: #222;
    border-radius: 25px;
    padding: 5px 15px;
    margin-bottom: 10px;
}

.search-bar input {
    background: none;
    border: none;
    color: #fff;
    padding: 10px;
    font-size: 16px;
    width: 200px;
}

.search-bar input::placeholder {
    color: #888;
}

.search-bar button {
    background: none;
    border: none;
    color: #00ff00;
    cursor: pointer;
    font-size: 18px;
}

.search-bar button:hover {
    color: #00cc00;
}

/* Update existing styles */
.article-filter {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .article-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .search-bar {
        margin-bottom: 20px;

    }
    
    .article-filter {
        justify-content: center;
    }
    
}

.projects-section {
background-color: #1a1a1a;
padding: 50px 0;
color: #ffffff;
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

h2 {
text-align: center;
margin-bottom: 30px;
color: #ffffff;
}

.project-filter {
display: flex;
justify-content: center;
margin-bottom: 30px;
flex-wrap: wrap;
}

.filter-btn {
background-color: #333333;
border: none;
padding: 10px 20px;
margin: 5px;
cursor: pointer;
transition: all 0.3s ease;
color: #ffffff;
border-radius: 4px;
}

.filter-btn.active {
background-color: #0077be;
}

.project-carousel {
overflow-x: auto;
padding-bottom: 20px; /* Space for scrollbar */
}

.project-row {
display: flex;
gap: 20px;
padding-bottom: 20px; /* Ensure last row is fully visible */
}

.project-card {
flex: 0 0 300px; /* Fixed width for consistency */
background-color: #2a2a2a;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease;
}

.project-card:hover {
transform: translateY(-5px);
}

.project-image {
width: 100%;
height: 150px;
object-fit: cover;
}

.project-info {
padding: 15px;
}

.project-title {
font-size: 18px;
font-weight: bold;
margin-bottom: 10px;
color: #ffffff;
}

.project-description {
font-size: 14px;
color: #cccccc;
margin-bottom: 10px;
}

.project-status {
font-size: 12px;
font-weight: bold;
text-transform: uppercase;
}

.status-completed { color: #4CAF50; }
.status-ongoing { color: #2196F3; }
.status-future { color: #FF9800; }

/* Scrollbar styling */
.project-carousel::-webkit-scrollbar {
height: 8px;
}

.project-carousel::-webkit-scrollbar-track {
background: #1a1a1a;
}

.project-carousel::-webkit-scrollbar-thumb {
background: #0077be;
border-radius: 4px;
}

.project-carousel::-webkit-scrollbar-thumb:hover {
background: #005fa3;
}

/* Responsive adjustments */
@media (max-width: 768px) {
.project-card {
flex: 0 0 250px; /* Slightly smaller on tablets */
}
}

@media (max-width: 480px) {
.project-card {
flex: 0 0 200px; /* Even smaller on phones */
}

.filter-btn {
padding: 8px 15px;
font-size: 14px;
}
}


/* Connect Section */
.connect-section {
    background-color: #0c0c0c;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.connect-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.connect-section .container {
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 2.5rem;
    color: #00ff00;
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 0 0 10px rgba(0,255,0,0.5);
}

.connect-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.connect-card {
    background-color: rgba(18, 18, 18, 0.8);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.connect-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,255,0,0.1) 0%, rgba(0,119,190,0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.connect-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 255, 0, 0.2);
}

.connect-card:hover::before {
    opacity: 1;
}

.card-content {
    padding: 30px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.connect-card i {
    font-size: 48px;
    color: #00ff00;
    margin-bottom: 20px;
}

.connect-card h3 {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 10px;
}

.connect-card p {
    font-size: 16px;
    color: #cccccc;
    margin-bottom: 20px;
}

.connect-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #00ff00;
    color: #000000;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.connect-btn:hover {
    background-color: #00cc00;
    transform: translateY(-3px);
}



/* Custom styles for each card */
.connect-card.github i { color: #6e5494; }
.connect-card.linkedin i { color: #0077b5; }
.connect-card.email i { color: #D44638; }
.connect-card.twitter i { color: #1DA1F2; }

@media (max-width: 768px) {
    .connect-grid {
        grid-template-columns: 1fr;
    }
}
  
/* Footer Styles */
.footer {
    background-color: #0c0c0c;
    color: #ffffff;
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,255,0,0.05) 0%, rgba(0,119,190,0.05) 100%);
    z-index: 1;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 1;
    max-width: 200px;
}

.footer-logo-img {
    width: 80px;
    margin-bottom: 10px;
    filter: brightness(0) invert(1);
}



.footer-logo p {
    font-size: 18px;
    font-weight: bold;
    color: #00ff00;
}

.footer-links {
    flex: 1;
    max-width: 200px;
}

.footer-links h4, .footer-social h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #00ff00;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00ff00;
}

.footer-social {
    flex: 1;
    max-width: 200px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #ffffff;
    font-size: 24px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    color: #00ff00;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333333;
}

.footer-bottom p {
    font-size: 14px;
    color: #888888;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-logo, .footer-links, .footer-social {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .social-icons {
        justify-content: center;
    }
}