body {
    background: rgb(7,5,154);
background: radial-gradient(circle, rgba(7,5,154,1) 2%, rgba(7,5,129,1) 12%, rgba(165,168,194,1) 44%, rgba(0,9,123,1) 84%, rgba(36,47,187,1) 96%);
}

.banner {
    width: 100%;
    height: 100vh;
    text-align: center;
    overflow: hidden;
    position: relative;
    transition: all 1s;

}
.banner .slider {
    position: absolute;
    width: 350px;
    height: 450px;
    top: 10%;
    left:35%;
    transition: all 1s;
    transform-style: preserve-3d;
    &::after {
        content: "";
        width: 300px;
        height: 300px;
        position: absolute;
        top: 0;
        left: 0;
        border-radius: 150px;
        animation: float 3.5s ease-in-out infinite;
      
        background: radial-gradient(
          circle at 75% 30%,
          white 5px,
          aqua 8%,
          darkblue 60%,
          aqua 100%
        );
        box-shadow: inset 0 0 20px #fff, inset 10px 0 46px #eaf5fc,
          inset 88px 0px 60px #c2d8fe, inset -20px -60px 100px #fde9ea,
          inset 0 50px 140px #fde9ea, 0 0 90px #fff;
    }
    transform: 
        perspective(1500px)
        translateZ(-650px);

}
.banner .slider .item {
    position: absolute;
    inset: 0 0 0 0;
    transition: all 1s;
    transform: 
        rotateY(calc(    (var(--position) - 1) * (360/var(--quantity)) * 1deg    ))
        translateZ(750px);
}

#nextBtn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    font-size: 18px;
    background-color: blue;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s;
}

#nextBtn:hover {
    background-color: rgb(82, 82, 224);
}




p {
    background-color: rgba(0, 102, 255, 0.331);
    padding: 10px;
    border-radius: 10px;
    border: 2px solid rgb(34, 0, 255);
    box-shadow: 0 0 10px 1px rgb(174, 173, 173);
}
h1 {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    text-decoration: underline;
}

/* Module 1 Card */
.mod1, .mod2, .mod3, .mod4, .mod5, .mod6, .mod7, .mod9, .mod10 {
    border: 2px solid blue;
    background: white;
    max-width: 350px;
    height: 450px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    padding: 20px;
    transition: transform 0.3s ease-in-out;
}

.mod1:hover, .mod2:hover, .mod3:hover, .mod4:hover, .mod5:hover, .mod6:hover, .mod7:hover, .mod9:hover, .mod10:hover {
    transform: scale(1.05);
}

/* Image Box */
.mod1Imgs {
    width: 300px;
    height: 300px;
    background-image: url("./assets/computer.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: rgba(134, 134, 134, 0.2);
    border: 2px solid black;
    box-shadow: 0 0 10px 1px rgb(174, 173, 173);
    border-radius: 10px;
}
.mod2Imgs {
    width: 300px;
    height: 300px;
    background-image: url("./assets/project.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: rgba(134, 134, 134, 0.2);
    border: 2px solid black;
    box-shadow: 0 0 10px 1px rgb(174, 173, 173);
    border-radius: 10px;
}
.mod3Imgs {
    width: 300px;
    height: 300px;
    background-image: url("./assets/method_test.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: rgba(134, 134, 134, 0.2);
    border: 2px solid black;
    box-shadow: 0 0 10px 1px rgb(174, 173, 173);
    border-radius: 10px;
}
.mod4Imgs {
    width: 300px;
    height: 300px;
    background-image: url("./assets/livrabl.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: rgba(134, 134, 134, 0.2);
    border: 2px solid black;
    box-shadow: 0 0 10px 1px rgb(174, 173, 173);
    border-radius: 10px;
}
.mod5Imgs {
    width: 300px;
    height: 300px;
    background-image: url("./assets/organisation.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: rgba(134, 134, 134, 0.2);
    border: 2px solid black;
    box-shadow: 0 0 10px 1px rgb(174, 173, 173);
    border-radius: 10px;
}
.mod6Imgs {
    width: 300px;
    height: 300px;
    background-image: url("./assets/JIRA.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: rgba(134, 134, 134, 0.2);
    border: 2px solid black;
    box-shadow: 0 0 10px 1px rgb(174, 173, 173);
    border-radius: 10px;
}
.mod7Imgs {
    width: 300px;
    height: 300px;
    background-image: url("./assets/JIRA.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: rgba(134, 134, 134, 0.2);
    border: 2px solid black;
    box-shadow: 0 0 10px 1px rgb(174, 173, 173);
    border-radius: 10px;
}
.mod9Imgs {
    width: 300px;
    height: 300px;
    background-image: url("./assets/math.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: rgba(134, 134, 134, 0.2);
    border: 2px solid black;
    box-shadow: 0 0 10px 1px rgb(174, 173, 173);
    border-radius: 10px;
}
.mod10Imgs {
    width: 300px;
    height: 300px;
    background-image: url("./assets/sql.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: rgba(134, 134, 134, 0.2);
    border: 2px solid black;
    box-shadow: 0 0 10px 1px rgb(174, 173, 173);
    border-radius: 10px;
}

/* Text & Button Styling */
.start {
    text-align: center;
    flex-grow: 1;
    padding: 20px;
    background-color: #05193745;
    border-radius: 10px;

}

.start h1 {
    font-size: 36px;
    background: var(--secondary-color);
    color: white;
    padding: 15px;
    border-radius: 10px;
}

.startBtn {
    width: 80%;
    padding: 15px;
    font-size: 18px;
    border-radius: 10px;
    border: none;
    background: rgb(4, 4, 147);
    color: white;
    font-weight: bold;
    cursor: pointer;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin: 20px;
    transition: 0.3s;
}

.startBtn:hover {
    background: rgb(0, 0, 255);
    border: 2px solid rgb(10, 10, 113);
    color: white;
}

.start p {
    background-color: rgba(100, 148, 237, 0.2);
    font-size: 18px;
    padding: 15px;
    border-radius: 10px;
    border: 2px solid blue;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
