@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

/* fonts:
    #463cc1 blue
    #1DE600 green
    #e65800 orange
    #8f5f42 brown
    #373366 blue gray
*/

.main{
    background-color: #deebee;
    padding: 90px 85px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.main .left {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.main .left h3 {
    margin-top: 10px;
    font-weight: bold;
    font-size: 46px;
}

.main .left h3 span {
    color: #5e3bee;
}

.main .left p{
    color: #1c1e53;
    font-size: 22px;
    margin-top: 20px;
    line-height: 1.6;
}

.main .left p strong {
    color: #373366;
    font-weight: 600;
}

/* Hero CTAs */
.main .left .hero-ctas {
    display: flex;
    gap: 16px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.main .left .btn-primary,
.main .left .btn-secondary {
    cursor: pointer;
    padding: 16px 28px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.main .left .btn-primary {
    color: #fff;
    background-color: #5e3bee;
    box-shadow: 0 4px 12px rgba(94, 59, 238, 0.3);
}

.main .left .btn-primary:hover {
    background-color: #4a2fc7;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(94, 59, 238, 0.4);
}

.main .left .btn-secondary {
    color: #5e3bee;
    background-color: #fff;
    border: 2px solid #5e3bee;
}

.main .left .btn-secondary:hover {
    background-color: #f8f7ff;
    transform: translateY(-2px);
}

.main .left .btn-primary i,
.main .left .btn-secondary i {
    font-size: 20px;
}

/* Hero Trust Indicators */
.main .left .hero-trust {
    display: flex;
    gap: 24px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.main .left .hero-trust .trust-text {
    color: #006b6a;
    font-size: 15px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.main .left .hero-trust .trust-text i {
    color: #1DE600;
    font-size: 18px;
}

.main .right img {
    width: 500px;
}

.services{
    padding: 110px 85px 80px;
    min-height: 700px;
}

.services-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.services h3,
.about .right h3,
.portfolio .header h3,
.meeting h3{
    font-size: 40px;
    margin-top: 20px;
    font-weight: 700;
}

.services-subtitle {
    font-size: 18px;
    color: #1c1e53;
    margin-top: 20px;
    line-height: 1.6;
    opacity: 0.9;
}

.services .service-items{
    display: flex;
    margin-top: 70px;
    gap: 30px;
}

.services .service-items .item {
    background-color: #deebee;
    width: 30%;
    border-radius: 10px;
    padding: 32px;
    border-bottom: 4px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.services .service-items .item:hover {
    border-bottom-color: #5e3bee;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.services .service-items .item .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    width: 46px;
    height: 46px;
    border-radius: 10px;
    margin-bottom: 22px;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
}

.services .service-items .item .icon i {
    font-size: 25px;
    color: #006b6a;
}

.services .service-items .item h4,
.portfolio .portfolio-items .item .info h4{
    font-size: 18px;
}

.services .service-items .item p{
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.8;
    color: #1c1e53;
    flex-grow: 1;
}

.services .service-items .item p strong {
    color: #373366;
    font-weight: 600;
}

.services .service-items .item .service-cta {
    margin-top: 24px;
    color: #5e3bee;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.services .service-items .item .service-cta:hover {
    color: #4a2fc7;
    gap: 10px;
}

.services .service-items .item .service-cta i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.services .service-items .item .service-cta:hover i {
    transform: translateX(4px);
}

/* Services CTA Wrapper */
.services-cta-wrapper {
    margin-top: 80px;
    text-align: center;
    padding: 50px 40px;
    background: linear-gradient(135deg, #f8f7ff 0%, #deebee 100%);
    border-radius: 16px;
}

.services-cta-text {
    font-size: 18px;
    color: #1c1e53;
    margin-bottom: 24px;
    line-height: 1.6;
}

.services-cta-text strong {
    color: #5e3bee;
    font-weight: 600;
}

.services-cta-wrapper .btn-primary {
    color: #fff;
    background-color: #5e3bee;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(94, 59, 238, 0.3);
}

.services-cta-wrapper .btn-primary:hover {
    background-color: #4a2fc7;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(94, 59, 238, 0.4);
}

.services-cta-wrapper .btn-primary i {
    font-size: 20px;
}

.about {
    padding: 110px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.about .left{
    background-color: #deebee;
    border-radius: 10px 10px 0 0;
}

.about .left img {
    width: 440px;
}

.about .right .about-content {
    margin-top: 30px;
}

.about .right .about-content p {
    font-size: 16px;
    margin-top: 20px;
    line-height: 1.8;
    color: #1c1e53;
}

.about .right .about-content p:first-child {
    margin-top: 0;
}

.about .right .about-content p strong {
    color: #373366;
    font-weight: 600;
}

.about .right .about-cta {
    margin-top: 40px;
}

.about .right .about-cta .btn-primary {
    color: #fff;
    background-color: #5e3bee;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(94, 59, 238, 0.3);
}

.about .right .about-cta .btn-primary:hover {
    background-color: #4a2fc7;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(94, 59, 238, 0.4);
}

.about .right .about-cta .btn-primary i {
    font-size: 20px;
}

.portfolio{
    background-color: #deebee;
    padding: 110px 85px;
}

.portfolio .header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
}

.portfolio .header button{
    background-color: #ff0000;
    padding: 10px 20px;
    color: #fff;
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 8px;
    border: none;
    border-radius: 10px;
}

.portfolio .header button i{
    font-size: 26px;
}

.portfolio .portfolio-items{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.portfolio .portfolio-items .item{
    width: 30%;
    background-color: #fff;
    border-radius: 10px;
    border-bottom: 4px solid transparent;
    cursor: pointer;
    box-shadow: 0 5px 32px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.portfolio .portfolio-items .item:hover{
    border-color: #5e3bee;
}

.portfolio .portfolio-items .item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    object-position: top;
    border-radius: 10px 10px 20px 20px;
}

.portfolio .portfolio-items .item .info {
    display: flex;
    flex-direction: column;
    gap:14px;
    padding: 20px 32px 42px;
}

.portfolio .portfolio-items .item .info p {
    font-size: 13px;
}

.portfolio .portfolio-items .item .info a {
    text-decoration: underline;
    text-underline-offset: 10px;
    text-decoration-color: #5e3bee;
}

.portfolio .portfolio-items .item .info a i {
    margin-left: 2px;
    font-size: 16px;
}

.meeting{
    padding: 110px 85px;
}

.meeting .customers {
    margin-top: 50px;
    display: flex;
    gap: 40px;
}

.meeting .customers .item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: 2px solid #006b6a;
    padding: 30px;
    cursor: pointer;
    transform: all 0.3s ease;
}

.meeting .customers .item .rating {
    color: #006b6a;
    font-size: 22px;
}

.meeting .customers .item:hover {
    border-color: #5e3bee;
}

.meeting .customers .item p {
    line-height: 22px;
    font-size: 14px;
}

.meeting .customers .item .user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.meeting .customers .item .user img{
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
}

.meeting .customers .item .user h5{
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 3px;
}

.meeting .customers .item .user p {
    font-size: 12px;
}

@media screen and (max-width: 1200px){
    .main .left h5 {
        font-size: 18px;
    }

    .main .left h3 {
        font-size: 36px;
    }

    .main .left p {
        font-size: 18px;
    }

    .main .right img {
        width: 380px;
    }

    .main .left .hero-ctas {
        flex-direction: column;
    }

    .main .left .btn-primary,
    .main .left .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .services .service-items {
        gap: 10px;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .services .service-items .item {
        width: 49%;
    }

    .about .left img {
        width: 370px;
    }

    .services h3,
    .about .right h3,
    .portfolio .header h3,
    .meeting h3 {
        font-size: 32px;
    }

    .about .right p {
        font-size: 15px;
    }

    .meeting .customers .item .rating {
        font-size: 20px;
    }

    .meeting .customers .item p {
        font-size: 13px;
    }
}

@media screen and (max-width: 992px) {
    .main {
        flex-direction: column;
    }

    .about {
        flex-direction: column;
        justify-content: center;
    }

    .portfolio .portfolio-items {
        gap: 22px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .porftolio .portfolio-items .item {
        width: 48%;
    }

    .meeting .customers {
        gap: 14px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .meeting .customers .item {
        width: 48%;
    }
}

@media screen and (max-width: 768px){
    .main {
        padding: 42px;
    }

    .services {
        padding: 85px 42px 0;
    }

    .services .service-items {
        gap: 8px;
    }

    .about {
        padding: 85px 42px;
    }

    .portfolio {
        padding: 60px 42px;
    }

    .portfolio .portfolio-items {
        gap: 18px;
    }

    .meeting {
        padding: 85px 42px;
    }
}

@media screen and (max-width: 576px){
    .main .left button {
        width: 100%;
    }

    .main .left .hero-ctas {
        width: 100%;
    }

    .main .left .btn-primary,
    .main .left .btn-secondary {
        width: 100%;
    }

    .main .left .hero-trust {
        flex-direction: column;
        gap: 12px;
    }

    .services .service-items .item {
        width: 100%;
    }

    .services-cta-wrapper {
        padding: 40px 24px;
    }

    .services-cta-text {
        font-size: 16px;
    }

    .portfolio .header button {
        font-size: 12px;
        padding: 8px 14px;
    }

    .portfolio .portfolio-items .item {
        width: 90%;
    }

    .meeting .customers .item {
        width: 100%;
    }
}