
body {
    background-color: #121212;
    color: #fff;
}

.slideshow-container {
    overflow-y: scroll;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    height: 100vh;
}

.slideshow-container::-webkit-scrollbar {
    display: none;
}

section {
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

#home {
    background-color: #2c3e50;
    perspective: 1000px;
}

.hero {
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 20px;
    z-index: -1;
    filter: blur(10px);
}

.hero h1 {
    font-size: 3.6em;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.5em;
    max-width: 800px;
    margin: 0 auto;
}

.next-section-arrow {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) rotate(-45deg);
    }
    40% {
        transform: translateY(-10px) rotate(-45deg);
    }
    60% {
        transform: translateY(-5px) rotate(-45deg);
    }
}

#about {
    background-color: #34495e;
}

#services {
    background-color: #2c3e50;
}

canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.container {
    position: relative;
    z-index: 1;
}

.wave-title span {
    display: inline-block;
    animation: wave-bounce 1.5s infinite;
    animation-delay: calc(0.1s * var(--i));
}

@keyframes wave-bounce {
    0%, 100% {
        transform: translateY(0);
        color: #fff;
    }
    50% {
        transform: translateY(-20px);
        color: #0F0;
    }
}

.card {
    border: none;
}

footer {
    background-color: #1f1f1f;
    color: #aaa;
    text-align: center;
    padding: 20px;
}

.sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 100; 
    padding: 56px 0 0; 
    box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
}

.sidebar-sticky {
    position: relative;
    top: 0;
    height: calc(100vh - 56px);
    padding-top: .5rem;
    overflow-x: hidden;
    overflow-y: auto; 
}

.nav-link {
    color: #fff;
}

.nav-link:hover {
    color: #61dafb;
}

.nav-link.active {
    color: #61dafb;
}

.service-content h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #61dafb;
}

.service-content p {
    font-size: 1.1em;
    line-height: 1.6;
}

/* Minimal Navbar Overlay */
.navbar-minimal .navbar-collapse {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: clip-path 0.3s ease-in-out;
    clip-path: circle(0% at top right);
}

.navbar-minimal .navbar-collapse.show {
    clip-path: circle(150% at top right);
}

.navbar-minimal .navbar-nav {
    text-align: center;
}

.navbar-minimal .nav-item {
    margin-bottom: 1rem;
}

.navbar-minimal .nav-link {
    font-size: 2rem;
    color: #fff;
}

.navbar-minimal .navbar-toggler {
    z-index: 1050; /* Ensure toggler is above overlay */
}

.navbar-minimal .navbar-toggler.is-hidden {
    display: none;
}

.navbar-minimal .btn-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
}

/* Services Page */
.service-content .fa-3x {
    color: #61dafb;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: 2px;
    background-color: #61dafb;
}

.timeline-item {
    padding: 20px 40px;
    position: relative;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 60px;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 60px;
}

.timeline-item::after {
    content: '';
    position: absolute;
    top: 30px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #61dafb;
    border: 4px solid #121212;
}

.timeline-item:nth-child(odd)::after {
    right: -10px;
}

.timeline-item:nth-child(even)::after {
    left: -10px;
}

.timeline-content {
    background-color: #343a40;
    padding: 20px;
    border-radius: 5px;
}
