.globalBanner {
      height: 250px;
     width: 100%; 
    background-color: #fff;
    /*margin-top: 66px;*/
    color: black;
    padding: 130px 0px 0px;
    position: relative;
    overflow: hidden;
    text-align: left;
}

.globalBanner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/themes/web/vanvps/static/picture/remoteL17125132174291.jpg') no-repeat center center/cover;
    z-index: 0;
}

.comp_container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.pagebanner-title {
    font-size: 30px;
    font-weight: bold;
    margin: 0;
    text-transform: uppercase;
    /*letter-spacing: 2px;*/
}

.pagebanner-description {
    font-size: 15px;
    margin: 20px 0;
}

.pagebanner-button .fancy-button1 {
    display: inline-block;
      width: 172px;
    height: 40px;
    background: linear-gradient(90deg, #282b31, #565861);
    border-radius: 4px;
    font-size: 14px;
    font-weight: 400;
    color: #FFFFFF;
    text-align: center;
    cursor: pointer;
    margin-right: 20px;
    line-height: 40px;
}

.pagebanner-button .fancy-button1:hover {
      background: linear-gradient(90deg, #505153, #646870);
    color: #fff;
}
.pagebanner-button .fancy-button2 {
    display: inline-block;
      width: 172px;
    height: 40px;
 
    border-radius: 4px;
    font-size: 14px;
    font-weight: 400;

    text-align: center;
    cursor: pointer;
    margin-right: 20px;
    line-height: 40px;
    margin-top: 10px;
    color: #3d6cfc;
    background: transparent;
    border: 1px solid #3d6cfc;
    box-sizing: border-box;
}

.pagebanner-button .fancy-button2:hover {
    background: linear-gradient(90deg, #3d6cfc, #669aff);
    color: #fff;
}

/* Tabs Section */
.cloud-tabs_bg {
    background: linear-gradient(180deg, #e9eef7, #fff);
    padding: 30px 0;
   
}

.cloud-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cloud-tab-button {
    flex: 1;
    border: none;
   
}

.cloud-tab-button.selected {
    background-color: #3d6cfc;
    color: #ffffff;
}

.cloud-tab-button h1 {
    font-size: 16px;
    margin: 0;
    padding: 10px;
    color: black;
}

.activity-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.activity-item {
    height: 100%;
    width: calc(33.333% - 16px); /* Three items per row */
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    text-decoration: none;
    color: #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

.activity-item:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
}

.activity-item-image img {
    width: 100%;
    height:200px;
    border-bottom: 1px solid #e0e0e0;
}

.activity-item-content {
    padding: 20px;
}

.activity-item-title h1 {
    font-size: 16px;
    margin: 0;
    font-weight: bold;
    color: #ff5c5c;
}

.activity-item-desc h5 {
    
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
    color: #666666;
    margin: 10px 0;
}

.activity-item-time {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #888888;
    justify-content: space-between;
    margin-top: 8px;
}

/* Modified RibonTags Style */
.status_text.ongoing {
    color: #ff5c5c;
    font-weight: bold;
    margin-left: 10px;
}

/* Activity Tips */
.activityTips {
    text-align: center;
    padding: 30px 0;
    /*background-color: #ff5c5c;*/
    color: black;
    font-size: 20px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.activity-item-information {
    border-top: 1px solid #E8ECEF;
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .globalBanner {
  
    margin-top: 66px;
}
    .activity-item {
        width: 100%; /* Full width for mobile */
        margin-bottom: 10px;
        box-shadow: none; /* Reduce shadow effect for a cleaner look on mobile */
        border-radius: 0; /* Remove border radius for a sharp look */
    }

    .activity-item-content {
        padding: 15px; /* Adjust padding for mobile */
    }

    .activity-item-title h1 {
        font-size: 18px; /* Slightly larger font for better readability */
    }

    .activity-item-desc h5 {
        font-size: 16px; /* Adjusted font size for mobile */
    }

    .activity-item-time {
        font-size: 12px; /* Increase font size for better readability */
        justify-content: flex-start; /* Align items to the start */
    }

    .activity-item-time span,
    .activity-item-time p {
       
    }

    .activity-item-image img {
        width: 100%;
        
    }

    
}