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;
}

.video-wrapper {
    pointer-events: none;
    position: relative;
    width: 100%;      
    height: 355px;     
    overflow: hidden;
    background: black;
}

.contact-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;
}

.contact-btn span{
    font-size: 20px;
}

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

.we-do-container{
    display: flex;
    justify-content: center;
    width: 100%;
}

.we-do{
    display: flex;
    flex-direction: row;
    align-items: center;
    max-width: 1200px;
    margin: 100px auto;
    gap: 40px;
    padding: 20px 50px;
}

.we-do-content{
    flex: 1 1 700px;
}

.we-do-content h1{
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
}

.we-do-content p{
    margin-bottom: 10px;
    line-height: 1.6;
}

.we-do-img-container{
    flex: 1 1 420px;
    min-width: 0;
}

.we-do-img-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.why-do-container {
    display: flex;
    justify-content: center;
    width: 100%;
    background: #131313;
    max-height: 550px;
}

.why-do {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    max-width: 1200px;
    margin: 100px auto;
    gap: 40px;
    max-height: 550px;
    padding: 20px 50px;
}

.why-do-content {
    flex: 1 1 700px;
}

.why-do-content h1 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
}

.why-do-content p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.why-do-img-container {
    flex: 1 1 420px;
    min-width: 0;
    overflow: visible;
    position: relative;
    top: 2px;
}

.why-do-img-container img {
    max-width: 95%;
    object-fit: cover;
    border-radius: 10px;
}

.how-do-container{
    display: flex;
    justify-content: center;
    width: 100%;
}

.how-do{
    display: flex;
    flex-direction: row;
    align-items: center;
    max-width: 1200px;
    margin: 100px auto;
    gap: 40px;
    padding: 20px 50px;
}

.how-do-content{
    flex: 1 1 700px;
}

.how-do-content h1{
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
}

.how-do-content p{
    margin-bottom: 10px;
    line-height: 1.6;
}

.how-do-img-container{
    flex: 1 1 420px;
    min-width: 0;
}

.how-do-img-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
}


.latest-technology{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 100px auto;
    gap: 100px;
    padding: 20px 50px;
    margin-top: 0px;
}

.latest-technology p {
    line-height: 1.5;
}

.latest-technology h2{
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    border-bottom: 3px solid var(--accent-color);
    padding-bottom: 20px;
}

.technology-left{
    flex: 1 1 400px;
}

.technology-right img {
    max-width: 98%;
    height: auto;
}

.apply-cta{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-bottom: 100px;
}

.apply-cta h1{
    font-weight: 600;
    text-align: center;
}

.apply-cta a{
    color: #FFF;
}

@media (max-width: 900px) {
  .we-do-img-container,
  .why-do-img-container,
  .how-do-img-container {
    display: none;
  }
}