@import url("https://fonts.googleapis.com/css2?family=Play:wght@400;700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Rajdhani:wght@300;400;500;600;700&family=Space+Grotesk:wght@300..700&display=swap");

* {
    font-family: "poppins", "Space Grotesk", sans-serif;
    font-optical-sizing: auto;
}

.get-started-wrapper {
    position: relative;
    padding-bottom: 120px;
}

.get-started-section {
    background-color: #f0f0f0;
    border-radius: 30px;
    padding: 40px;
    position: relative;
    z-index: 1;
    margin-top: 120px;
}

.get-started-text h2 {
    font-weight: 600;
    font-size: 2.2rem;
    width: 80%;
}

.get-started-text p {
    color: #6c757d;
    font-size: 18px;
    font-weight: 500;
}

.btn-get-started {
    background-color: black;
    color: white;
    border-radius: 30px;
    padding: 10px 24px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

.btn-get-started:hover {
    background-color: #333;
    color: white;
    text-decoration: none;
}

.image-float {
    position: absolute;
    top: 55px;
    right: 75px;
    width: 40%;
    max-width: 400px;
    height: 330px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.image-float img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 30px;
    object-fit: cover;
    object-position: center center;
}

@media (max-width: 768px) {
    .image-float {
        display: none;
    }
}

.modal-content {
    border-radius: 30px;
    padding: 20px;
}

.form-wrapper {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}


#how-carousel {
    display: flex;
    gap: 20px;
    overflow: hidden;
    transition: transform 0.5s ease-in-out;
}

.how-section {
    background-color: #f4f4f4;
    border-radius: 30px;
    padding: 40px 20px;
}

.how-section h1 {
    font-weight: bolder;
    font-size: 44px;
    margin-bottom: 30px;
}

.how-subtitle {
    max-width: 1000px;
    margin: 0 auto 40px;
}

.how-subtitle h6 {
    text-transform: uppercase;
    font-size: 20px;
    color: #c9c9c9;
}

.combined-card {
    background-color: #fff;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    padding: 0;
    margin-inline-start: 2cm;
    margin-inline-end: 2cm;
}

.combined-card .step-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}

.combined-card .img-col {
    flex: 1;
    max-width: 300px;
    overflow: hidden;
}

.combined-card .step-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    border-left: 1px solid #eee;
}

.step-box {
    position: relative;
    /* flex: 1 1 0; */
    flex: 1 0 23%;
    padding: 40px 10px 0px;
    text-align: center;
    border-left: 1px solid #eee;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.step-box:hover * {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-box:hover {
    background: var(--hover-bg) no-repeat center center;
    background-size: cover;
}

.step-number {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 34px;
    font-weight: 600;
    color: #000;
}

.step-text {
    font-size: 20px;
    font-weight: 600;
    margin-top: 100px;
    margin-bottom: 0;
    left: 15px;
    text-align: start;
}

@media (max-width: 768px) {
    .combined-card {
        flex-direction: column;
    }

    .combined-card .img-col,
    .combined-card .step-box {
        max-width: 100%;
        border-left: none;
        height: auto;
    }

    .combined-card .step-box {
        border-top: 1px solid #eee;
    }

    .step-number {
        position: absolute;
        top: 10px;
        left: 10px;
        font-size: 15px;
        font-weight: 700;
        color: #000;
    }

    .step-text {
        font-size: 10px;
        font-weight: 600;
        margin-top: auto;
        left: 10px;
        text-align: start;
    }

    .step-box {
        flex: 0 0 calc(100% - 10px);
        /* 1 per row */
    }
}


@media (max-width: 1200px) {
    .step-box {
        flex: 0 0 calc(33.33% - 13px);
        /* 3 per row */
    }
}

@media (max-width: 991px) {
    .combined-card {
        flex-direction: column;
    }

    .combined-card .img-col,
    .combined-card .step-box {
        max-width: 100%;
        border-left: none;
    }

    .combined-card .step-box {
        border-top: 1px solid #eee;
    }

    .step-number {
        position: absolute;
        top: 10px;
        left: 10px;
        font-size: 15px;
        font-weight: 700;
        color: #000;
    }

    .step-text {
        font-size: 10px;
        font-weight: 600;
        margin-top: auto;
        left: 10px;
        text-align: start;
    }

    .step-box:hover * {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-box:hover {
    background: var(--hover-bg) no-repeat center center;
    background-size: cover;
}

}

.what-section {
    text-align: center;
}

.what-section h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 10px;
}

.what-subtitle {
    font-size: 12px;
    text-transform: uppercase;
    color: #888;
}

.what-image {
    border-radius: 30px;
    overflow: hidden;
    margin: 30px 0;
}

.what-image img {
    width: 100%;
    height: 450px;
    border-radius: 30px;
    object-fit: cover;
    object-position: center;
}

.what-paragraph {
    max-width: 1500px;
    margin: 0 auto 30px;
    color: #555;
    text-align: justify;
    font-size: 20px;
}

.what-list {
    list-style: none;
    padding-left: 0;
    max-width: 1500px;
    margin: 0 auto 30px;
    font-size: 20px;
}

.what-list li {
    margin-bottom: 12px;
    font-weight: 500;
    color: #333;
}

.what-list li::before {
    content: \"\\2192\";
    margin-right: 10px;
    color: #000;
}

@media (max-width: 768px) {
    .what-section {
        text-align: center;
    }
}

/* popular works */

.carousel-top-bg {
    position: relative;
    background-size: cover;
    height: 500px;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
}

.carousel-top-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.carousel-bottom-bg {
    background-color: #ffffff;
    padding-bottom: 200px;
    position: relative;
}

.carousel-wrapper {
    position: relative;
}

.carousel-card {
    background-color: #fff;
    border-radius: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    position: absolute;
    top: -250px;
    left: 50%;
    transform: translateX(-50%) scale(0.9);
    z-index: 2;
    padding: 13px;
    /* Hide by default */
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s ease-in-out;
}

.carousel-card.active {
    opacity: 1;
    visibility: visible;
    /* transform: translateX(-50%) scale(1); */
    z-index: 3;
}

/* Animations */
.carousel-card.animate-left {
    animation: fadeInLeft 0.6s ease-in-out;
}

.carousel-card.animate-right {
    animation: fadeInRight 0.6s ease-in-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50%) scale(0.9) translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) scale(1) translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-50%) scale(0.9) translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) scale(1) translateX(0);
    }
}

.carousel-card img {
    width: 100%;
    height: auto;
    border-radius: 30px;
    object-fit: cover;
}

.carousel-card-body {
    padding-top: 16px;
}

.carousel-card-title {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 8px;
}

.carousel-card-text {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

.btn-shop {
    background-color: #000;
    color: #fff;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
}

.btn-shop:hover {
    background-color: #333;
    color: #fff;
}

.carousel-btn {
    background-color: #fff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    top: -150px;
    z-index: 4;
    font-size: 20px;
}

.carousel-btn-left {
    left: 25%;
}

.carousel-btn-right {
    right: 25%;
}

/* ==== RESPONSIVE ==== */
@media (max-width: 1024px) and (min-width: 912px) {
    .carousel-card {
        top: -200px;
        padding: 14px;
    }

    .carousel-btn {
        width: 44px;
        height: 44px;
        top: -100px;
        font-size: 16px;
    }

    .carousel-btn-left {
        left: 20%;
    }

    .carousel-btn-right {
        right: 20%;
    }

    .carousel-card-title {
        font-size: 14px;
    }

    .carousel-card-text {
        font-size: 12px;
    }

    .btn-shop {
        font-size: 12px;
        padding: 5px 12px;
    }
}


@media (max-width: 912px) and (min-width: 576px) {
    .carousel-card {
        top: -200px;
        padding: 14px;
    }

    .carousel-btn {
        width: 44px;
        height: 44px;
        top: -100px;
        font-size: 16px;
    }

    .carousel-btn-left {
        left: 10%;
    }

    .carousel-btn-right {
        right: 10%;
    }

    .carousel-card-title {
        font-size: 14px;
    }

    .carousel-card-text {
        font-size: 12px;
    }

    .btn-shop {
        font-size: 12px;
        padding: 5px 12px;
    }
}

@media (max-width: 576px) and (min-width: 300px) {
    .carousel-card {
        top: -250px;
        padding: 12px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        top: 190px;
        font-size: 14px;
    }

    .carousel-btn-left { 
        margin-top: 10%;
        top: 80%;
    }

    .carousel-btn-right {
        margin-top: 10%;
        top: 80%;
    }
}


.why-img{
    width: 400px;
    height: 350px;
    border-radius: 30px;
    object-fit: cover;
    object-position: top center center;
}

