/* Custom Styles */
body {
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
    cursor: none; /* Disable default cursor */
}

.hero-section {
    background: linear-gradient(135deg, #007BFF, #00FF88);
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: bold;
}

.hero-section p {
    font-size: 1.5rem;
    margin-top: 20px;
}

.card {
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-10px);
}

footer {
    background-color: #343a40;
}

/* Particle.js Container */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

/* Custom Cursor */
.custom-cursor {
    width: 32px; /* Adjust based on your image size */
    height: 32px;
    background-image: url('https://static-00.iconduck.com/assets.00/red-apple-emoji-1003x1024-1l853aje.png'); /* Path to your apple image */
    background-size: cover;
    position: absolute;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 1000;
}

/* Responsive Font Sizes */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }
    .hero-section h1 {
        font-size: 2.5rem;
    }
    .hero-section p {
        font-size: 1.2rem;
    }
    h2 {
        font-size: 1.8rem;
    }
    p {
        font-size: 1rem;
    }
}

/* Navbar Tweaks */
.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    outline: none;
}