/* JODEIT.COM Custom Stylesheet */

/* --- Base & Typography --- */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: #212529;
    overflow-x: hidden; /* Prevent horizontal scrollbar */
}

.content-wrapper {
    position: relative;
    z-index: 2;
    background-color: #ffffff;
}

/* --- Background Animation --- */
@keyframes move-stars {
    from { transform: translateY(0px); }
    to   { transform: translateY(-2000px); }
}

.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 300%; /* Taller to allow for scrolling animation */
    background-image: url('https://www.transparenttextures.com/patterns/stardust.png');
    background-repeat: repeat;
    animation: move-stars 200s linear infinite;
    z-index: 1;
    opacity: 0.5;
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    min-height: 100vh;
    z-index: 2;
    background: linear-gradient(135deg, rgba(76, 0, 255, 0.1), rgba(153, 50, 204, 0.1));
}

.hero-section h1 {
    color: #4c00ff;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}
 .hero-section .lead {
       color: #495057; /* A professional, dark grey for better contrast */
}
/* --- Buttons --- */
.btn-primary {
    background-color: #4c00ff; /* Cosmic Blue/Purple */
    border-color: #4c00ff;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #6a1bff;
    border-color: #6a1bff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(76, 0, 255, 0.2);
}

.btn-outline-primary {
    border-color: #4c00ff;
    color: #4c00ff;
    padding: 10px 28px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: #4c00ff;
    color: #ffffff;
}

/* --- Cards --- */
.venture-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.venture-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.venture-card .card-title {
    color: #4c00ff;
}

/* --- Forms --- */
.form-control {
    border-radius: 8px;
    padding: 12px;
    border: 1px solid #ced4da;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
    border-color: #8a5cff;
    box-shadow: 0 0 0 0.25rem rgba(76, 0, 255, 0.15);
}

/* --- Scroll Animations --- */
.fade-in {
    opacity: 0;
    animation: fadeInAnimation 1.5s ease-out forwards;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInAnimation {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
