 /* Global Styles */
 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 html {
     font-family: 'Poppins', sans-serif;
     color: #f0f0f0;
     scroll-behavior: smooth;
 }

 body {
     background: linear-gradient(135deg, #0b0d15 0%, #1c1f2b 100%);
     min-height: 15vh;
     overflow-x: hidden;
 }

 /* Meteor Shower Effect */
 .meteor {
     position: absolute;
     width: 50px;
     height: 1.5px;
     background-color: #ff0095;
     box-shadow: 0 0 6px #ff0095, 0 0 15px #ff0095, 0 0 30px #ff0095;
     border-radius: 50%;
     transform: rotate(-45deg);
     z-index: -1;
     /* Initial rotation for correct path */
     animation: meteor-fall linear;
 }

 @keyframes meteor-fall {
     0% {
         transform: translate(0, 0) rotate(-45deg);
         /* Faces the right direction */
         opacity: 1;
     }

     100% {
         transform: translate(-100vw, 100vh) rotate(-45deg);
         /* Stays aligned along its path */
         opacity: 0;
     }
 }
/* Content and Cards */
.content {
    padding-top: 15em;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    color: #ffffff;
}

.content h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1em;
    background: linear-gradient(to right, #ff0095, #00ff99);
    -webkit-background-clip: text;
    color: transparent;
    animation: float 3s ease-in-out infinite;
}

.content p {
    max-width: 800px;
    margin: 0 auto 2em;
    font-size: 1.2rem;
    color: #a2a5b3;
}

.card button {
    display: inline-block;
    background-color: #ff0095;
    padding: 0.8em 1.5em;
    border-radius: 8px;
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
}
 /* Enhanced Navigation Bar */
 .navbar {
     display: flex;
     justify-content: space-between;
     align-items: center;
     background: rgba(28, 31, 43, 0.9);
     padding: 1em 3em;
     position: fixed;
     width: 100%;
     top: 0;
     z-index: 1000;
     backdrop-filter: blur(10px);
     box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
     border-bottom: 2px solid #ff0095;
 }

 .nav-links {
     list-style: none;
     display: flex;
     gap: 2.5em;
     justify-content: center;
     flex: 1;
 }


 .nav-links.nav-active {
     display: flex;
     /* Change to flex */
 }

 .nav-links li a {
     text-decoration: none;
     color: #ffffff;
     font-size: 1rem;
     font-weight: 600;
     position: relative;
     transition: color 0.3s ease;
 }

 .nav-links li a:hover {
     color: #ff0095;
 }


 .nav-links.nav-active {
     display: flex;
 }

 .hamburger {
     display: none;
     /* Hide hamburger on larger screens */
 }

 @media (max-width: 768px) {
     .nav-links {
         position: absolute;
         top: 70px;
         right: 0;
         height: 100vh;
         width: 100%;
         background: rgba(28, 31, 43, 0.9);
         flex-direction: column;
         justify-content: center;
         align-items: center;
         gap: 2em;
         display: none;
     }

     .nav-links.nav-active {
         display: flex;
     }

     .logo-large {
         display: none;
     }

     .logo-small {
         display: block;
     }

     .hamburger {
         display: block;
     }
 }

 /* Content and Cards */
 .content {
     padding-top: 15em;
     display: flex;
     justify-content: center;
     align-items: center;
     flex-direction: column;
     text-align: center;
     color: #ffffff;
 }

 .content h2 {
     font-size: 3rem;
     font-weight: bold;
     margin-bottom: 1em;
     background: linear-gradient(to right, #ff0095, #00ff99);
     -webkit-background-clip: text;
     color: transparent;
     animation: float 3s ease-in-out infinite;
 }

 

.server-card {
    display: flex;
    background: #1a1b1f;
    border-radius: 8px;
    overflow: hidden;
    padding: 1em;
    margin-left: 4em;
    margin-right: 4em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    align-items: center;
    opacity: .5;
}

.server-card img {
    width: 25%;
    height: auto;
    object-fit: cover;
    border-right: 2px solid #ff0095;
    opacity: 1;
}

.server-content {
    padding: 1.5rem;
    flex-grow: 1;
}

.server-title {
    font-size: 1.5rem;
    color: #ff0095;
    margin-bottom: 0.5rem;
}

.server-description {
    color: #b5b5b5;
    line-height: 1.6;
}

.server-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* For odd-numbered cards */
.server-card:nth-child(odd) {
    flex-direction: row;
}

/* For even-numbered cards (reverse layout) */
.server-card:nth-child(even) {
    flex-direction: row-reverse;
}

.server-card:nth-child(even) img {
    border-right: none;
    border-left: 2px solid #ff0095;
}

/* Mobile styles */
@media (max-width: 768px) {
    .server-card {
        flex-direction: column;
        text-align: center;
    }

    .server-card img {
        width: 60%;
        margin: 0 auto;
        border-right: none;
        border-left: none;
        margin-bottom: 1rem;
    }

    .server-card:nth-child(even),
    .server-card:nth-child(odd) {
        flex-direction: column;
    }

    .server-content {
        padding: 1rem;
    }

    .server-title {
        font-size: 1.2rem;
    }

    .server-description {
        font-size: 0.9rem;
    }
}
 /* Creative "Cut" Styles for Flexboxes */
 .grid-item:before {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: inherit;
     z-index: -1;
     clip-path: polygon(100% 0, 100% 100%, 0 85%);
     transform: translateY(-5px);
 }

 .grid-item:hover:before {
     background: linear-gradient(135deg, #ff0095, #55004e);
 }

 /* Responsive Design */
 @media (max-width: 1024px) {
     .grid-container {
         grid-template-columns: repeat(2, 1fr);
     }

     .grid-item.large {
         grid-column: span 2;
         grid-row: span 1;
     }
 }

 @media (max-width: 768px) {
     .grid-container {
         grid-template-columns: 1fr;
     }
 }

 /* Enhanced Footer */
 footer {
     text-align: center;
     padding: 3em 0 !important;
     background: #0b0d15 !important;
     margin-top: 3em !important;
     border-top: 2px solid #ff0095 !important;
 }

 footer p {
     color: #a2a5b3;
     margin-bottom: 1.5rem;
 }

 .footer-links a {
     color: #ffffff;
     margin: 0 1em;
     text-decoration: none;
     transition: color 0.3s ease;
 }

 .footer-links a:hover {
     color: #ff0095;
 }

 .social-icons a {
     color: #ffffff;
     margin: 0 0.8em;
     font-size: 1.5em;
     transition: color 0.3s ease;
 }

 .social-icons a:hover {
     color: #ff0095;
 }

 @media (max-width: 768px) {
     footer {
         padding: 2em 0;
     }
 }

 /* Logo Styling */
 .logo-container img {
     width: 100px;
     /* Set your desired width */
     height: auto;
     /* This ensures the aspect ratio is maintained */
 }