/*=============== CUSTOM ELEMENTS ===============*/
.button-link {
    display: inline-block;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--white-color);
    border-radius: 0.5rem;

    background: transparent; /* ------------ COLOR ------------ */
    color: var(--white-color); /* ------------ COLOR ------------ */
}
.button-link:hover {
    background: linear-gradient(165deg, #ffffff 0%, #f5f5f5 100%); /* ------------ COLOR ------------ */
    color: var(--black-color); /* ------------ COLOR ------------ */
    transition: all 0.3s ease-in-out;
}
.information-span {
    display: inline-block;
    text-decoration: none;
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
    max-height: 2rem;

    box-shadow:
        0 16px 32px rgba(0, 0, 0, 0.12),
        0 4px 8px rgba(0, 0, 0, 0.08);
    border-radius: 3rem;
    border: 1px solid #161616; /* ------------ COLOR ------------ */
    background: linear-gradient(90deg, #2c2c2c, #000000); /* ------------ COLOR ------------ */
    color: var(--white-color); /* ------------ COLOR ------------ */
}



/*=============== SECTION-1 ===============*/
.section-1 {
    width: 100%;
    height: 90vh;
    display: flex;
    justify-content:flex-start;
    align-items:flex-end;

    background: #000000; /* ------------ COLOR ------------ */
    background: linear-gradient(165deg, rgba(0, 0, 0, 1) 0%, #00abc4 40%, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 1) 100%);
}
.section-1-header {
    margin: 0 0 5% 10%;
}
.section-1-header h1 {
    font-size: 5rem;
    margin-top: 3rem;
    color: #fff; /* ------------ COLOR ------------ */
}
.section-1-header p {
    margin-top: 1rem;
    font-size: 1.5rem;
    max-width: 55%;
    color: #fff; /* ------------ COLOR ------------ */
}



/*=============== SECTION-2 ===============*/
@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.section-2 {
    width: 100%;
    padding: 60px 0;
    background: #000000; /* ------------ COLOR ------------ */
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}
.section-2 img {
    filter: invert(0.9);
    opacity: 0.5;
}
.section-2:before,
.section-2:after {
    position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    content: "";
    z-index: 2;
}
.section-2:before {
    left: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0), #000000); /* ------------ COLOR ------------ */
}
.section-2:after {
    right: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), #000000); /* ------------ COLOR ------------ */
}
.logos:hover .logos-slide {
    animation-play-state: paused;
}
.logos-slide {
    display: inline-block;
    animation: 35s slide infinite linear;
}
.logos-slide img {
    height: 50px;
    margin: 0 40px;
}



/*=============== SECTION-3 ===============*/
.section-3 {
    width: 100%;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;

    background: #000000; /* ------------ COLOR ------------ */
}
@keyframes appear {
    from {
        opacity: 0;
        scale: 0.5;
    }
    to {
        opacity: 1;
        scale: 1;
    }
}
.section-3-video{
    max-width: 100%;
    max-height: 70vh;
    border-radius: 20px;
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0% cover 35%;
}



/*=============== SECTION-4 ===============*/
.section-4 {
    width: 100%;
    height: auto;
}
.section-4-header {
    width: 100%;
    text-align: start;
    margin-left: 10%;
    margin-top: 120px;
    margin-bottom: 70px;
    font-size: 1.5rem;
    color: var(--black-color); /* ------------ COLOR ------------ */
}
.section-4-header p {
    width: 50%;
    margin-top: 10px;
    color: #737373;
}
.grid-container {
  width: 100%;
  padding: 0 10% 120px 10%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.card {
    height: 350px;
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        0 8px 16px rgba(0, 0, 0, 0.1),
        0 2px 4px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.3s ease;

    background: #fff; /* ------------ COLOR ------------ */
}
.card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 16px 32px rgba(0, 0, 0, 0.12),
        0 4px 8px rgba(0, 0, 0, 0.08);
}
.card-image {
    flex: 1;
    width: 100%;
    height: 50%;
    overflow: hidden;
}
.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card-content {
    flex: 1;
    padding: 1.5rem;
    text-align: center;
}
.card-content h2 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--black-color); /* ------------ COLOR ------------ */
}
.card-content p {
    color: #737373; /* ------------ COLOR ------------ */
    font-size: 0.95rem;
    line-height: 1.6;
}



/*=============== SECTION-5 ===============*/
.section-5 {
    width: 100%;
    height: auto;
    padding-top: 120px;
    text-align: center;
    background-color: #000000; /* ------------ COLOR ------------ */
}
.section-5-header {
    font-size: 1.5rem;
    color: var(--white-color); /* ------------ COLOR ------------ */
}
.section-5-header p {
    margin-top: 10px;
    color: #a3a3a3; /* ------------ COLOR ------------ */
}
.v1-grid-container {
    width: 100%;
    padding: 70px 10% 120px 10%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.v1-card {
    position: relative;
    height: 350px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    border: 2px solid transparent;
    background: 
        linear-gradient(#000, #000) padding-box,
        linear-gradient(135deg, #00abc4, #000, #00abc4) border-box; /* ------------ COLOR ------------ */
    background-size: 200% 200%;
    animation: borderMove 6s ease infinite;
}
@keyframes borderMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.v1-card-content {
    flex: 1;
    padding: 1.5rem;
    text-align: center;
}
.v1-card-content h2 {
    font-size: 5rem;

    color: #fff; /* ------------ COLOR ------------ */
}
.v1-card-content p {
    font-size: 3rem;

    color: #fff; /* ------------ COLOR ------------ */
}



/*=============== SECTION-6 ===============*/



/*=============== SECTION-7 ===============*/
.section-7 {
    width: 100%;
    height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;

    background: #000000; /* ------------ COLOR ------------ */
    background: linear-gradient(165deg, rgba(0, 0, 0, 1) 0%, #00abc4 40%, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 1) 100%);
}

.section-7-contact {
    width: 90%;
    text-align: center;
}

.section-7 .section-7-contact h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    
    color: #fff;
}

.section-7 .section-7-contact p {
    font-size: 1.2rem;
    margin-bottom: 40px;

    color: #fff;
}


/*=============== RESPONSIVE ===============*/
@media (max-width: 1300px) {
    /*=============== SECTION-1 ===============*/
    .section-1 {
        height: 90vh;
        justify-content: center;
        align-items: center;
    }
    .section-1-header {
        margin: 100px 10% 50px 10%;
    }
    .section-1-header h1 {
        margin-top: 50px;
        font-size: 2rem;
    }
    .section-1-header p {
        margin-top: 1rem;
        font-size: 1.2rem;
        max-width: 100%;
    }

    /*=============== SECTION-4 ===============*/
    .section-4-header {
        margin-left: 0%;
        padding: 10%;
        text-align: center;
        margin-top: 50px;
        margin-bottom: 50px;
        font-size: 1.5rem;
    }
    .section-4-header h1 {
        font-size: 2rem;
    }
    .section-4-header p {
        width: 100%;
        margin-top: 10px;
    }

    /*=============== SECTION-5 ===============*/
    .section-5 {
        padding-top: 50px;
        text-align: center;
        background-color: #000000; /* ------------ COLOR ------------ */
    }
    .section-5-header {
        font-size: 1rem;
        padding: 10%;
        color: var(--white-color); /* ------------ COLOR ------------ */
    }
    .section-5-header p {
        margin-top: 10px;
        color: #737373; /* ------------ COLOR ------------ */
    }
    .v1-grid-container {
        width: 100%;
        padding: 0px 10% 120px 10%;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
    .v1-card {
        height: 200px;
    }
    .v1-card-content h2 {
        font-size: 3rem;

        color: #fff; /* ------------ COLOR ------------ */
    }
    .v1-card-content p {
        font-size: 2rem;

        color: #fff; /* ------------ COLOR ------------ */
    }

    /*=============== SECTION-7 ===============*/
    .section-7 {
        height: auto;
        padding: 10%;
    }

    .section-7 .section-7-contact h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .section-7 .section-7-contact p {
        margin-bottom: 25px;
    }
}