﻿.hero-section {
    width: 1300px;
    margin: 100px auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-content {
    width: 50%;
    margin-bottom: 10rem;
}

    .hero-content h1 {
        font-size: 61.2px;
        font-weight: 600;
        margin-bottom: 24px;
    }

    .hero-content p {
        font-size: 18px;
        color: #3b3b3b;
        margin-bottom: 25px;
        line-height: 1.6;
        font-family: 'Lato';
    }

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
}

    .btn.primary {
        background: #3b3b3b;
        color: #fbfbfb;
        transition: 0.3s;
    }

        .btn.primary:hover {
            background: transparent;
            color: #3b3b3b;
            border: 1px solid #000;
        }

    .btn.outline {
        border: 1px solid #000;
        color: #3b3b3b;
        transition: 0.3s;
    }

        .btn.outline:hover {
            background: #3b3b3b;
            color: #fbfbfb;
        }


.hero-image {
    width: 50%;
    background: #FAFAFA; 
    padding: 40px; 
    border-radius: 10px;
    display: flex;
    justify-content: center;
}

    .hero-image img {
        width: 100%;
        max-width: 450px;
      
    }
/* === TABLET (≤1024px) === */
@media (max-width: 1024px) {

    .hero-section {
        width: 100%;
        flex-direction: column;
        margin: 30px auto;
        text-align: center;
    }

    .hero-content {
        width: 100%;
        margin-bottom: 30px;
    }

        .hero-content h1 {
            font-size: 70px;
            margin-top: 9rem;
            line-height: 5rem;
        }

        .hero-content p {
            font-size: 35px;
            text-align: center;
            padding-left: 15px;
            padding-right: 15px;
        }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        width: 100%;
        padding: 30px;
    }

        .hero-image img {
            max-width: 900px;
        }
}

@media (max-width: 768px) {

    .hero-section {
        width: 95%;
        margin: 40px auto;
        gap: 20px;
    }

    .hero-content h1 {
        font-size: 30px;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column; 
        gap: 10px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .hero-image {
        padding: 20px;
    }

        .hero-image img {
            max-width: 100%;
        }
}


/*2nd-section*/

.feature-section {
    width: 1300px;
    margin: 50px auto;
    background: #FAFAFA;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 51px;
    border-radius: 10px;
}

.feature-item {
    flex: 1;
    text-align: center;
}

    .feature-item h3 {
        font-size: 30px;
        font-weight: 600;
        color: #3b3b3b;
        line-height: 1.4;
        margin-left: 4rem;
        text-align: left;
        font-family: 'Lato';
    }

.divider {
    width: 3px;
    height: 140px;
    background: #ccc;
}

/* Tablet */
@media (max-width: 1024px) {
    .feature-section {
        width: 100%;
        padding: 20px;
    }

    .feature-item h3 {
        font-size: 35px;
    }
}

@media (max-width: 768px) {
    .feature-section {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .divider {
        width: 60px;
        height: 1px;
    }
}

/*3rd - section*/

.zigzag-section {
    max-width: 1300px;
    margin: 60px auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.zigzag-section {
    max-width: 1300px;
    margin: 60px auto;
    display: grid;
    grid-template-columns: 50% 50%; 
}

    .zigzag-item.text {
        padding: 30px;
    }

        .zigzag-item.text h2 {
            font-size: 2.2rem;
            margin-bottom: 10px;
            width: 70%;
            font-weight: 600;
            font-family: lato;
            line-height: 3rem;
            margin-left: 3rem;
        }

        .zigzag-item.text p {
            font-size: 18px;
            margin-bottom: 10px;
            color: #3b3b3b;
            font-family: lato;
            margin-left: 3rem;
        }

        .zigzag-item.text li {
            font-size: 18px;
            margin-bottom: 15px;
            margin-left: -1rem;
            font-family: lato;
            margin-left: 2rem;
        }

.zigzag-item.image {
    display: flex;
    justify-content: center;
    align-items: center;
}


@media (max-width: 1024px) {

    .zigzag-section {
        grid-template-columns: 1fr;
    }

        /* ROW 1 FIX */
        .zigzag-section .zigzag-item:nth-child(1) {
            grid-row: 2; /* text niche */
            text-align: center;
        }

        .zigzag-section .zigzag-item:nth-child(2) {
            grid-row: 1; /* image upar */
        }

        /* ROW 2 FIX */
        .zigzag-section .zigzag-item:nth-child(3) {
            grid-row: 3; /* image upar */
        }

        .zigzag-section .zigzag-item:nth-child(4) {
            grid-row: 4; /* text niche */
            text-align: center;
        }

    /* Common text fix */
    .zigzag-item.text h2 {
        width: 100%;
        margin-left: 0;
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .zigzag-item.text p,
    .zigzag-item.text li {
        font-size: 35.4px;
        line-height: 4rem;
        margin-left: 0rem;
    }

    .zigzag-item.image img {
        width: 100%;
        max-width: 900px;
        margin: auto;
        display: block;
    }
    .zigzag-item.text ul {
        list-style: none; 
        padding-left: 0; 
    }

}





/*4th section*/
.ai-section {
    max-width: 1300px;
    margin: 60px auto;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.title {
    font-size: 2.2rem;
    margin-bottom: 40px;
    width: 92%;
    font-weight: 600;
}

/* 🔥 SLIDER */
.card-slider {
    display: flex;
    gap: 20px;
    align-items: center;
    transition: transform 0.6s ease;
}

/* 🔥 CARD WIDTH FIX (5 CARDS) */
.card {
    flex: 0 0 calc((100% - 80px) / 5);
    max-width: calc((100% - 80px) / 5);
    background: #fafafa;
    padding: 20px;
    border-radius: 12px;
    text-align: left;
    cursor: pointer;
    border: 1px solid #eee;
    transition: all 0.5s ease;
    transform: scale(0.7);
    opacity: 0.4;
}

/* ICON */
.icon {
    width: 49px;
    height: 49px;
    background: #3b3b3b;
    border-radius: 8px;
    margin-bottom: 15px;
}

    .icon img {
        width: 35px;
        height: 35px;
        object-fit: contain;
        margin-left: 7px;
        margin-top: 6px;
    }

/* TEXT */
.card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    margin-top: 20px;
    font-weight: 600;
    color: #3b3b3b;
    font-family: 'Lato';
    line-height: 2rem;
}

.card p {
    font-size: 17px;
    color: #3b3b3b;
    line-height: 1.5;
    font-family: 'Lato';
    text-align: justify;
}

.card.center {
    transform: scale(1);
    opacity: 1;
    background: #DEF9F3;
    z-index: 5;
}

.card.near {
    transform: scale(0.9);
    opacity: 0.8;
    z-index: 4;
}

.card.mid {
    transform: scale(0.8);
    opacity: 0.6;
    z-index: 3;
}

.card.far {
    transform: scale(0.7);
    opacity: 0.3;
    z-index: 2;
}

@media (max-width: 1024px) {
    .title {
        font-size: 3rem;
        margin-bottom: 40px;
        width: 99% 970.052px;
        font-family: 600;
        font-weight: 600;
        line-height: 4rem;
    }
    .card {
        flex: 0 0 calc((100% - 40px) / 3);
        max-width: calc((100% - 40px) / 3);
    }
    .card h3 {
        font-size: 32px;
        margin-bottom: 20px;
        line-height: 1.2;
        margin-top: 2rem;
        font-weight: 600;
        color: #3b3b3b;
    }
    .card p {
        font-size: 27px;
        color: #3b3b3b;
        line-height: 1.5;
        text-align: justify;
        font-family: 'Lato';
        margin-bottom: -35px;
    }
}

@media (max-width: 768px) {
    .card {
        min-width: 250px;
    }
}





/*5th-section*/
.info-section {
    max-width: 1300px;
    margin: 60px auto;
    display: flex;
}

.info-text {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 40px;
}

    .info-text h2 {
        font-size: 2.2rem;
        margin-bottom: 15px;
        width: 70%;
        font-weight: 600;
        line-height: 3rem;
        font-family: 'Lato';
    }

    .info-text p {
        font-size: 18px;
        color: #3b3b3b;
        margin-bottom: 15px;
        line-height: 1.6;
        text-align: justify;
        font-family: 'Lato';
    }

.extra-text {
    font-weight: 600;
    background: #fafafa;
    font-size: 26px;
    margin-left: 3rem;
    padding-left: 25px;
    border-radius: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-family: 'Lato';
    color: #3b3b3b;
}

.info-image {
    width: 50%;
}

    .info-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }


/* Tablet + Mobile */
@media (max-width: 1024px) {

    .info-section {
        flex-direction: column;
        width: 95%;
    }

    .info-image {
        width: 100%;
        order: 1;
    }

    .info-text {
        width: 100%;
        order: 2;
        padding: 20px 10px;
        text-align: center;
    }

        .info-text h2 {
            width: 100%;
            font-size: 3rem;
            line-height: 2.5rem;
            margin-top: 2rem;
            margin-bottom: 2rem;
        }

        .info-text p {
            font-size: 35px;
            text-align: center;
        }

    .extra-text {
        margin-left: 0;
        font-size: 33px;
        text-align: center;
        padding: 15px;
        padding-bottom: 20px;
    }

    .info-image img {
        height: auto;
    }
}






/* What's Next Section */
.whats-next {
    text-align: center;
    max-width: 1300px;
    padding: 100px 7px;
    margin-left: 50px;
    padding-bottom: 31px;
    margin-top: -3rem;
}

    .whats-next h2,
    .whats-next p {
        text-align: left;
    }

    .whats-next h2 {
        font-size: 2.2rem;
        color: #3b3b3b;
        margin-bottom: 10px;
        font-weight: 700;
        font-family: 'Lato';
    }

    .whats-next p {
        font-family: 'Lato';
        font-size: 18px;
        color: #3b3b3b;
        margin-bottom: 40px;
    }

.next-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.next-box {
    border: 1px solid #3b3b3b;
    border-radius: 10px;
    padding: 30px 20px;
    background: #fff;
    transition: all 0.3s ease;
}

    .next-box h3 {
        font-size: 2.2rem;
        color: #3b3b3b;
        margin-bottom: 10px;
        font-weight: 600;
        font-family: 'Lato';
    }

    .next-box p {
        font-size: 18px;
        color: #3b3b3b;
        margin-bottom: 20px;
        text-align: center;
        font-family: 'Lato';
    }

    .next-box a {
        font-family: 'Lato', sans-serif;
        font-size: 14px;
        color: #3b3b3b;
        text-decoration: underline;
        font-weight: 600;
    }

    .next-box:hover {
        border: none;
        box-shadow: 0 6px 20px rgba(0,0,0,0.15);
        transform: translateY(-5px);
    }


@media only screen and (max-width: 1024px) {
    .whats-next {
        margin: 100px auto 60px;
        padding: 0 15px;
        max-width: 100%;
        margin-top: 6rem;
    }

        .whats-next h2 {
            font-size: 3rem;
            margin-left: 1rem;
            font-weight: 600;
            line-height: 3rem;
        }

        .whats-next p {
            font-size: 35px;
            margin-left: 1rem;
            line-height: 3rem;
            margin-top: 20px;
        }

    .next-grid {
        height: 61rem;
        display: grid;
        grid-template-columns: 1fr;
        gap: 34px;
        width: 52rem;
        margin-left: 5rem;
    }

    .next-box {
        padding: 23px 20px;
        width: 115%;
        margin-left: -4rem;
    }

        .next-box h3 {
            font-size: 3rem;
            font-weight: 600;
        }

        .next-box p {
            font-size: 32px;
            text-align: center;
            font-weight: 400;
            margin-top: 20px;
        }

        .next-box a {
            font-family: unset;
            font-size: 27px;
            color: #3b3b3b;
            text-decoration: underline;
            font-weight: 500;
        }
}

@media only screen and (max-width: 600px) {

    .whats-next {
        margin: 60px auto 40px;
        padding: 0 10px;
    }

        .whats-next h2 {
            font-size: 2.8rem;
            text-align: left;
            margin-left: 6rem;
            font-weight: 600;
        }

        .whats-next p {
            font-size: 28px;
            text-align: left;
            margin-left: 6rem;
        }

    .next-grid {
        height: 55rem;
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        width: 39rem;
        margin-left: 6rem;
    }

    .next-box {
        width: 100%;
        margin-bottom: 15px;
        padding: 15px 12px;
    }

        .next-box h3 {
            font-size: 1.3rem;
        }

        .next-box p {
            font-size: 12px;
        }
}




/*Last Section*/
.action-section {
    background: #B8F2E6;
    border-radius: 12px;
    padding: 40px 30px;
    max-width: 1300px;
    margin: 60px auto 40px;
}

.action-container {
    text-align: left;
    font-family: unset;
}

    .action-container h2 {
        margin-top: -12px;
        color: #3b3b3b;
        font-size: 4.3rem;
        white-space: nowrap;
        font-family: 'Lato';
        font-size: 4.4rem;
    }

    .action-container p {
        font-size: 18px;
        margin-top: -23px;
        color: #3b3b3b;
        font-family: 'Lato';
    }

.action-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.action-card {
    background: #fff;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-radius: 14px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease, transform 0.2s ease;
    height: 6.2rem;
}

    .action-card:hover {
        box-shadow: none;
        transform: translateY(2px);
    }

.icon-boxs {
    width: 48px;
    height: 32px;
    background: transparent;
    border-radius: 6px;
    flex-shrink: 0;
    margin-left: 6%;
}

.vertical-line {
    border-left: 1px solid black;
    height: 40px;
    margin: 0 10px;
}

.card-content h3 {
    font-size: 27px;
    font-weight: 600;
    margin: 0 0px 3px 18px;
    color: #3b3b3b;
    font-family: unset;
}

.card-content p {
    font-size: 18px;
    margin-left: 18px;
    margin-top: -10px;
    color: #3b3b3b;
    font-family: 'Lato';
}

@media (max-width: 1024px) {
    .action-section {
        padding: 25px 15px;
        margin: 30px auto;
        max-width: 95%;
    }

    .action-container h2 {
        font-size: 4.5rem;
        white-space: normal;
        text-align: center;
        margin-bottom: 11px;
        line-height: 6rem;
    }

    .action-container p {
        font-size: 35px;
        text-align: justify;
        margin-top: 19px;
        color: #3b3b3b;
        line-height: 3rem;
    }

    .action-cards {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .action-card {
        width: 100%;
        max-width: 900px;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        padding: 17px 14px;
        height: auto;
        border-radius: 11px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }

    .icon-boxs {
        width: 68px;
        height: 68px;
        margin: 0 10px 0 15px;
        flex-shrink: 0;
    }

    .vertical-line {
        display: flex;
        height: 91px;
        margin: 0 10px;
    }

    .card-content {
        text-align: left;
    }

        .card-content h3 {
            font-size: 44px;
            color: #3b3b3b;
            margin-left: 0.5rem;
            margin-top: 1.1rem;
        }

        .card-content p {
            font-size: 32px;
            margin-top: 10px;
            color: #3b3b3b;
            white-space: nowrap;
            margin-left: 0.5rem;
        }
}