html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body {

    margin: 0 auto;
    padding: 0 auto;
    color: #FFF;
}

h1,h2,h3,h4,h5,p,ul {
    padding: 0;
    margin: 0;
    font-weight: 400;
}

.popup {
    display: none;
    position: fixed;
    height: 100px;
    margin-top: 20px;
    inset: 0;
    opacity: 0;
    background: rgba(0, 0, 0, 0);
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.popup-content {
    position: relative;
    background: #fff;
    color: #333;
    padding: 2rem 2rem;
    border-radius: 10px;
    text-align: center;
    animation: popup-fade-in 0.3s ease;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 12px;
    cursor: pointer;
    font-size: 1.2rem;
    color: #666;
    transition: color 0.2s;
}

.close-btn:hover {
    color: #000;
}

.card {
    width: 175px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    color: white;
    font-weight: bold;
    border-radius: 8px;
    flex-shrink: 0;
}

.companies{
    text-align: center;
    padding: 60px 20px;
    background-color: #0D0D0D;
}

.filters{
    display: flex;
    gap: 50px;
    justify-content: center;
}

.filter{
    flex-basis: 500px;
    height: 40px;
    border: none;
    outline: none;
    border-bottom: 3px solid #FFF;
    background-color: #0D0D0D;
    font-size: 1.1rem;
    color: #FFF;
}

.about-container{
    display: flex;
    flex-direction: row;
    max-width: 1200px;
    justify-content: center;
    margin: 20px auto;
    gap: 100px;

}

.about-header{
    margin-top: 40px;
    font-size: 2rem;
}

.about-description{
    display: flex;
    flex-direction: column;
    flex-basis: 500px;
    flex-shrink: 1;
    gap: 20px;
    padding: 20px 30px;
    border-radius: 10px;
    margin-left: 20px;
    margin-right: 20px;
    background: linear-gradient(to top right, rgba(46, 46, 46, 1), rgba(26, 26, 26, 0.8));
}

.about-description h2{
    margin-top: 20px;
    margin-bottom: 30px
}

.about-line{
    display: flex;
    align-items: center;
}

.banner{
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("../images/splash-jp-jenkins.3ccbef943815.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 450px;
}

.cta{
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 900px;
    padding: 50px;
    justify-content: center;
}

.cta h1{
    font-family: "Poppins", sans-serif;
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.cta h2{
    font-family: "Poppins", sans-serif;
    font-size: 1.8rem;
}

.cta-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFF;
    background: var(--accent-color-gradient);
    padding: 20px;
    font-size: 1.1rem;
    border-radius: 30px;
    min-width: 200px;
    transition: transform 0.5s ease, box-shadow 0.3s ease, background-color 0.5s ease;
}

.home-cta-btns{
    display: flex;
    flex-direction: row;
    margin-top: 30px;
    gap: 20px;
}

.cta-btn i{
    font-size: 1.4rem;
}

.cta-btn:hover{
    background-color: #12b382;
    box-shadow: 0px 0px 20px var(--accent-color-dim);
    transform: translateY(-2px);
}

.cta-btn:active{
    background-color: #094d38;
    box-shadow: 0px 0px 20px var(--accent-color-dim);
    transform: translateY(-2px);
}

.video-content{
    display: flex;
    flex-direction: column;
    align-items: baseline;
    margin: auto 1rem;
    flex-basis: 350px;
    flex-shrink: 1;
}

.video-content h2{
    margin-bottom: 0.5rem;
}

.media-player{
    width: 100%;
    max-height: 400px;
    margin-bottom: 20px;
}

.companies h2 {
    font-size: 42px;
    margin-bottom: 40px;
    font-weight: 600;
    color: #FFF;
}

input[text], select{
    color: #FFF;
}

input[text]:focus{
    border: none;
}

.table-container{
    width: 100%;
    display: flex;
    justify-content: center;
    border: none;  
}

.table-container table tr:nth-child(even) {
    background-color: #0d0d0d;
}

.table-container table tr:nth-child(odd) {
    background-color: #202020;
}

table.hover-rows tbody tr:hover {
  background-color: #3d3d3d;
}

table{
    width: 1200px;
    max-width: 90vw;
    border: none;
    border-collapse: collapse;
    cursor: pointer;
}

table a{
    text-decoration: none;
    color: #FFF;
}

td, th{
    border: none;
    padding: 15px;
    height: 100px;
    text-align: left;
}

th{
    background-color: #0d0d0d;
}

.name-container{
    margin-bottom: 10px;
}

.company-name{
    font-size: 18px;
    font-weight: 800;
    padding-right: 5px;
}

.card-company-image{
    max-height: 5rem;
    border-radius: 10px;
}

.card-link{
    color: #FFF;
}

.card-link{
    cursor:pointer;
}

.company-info{
    margin-left: 1rem ;
}

.image-container{
    padding-right: 30px;
    height: 75px;
    width: 75px;
}

.company-image{
    display: inline;
    height: 75px;
    width: 75px;
    border-radius: 10px;
}

.table-tag{
    display: inline;
    font-size: 10px;
    padding: 4px 10px;
    border: 1px solid #ECECEC;
    border-radius: 10px;
}

.get-in-touch {
    text-align: center;
    padding: 60px 20px;
    background-color: var(--background-accent);
}

.get-in-touch h2 {
    font-size: 42px;
    margin-bottom: 40px;
    font-weight: 600;
    color: #FFF;
}

.contact-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.contact-card {
    background: linear-gradient(to bottom right, rgba(46, 46, 46, 1), rgba(26, 26, 26, 0.8));;
    color: #fff;
    padding: 30px 20px;
    border-radius: 10px;
    max-width: 325px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s;
}

.contact-card .btn {
    margin-top: auto;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.contact-card p {
    font-size: 14px;
    margin-bottom: 20px;
}

.overlay{
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none; display: flex; align-items: center; justify-content: center;
    background: radial-gradient(circle, rgba(46, 195, 150, 0.3) 0%, rgba(0, 28, 69, 0.3) 50%);
    z-index: 4;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-color-gradient);
    color: #FFF;
    padding: 20px 20px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 16px;
    line-height: 1; 
    width: 250px
}

.btn:hover {
    background-color: #2ec396;
    box-shadow: 0px 0px 20px var(--accent-color-dim);
}

.venue-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 20px;
    border: solid;
    border-color: #2ec396;
    color: #2ec396;
    text-decoration: none;
    border-radius: 40px;
    font-weight: bold;
    line-height: 1;
    width: 250px;
}

.venue-btn:hover{
    background: var(--accent-color-gradient);
    color: #FFF;
    box-shadow: 0px 0px 20px var(--accent-color-dim);
}
.mobile-company-container{
    display: none;
}

.bubble-tags{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}

.video-poster{
    display: none;
    width: 100%;
    height: 100%;
}

.company-card{
    width: 100%;
    border: #FFF 3px solid;
    border-radius: 10px;
    margin-bottom: 1.1rem;
}

.card-top{
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 2rem;
}

.card-label{
    font-size: 1.2rem;
}

.card-data{
    font-size: 1rem;
}

.card-bottom{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
}

.history-section {
    position: relative;
    padding: 80px 20px;
    background: linear-gradient(135deg, #0D0D0D 0%, #1A1A1A 100%);
    color: #fff;
    overflow: hidden;
}

.history-container {
    display: flex;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    gap: 50px;
    flex-wrap: wrap;
    position: relative;
}

.history-image {
    flex-shrink: 0;
    z-index: 2;
    margin-left: -80px;
}

.history-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.history-content {
    flex: 1;
    min-width: 300px;
    z-index: 3;
}

.history-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.history-content p {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.history-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.private-icon {
    position: absolute;
    right: 49%;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.private-icon-mobile {
    position: absolute;
    opacity: 0;
    top: 50%;
    transition: opacity 0.3s ease-in-out;
}

.private-icon.active {
    opacity: 1;
}

.private-icon-mobile.active {
    opacity: 1;
}


.private-column{
    width: 1px;
    padding: 0px;
}

.history-buttons .btn:hover {
  background-color: #2ec396;
}

@media (max-width: 1200px){
      .cta-container{
    padding: 0px 10px
  }
}

@media (max-width: 920px) {
    .benefits-row {
        display: block;
        margin-bottom: 20px;
        width: 100%;
    }
    .content-card{
        margin-bottom: 20px;
        width: 100%;
        max-width: none;
    }
    .about-container{
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 750px) {
    .history-container {
        flex-direction: column;
        align-items: center;
    }

    .history-image {
        margin-left: 0;
        margin-bottom: 30px;
    }

    .history-content {
        text-align: center;
    }

    .table-container{
        display: none;
    }

    .filters{
        flex-direction: column;
        margin-bottom: 30px;
        gap: 3px;
    }

    .filter{
        width: 98%;
        flex-basis: unset;
    }

    .companies{
        padding: 2rem .5rem;
    }

    .mobile-company-container{
        display: block;
    }

    .video-wrapper {
        position: relative;
        height: auto;
        aspect-ratio: 16 / 9;
        position: relative;
        overflow: hidden
    }

    .poster-container{
        height: 100px;
        width: 100px;
    }

    .video-wrapper iframe {
        display: none;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        min-height: unset;
        transform: none;
    }

    .video-poster{
        display: block;
        position: relative;
        width: 100%;
        height: 100%;
        transform: none;
        object-fit: contain;

    }
    .cta{
        padding: 0px;
    }
    .home-cta-btns{
        flex-direction: column;
        gap: 8px;
        width: 95%;
    }
    .cta-btn{
        min-width: unset;
    }

    .cta h1, .cta h2{
        text-align: center;
    }
    .contact-card{
    width: 100%;
    max-width: unset;
    }
}