/*
Theme Name: Ebase Theme
Theme URI: https://essoapps.com
Description: Custom Mod Theme 
Version: 1.1
Author: Esso Apps
Author URI: mailto:info@essoapps.com
Tags: WordPress, Custom Theme
Text Domain: ebase-theme


*/

html,body{
    padding: 0 !important;
    margin: 0 !important;
   overflow-x: hidden;
  


}



.project-filter-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 8px 16px;
    border: 2px solid #F3B65A;
    background: transparent;
    color: #F3B65A;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.filter-tab:hover,
.filter-tab.active {
    background: #F3B65A;
    color: white;
}

.project-item {
    transition: all 0.3s ease;
}


.projects-grid-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: start;
}

.project-item {
     /* Adjust width as needed */
    max-width: 100%;
    text-decoration: none;
}

.project-item {
    position: relative;
    width: 360px;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.project-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.project-thumbnail {
    width: 100%;
    height: 100%;
    background-color: #F3B65A;
    /* display: flex; */
    justify-content: center;
    align-items: center;
}

.project-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 106, 0, 0.815);
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-item:hover .project-overlay {
    opacity: 1;
}

.project-title {
    color: white !important;
    margin: 0px;
}

.project-description {
    color: white;
    font-size: 16px;
    line-height: 1.6;

}



.featured-projects-wrapper {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    overflow-x: auto;
    padding: 20px 0;
}


