body {
    font-family: Arial, sans-serif;
    justify-content: center;
    align-items: center;
    background-color: #070336;
    gap: 0px;
}
.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:1.5rem;
    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;
        width: 100%;
    }
    .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/G_Wiz_Poster.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;
}
@media (orientation: portrait) {
    .logo {
        width: 90%;       /* Increase the percentage if needed */
        min-width: 180px; /* Increase the minimum size to ensure it doesn't shrink too much */
        max-width: none;  /* Optionally remove the max-width if it's limiting the size */
    }
}


.stepsImage {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Full viewport height */
    width: 100vw; /* Full viewport width */
    overflow: hidden;
}

.stepsImage img {
    height: 100vh; /* Make the image take full height of the screen */
    width: auto; /* Maintain aspect ratio */
    max-width: 100%; /* Prevent horizontal overflow */
    object-fit: contain; /* Ensure it fits without cropping */
}


.stepsImage1 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    overflow: hidden;
    margin: auto;
}

.stepsImage1 img {
    width: 90%; 
    height: auto; 
    display: block;
}
@media (orientation: landscape) {
    .stepsImage1 img {
        width: 60%;
    }
}
@media (max-width: 768px) {
    .logo {
        width: 30vw; /* Increase size for smaller screens */
    }
}
@media (max-width: 480px) {
    .logo {
        width: 40vw; /* Further increase for mobile */
    }
}

.demo-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.8);
}





.workflow-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 20px 100px;
    text-align: center;
    position: relative;
}

/* ---------- Top Title Section ---------- */
.top-header {
    margin-bottom: 40px;
    align-content: center;
    align-items: center;
    margin-top: 20px;
}

    .top-header h1 {
        font-size: 2.2rem;
        letter-spacing: 2px;
        margin-bottom: 10px;
        color: white;
        margin: auto;
        text-align: center;
    }

    .top-header p {
        font-size: 1rem;
        color: #b3b3b3;
    }

/* ---------- Step Panels ---------- */
.step-panel {
    position: relative;
    margin: 0 auto 60px auto;
    width: 80%;
    background: linear-gradient(135deg, #190126, #020017);
    border-radius: 10px;
    padding: 40px 20px 30px;
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.7);
}

    /*.step-panel::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 120px;
        height: 120px;
        background: linear-gradient(135deg, #570fbc, #9d1bbb);
        transform: translate(50%, -50%) rotate(45deg);
        box-shadow: 0 0 20px rgba(138, 43, 226, 0.7);
        border-top-right-radius: 20px;
        z-index: -1;
    }
*/
    /* Step Title */
    .step-panel h2 {
        font-size: 1.4rem;
        color: #ff00ff;
        margin-bottom: 10px;
    }

    .step-panel p.description {
        font-size: 0.95rem;
        color: #ccc;
        max-width: 600px;
        margin: 0 auto 30px;
        line-height: 1.5;
    }

/* ---------- Icons Row ---------- */
.icons-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap; /* Wrap on smaller screens */
    margin-top: 10px;
}

.icon-box {
    position: relative; /* Enables absolute positioning of the pseudo-element */
    width: 120px;
    margin-left: 20px;
    text-align: center;
}

/* Insert an arrow to the right of each icon-box except the last */
.icons-row .icon-box:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -40px; /* Adjust this value to control spacing */
    transform: translateY(-100%);
    background: url('data:image/svg+xml;utf8,<svg fill="none" stroke="%23b45fff" stroke-width="2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M5 12h14M12 5l7 7-7 7"/></svg>') no-repeat center center;
    width: 30px;
    height: 30px;
}
.icon-circle {
    width: 120px;
    height: 120px;
    margin: 0 auto 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #b45fff;
    box-shadow: 0 0 10px rgba(180, 95, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

    .icon-circle img {
        width: 100px;
        height: 100px;
    }

    .icon-circle:hover {
        transform: scale(1.15);
        box-shadow: 0 0 20px rgba(180, 95, 255, 0.9);
    }

.icon-box p {
    font-size: 0.8rem;
    color: #fff;
}

/* ---------- Connecting Arrows/Lines ---------- */
.arrow-connector {
    width: 50px;
    height: 50px;
    margin: -40px auto 40px;
    background: url('../Assets/Images/arrow.png') no-repeat center center;
    background-size: 60%;
}

/* ---------- Media Queries for Responsiveness ---------- */
@media (max-width: 768px) {
    .step-panel {
        width: 95%;
        margin-bottom: 40px;
        padding: 30px 15px;
    }

        .step-panel h2 {
            font-size: 1.2rem;
        }

        .step-panel p.description {
            font-size: 0.9rem;
        }

    .icons-row {
        gap: 20px;
    }

    .icon-box {
        width: 70px
    }

    /* Insert an arrow to the right of each icon-box except the last */
    .icons-row .icon-box:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 50%;
        right: -40px; /* Adjust this value to control spacing */
        transform: translateY(-100%);
        background: url('data:image/svg+xml;utf8,<svg fill="none" stroke="%23b45fff" stroke-width="2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M5 12h14M12 5l7 7-7 7"/></svg>') no-repeat center center;
        width: 30px;
        height: 30px;
    }
    .icon-circle {
        width: 80px;
        height: 80px;
    }

        .icon-circle img {
            width: 60px;
            height: 60px;
        }

    .icon-box p {
        font-size: 0.75rem;
    }

    .arrow-connector {
        margin: -30px auto 30px;
    }
}

.step-panel-img{
    width:100%;
}

.closingStatement {
    max-width: 900px; /* Limits width for large screens */
    margin: auto; /* Centers the section */
    padding: 20px;
    text-align: center;
    color: white;
}

    .closingStatement h1 {
        font-size: 2rem; /* Large and readable */
        margin-bottom: 10px;
    }

    .closingStatement h3 {
        font-size: 1.2rem; /* Default for desktop */
        line-height: 1.6;
        font-weight: normal;
    }

/* Mobile Optimization */
@media (max-width: 768px) {
    .closingStatement {
        padding: 15px;
    }

        .closingStatement h1 {
            font-size: 1.8rem; /* Slightly smaller for mobile */
        }

        .closingStatement h3 {
            font-size: 1rem; /* More readable on small screens */
            text-align: left; /* Align text for better flow */
        }
}
.videoHolder {
    margin: auto;
    width: 100%;
    align-content: center;
}
.videoFrame{
    aspect-ratio:16/9;
    margin: auto;
    width: 80%;
    align-content: center;
    align-self: center;
    display: flex;
}



.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 10px;
    padding: 20px;
}

    .gallery img {
        width: 100%;
        height: auto;
        cursor: pointer;
        border-radius: 5px;
        transition: transform 0.2s;
    }

        .gallery img:hover {
            transform: scale(1.05);
        }

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index:100;
    color:white;
}

    .lightbox img {
        max-width: 80%;
        max-height: 80%;
        transition: transform 0.2s;
    }

    .lightbox .close {
        position: absolute;
        top: 20px;
        right: 30px;
        font-size: 40px;
        cursor: pointer;
    }

.prev, .next {
    position: absolute;
    top: 50%;
    font-size: 30px;
    cursor: pointer;
    background: none;
    border: none;
    color: white;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.zoom-controls {
    position: absolute;
    bottom: 20px;
}

    .zoom-controls button {
        font-size: 20px;
        padding: 10px;
        margin: 5px;
        background: white;
        border: none;
        cursor: pointer;
    }