body {
    background-color: var(--bg-color); /* Light neutral background for balance */
    background-image: 
      url('https://www.transparenttextures.com/patterns/cubes.png'); /* Adds a subtle cube pattern */
    background-repeat: repeat; /* Repeat the pattern */
    background-size: auto; /* Keeps the pattern subtle and not too large */
    cursor: url('/assets/image/gif/cursor.png'), auto;
  }
  button, a{
    cursor: url('/assets/image/gif/pointer.png'), pointer; 
  }


h1 {
    text-align: center;
    margin-top: 20px;
    font-size: 28px;
    /* color: #333; */
}

/* Card container */
.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    width: 90%;
    max-width: 1200px;
    margin: 20px auto;
}

/* Individual card styles */
.card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.card-icon {
    font-size: 50px;
    color: #306998; /* Default color (Python) */
    margin-bottom: 10px;
}

.card h2 {
    font-size: 20px;
    color: #333;
    margin: 10px 0;
}

.card p {
    font-size: 14px;
    color: #666;
    margin: 10px 0 20px;
}

/* Button styles */
.btn {
    text-decoration: none;
    color: white;
    background: #306998; /* Default button color */
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 14px;
    display: inline-block;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #28547a;
}
