@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Roboto:wght@300;400;700&display=swap');

:root {
    --primary-color: #00ffff;
    --secondary-color: #14c31d;
    --bg-color: #0a0a0a;
    --text-color: #ffffff;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    overflow-x: hidden;
}

* {
    cursor: none !important;
}

.cursor-outer {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.1s ease-out;
    mix-blend-mode: difference;
}

.cursor-inner {
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transition: all 0.15s ease-out;
    box-shadow: 0 0 10px var(--primary-color);
}

.cursor-trail {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--primary-color);
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.5;
    transition: width 0.2s, height 0.2s, opacity 0.2s;
}

.cursor-outer::before,
.cursor-outer::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.cursor-outer::after {
    animation-delay: 1s;
}

@keyframes pulse {
    0% {
        width: 100%;
        height: 100%;
        opacity: 1;
    }

    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}

.content {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.btn {
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: var(--bg-color);
    border: none;
    border-radius: 5px;
    font-size: 18px;
    margin-bottom: 20px;
}

.scroll-content {
    height: 200vh;
}

/* Styles for the scroll-up button */
/* Styles for the scroll-up button */
#scrollUpBtn {
    display: none;
    position: fixed;
    bottom: 90px; /* Positioned above the chatbot */
    right: 20px; /* Aligned with the chatbot */
    z-index: 99;
    border: none;
    outline: none;
    background-color: var(--primary-color);
    color: var(--bg-color);
    cursor: pointer;
    width: 60px; /* Match the width of the chatbot button */
    height: 60px; /* Match the height of the chatbot button */
    border-radius: 50%;
    font-size: 24px;
    transition: 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

    #scrollUpBtn:hover {
        background-color: var(--secondary-color);
    }

/* Ensure the chatbot button doesn't overlap */
.chatbot-container {
    bottom: 20px;
    right: 20px;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}



h1, h2, h3, .logo {
    font-family: 'Orbitron', sans-serif;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

header {
    background-color: rgba(10, 10, 10, 0.8);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 70px;
    width: 180px;
}

.nav-links {
    display: flex;
    list-style: none;
}

    .nav-links li {
        margin-left: 1rem;
    }

    .nav-links a {
        color: var(--text-color);
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .nav-links a:hover {
            color: var(--primary-color);
        }

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}



.about-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about-image {
    flex: 0 0 500px;
    margin-right: 2rem;
}

    .about-image img {
        width: 100%;
        height: auto;
        border-radius: 10px;
    }

.about-content {
    flex: 1;
    align-content: start;
}

    .about-content h2 {
        color: var(--primary-color);
        margin-bottom: 1rem;
    }

    .about-content span {
        color: var(--primary-color);
        margin-left: 25px;
    }

    .about-content p {
        margin-left: 25px;
    }

@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        align-items: center;
    }

    .about-image {
        margin-right: 0;
        margin-bottom: 2rem;
    }
}



.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("/Assets/WJB header.png") no-repeat center center/cover;
    filter: brightness(0.6);
    z-index: -1;
}



.hero-content {
    background-color: rgba(10, 10, 10, 0.103);
    padding: 2rem;
    border-radius: 10px;
    width: 90%;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-color);
    padding: 0.5rem 1rem;
    text-decoration: none;
    margin-top: 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: bold;
}

    .btn:hover {
        background-color: var(--secondary-color);
        color: var(--text-color);
    }

section {
    padding: 6rem 0;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    text-transform: uppercase;
    color: var(--primary-color);
}


.social-icons {
    display: flex;
    gap: 1rem;
}

    .social-icons a {
        color: var(--text-color);
        font-size: 1.5rem;
        transition: color 0.3s ease;
    }

        .social-icons a:hover {
            color: var(--primary-color);
        }
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    text-align: center;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

    .card:hover {
        transform: translateY(-10px);
    }

    .card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 10px;
        margin-bottom: 1rem;
    }

#team, #countdown {
    background: rgb(34, 34, 34);
}

.team-member {
    text-align: center;
}

    .team-member img {
        width: 150px;
        height: 150px;
        border-radius: 50%;
        margin-bottom: 1rem;
    }

#map {
    height: 400px;
    width: 100%;
    background-color: rgb(34, 34, 34);
}
/* Updated footer styles for better responsiveness */
footer {
    background-color: rgb(34, 34, 34);
    padding: 3rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 0 20px;
}



    .footer-section h3 {
        color: var(--primary-color);
        margin-bottom: 1rem;
    }

    .footer-section ul {
        list-style: none;
        padding: 0;
    }

        .footer-section ul li {
            margin-bottom: 0.5rem;
        }

    .footer-section a {
        color: var(--text-color);
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .footer-section a:hover {
            color: var(--primary-color);
        }

.social-icons {
    display: flex;
    justify-content: left;
    gap: 1rem;
    margin-top: 1rem;
}

    .social-icons a {
        color: var(--text-color);
        font-size: 1.5rem;
        transition: color 0.3s ease;
    }

        .social-icons a:hover {
            color: var(--primary-color);
        }

/* Media query for mobile responsiveness */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-section {
        margin-bottom: 2rem;
    }
}
#process {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 1rem;
}

.steps {
    flex: 1;
    counter-reset: step;
}

.step {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 2rem;
}

    .step::before {
        content: counter(step);
        counter-increment: step;
        position: absolute;
        left: 0;
        top: 0;
        width: 2rem;
        height: 2rem;
        background-color: var(--primary-color);
        color: var(--bg-color);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-weight: bold;
    }

.process-image {
    flex: 0 0 500px;
    margin-left: 2rem;
}

    .process-image img {
        width: 100%;
        height: auto;
        border-radius: 10px;
    }

@media (max-width: 768px) {
    .process-container {
        flex-direction: column;
        align-items: center;
    }

    .process-image {
        margin-left: 0;
        margin-top: 2rem;
    }
}


#gallery {
    padding: 40px 20px;
    background-color: #0a0a0a; /* Light background color */
    text-align: center; /* Center align the gallery title and content */
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr)); /* Responsive grid */
    gap: 15px; /* Space between images */
    justify-content: center; /* Center the grid items */
}

.gallery-item {
    position: relative; /* For absolute positioning of overlay */
    overflow: hidden; /* Hide overflow */
    border-radius: 10px; /* Rounded corners */
    transition: transform 0.3s ease; /* Smooth transformation */
}

    .gallery-item:hover {
        transform: scale(1.05); /* Slight zoom on hover */
    }

    .gallery-item img {
        width: 100%;
        height: auto; /* Maintain aspect ratio */
        display: block; /* Remove inline spacing */
        transition: transform 0.5s ease; /* Smooth image transition */
    }

    .gallery-item:hover img {
        transform: scale(1.1); /* Image zoom on hover */
    }

    /* Overlay effect */
    .gallery-item::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5); /* Dark overlay */
        opacity: 0; /* Initially hidden */
        transition: opacity 0.5s ease; /* Smooth overlay transition */
    }

    .gallery-item:hover::after {
        opacity: 1; /* Show overlay on hover */
    }

.countdown-section {
    padding: 6rem 0;
    background-color: var(--bg-color);
    color: var(--text-color);
    text-align: center;
}

.countdown-container {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.countdown-item {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    margin: 1rem;
    background: #1f1f1f;
    padding: 20px;
    border-radius: 10px;
    flex: 1 0 200px;
}

    .countdown-item span {
        display: block;
        font-size: 1.5rem;
        color: var(--primary-color);
    }

@media (max-width: 768px) {
    .countdown-container {
        flex-direction: column;
        align-items: center;
    }

    .countdown-item {
        width: 80%;
        font-size: 2rem;
        margin: 1rem 0;
    }

        .countdown-item span {
            font-size: 1.2rem;
        }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

        .nav-links.show {
            display: flex;
            flex-direction: column;
            text-align: center;
            position: absolute;
            top: 80px;
            left: 0;
            right: 0;
            background-color: var(--bg-color);
            padding: 2rem;
            z-index: 1000;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            border-radius: 0 0 10px 10px;
            border-bottom: 0.1px solid white;
        }

        .nav-links li {
            margin-left: 0;
            margin-bottom: 1.5rem;
        }

        .nav-links a {
            font-size: 1.2rem;
        }

    .menu-btn {
        display: block;
        font-size: 1.5rem;
        cursor: pointer;
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
    }

        .menu-btn i {
            color: var(--text-color);
        }
}

@media (min-width: 769px) {
    .menu-btn {
        display: none;
    }
}

/**/
.carousel {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.slides {
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

    .controls button {
        background-color: rgba(0, 0, 0, 0.5);
        border: none;
        color: white;
        padding: 10px;
        cursor: pointer;
    }

        .controls button:hover {
            background-color: rgba(0, 0, 0, 0.8);
        }



#contact {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.contact-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.contact-info, .contact-form {
    flex: 1;
}

    .contact-info h3 {
        color: var(--primary-color);
        margin-bottom: 20px;
    }

    .contact-info p {
        margin-bottom: 10px;
        display: flex;
        align-items: center;
    }

    .contact-info i {
        margin-right: 10px;
        color: var(--primary-color);
    }

.social-icons {
    margin-top: 20px;
}

    .social-icons a {
        color: var(--text-color);
        font-size: 20px;
        margin-right: 15px;
        transition: color 0.3s ease;
    }

        .social-icons a:hover {
            color: var(--primary-color);
        }

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    color: var(--text-color);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-color);
    border-radius: 5px;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.contact-form .btn {
    background-color: var(--primary-color);
    color: var(--bg-color);
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .contact-form .btn:hover {
        background-color: var(--secondary-color);
    }

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }
}

/* Chatbot styles */
.chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.chatbot-button {
    background-color: var(--primary-color);
    color: var(--bg-color);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 300px;
    background-color: var(--bg-color);
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.chatbot-header {
    background-color: var(--primary-color);
    color: var(--bg-color);
    padding: 10px;
    font-weight: bold;
}

.chatbot-body {
    padding: 10px;
    max-height: 300px;
    overflow-y: auto;
}

.chatbot-input {
    display: flex;
    padding: 10px;
}

    .chatbot-input select {
        flex-grow: 1;
        width:100%;
        padding: 5px;
        border: 1px solid var(--primary-color);
        border-radius: 5px;
        background-color: var(--bg-color);
        color: var(--text-color);
    }

.chatbot-message {
    margin-bottom: 10px;
    padding: 5px 10px;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.1);
}

/* Styles for the scroll-up button */
#scrollUpBtn {
    display: none;
    position: fixed;
    bottom: 90px; /* Positioned above the chatbot */
    right: 20px; /* Aligned with the chatbot */
    z-index: 99;
    border: none;
    outline: none;
    background-color: var(--primary-color);
    color: var(--bg-color);
    cursor: pointer;
    width: 60px; /* Match the width of the chatbot button */
    height: 60px; /* Match the height of the chatbot button */
    border-radius: 50%;
    font-size: 24px;
    transition: 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

    #scrollUpBtn:hover {
        background-color: var(--secondary-color);
    }

/* Ensure the chatbot button doesn't overlap */
.chatbot-container {
    bottom: 20px;
    right: 20px;
}

/* Login/Register Button */
.login-register-btn {
    background-color: var(--secondary-color);
    color: var(--text-color);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background-color: var(--bg-color);
    margin: 15% auto;
    padding: 20px;
    border: 1px solid var(--primary-color);
    width: 80%;
    max-width: 400px;
    border-radius: 10px;
    position: relative;
}

.close {
    color: var(--text-color);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

    .close:hover,
    .close:focus {
        color: var(--primary-color);
        text-decoration: none;
        cursor: pointer;
    }

/* Tabs */
.tabs {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.tab-btn {
    background-color: transparent;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    font-size: 18px;
    padding: 10px;
    transition: all 0.3s ease;
}

    .tab-btn.active {
        color: var(--primary-color);
        border-bottom: 2px solid var(--primary-color);
    }

.tab-content {
    display: none;
}

    .tab-content.active {
        display: block;
    }

/* Form Styles */
form {
    display: flex;
    flex-direction: column;
}

input {
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid var(--primary-color);
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    border-radius: 5px;
}

form .btn {
    margin-top: 10px;
}

.neo-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.neo-loader-content {
    text-align: center;
}

.neo-spinner {
    width: 100px;
    height: 100px;
    border: 3px solid transparent;
    border-top: 3px solid #00ffff;
    border-right: 3px solid #00ffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

    .neo-spinner::before {
        content: '';
        position: absolute;
        top: 5px;
        left: 5px;
        right: 5px;
        bottom: 5px;
        border: 3px solid transparent;
        border-top: 3px solid #14c31d;
        border-radius: 50%;
        animation: spin 2s linear infinite;
    }

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.neo-text {
    margin-top: 20px;
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    color: #00ffff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.neo-progress {
    margin-top: 10px;
    width: 200px;
    height: 4px;
    background-color: #333;
    border-radius: 2px;
    overflow: hidden;
}

.neo-progress-bar {
    width: 0%;
    height: 100%;
    background-color: #00ffff;
    transition: width 0.5s ease-out;
}


