
#particles-js {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #3494E6, #FF9A8B, #FFD89B, #EC6EAD);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
}
.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    animation: fadeIn 4s ease forwards;
    opacity: 0;
}
h1 {
    font-size: 4rem;
    margin: 0;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}
h2 {
    font-size: 1.2rem;
    margin: 10px 0;
}
button {
    background-color: #FF9A8B;
    border: none;
    color: white;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 25px;
    width: 160px;
    margin-top: 20px;
    transition: transform 0.2s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.2); /* Subtle box shadow */
}

button:hover {
    background-color: #3494E6;
    transform: scale(1.05);
    box-shadow: 3px 6px 12px rgba(0, 0, 0, 0.25); /* Slightly stronger shadow on hover */
}

.button-group {
    display: flex;
    justify-content: center;
    gap: 20px; 
    margin-top: 20px;
  }

/* Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 250px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: -4px 0 10px rgba(0, 0, 0, 0.2);
    transform: translateX(100%);
    transition: transform 0.3s ease;
}
.sidebar.active {
    transform: translateX(0);
}
.sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    width: 100%;
}
.sidebar ul li {
    margin: 20px 0;
}
.sidebar ul li a {
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px;
    display: block;
    transition: background 0.3s ease, color 0.3s ease;
}
.sidebar ul li a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #FF9A8B;
    border-radius: 5px;
}

/* Toggle Menu */
.toggle-menu {
    position: fixed;
    top: 20px;
    right: 20px;
    cursor: pointer;
    width: 35px;
    height: 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.toggle-menu div {
    width: 100%;
    height: 4px;
    background: white;
    border-radius: 2px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}
.toggle-menu.active div:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
}
.toggle-menu.active div:nth-child(2) {
    background: transparent;
}
.toggle-menu.active div:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
}

/* Social Icons */
.social-icons {
    position: fixed;
    bottom: 10px;
    right: 10px;
    display: flex; /* Use flexbox to align items */
    gap: 15px; /* Reduce spacing for mobile friendliness */
    flex-wrap: wrap; /* Ensure icons wrap on smaller screens */
    justify-content: center; /* Center the icons on smaller screens */
}

/* Social Icons Links */
.social-icons a {
    text-decoration: none; /* Remove underline */
}

/* Social Icons Images */
.social-icons img {
    width: 40px;
    height: 40px;
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.social-icons img:hover {
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .social-icons {
        bottom: 20px; /* Adjust positioning for better visibility */
        right: 0; /* Center icons horizontally */
        left: 0; /* Center icons horizontally */
    }
    .social-icons img {
        width: 30px; /* Reduce icon size for smaller screens */
        height: 30px;
    }
    .social-icons {
        gap: 10px; /* Reduce spacing further on smaller screens */
    }
}
/* Animations */
@keyframes gradientBG {
    0% {background-position: 0% 50%;}
    50% {background-position: 100% 50%;}
    100% {background-position: 0% 50%;}
}
@keyframes fadeIn {
    to { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1rem;
    }
    button {
        font-size: 0.9rem;
    }
    .social-icons img {
        width: 30px;
    }
}

.light {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  
  .customCursor {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  
  .hideCursor {
    opacity: 0;
  }
  
  .hideLight {
    opacity: 0;
  }
  
  .content {
    transition: background-color 0.3s ease;
  }
  
  .lightBackground {
    background-color: white;
    color: black;
  }
  
  .toggleButton {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #3494e6;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .toggleButton:hover {
    background: #ffd89b;
  }
  