/* Custom styles for PRMCE landing page */

/* Font family */
.font-poppins {
    font-family: 'Poppins', sans-serif;
}

/* Custom animations */
@keyframes float {
    0% {
        -webkit-transform: transform: translateY(0px);
  -mo-webkit-transform: z-transform: transform: translateY(0-webkit-transform: px);
  -moz-transform: px);
  px);
  -moz-transform: z-transform: transform: translateY(0px);
  z-transform: transform: translateY(0px);
  transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

/* Custom background with stars */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at center, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: -1;
    pointer-events: none;
}

/* Custom glow effects */
.text-glow {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.box-glow {
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.5);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(30, 41, 59, 0.8);
}

::-webkit-scrollbar-thumb {
    background: rgba(99, 102, 241, 0.8);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(129, 140, 248, 0.8);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 1.5rem;
    }
}

/* Add bilingual support indicator */
.language-toggle {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
}

.language-toggle button {
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    background-color: rgba(99, 102, 241, 0.3);
    border: 1px solid rgba(129, 140, 248, 0.5);
    color: white;
    cursor: pointer;
    -webkit-transition: transition: all 0.2s;
  -moz-transition: transition: all 0.2s;
  transition: all 0.2s;
}

.language-toggle button:hover,
.language-toggle button.active {
    background-color: rgba(129, 140, 248, 0.6);
}