/* Global Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212;
    color: #e0e0e0;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

header {
    background: #1f1f1f;
    color: #fff;
    padding: 100px 0;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    border-bottom: 3px solid #00bcd4;
}

/* Unique Navigation Bar */
.navbar {
    background: linear-gradient(to right, #00bcd4, #008ba3);
    padding: 15px 50px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
}
.navbar .navbar-brand {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
}
.navbar .navbar-nav .nav-link {
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s;
}
.navbar .navbar-nav .nav-link:hover {
    background-color: #008ba3;
    text-decoration: none;
}
.navbar .navbar-toggler-icon {
    background-color: white;
}
.navbar .nav-item {
    padding: 0 15px;
}

/* Custom Buttons */
.login-button, .register-button {
    color: white;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 30px;
    transition: background-color 0.3s ease;
}
.login-button {
    background-color: #e91e63;
}
.login-button:hover {
    background-color: #c2185b;
}
.register-button {
    background-color: #4caf50;
}
.register-button:hover {
    background-color: #388e3c;
}

.form-container {
    background-color: #1f1f1f;
    border-radius: 10px;
    padding: 50px;
    margin-top: -60px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.form-container h3 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 30px;
}

.form-container input[type="text"] {
    width: 100%;
    padding: 15px;
    font-size: 1.2rem;
    border-radius: 8px;
    border: 1px solid #333;
    margin-bottom: 20px;
    background: #121212;
    color: #fff;
}

.form-container select {
    width: 100%;
    padding: 15px;
    font-size: 1.2rem;
    border-radius: 8px;
    border: 1px solid #333;
    margin-bottom: 20px;
    background: #121212;
    color: #fff;
}

.form-container button {
    width: 100%;
    padding: 15px;
    background-color: #00bcd4;
    border: none;
    color: white;
    font-size: 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

footer {
    background: #121212;
    color: #fff;
    padding: 30px 0;
    text-align: center;
    border-top: 3px solid #00bcd4;
}

/* Center reCAPTCHA widget */
.g-recaptcha {
    display: inline-block;
    margin: 20px auto;
}

/* Footer */
.footer {
    margin-top: 5em;
    text-align: center;
}

/* Design for count section */
.design-for-count {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, #1a1f29, #2e3b4e);
    color: #fff;
}

.container {
    text-align: center;
    width: 90%;
    max-width: 1200px;
}

h1 {
    font-size: 3rem;
    color: #4dc0b5;
    margin-bottom: 30px;
    animation: fadeIn 1.5s ease-out;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.counters {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    animation: fadeIn 1.5s ease-out;
}

.counter {
    background: #1e2a36;
    border-radius: 25px;
    padding: 30px;
    width: 220px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transform: scale(0.9);
    animation: popIn 1.5s ease-out forwards;
}

.counter:nth-child(1) {
    animation-delay: 0.2s;
}
.counter:nth-child(2) {
    animation-delay: 0.4s;
}
.counter:nth-child(3) {
    animation-delay: 0.6s;
}
.counter:nth-child(4) {
    animation-delay: 0.8s;
}
.counter:nth-child(5) {
    animation-delay: 1s;
}

@keyframes popIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #4dc0b5;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.number {
    font-size: 2.5rem;
    color: #4dc0b5;
    font-weight: bold;
}

.label {
    font-size: 1.2rem;
    color: #bbb;
}
