/* General Styles */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    color: #ffffff;
    background: url('6020105.jpg') no-repeat center center fixed;
    background-size: cover;
    overflow-x: hidden;
}



/* Roadmaps Introduction Section */
.roadmaps-intro {
    text-align: center;
    padding: 100px 20px;
}

.roadmaps-intro h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.roadmaps-intro p {
    font-size: 1.2em;
    color: #ffffff;
}

/* Technology Cards Section */
.technology-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 50px 20px;
}

.card {
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 300px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.card img {
    width: 250px;
    height: 250px;
    object-fit: contain;
    margin-bottom: 15px;
}

.card h2 {
    font-size: 1.8em;
    margin: 10px 0;
}

.card p {
    font-size: 1em;
    margin: 10px 0;
}

.anton-regular  {
    font-family: "Anton", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  // <uniquifier>: Use a unique and descriptive class name
  // <weight>: Use a value from 400 to 900
  
  .playfair-display-uniquifier {
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
  }


  .gupter-regular {
    font-family: "Gupter", serif;
    font-weight: 400;
    font-style: normal;
  }


.view-roadmap {
    background-color: #ffcc00;
    color: #000000;
    padding: 10px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    transition: background-color 0.3s, color 0.3s;
}

.view-roadmap:hover {
    background-color: #e6b800;
    color: #ffffff;
}

/* Footer Styles */
footer {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 20px;
    text-align: center;
}

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

footer ul li {
    display: inline;
    margin: 0 10px;
}

footer ul li a {
    color: white;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.3s;
}

footer ul li a:hover {
    color: #ffcc00;
}



/* General Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: url('path-to-your-background-image.jpg') no-repeat center center;
    background-size: cover;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

header .logo a {
    text-decoration: none;
    color: white;
    font-size: 24px;
    font-weight: bold;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #58a6ff; /* Neon Blue on hover */
}

/* Burger Menu */
.burger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    height: 25px;
}

.burger div {
    width: 30px;
    height: 3px;
    background-color: white;
    border-radius: 5px;
    transition: background-color 0.3s;
}

/* Mobile Styles */
@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: url('6985678.jpg') no-repeat center center;
        background-size: cover;
        border: 1px solid rgba(255, 255, 255, 0.2);
        z-index: 1;
        padding: 20px;
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        margin: 15px 0;
        text-align: center;
    }

    nav ul li a {
        font-size: 20px;
        transition: color 0.3s;
    }

    nav ul li a:hover {
        color: #58a6ff; /* Neon Blue on hover */
    }

    .burger {
        display: flex;
    }

    .burger div {
        background-color: white;
    }

    .burger.active div:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .burger.active div:nth-child(2) {
        opacity: 0;
    }

    .burger.active div:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}



/* Bottom Navigation Bar with Glassmorphism */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.2); /* Semi-transparent white background */
    backdrop-filter: blur(10px); /* Blur effect */
    -webkit-backdrop-filter: blur(10px); /* For Safari support */
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
    border-radius: 15px 15px 0 0; /* Rounded top corners */
    display: none; /* Initially hide the bottom nav */
}

/* Bottom Navigation Items */
.bottom-nav-item {
    color: white;
    text-decoration: none;
    text-align: center;
    font-size: 14px;
    flex-grow: 1;
}

.bottom-nav-item i {
    font-size: 24px;
    display: block;
    margin-bottom: 5px;
}

.bottom-nav-item span {
    display: block;
    font-size: 12px;
    font-family: 'Anton', sans-serif;
    text-transform: uppercase;
}

.bottom-nav-item:hover {
    color: #ffcc00;
}

/* Show bottom navigation only on screens smaller than 769px */
@media (max-width: 768px) {
    .bottom-nav {
        display: flex;
    }
}

/* Hide bottom nav on larger screens */
@media (min-width: 769px) {
    .bottom-nav {
        display: none;
    }
}




/* Loading Spinner Container */
#loading-spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(39, 39, 39, 0.8); /* Semi-transparent background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Highest priority on the page */
}

/* Three Dots Spinner */
.dot-spinner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.dot-spinner div {
    width: 15px;
    height: 15px;
    background-color: #ffcc00;
    border-radius: 50%;
    animation: dot-bounce 0.6s infinite alternate;
}

.dot-spinner div:nth-child(2) {
    animation-delay: 0.2s;
}

.dot-spinner div:nth-child(3) {
    animation-delay: 0.4s;
}

/* Bounce Animation for Dots */
@keyframes dot-bounce {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(-15px);
        opacity: 0.6;
    }
}

/* Hide the spinner after 2 seconds */
body.loaded #loading-spinner {
    display: none;
}
