@import url("https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif; /* Corrected the font-family syntax */
}

body {
    background: #111;
    padding-bottom: 300px;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
}

body:before {
    content: 'CYBER GEEKS';
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16em;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px #555;
}

section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

section h2 {
    margin-left: 200px;
    font-size: 4em;
    color: #fff;
    margin-bottom: 20px;
}

section .container {
    position: relative;
    width: 1000px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

section:nth-child(even) .container {
    flex-direction: row-reverse;
}

section .container .imgBx {
    position: relative;
    width: 800px;
    height: 400px;
    overflow: hidden;
    box-shadow: 0 25px 35px rgba(0, 0, 0, 0.1);
}

section .container .imgBx img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section .container .content {
    position: absolute;
    right: 0;
    margin-top: 200px;
    margin-bottom: 40px;
    padding: 40px;
    background: #333;
    z-index: 1;
    max-width: 400px;
    color: #fff;
    box-shadow: 0 25px 35px rgba(0, 0, 0, 0.1);
    border-bottom: 6px solid #4ac7ff;
}

section:nth-child(even) .container .content {
    left: 0;
}

::-webkit-scrollbar {
    width: 0;
}

#scrollpath {
    position: fixed;
    top: 0;
    right: 0;
    width: 10px;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
}

#progressbar {
    position: fixed;
    top: 0;
    right: 0;
    width: 10px;
    height: 100%;
    background: linear-gradient(to top, #008aff, #00ffe7);
    animation: animate 5s linear infinite;
}

@keyframes animate {
    0%, 100% {
        filter: hue-rotate(0deg);
    }
    50% {
        filter: hue-rotate(360deg);
    }
}

#progressbar:before {
    content: '';
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #008aff, #00ffe7);
    filter: blur(30px);
}

a {
    position: relative;
    display: inline-block;
    padding: 15px 30px;
    color: #2196f3;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-decoration: none;
    font-size: 24px;
    overflow: hidden;
    transition: 0.2s;
}

a:hover {
    color: #2196f3;
    box-shadow: 0 0 10px #2196f3, 0 0 40px #2196f3, 0 0 80px #2196f3;
    transition-delay: 0.1s;
}

h2 {
    font-size: 6em;
    color: #333;
    font-weight: 500;
}

h2 span {
    animation: animate 1s linear infinite;
}

@keyframes infinite {
    0%, 80% {
        color: #333;
        box-shadow: none;
    }
    100% {
        color: #fff;
        text-shadow: 0 0 10px #fff;
    }
}

/* Header Section */
.glass-navbar {
    background: rgba(251, 98, 98, 0.225);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 10px 20px;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 95%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.glass-navbar .logo {
    color: #ffffff;
    font-size: 1.5rem;
}

.glass-navbar .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.glass-navbar .nav-links li {
    display: inline;
}

.glass-navbar .nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-size: 1rem;
    padding: 5px 10px;
    transition: background-color 0.3s;
}

.glass-navbar .nav-links a:hover {
    background-color: rgba(79, 10, 90, 0.804);
    border-radius: 5px;
}

/* Content Padding for Navbar */
.content {
    margin-top: 80px;
    padding: 20px;
}

/* Logo Hover Effect */
.logo img {
    max-width: 100%;
    height: auto;
    width: 50px;
    border-radius: 5px;
}

.logo img:hover {
    background-color: #028ace;
}

/* Footer Section */
footer {
    background-color: #666465;
    width: 100%;
    padding: 20px;
    color: white;
    position: relative;
}

.footerContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.socialIcons {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.socialIcons a {
    text-decoration: none;
    padding: 10px;
    background-color: white;
    margin: 10px;
    border-radius: 50%;
    align-items: center;
}

.socialIcons a i {
    font-size: 2em;
    color: rgb(3, 125, 255);
    opacity: 0.9;
}

.socialIcons a:hover {
    background-color: #111;
    transition: 0.5s;
}

.socialIcons a:hover i {
    color: white;
    transition: 0.5s;
}

.footerNav {
    margin: 20px 0;
}

.footerNav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
}

.footerNav ul li a {
    color: rgb(6, 5, 5);
    margin: 20px;
    text-decoration: none;
    font-size: 1.3em;
    opacity: 0.7;
    transition: 0.5s;
    background-color: #000000;
    color: white;
}

.footerNav ul li a:hover {
    opacity: 1;
    background-color: #008aff;
}

.footerBottom {
    display: flex;
    justify-content: space-between;
    background-color: #080a0b;
    padding: 10px;
    text-align: center;
}

.footerBottom p {
    color: white;
}
html, body {
    height: 100%; /* Ensure body takes full height */
    margin: 0; /* Remove default margin */
}
