.text-image-row {
    display: flex;
    align-items: center;   /* vertically align text + image */
    margin-bottom:5em;
    padding: 1em;
    background: linear-gradient(to right, white, rgba(255, 0, 99, 0.1));
    border-radius:1em;
}

.category__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display:flex;
    color: #6d6d6d;
    flex-wrap: wrap;
    justify-content: center;
    gap:1em;
}

.categories {
    margin-bottom:2em;
}

.category__list li {
    margin-bottom: 0.5rem;
    padding: 0.4rem 0.6rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    display: flex;
    margin: 0;
}

.ux-category {
    text-transform:none;
    font-weight:400;
    width: max-content;
    margin: 0;
    padding:0;
}

.category__list li:hover,.category__list li.selected {
    background: #ff00631a;
    color: #111;
}

.text-col {
    flex: 0 0 40%;
    text-align: left;
    margin-bottom: auto;
    padding: 1em 2em 0 1em;
}

.image-col {
    flex: 0 0 60%;               /* take available space */
    text-align: right;     /* align the image to the right */
}

.image-col img {
    max-width: 100%;       /* responsive scaling */
    height: auto;
    border-radius: 0.5rem; /* optional styling */
}


.training-hero-placeholder {
    height: 100vh;
    display: flex;
    position: relative;
    overflow: hidden;
    justify-self: center;
    padding:1em;
    background: #fff;
    width: 100vw;
    justify-content: center;
}



.training-hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    object-fit: cover; /* Ensures the video covers the entire area without distortion */
}

.training-hero-buttons {
    display: flex; /* Use flexbox to align elements in a row */
    justify-content: center; /* Center the buttons horizontally */
    align-items: center; /* Align buttons vertically */
    gap: 0.5rem; /* Add space between buttons */
}


/* Buttons */
.training-hero-buttons .btn {
    display: inline-flex; /* Use flexbox for centering */
    justify-content: center; /* Horizontally center the text */
    align-items: center; /* Vertically center the text */
    margin: 0 0.5em;
    border-radius: 1.5em;
    padding:0.8em 1.5em 0.8em 1.5em;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s;
    font-size: 1em; /* Text size */
    line-height: 1; /* Ensures no extra space is added inside the text */
    font-family: -apple-system, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
    text-transform: uppercase;
    height: auto; /* Allow button height to adjust dynamically */
    width: auto; /* Button width adjusts to content */
    background-color: #fff;
    color: #000;
    border: 1px solid transparent;
}

.training-hero-buttons .btn.cta {
    color:#fff;
    background-color:#ff0063;
}

.logo-strip {
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* centers rows even if uneven count */
  gap: 2rem; /* space between logos */
  padding: 1rem 0;
}

.logo-strip .logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 5em;
}

/* Fixed-size boxes so rows align neatly */
.logo-strip .logo-item {
  width: 160px;                /* choose your slot width */
  height: 100px;               /* choose your slot height */
  display: flex;
  align-items: center;
  justify-content: center;
}


.logos .logo-item img {
  max-width: 140px; /* shrink size */
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(100%); /* greyscale effect */
  opacity: 0.8;
  transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.logos .logo-item img:hover {
  filter: grayscale(0%); /* optional: reveal color on hover */
  opacity: 1;
  transform: scale(1.05);
}

.logos.awards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem; /* bigger spacing */
  padding: 2rem 0;
}

/* Much larger than partners */
.logos.awards .logo-item img {
  max-width: 200px;   /* increased size */
  max-height: 100px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.9;
  transition: 
    filter 0.4s ease, 
    opacity 0.4s ease, 
    transform 0.4s ease;
}

.logos.awards .logo-item img:hover {
  opacity: 1;
}

/* Prevent last row from having just 1 logo */
.logos.awards .logo-item {
  flex: 1 1 200px;   /* each item at least 260px wide */
  max-width: 320px;
}

.logos.awards .logo-item img:hover {
  filter: grayscale(0%); /* optional: reveal color on hover */
  opacity: 1;
  transform: scale(1.5);
}



.training-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    height: 80%;
    align-content: center;
    padding:3em;
    width:50%;
}

.training-hero-content h1, .training-scenario-section h1 {
    font-size: 3rem;
    font-weight: 600;
    color:#000;
}

@media (max-width: 768px) {
    .training-hero-content h1 {
        font-size: 3rem;
        font-weight: bold;
        margin-bottom: 1rem;
        color : #fff;
    }
}


.training-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color : #000;

}


.training-hero-buttons .btn-start {
    background-color: #FF0063;
    color: #aaa;
}

.training-hero-buttons .btn-watch-demo {
    background-color: transparent;
    border: 2px solid #000;
    color: #000;
}



/* Main container for the training scenario section */
.training-scenario-section {
    text-align: center;
    padding: 2rem 0;
}

/* Introductory text (heading and paragraph) */
.training-intro h1 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    padding: 0em 1em;
}

.training-intro p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    padding: 0em 1em;
}

/* Placeholder with solid background color */
.training-scenario-placeholder {
    position: relative;
    width: 1000px;
    height: 500px;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
}

/* Overlay text styling */
.training-scenario-overlay {
    color: white;
    background-color: rgba(0, 0, 0, 0.0); /* Semi-transparent background */
    padding: 1rem 2rem 1rem 2rem;
    border-radius: 4px;
    font-size: 4em;
    text-align: center;

}

h2 {
    font-size: 2rem;
    margin: 0;
    color: #000;
    font-weight: 400;
    margin-bottom:1rem;

}

/* Main container for the steps section */
.steps-section {
    padding: 2rem 0;
    text-align: center;
    width: 100%;
}


/* Container to center the content and control max-width */
.steps-container {
    max-width: 1200px; /* Adjust the max-width to your preference */
    margin: 0 auto; /* Center the container */
    padding: 0 2rem; /* Add padding to the sides for better spacing */
}


/* Header (title and description) */
.steps-header h3 {
    font-weight: normal;
    margin-bottom: 1rem;
}

.steps-header p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

/* Step container */
.step-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

/* Text part of the step */
.step-text {
    flex: 1;
    max-width: 45%;
    text-align: left;
}

.step-text h2 {
    font-size: 2.5rem;
    font-weight: bold;
}

.step-text p {
    font-size: 1.5rem;
    margin: 0.5rem 0;
}

.step-text small {
    font-size: 1rem;
    color: #666;
}

/* Placeholder container */
.step-placeholder {
    flex: 1;
    max-width: 45%;
}

/* Placeholder box (solid color background) */
.solid-placeholder {
    background-color: #cccccc; /* Solid gray placeholder */
    width: 100%;
    height: 300px;
    border-radius: 8px; /* Optional: Rounded corners */
    background-size: cover;
    background-position: center;
}

.solid-placeholder.first{
    background-image: url(/wp-content/uploads/2024/11/drag-and-drop.webp);
}

.solid-placeholder.second{
    background-image: url(/wp-content/uploads/2024/11/customise.webp);
}

.solid-placeholder.third{
    background-image: url(/wp-content/uploads/2024/11/play.webp);
}


/* Reverse the layout for Step 2 */
.step-reverse {
    flex-direction: row-reverse;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .step-item {
        flex-direction: column;
    }

    .step-text, .step-placeholder {
        max-width: 100%;
        text-align: center;
        display: contents;
    }
}



/* Main gallery section */
.scenario-gallery-section {
    padding: 2rem 0;
    background-color: #fff;
}

/* Container for centering the gallery */
.gallery-container {
    max-width: 1200px; /* Adjust the max-width to fit your needs */
    margin: 0 auto; /* Centers the container */
    padding: 0 2rem; /* Adds padding to avoid content hitting screen edges */
}

/* Title Section */
.gallery-header h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-align: center;
}

.gallery-header p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    text-align: center;
}

/* Category Section */
.gallery-category h2 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-align: left;
}

/* Gallery Grid */
.gallery-grid {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem; /* Adds spacing between items */
    flex-wrap: wrap; /* Ensures items wrap on smaller screens */
    padding: 1em;
}

/* Gallery Item */
.gallery-item {
    flex: 1 1 calc(33.333% - 1rem); /* 3 columns layout, adjust as necessary */
    box-sizing: border-box;
    text-align: center;
    padding: 1em;
    border: black solid 1px;
    border-radius: 1em;
    position: relative;
    overflow: hidden;
    height: 350px;
}

/* Placeholder Box */
.gallery-placeholder {
    display: block;
    background-color: #ccc;
    width: 90%;
    height: 180px;
    border-radius: 8px;
    margin-bottom: 1rem;
    background-size: cover;
    background-position: center;
    position: absolute;
    bottom: -80px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
    transition: bottom 0.3s ease;
}


.placeholder-container {
    position: relative;
    width: 300px; /* set desired width */
    height: 150px; /* half the image height, for masking */
    overflow: hidden; /* masking effect */
    margin-top: 15px; /* spacing from text */
    border-radius: 10px; /* rounded corners */

}

.gallery-placeholder:hover {
    bottom: -20px; /* slide up into view on hover */
}


/* Placeholder Box */
.gallery-placeholder.first {
    background-image: url(/wp-content/uploads/2024/11/1.webp);
}

.gallery-placeholder.second {
    background-image: url(/wp-content/uploads/2024/11/2.webp);
}

.gallery-placeholder.third {
    background-image: url(/wp-content/uploads/2024/11/3.webp);
}
.gallery-placeholder.fourth {
    background-image: url(/wp-content/uploads/2024/11/4.webp);
}

.gallery-placeholder.fifth {
    background-image: url(/wp-content/uploads/2024/11/5.webp);
}

.gallery-placeholder.sixth {
    background-image: url(/wp-content/uploads/2024/11/6.webp);
}
.gallery-placeholder.seventh {
    background-image: url(/wp-content/uploads/2024/11/7.webp);
}

.gallery-placeholder.eighth {
    background-image: url(/wp-content/uploads/2024/11/8.webp);
}

.gallery-placeholder.ninth {
    background-image: url(/wp-content/uploads/2024/11/9.webp);
}

.gallery-placeholder.tenth {
    background-image: url(/wp-content/uploads/2024/11/10.webp);
}

.gallery-placeholder.eleventh {
    background-image: url(/wp-content/uploads/2024/11/11.webp);
}

.gallery-placeholder.twelfth{
    background-image: url(/wp-content/uploads/2024/11/12.webp);
}



/* Responsive Design */
@media (max-width: 768px) {
    .gallery-item {
        flex: 1 1 100%; /* Single column on smaller screens */
    }
}
/* FAQ Section Styling */
.faq-section {
    padding: 2rem;
    background-color: #1b1b1b;
    color: #fff;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 8px;
}

.faq-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: white;
}

/* FAQ Item */
.faq-item {
    margin-bottom: 1rem;
    border-bottom: 1px solid #444;
    padding-bottom: 1rem;
}

/* FAQ Question Button */
.faq-question {
    background-color: transparent;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    text-align: left;
    width: 100%;
    cursor: pointer;
    padding: 1rem 0;
    border-bottom: 1px solid #444;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:focus {
    outline: none;
}

/* FAQ Answer - Hidden by default */
.faq-answer {
    display: none;
    margin-top: 1rem;
    color: #ccc;
    max-height: 300px; /* Adjust based on content */
}

.faq-question::after {
    content: '\25bc'; /* Down arrow */
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(180deg); /* Rotate arrow when active */
}

.use-case-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.section-title {
    margin-bottom: 1em;
    justify-content: center;
}

.section-subtext {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 5em;
}

.use-case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.use-case-card {
    background: #ff006305;
    border-radius: 12px;
    padding: 20px;
    text-align: left;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease;
}

.use-case-card:hover {
    transform: translateY(-4px);
}

.use-case-card p {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.use-case-card span {
    color: #666;
    font-size: 0.95rem;
}