.elementor-24188 .elementor-element.elementor-element-96cfd1b{--display:flex;}.elementor-24188 .elementor-element.elementor-element-96cfd1b .wcf-image-hover{background-image:url( https://eventumexhibitions.com/wp-content/plugins/elementor/assets/images/placeholder.png );}.elementor-24188 .elementor-element.elementor-element-72d54f5 > .elementor-widget-container{margin:200px 0px 0px 50px;}@media(min-width:768px){.elementor-24188 .elementor-element.elementor-element-96cfd1b{--width:100%;}}/* Start custom CSS for html, class: .elementor-element-72d54f5 *//* --- GLOBAL & SECTION SETUP --- */
#projects-section {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    padding: 80px 20px;
    overflow: hidden;
}

.projects-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 48px;
    color: #f2c75c;
    font-weight: 700;
    margin-bottom: 40px;
}

/* --- MAIN PROJECT DISPLAY (MODIFIED FOR CENTERING) --- */
.project-display-area {
    display: flex;
    flex-direction: column; /* Stacks items vertically */
    align-items: center;   /* Centers items horizontally */
    text-align: center;    /* Centers text inside elements */
    margin-bottom: 40px;
}

.project-large-image {
    max-width: 800px; /* Prevents image from becoming too wide */
    width: 100%;      /* Ensures it's responsive */
    margin-bottom: 30px; /* Space between image and button */
    position: relative;
    display: inline-block;
}

.project-large-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    border: 4px solid #f2c75c;
}

/* Style for titles */
#project-sub-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 25px 0; /* Space between sub-title and image */
}

/* --- NAVIGATION ARROWS FOR MAIN IMAGE --- */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(242, 199, 84, 0.9);
    color: #000;
    border: none;
    width: 50px;
    height: 50px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.left-arrow {
    left: -25px;
}

.right-arrow {
    right: -25px;
}

.nav-arrow:hover {
    background-color: #ffffff;
}

.nav-arrow:active,
.nav-arrow:focus {
    background-color: #d4ac4e;
    outline: none;
}

/* --- CENTERED PROJECT NAVIGATION (MODIFIED) --- */
.project-navigation-center {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px; /* Increased space between buttons and text */
    margin-top: 20px;
    margin-bottom: 40px;
}

.cta-button.project-nav-btn {
    background-color: transparent; /* No background */
    color: #f2c75c; /* Gold text */
    text-decoration: none;
    padding: 15px 30px; /* Bigger padding */
    border-radius: 5px; /* Less rounded corners for a rectangular look */
    font-weight: 700; /* Bolder text */
    font-size: 18px; /* Bigger font size */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease, transform 0.2s ease; /* Transition for color */
    border: 2px solid #f2c75c; /* Gold border */
}

.cta-button.project-nav-btn:hover {
    background-color: #f2c75c; /* Gold background on hover */
    color: #000000; /* Black text on hover */
    transform: scale(1.05);
}

.projects-text {
    font-size: 24px;
    font-weight: 700;
    color: #f2c75c;
    letter-spacing: 2px;
}

/* --- THUMBNAIL SLIDER --- */
.project-slider-wrapper {
    background-color: #333333;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.project-slider-track-container {
    flex-grow: 1;
    overflow: hidden;
}

.project-slider-track {
    display: flex;
    gap: 15px;
    transition: transform 0.5s ease-in-out;
    padding: 10px;
}

.thumbnail-item {
    cursor: pointer;
    flex: 0 0 auto;
}

.thumbnail-item img {
    width: 150px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    border: 3px solid #666;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.thumbnail-item:hover img {
    border-color: #ffffff;
    transform: scale(1.05);
}

.thumbnail-item.active img {
    border-color: #f2c75c;
    transform: scale(1.1);
}

/* --- RESPONSIVE --- */
@media (max-width: 991px) {
    #project-sub-title {
        font-size: 16px;
    }
    .thumbnail-item img {
        width: 120px;
        height: 80px;
    }
    .nav-arrow {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    .left-arrow { left: -20px; }
    .right-arrow { right: -20px; }
    .project-navigation-center {
        gap: 20px; /* Adjusted gap */
    }
    .cta-button.project-nav-btn {
        padding: 12px 25px; /* Adjusted padding */
        font-size: 16px; /* Adjusted font size */
    }
    .projects-text {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    #projects-section {
        padding: 60px 10px;
    }
    .left-arrow { left: 0px; }
    .right-arrow { right: 0px; }
    .nav-arrow {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    .cta-button.project-nav-btn {
        padding: 10px 20px; /* Adjusted padding */
        font-size: 14px; /* Adjusted font size */
    }
    .projects-text {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .thumbnail-item img {
        width: 100px;
        height: 70px;
    }
    .projects-text {
        font-size: 16px; /* Further adjusted font size */
    }
    .project-navigation-center {
        gap: 10px;
        flex-wrap: wrap; /* Allow buttons to wrap on very small screens */
    }
    .cta-button.project-nav-btn {
        padding: 8px 15px;
        font-size: 12px;
    }
}/* End custom CSS */