/*HERO SECTION*/

#hero-services-section  {
    height: 40vh;
    width: 100%;
    font-size: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid rgba(128, 125, 125, 0.5);
}

.services-hero {
    width: 60%;
}

.services-hero span {
    background-image: linear-gradient(to right, #00C9A7 0%, #4CA8E4 50%, #1B6DC0 100%); 
    border-radius: 15px;
    padding: 0 1rem;
}

.services-hero h4 {
    font-size: 2rem;
    background-image: linear-gradient(to right, #00C9A7 0%, #4CA8E4 50%, #1B6DC0 100%); 
    border-radius: 15px;
    padding: 0 1.5rem;
    width: fit-content;
}


/*WEB COMPANY SECTION*/

#company-section {
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 0;
}

.company-text p {
    font-size: 1.2rem;
}

.company-container,
.company-container2 {
    display: flex;
    justify-content: center;
    gap: 6rem;
    height: 50%;
    margin-top: 4rem;
    width: 100%;
    padding: 0 2rem;
}

.company-container2 {
    height: fit-content;
    flex-direction: column-reverse;
    align-items: center;
    gap: 2rem;
}


.company-text {
    width: 67%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.company-img img {
    height: 70vh;
    width: 100%;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 6px 80px rgba(0, 201, 167, 0.4);
    animation: zoomIn 0.6s ease forwards;
}

.company-container2 .company-img img {
    min-width: 65vw;
    object-position: center;
}



@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/*SERVICES SECTION BUTTON*/

.company-btn,
.company-btn1,
.process-btn {
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(to right, #00C9A7 0%, #4CA8E4 50%, #1B6DC0 100%); 
    background-size: 200% auto;
    box-shadow: 0 4px 15px rgba(0, 201, 167, 0.4);
    transition: all 0.5s ease-in-out;
    transform: scale(1);
    height: 60px;
    width: 350px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 1.5rem;
    margin-top: 1rem;
}

.company-btn:hover,
.company-btn1:hover,
.process-btn:hover {
    background-position: right center;
    box-shadow: 0 6px 25px rgba(0, 201, 167, 0.7);
    transform: scale(1.05);

}

/*WEBSITE BG SECTION*/

#web-bg {
    height: 50vh;
    width: 100%;
    background-image: url('./assets/mobileimg.jpg');
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 3rem 0;
}

.bg-content {
    font-size: 1.5rem;
    height: 20vh;
    width: 20%;
    background-image: linear-gradient(to right, #00C9A7 0%, #4CA8E4 50%, #1B6DC0 100%); 
    border-radius: 30px;
    padding: 2rem;
}


/*COMPANY PROCESS SECTION*/

#process-section {
    display: flex;
    height: 100vh;
    width: 100%;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    flex-direction: row-reverse;
    padding: 1rem;
}

.process-text,
.process-img {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 75%;
    height: fit-content;
    align-items: flex-start;
}

.process-img {
    align-items: center;
}

.process-img h2 {
    font-size: 2.5rem;
}

/*process-btn (defined within SERVICES SECTION) */

/*CSS ANIMATION*/ 

    @keyframes appear {
    from {
        opacity: 0;
        scale: 0.5;
    }
    to {
        opacity: 1;
        scale: 1;
    }
}

.company-container2,
.bg-content,
.process-text,
.process-img {
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
}