.loader-container {
    position: fixed; /* Fixed position to cover the whole page */
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: black; /* Background color of the loader */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* High z-index to ensure it's above all other elements */
}

.kitt-loader {
    width: 50vw;
    height: 2vh;
    background: transparent;
    position: relative;
    border: 1px solid transparent;
    overflow: visible;
}

.kitt-loader::before {
    content: '';
    position: absolute;
    width: 10%;
    height: 100%;
    background: #00BFFF;
    box-shadow: 0 0 2vw #00BFFF, 0 0 4vw #00BFFF, 0 0 6vw #00BFFF;
    animation: move 1s linear infinite;
}

@keyframes move {
    0%, 100% { left: 0; }
    50% { left: 90%; }
}

/* Existing styles */
body {
    font-family: Arial, sans-serif;
    background-color: black;
    color: white;
}

.navbar {
    color: #00BFFF;
    padding: 1% 20%;
    display: flex;
    align-items: center;
}

.logo-container {
    width: 10%;
    height: auto;
    margin-left: 5%;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav li {
    margin-right: 5%;
}

a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 10vw;
    transition: color 0.3s;
}

a:hover {
    color: #00BFFF;
}

svg {
    width: 5%;
    height: auto;
}

#home {
    padding: 5% 10%;
    text-align: left;
}

h1 {
    font-size: 6vw;
    margin-bottom: 2%;
}

p {
    font-size: 3vw;
}

nav a {
    font-size: 2vw;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 2s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.slide-in {
    transform: translateX(-100px);
    opacity: 0;
    animation: slideIn 2s ease forwards;
}

@keyframes slideIn {
    from { transform: translateX(-100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

#logo {
    fill: #00BFFF;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30vh;
    width: 30vw;
    margin: auto;
    overflow: hidden;
}

object {
    width: 100%;
    height: auto;
}

/* Hamburger Menu Styles */
.hamburger {
    display: none;
    cursor: pointer;
    font-size: 30px; /* Adjust size as needed */
    color: #FFFFFF; /* Adjust color as needed */
    height: 100%; /* Make the height match the parent container */
    align-self: center; /* Center align within navbar */
}

/* Hide Checkbox */
.menu-toggle {
    display: none;
}

/* Responsive adjustments for small screens */
@media screen and (max-width: 768px) {
    .hamburger {
        display: block;
    }

    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
    }

    nav ul li {
        width: 100%;
        border-bottom: 1px solid #ddd; /* Optional */
    }

    /* Show Menu When Checkbox is Checked */
    .menu-toggle:checked + .hamburger + ul {
        display: flex;
    }
}

/* Style for social links */
.social-links {
  margin-top: 10px;
}

.social-link {
  text-decoration: none;
  color: #fff;
  margin: 0 10px;
  font-size: 1em; /* Adjust the font size as needed */
}

/* Style for the footer content */
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Style for the copyright text */
.footer-content p {
  font-size: 1em; /* Adjust the font size as needed */
}







/* Base styles */
.social-icons-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
    gap: 30px;
    min-height: 100vh; /* Ensure the container takes at least the full viewport height */
}

.social-icon-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.social-icon-group img {
    width: 100px;
    margin-bottom: 8px;
}

.social-icon-group h1 {
    font-size: 16px;
    margin: 8px 0;
}

.social-icon-group p {
    font-size: 14px;
    margin: 0;
    word-break: break-all;
}

/* Styles for larger screens */
@media (min-width: 769px) {
    .social-icons-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
        align-items: flex-start; /* Align to the top for a consistent start line */
        min-height: 0; /* Reset min-height */
    }

    .social-icon-group {
        flex: 1 1 calc(20% - 40px);
        max-width: calc(20% - 40px);
    }

    .social-icon-group img {
        width: 80%; /* Adjust the width to scale with the container */
        max-width: 100px; /* Add a max-width to ensure icons do not become too large */
    }

    .social-icon-group h1,
    .social-icon-group p {
        font-size: 1vw;
    }
}

@media (min-width: 1280px) {
    .social-icon-group {
        flex: 1 1 calc(15% - 40px);
    }
}



.loader-container {
    display: none;
    /* Rest of the styles... */
}