body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #0d1b2a;
    overflow-x: hidden;
}

.navbar {
    background-color: #0d1b2a;
}

.navbar-brand {
    color: #fff !important;
    font-weight: bold;
}

.navbar-brand img {
  color: orange;
  height: 38px;
}

.navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.navbar-nav .nav-link:hover {
    color: black !important;
}

p.readmore {
    margin-top: 1em;
}

.readmore a {
    text-decoration: none;
    color: gray;
}

.readmore a:hover {
    color: orange !important;
}

pre {
    position: relative;
    padding: 16px;
}

.btn-copy {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 10;
    padding: 5px;
    font-size: 12px;
    background: #007BFF;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    opacity: 0.8;
}

.kubecontainer {
    background-color: white;
    padding: 2rem;
    border-radius: 0.3rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 2.5rem;
    color: #007BFF;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

h2 {
    font-size: 2rem;
    color: #0056b3;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

h3 {
    font-size: 1.75rem;
    color: #004085;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}


.article-meta {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1rem;
}

.article-meta i {
    margin-right: 0.5rem;
}

.tag {
    background-color: #007BFF;
    color: white;
    padding: 0.2rem 0.6rem;
    font-size: 0.875rem;
}

/* Particle container to fill the screen */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100vh; /* Full viewport height */
    background-color: #0d1b2a;
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1; /* Make sure it's on top of the particles */
    display: flex; /* Align text and image side by side */
    justify-content: space-between;
    align-items: center;
    height: 85vh; /* Ensure the hero section takes the full viewport height */
    padding: 0 10%; /* Add some padding for nice spacing */
}

.text-section {
    width: 50%;
    color: white;
    font-size: 1.8rem;
    line-height: 1.5;
    padding: 20px;
    border-radius: 10px;
}

.image-section {
    width: 40%;
    display: flex;
    justify-content: center;
}

.ai-robot {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.content-section {
    background-color: #273447; /* Slightly lighter background */
    color: #ffffff; /* White text for contrast */
    padding: 50px;
    margin-top: 10vh; /* Start content section below the full viewport */
    line-height: 1.6;
    border-radius: 8px;
    z-index: 1;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Add subtle shadow */
    display: block; /* Default block behavior */
    margin-left: auto;
    margin-right: auto; /* Center the content horizontally */
}

.content-section h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: white;
}

.content-section p {
    font-size: 1.0rem;
    margin-bottom: 20px;
    color: white;
}

footer {
    background-color: #0d1b2a;
    color: white; /* White text for contrast */
    padding: 20px;
    position: relative; /* Ensure the footer isn't absolutely positioned */
    z-index: 1; /* Make sure it's on top of other elements */
    width: 100%; /* Ensure it spans the full width */
}

.footer .text-muted {
    color: rgba(255, 255, 255, 0.6) !important; /* Muted white for subtle elements */
}

.footer a {
    color: #ffffff !important; /* Force link color to white */
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #ffcc00; /* Hover effect for links */
}


/* Scroll indicator styling */
.scroll-indicator {
    position: absolute;
    bottom: 20px; /* Place it near the bottom of the screen */
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    font-size: 1rem;
    z-index: 2;
    cursor: pointer;
}

.scroll-indicator span {
    display: block;
    margin-bottom: 10px;
    font-size: 1.2rem;
    animation: fadeInOut 2s infinite;
}

.mouse-icon {
    width: 24px;
    height: 40px;
    border: 2px solid white;
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 4px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s infinite ease-in-out;
}

/* Keyframes for scrolling animation */
@keyframes scrollWheel {
    0% {
        top: 10px;
    }
    100% {
        top: 24px;
    }
}

.image-section {
    width: 45%;
}

.ai-robot {
    max-width: 100%; /* Ensures the image scales properly */
    height: auto;
    border-radius: 10px; /* Optional: makes the image corners rounded */
}

@media (max-width: 768px) {
    /* Adjusting hero content for mobile */
    .hero-content {
        flex-direction: column; /* Stack text and image vertically */
        padding: 10px; /* Reduce padding */
        height: auto; /* Let content determine height */
        width: 100%;
    }

    /* Make text section full width */
    .text-section {
        width: 100%;
        font-size: 1.2rem; /* Reduce font size */
        text-align: center; /* Center text for mobile readability */
        padding: 15px;
    }

    /* Image section adjustments */
    .image-section {
        width: 100%;
        margin-top: 20px; /* Add space between text and image */
    }

    /* AI Robot image on mobile */
    .ai-robot {
        max-width: 80%; /* Reduce image size on mobile */
        margin: 0 auto; /* Center the image */
    }

    /* Shortlist section */
    .shortlist-visionary-list {
        height: 60vh; /* Adjust height for mobile */
        overflow: auto; /* Allow scrolling */
        margin-top: 20px;
        padding: 0 10px; /* Add some padding */
        width: 100% !important;
    }

    .shortlist-text-section {
        display: none;
    }

    /* Project cards adjustments */
    .project-card {
        padding: 15px;
        font-size: 1rem; /* Smaller font size for mobile */
    }

    .project-card h3 {
        font-size: 1.4rem; /* Adjust heading size */
    }

    /* Responsive scrollbar and padding */
    .scrollbar {
        scrollbar-width: thin; /* For modern browsers */
    }
}

.hero-content, #particles-js {
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.shortlist-button {
    text-decoration: none; /* Removes underline */
    background-color: #009485; /* Button color */
    color: white; /* Text color */
    padding: 10px 20px; /* Adjust padding for good spacing */
    border-radius: 20px; /* Rounded corners */
    font-size: 1.1rem; /* Slightly larger text */
    display: inline-block; /* Ensure it behaves like a button */
    transition: background-color 0.3s ease; /* Smooth hover transition */
}

.shortlist-button:hover {
    background-color: #007a6d; /* Darker shade on hover */
}

/* Shortlist page */
.shortlist-text-section {
    width: 30%;
    color: white;
    font-size: 1.8rem;
    line-height: 1.5;
    padding: 20px;
    border-radius: 10px;
}

.shortlist-heading {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #00d1b2;
}

.shortlist-paragraph {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #e0e0e0;
}

/* Styling for the visionary list */
.shortlist-visionary-list {
    width: 60%;
    margin-top: 30px;
    height: 80vh; /* 50% of the viewport height */
    overflow: auto;
    position: relative;
}

.project-card {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 10px;
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Smooth scrolling for content inside the list */
.project-card h3, .project-card p {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.5;
}

.project-card h3 {
    font-size: 1.6rem;
    color: #00d1b2;
}

.project-card a {
    color: #00d1b2;
    text-decoration: none;
}

.project-card a:hover {
    text-decoration: underline;
}

.quote {
    text-align: center;
    font-style: italic;
    font-size: 1.2rem;
    color: #555; /* A more subtle color */
    margin-bottom: 30px;
    padding: 30px;
    background-color: #001f33;
}

.quote p {
    margin: 0;
    line-height: 1.5;
    color: white;
}

p.quote-author {
    font-size: 1rem;
    color: rgb(163, 141, 141);
    margin-top: 5px;
}
