body {
    background-color: #121212;
    color: #ffffff;
    font-family: Arial, Calibri, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
}





.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Distributes space between children */
    align-items: center;
    text-align: center;
    color: white;
    overflow: hidden;
    padding: 20px 0; /* Adds vertical spacing */
}

.topTextBG {
    padding: 10px;
    border-radius: 20px;
    background-color: #0703367c;
}

.gwiz-text {
    font-size: 5rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #9D3BB3;
    text-shadow: -3px -3px 0px #330050, -6px -6px 0px #220033, -9px -9px 0px #110011;
    letter-spacing: 5px;
    transition: transform 0.3s ease-in-out;
}

    .gwiz-text:hover {
        transform: translateY(-5px);
        text-shadow: 4px 4px 0px #330050, 8px 8px 0px #220033, 12px 12px 0px #110011;
    }

.hero h2 {
    font-size: 3rem;
    font-weight: bold;
    text-transform: uppercase;
    background: linear-gradient(to right, #9D3BB3, #ffffff);
    -webkit-background-clip: text;
    color: transparent;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

.hero-top-content {
    padding: 10px;
    z-index: 2;
}

.hero-top-content-textHolder {
    padding: 20px;
    background-color: rgba(7, 3, 54, 0.5);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.hero-bottom-content {
    padding: 20px;
    background-color: rgba(7, 3, 54, 0.5);
    border-radius: 10px;
    margin-bottom: 50px;
    width: 80rem;
}

    .hero-bottom-content p {
        text-align: left;
    }

    .hero-bottom-content button {
        width: 220px;
        height: 80px;
        font-size: 1.2rem;
        font-weight: bold;
        color: white;
        background: linear-gradient(to bottom, #9D3BB3, #330050);
        border: none;
        border-radius: 20px;
        cursor: pointer;
        transition: transform 0.2s, box-shadow 0.3s;
    }

        .hero-bottom-content button:hover {
            transform: scale(1.05);
            box-shadow: 0px 0px 20px rgba(157, 59, 179, 0.8);
        }

.spline-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../Assets/Images/AboutUs.png");
    background-size: cover;
    background-position: center;
    opacity: 0.8;
    z-index: -1;
}

.demo-button {
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
    background: linear-gradient(to right, #ff00ff, #6600ff);
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    text-transform: uppercase;
}

.logo {
    width: 70%;
    max-width: 450px;
    min-width: 120px;
    height: auto;
    transition: transform 0.3s ease-in-out;
}






.container {
}

.mission {
    margin-bottom: 50px;
    animation: fadeIn 1.5s ease-in-out;
    width: 80%;
    margin: auto;
    background: linear-gradient(#26415B, #233C54, #162737);
    padding: 10px;
    border-radius: 10px;
    line-height: 20px;
    border: 2px solid #4675A3;
    max-width: 1100px;
}

.team-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1300px;
    margin: auto;
}

.team-member {
    width: 180px;
    height: 260px;
    perspective: 1000px;
    transition: box-shadow 0.3s ease-in-out;
}

    /* Glow effect when hovering */
    .team-member:hover {
        box-shadow: 0 0 15px rgba(70, 117, 163, 0.8);
        border-radius: 10px;
    }

    .team-member.flipped:hover {
        box-shadow: 0 0 15px rgba(255, 165, 0, 0.8);
        border-radius: 10px;
    }

.card {
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.6s;
}

.card-front,
.card-back {
    width: 100%;
    height: 100%;
    position: absolute;
    backface-visibility: hidden;
    background: #0B141D;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-width: 2px;
    border-color: #4675A2;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.card-front {
    transform: rotateY(0deg);
}

.card-back {
    transform: rotateY(180deg);
}

.team-member.flipped .card {
    transform: rotateY(180deg);
}

img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 10px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.arrowBottomImage {
    bottom:0%;
}







.prospect-section {
    position: relative;
    margin-top: 40px;
    padding: 80px 20px;
    background-color: #000;
    overflow: hidden;
    color: #fff;
    font-family: Arial, sans-serif;
}

.prospect-bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: url('../Assets/Images/prospectbg.png') no-repeat center center/cover;
    z-index: 1;
    opacity: 0.3;
}

.prospect-heading {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 40px;
}

.prospect-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
    gap: 30px;
    max-width: 1300px;
    margin: auto;
}

.prospect-left,
.prospect-middle {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.prospect-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.prospect-title {
    font-size: 2.8rem;
    font-weight: bold;
    color: #00ffc3;
    line-height: 1.2;
}

    .prospect-title span {
        color: #00ffc3;
    }

.prospect-subtitle {
    font-size: 1.5rem;
    margin-top: 10px;
    color: #ccc;
}

.prospect-category {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 10px 15px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
    .prospect-category-text{
        font-size: 1.2rem;
    }
    .prospect-category:hover {
        transform: scale(1.05);
        box-shadow: 0 4px 20px rgba(0, 255, 200, 0.4);
    }

    .prospect-category img {
        width: 40px;
        height: 40px;
    }

.prospect-card {
    background-color: rgba(20, 20, 20, 0.8);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
    .prospect-card-subdiv{
        text-align: left;
    }
    .prospect-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 30px rgba(255, 255, 255, 0.1);
    }

    .prospect-card img {
        width: 60px;
        height: auto;
    }

    .prospect-card h3 {
        margin: 0;
        font-size: 1.3rem;
        color: #fff;
    }
.prospect-card p {
    font-size: 1rem;
    color: #98CAFA;
    line-height: 30px;
}



    .prospect-card ul {
        padding-left: 20px;
    }

@media (max-width: 1024px) {
    .prospect-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .prospect-left, .prospect-middle, .prospect-right {
        align-items: center;
    }

    .prospect-card {
        width: 90%;
    }
}