@import url('https://fonts.cdnfonts.com/css/akira-expanded');
@import url('https://fonts.cdnfonts.com/css/dark-seed');
html, body {
    height: 100%; /* Ensure html and body cover full height */
    margin: 0; /* Remove default margin */
    padding: 0; /* Remove default padding */
}
.user-profile-container {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    max-width: 600px;
    margin: 2rem auto;
    color: white;
}
.user-profile-pic :hover{
  transform: scale(1.1);
}
.current-user-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.profile-update-form {
    margin-bottom: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 10px;
}

.profile-update-form h3 {
    margin-bottom: 1rem;
    text-align: center;
}

.email-verification {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    text-align: center;
}

.logout-btn {
    width: 100%;
    padding: 1rem;
    background-color: rgba(220, 53, 69, 0.7);
    color: white;
    border: none;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.logout-btn:hover {
    background-color: rgba(220, 53, 69, 0.9);
}

/* Responsive Design for Tablets */
@media (max-width: 768px) {
    .user-profile-container {
        padding: 1.5rem;
        max-width: 90%;
    }

    .profile-update-form {
        padding: 0.75rem;
    }

    .email-verification {
        padding: 0.75rem;
    }

    .logout-btn {
        padding: 0.75rem;
    }
}

/* Responsive Design for Phones */
@media (max-width: 480px) {
    .user-profile-container {
        padding: 1rem;
        max-width: 95%;
        margin: 1rem auto;
    }

    .profile-update-form {
        padding: 0.5rem;
    }

    .email-verification {
        padding: 0.5rem;
    }

    .logout-btn {
        padding: 0.5rem;
    }

    .profile-update-form h3 {
        font-size: 1.2rem;
    }

    .current-user-info {
        margin-bottom: 1rem;
    }
}

body {
    background: black;
    background-size: 200% 200%;
    color: #ffffff; /* White text for contrast */
    overflow: auto; /* Allow scrolling */
    min-height: 100vh; /* Ensure body covers at least the viewport height */
}
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    background-color: transparent;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: rgba(26, 188, 156, 0.5);
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb:hover {
    background-color: rgba(52, 152, 219, 0.5);
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-track {
    background-color: transparent;
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}


#user-email {
    color: #feffff;
    cursor: pointer;
}
#user-email:hover {
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.7));
    transition: transform 0.3s ease, color 0.3s ease;
    transform: scale(1.1);
}

/* Nav Links Container */
.nav-links-container {
    display: flex;
    align-items: center;
    gap: 3rem;
}

/* Navbar Container */
.nav {
    font-family: 'Akira Expanded', sans-serif;
    
    display: flex;
    justify-content: center; /* Center the navbar horizontally */
    align-items: center;
    padding: 1rem 2rem;
 
    position: absolute; /* Position absolutely */
    top: 0; /* Set to top of viewport */
    left: 0; /* Set to left of viewport */
    right: 0; /* Set to right of viewport */
    z-index: 1000; /* Ensure it is on top of other elements */
}

/* Nav Links Container */
.nav-links {
    display: flex;
    align-items: center;
    gap: 3rem; /* Space between links */
    list-style: none;
}

/* Nav Links */
.nav-links a {
    text-decoration: none;
    color: #ffffff; /* Change to your preferred color */
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.7));
    transition: transform 0.3s ease, color 0.3s ease;
    transform: scale(1.1);
}

/* Nav Logo */
.nav-logo img {
    width: 105px; /* Adjust the width as needed */
    height: 105px; /* Maintain aspect ratio */
    margin: 0 2rem; /* Space around the logo */
}
.nav-logo img:hover {
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.4));
    transition: transform 0.3s ease, color 0.3s ease;
    transform: scale(1.1);
}
/* Specific Link Styling (Optional) */
#apps-link,
#safety-link,
#contact-link,
#login-link {
    padding: 0.5rem 1rem; /* Add padding for better clickability */
}

main {
    color: #ffffff; /* White text for all content inside main */
    min-height: 100vh; /* Ensure it covers at least the viewport height */
}

.input-text{
    font-family: Arial, Helvetica, sans-serif;
}
/* Hero Left Section */
.hero-left {
    font-family: "Akira Expanded", sans-serif;
    text-align: center;
   
    color: #ffffff; /* White text */
    height: 100%; /* Ensure it takes up the full height of the slide */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertically center the content */
    align-items: center; /* Horizontally center the content */
    width: 100%; /* Ensure it takes up the full width of the slide */
}
.hero-left a {
    color:#feffff;
    text-decoration: none;
}
.hero-left a:hover{
    color: #ffffff;
    filter:drop-shadow(0 0 20px rgb(255, 255, 255)) ;
    transform: translateY(-2px);
}
.hero-text {
    background: #0000007d;
    border: none;
    border-radius: 7px;
    padding: 2rem;
  
    
}

.a {
    color: #ffffff;
            filter:drop-shadow(0 0 20px rgb(255, 255, 255)) ;
            transform: translateY(-2px);
}

/* Text inside the card */
.h2 {
    font-family: 'Akira Expanded', sans-serif;
    position: relative;
    z-index: 2;
    color: #ffffff;
    margin: 0.5rem 0;
}



/* Submit Button Styling */
button[type="submit"] {
    font-family: 'Akira Expanded', sans-serif;
    width: auto; /* Adjust width to fit content */
    padding: 0; /* Remove padding */
    border: none; /* Remove border */
    background-color: transparent; /* Transparent background */
    color: #ffffff; /* White text */
    cursor: pointer;
    font-size: 1rem; /* Adjust font size */
    z-index: 1;
    animation: fadeIn 2s ease-in-out;
}
@media (max-width: 768px){
    button[type="submit"] {
        font-size: 0.9rem;
    }
    .input-text input,
.input-text textarea {
    width: 80%;
}
}
button[type="submit"]:hover {
    color: #ffffff;
            filter:drop-shadow(0 0 20px rgb(255, 255, 255)) ;
            transform: translateY(-2px);
}

/* Input Field Styling */
.input-text input,
.input-text textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: none;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.05); /* Very light semi-transparent background */
    backdrop-filter: blur(10px); /* Add blur effect */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1;
    animation: fadeIn 1.5s ease-in-out;
    color: #ffffff;
}

.input-text input::placeholder,
.input-text textarea::placeholder {
    color: rgba(255, 255, 255, 0.5); /* Light placeholder text */
}

.input-text input:focus,
.input-text textarea:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}


/* Fade-In Animation for All Elements Except Navbar */
body *:not(.nav, .nav *, .nav-links, .nav-links *) {
    animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}


.input-text input:hover,
.input-text textarea:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

/* Scrollbar Animation */
::-webkit-scrollbar-thumb {
    animation: scrollbarPulse 2s infinite ease-in-out;
}

@keyframes scrollbarPulse {
    0% {
        background-color: rgba(26, 188, 156, 0.5);
    }
    50% {
        background-color: rgba(52, 152, 219, 0.5);
    }
    100% {
        background-color: rgba(26, 188, 156, 0.5);
    }
}


.form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem; /* Increased padding */
}

