</* @import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700;900&display=swap'); */

@font-face {
    font-family: 'Astron';
    src: url('../fonts/Atrons.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Orbitron';
    src: url('../fonts/Orbitron.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #000000;
    color: #ffffff;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 10000;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    transition: background 0.2s ease, color 0.2s ease;
}

.skip-link:focus {
    top: 0;
}

body.light-mode .skip-link {
    background: #ffffff;
    color: #000000;
}

/* Focus visible styles for better keyboard navigation */
*:focus-visible {
    outline: 3px solid #1a237e;
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
    outline: 3px solid #1a237e;
    outline-offset: 2px;
}

body.light-mode *:focus-visible,
body.light-mode button:focus-visible,
body.light-mode a:focus-visible {
    outline: 3px solid #6b8cc4;
    outline-offset: 2px;
}

.skip-link:focus-visible {
    outline: none;
}

:root {
    --bg-gradient-start: #000000;
    --bg-gradient-mid: #000000;
    --bg-gradient-end: #b71c1c;
    --nav-bg: rgba(0, 0, 0, 0.85);
    --nav-border: #1a237e;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.9);
    --hero-bg: radial-gradient(ellipse at center, rgba(26, 35, 126, 0.3) 0%, transparent 70%);
    --grid-color: rgba(26, 35, 126, 0.3);
    --particle-color: rgba(26, 35, 126, 0.8);
    --scanline-color: rgba(26, 35, 126, 0.8);
    --bubble-shadow: rgba(0, 0, 0, 0.5);
    --footer-bg: rgba(0, 0, 0, 0.95);
    --footer-text: #e0e0e0;
    --menu-overlay: rgba(0, 0, 0, 0.7);
    --hero-gradient-color: rgba(183, 28, 28, 0.8);
}

body.light-mode {
    --bg-gradient-start: #ffffff;
    --bg-gradient-mid: #ffffff;
    --bg-gradient-end: #ffffff;
    --nav-bg: rgba(255, 255, 255, 0.95);
    --nav-border: #6b8cc4;
    --text-primary: #1a1a1a;
    --text-secondary: #333333;
    --hero-bg: radial-gradient(ellipse at center, rgba(107, 140, 196, 0.2) 0%, transparent 70%);
    --grid-color: rgba(107, 140, 196, 0.4);
    --particle-color: rgba(107, 140, 196, 0.9);
    --scanline-color: rgba(107, 140, 196, 0.6);
    --bubble-shadow: rgba(0, 0, 0, 0.2);
    --footer-bg: rgba(255, 255, 255, 0.95);
    --footer-text: #333333;
    --menu-overlay: rgba(255, 255, 255, 0.8);
    --hero-gradient-color: rgba(255, 255, 255, 0.8);
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background: #000000;
    background-attachment: fixed;
    min-height: 100vh;
    color: var(--text-primary);
    transition: background 0.2s ease, color 0.2s ease;
}

body.light-mode {
    background: #ffffff;
    transition: background 0.2s ease, color 0.2s ease;
}

.theme-toggle {
    background: none;
    border: 2px solid var(--text-primary);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
    color: var(--text-primary);
    padding: 8px;
}

.theme-toggle:hover {
    transform: scale(1.1);
    background: var(--grid-color);
}

.theme-toggle svg {
    width: 24px;
    height: 24px;
}

.sun-icon {
    display: none;
}

.moon-icon {
    display: block;
}

body.light-mode .sun-icon {
    display: block;
}

body.light-mode .moon-icon {
    display: none;
}

nav {
    background-color: var(--nav-bg);
    border-bottom: 3px solid var(--nav-border);
    backdrop-filter: blur(10px);
    padding: 0.75rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    min-height: 70px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 120px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
}

.lang-toggle-container {
    position: relative;
}

.lang-toggle {
    background: none;
    border: 2px solid var(--text-primary);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, border 0.3s ease;
    color: var(--text-primary);
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    min-width: 50px;
}

.lang-toggle:hover {
    transform: scale(1.05);
    background: var(--grid-color);
}

.lang-arrow {
    transition: transform 0.3s ease;
}

.lang-toggle[aria-expanded="true"] .lang-arrow {
    transform: rotate(180deg);
}

.lang-text {
    display: block;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: var(--nav-bg);
    border: 2px solid var(--nav-border);
    border-radius: 8px;
    padding: 0.5rem;
    min-width: 220px;
    max-height: 400px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.lang-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.lang-dropdown button {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-primary);
    padding: 0.75rem 1rem;
    text-align: left;
    cursor: pointer;
    border-radius: 6px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
    display: block;
}

.lang-dropdown button:hover {
    background: var(--grid-color);
    transform: translateX(5px);
}

.lang-dropdown button[data-lang] {
    position: relative;
}

.lang-dropdown::-webkit-scrollbar {
    width: 8px;
}

.lang-dropdown::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.lang-dropdown::-webkit-scrollbar-thumb {
    background: var(--grid-color);
    border-radius: 4px;
}

.lang-dropdown::-webkit-scrollbar-thumb:hover {
    background: var(--hero-gradient-color);
}

.social-icons {
    display: none;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease, transform 0.3s ease;
    padding: 10px;
}

.social-icon img,
.social-icon svg {
    width: 30px;
    height: 30px;
padding: 1px;}

.social-icon:hover {
    background-color: rgba(26, 35, 126, 0.8);
    transform: translateY(-2px);
}


.mobile-footer {
    display: none;
}

.nav-menu li a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Orbitron', sans-serif;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background 0.3s ease, color 0.2s ease, transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-menu li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a237e 0%, #b71c1c 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    border-radius: 4px;
}

body.light-mode .nav-menu li a::before {
    background: linear-gradient(135deg, #6b8cc4 0%, #1976D2 100%);
}

.nav-menu li a:hover {
    color: var(--text-primary);
    transform: translateY(-2px);
}

body.light-mode .nav-menu li a:hover {
    color: #ffffff;
}

.nav-menu li a:hover::before {
    opacity: 1;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    margin: 5px 0;
    transition: 0.3s;
}


@media (max-width: 768px) {
    nav {
        position: sticky;
    }

    .nav-container {
        gap: 1rem;
        flex-wrap: wrap;
        position: relative;
    }

    .mobile-menu-toggle {
        display: block;
        order: 2;
        z-index: 1001;
    }

    .logo {
        order: 1;
        z-index: 1001;
    }

    .nav-controls {
        order: 3;
        margin-left: 0;
        gap: 0.5rem;
    }

    .theme-toggle,
    .lang-toggle {
        width: 40px;
        height: 40px;
        padding: 0.4rem;
        min-width: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .lang-toggle {
        font-size: 0.75rem;
    }

    .nav-menu {
        position: fixed;
        top: 152px;
        left: -100%;
        width: 280px;
        height: calc(100vh - 150px);
        background: #ffffff;
        flex-direction: column;
        gap: 0;
        overflow-y: auto;
        transition: left 0.3s ease;
        border-right: 3px solid #6b8cc4;
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        text-align: center;
        padding: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .nav-menu li a {
        display: block;
        padding: 1rem 1rem;
        font-size: 1.1rem;
        color: #000000;
    }

    .nav-menu li a:hover {
        color: #1a237e;
    }

    body.light-mode .nav-menu {
        background: #ffffff;
        border-right: 3px solid #6b8cc4;
    }

    body.light-mode .nav-menu li a {
        color: #000000;
    }

    body.light-mode .nav-menu li a:hover {
        color: #1a237e;
    }
    
    body:not(.light-mode) .nav-menu {
        background: #000000;
        border-right: 3px solid #6b8cc4;
    }
    
    body:not(.light-mode) .nav-menu li a {
        color: #ffffff;
    }
    
    body:not(.light-mode) .nav-menu li a:hover {
        color: #6b8cc4;
    }

    body:not(.light-mode) .nav-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }



    .social-icons {
        position: fixed;
        top: 600px;
        left: -100%;
        width: 280px;
        background: rgba(15, 15, 25, 0.98);
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 0.75rem;
        padding: 1rem;
        margin-left: 0;
        transition: left 0.3s ease;
        border-right: 3px solid #1a237e;
        border-top: 2px solid rgba(255, 255, 255, 0.2);
        z-index: 1000;
    }

    .social-icons.active {
        left: 0;
    }

    .social-icon {
        width: 50px;
        height: 50px;
        margin: 0;
        padding: 8px;
    }

    .social-icon img,
    .social-icon svg {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    
    .mobile-footer {
        position: fixed;
        top: 5860px;
        left: -100%;
        width: 280px;
        background: rgba(15, 15, 25, 0.98);
        padding: 1.5rem;
        text-align: center;
        transition: left 0.3s ease;
        border-right: 3px solid #1a237e;
        border-top: 2px solid rgba(255, 255, 255, 0.2);
        z-index: 1000;
    }

    .mobile-footer.active {
        left: 0;
    }

    .mobile-footer p {
        color: rgba(255, 255, 255, 0.8);
        font-family: 'Orbitron', sans-serif;
        font-size: 0.9rem;
        margin: 0;
        font-weight: 500;
    }

    
    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--menu-overlay);
        z-index: 999;
    }

    .menu-overlay.active {
        display: block;
    }
}

main {
    padding: 0;
    max-width: 100%;
    margin: 0 auto;
}

.hero {
    position: relative;
    width: 100%;
    margin-bottom: 0;
    min-height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: url('../images/Banner1.jpg') center center / cover no-repeat;
    opacity: 0.5;
    transition: opacity 0.2s ease;
}

body.light-mode .hero-background {
    opacity: 0.3;
}

.hero-background::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, 
        transparent 0%,
        rgba(0, 0, 0, 0.5) 30%,
        rgba(0, 0, 0, 0.8) 60%,
        #000000 100%);
    z-index: 2;
    transition: background 0.2s ease;
}

body.light-mode .hero-background::after {
    background: linear-gradient(to bottom, 
        transparent 0%,
        rgba(255, 255, 255, 0.5) 30%,
        rgba(255, 255, 255, 0.8) 60%,
        #ffffff 100%);
}

.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    max-width: 800px;
    padding: 4rem 2rem;
    transform: translateY(-10vh);
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    font-family: 'Astron', 'Orbitron', sans-serif;
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: 0.05em;
    text-shadow: 3px 3px 6px rgba(255, 255, 255, 0.5);
    transition: color 0.2s ease;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-family: 'Orbitron', sans-serif;
    font-weight: 500;
    letter-spacing: 0.03em;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin-top: 5rem;
}

.btn-explore {
    background-color: #b71c1c;
    color: #ffffff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: bold;
    font-family: 'Orbitron', sans-serif;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 8px 16px rgba(183, 28, 28, 0.4), 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-explore:hover {
    background-color: #d32f2f;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(183, 28, 28, 0.5), 0 6px 12px rgba(0, 0, 0, 0.4);
}

.btn-explore:active {
    transform: translateY(0);
    box-shadow: 0 4px 8px rgba(183, 28, 28, 0.3);
}

.btn-get-started {
    background-color: transparent;
    color: #ffffff;
    border: 3px solid #b71c1c;
    padding: 0.85rem 2.5rem;
    font-size: 1.1rem;
    font-weight: bold;
    font-family: 'Orbitron', sans-serif;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.btn-get-started:hover {
    background-color: rgba(183, 28, 28, 0.1);
    border-color: #d32f2f;
    transform: translateY(-2px);
}

.btn-get-started:active {
    transform: translateY(0);
}

body.light-mode .btn-explore {
    background-color: #64B5F6;
    color: #000000;
    box-shadow: 0 8px 16px rgba(100, 181, 246, 0.4), 0 4px 8px rgba(0, 0, 0, 0.2);
}

body.light-mode .btn-explore:hover {
    background-color: #42A5F5;
    box-shadow: 0 12px 24px rgba(100, 181, 246, 0.5), 0 6px 12px rgba(0, 0, 0, 0.3);
}

body.light-mode .btn-explore:active {
    box-shadow: 0 4px 8px rgba(100, 181, 246, 0.3);
}

body.light-mode .btn-get-started {
    color: #000000;
    border-color: #64B5F6;
}

body.light-mode .btn-get-started:hover {
    background-color: rgba(100, 181, 246, 0.2);
    border-color: #42A5F5;
}


.modern-content {
    padding: 6rem 2rem 8rem 2rem;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
}

.modern-content::after {
    content: '';
    position: absolute;
    bottom: -4rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 400px;
    background: linear-gradient(to bottom, transparent 0%, rgba(26, 35, 126, 0.3) 40%, rgba(26, 35, 126, 0.7) 100%);
    pointer-events: none;
    z-index: 0;
}

.content-wrapper {
    display: flex;
    align-items: center;
    gap: 5rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.content-header {
    flex: 1.2;
    min-width: 350px;
}

.content-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    transition: color 0.3s ease;
}

.content-header p {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.8;
    transition: color 0.3s ease;
}


.bubble-container {
    position: relative;
    flex: 1.5;
    min-width: 600px;
    height: 700px;
    border: none;
    border-radius: 20px;
    overflow: hidden;
    background: transparent;
    margin: 2rem 0;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
                inset 0 0 20px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.2);
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

.bubble-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
}

.bubble-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.bubble-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation: float1 6s ease-in-out infinite;
}

.bubble-2 {
    width: 160px;
    height: 160px;
    top: 60%;
    left: 70%;
    animation: float2 7s ease-in-out infinite;
}

.bubble-3 {
    width: 130px;
    height: 130px;
    top: 30%;
    left: 50%;
    animation: float3 5s ease-in-out infinite;
}

.bubble-4 {
    width: 100px;
    height: 100px;
    top: 70%;
    left: 20%;
    animation: float4 8s ease-in-out infinite;
}

.bubble-5 {
    width: 70px;
    height: 70px;
    top: 15%;
    left: 75%;
    animation: float5 6.5s ease-in-out infinite;
}

.bubble-6 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 10%;
    animation: float6 7.5s ease-in-out infinite;
}

.bubble-7 {
    width: 85px;
    height: 85px;
    top: 40%;
    left: 80%;
    animation: float7 6s ease-in-out infinite;
}


@keyframes float1 {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(40px, 60px);
    }
}

@keyframes float2 {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-50px, -40px);
    }
}

@keyframes float3 {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-30px, 50px);
    }
}

@keyframes float4 {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(60px, -30px);
    }
}

@keyframes float5 {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-40px, 40px);
    }
}

@keyframes float6 {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(50px, -45px);
    }
}

@keyframes float7 {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-35px, 55px);
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: calc(100vh - 70px);
    }

    .hero-content {
        padding: 2rem 1.5rem;
        transform: translateY(-5vh);
    }

    .hero h1 {
        font-size: 4rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .hero-buttons {
        margin-top: 3rem;
        flex-direction: column;
        gap: 1rem;
    }

    .btn-explore,
    .btn-get-started {
        width: 100%;
        max-width: 250px;
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }

    .modern-content {
        padding: 4rem 2rem 6rem 2rem;
    }
    
    .content-wrapper {
        flex-direction: column;
        gap: 3rem;
        margin-bottom: 3rem;
    }
    
    .content-header {
        text-align: center;
    }
    
    .bubble-container {
        height: 500px;
        min-width: 100%;
        max-width: 100%;
        width: 100%;
        overflow: visible;
        position: relative;
        margin: 3rem 0;
    }
    
    .bubble {
        position: absolute;
    }
    
    .bubble-1, .bubble-2, .bubble-4, .bubble-5, .bubble-7 {
        width: 80px;
        height: 80px;
    }
    
    .bubble-3, .bubble-6 {
        width: 100px;
        height: 100px;
    }
    
    
    .bubble-1 {
        top: 5%;
        left: 5%;
    }
    
    .bubble-2 {
        top: 50%;
        left: 60%;
    }
    
    .bubble-3 {
        top: 25%;
        left: 40%;
    }
    
    .bubble-4 {
        top: 60%;
        left: 10%;
    }
    
    .bubble-5 {
        top: 10%;
        left: 70%;
    }
    
    .bubble-6 {
        top: 40%;
        left: 5%;
    }
    
    .bubble-7 {
        top: 35%;
        left: 75%;
    }
}

.site-footer {
    background: var(--footer-bg);
    border-top: 3px solid var(--nav-border);
    padding: 3rem 2rem 1rem 2rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: var(--footer-text);
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--text-primary);
}

.footer-logo img {
    height: 150px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-social-icons {
    display: flex;
    gap: 1rem;
}

.footer-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--grid-color);
    transition: background-color 0.3s ease, transform 0.3s ease;
    padding: 10px;
}

.footer-icon img,
.footer-icon svg {
    width: 25px;
    height: 25px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

body.light-mode .footer-icon img,
body.light-mode .footer-icon svg {
    filter: brightness(0);
}

.footer-icon img[src*="Reddit"],
.footer-icon img[src*="Linkedin"] {
    filter: none !important;
}

body.light-mode .footer-icon img[src*="Reddit"],
body.light-mode .footer-icon img[src*="Linkedin"] {
    filter: none !important;
}

.footer-icon:hover {
    background-color: rgba(26, 35, 126, 0.8);
    transform: translateY(-3px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--grid-color);
    text-align: center;
}

.footer-bottom p {
    color: var(--footer-text);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.7;
}


@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-logo img {
        height: 80px;
        margin: 0 auto 1rem auto;
        display: block;
    }

    .footer-social-icons {
        justify-content: center;
    }

    .footer-bottom {
        display: block;
    }
    
    .mobile-footer {
        display: none !important;
    }
}
