/* Categories Container */
.categories-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    margin: 50px auto;
    flex-wrap: wrap;
}

/* Category Boxes */
.category-box {
    width: 300px;
    height: 500px;
    background-size: cover; /* Ensures the image fully covers the box */
    background-position: center; /* Centers the image in the box */
    background-repeat: no-repeat; /* Prevents tiling if the image is smaller than the box */
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    margin-top: 80px;
}

.category-box:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 60px rgba(0, 255, 149, 0.5);
    background-color: rgba(0, 0, 0, 0.5);
    color: #00ffcc;
}

/* Individual Backgrounds */
.category-box:nth-child(1) {
    background-image: url("../images/uttam.jpg");
}

.category-box:nth-child(2) {
    background-image: url("../images/gojo.jpg");
}

.category-box:nth-child(3) {
    background-image: url("../images/anu.jpg");
}

.category-box:nth-child(4) {
    background-image: url("../images/logo.png");
}

/* Text Styling */
.category-box h2 {
    font-family: "Cascadia Code", monospace;
    font-size: 24px;
    padding: 10px 20px;
    border-radius: 5px;
}
