@font-face {
    font-family: "Poppins-Regular";
    src: url("../fonts/Poppins-Regular.ttf");
}

@font-face {
    font-family: "Poppins-Medium";
    src: url("../fonts/Poppins-Medium.ttf");
}

@font-face {
    font-family: "Poppins-SemiBold";
    src: url("../fonts/Poppins-SemiBold.ttf");
}

@font-face {
    font-family: "Poppins-Bold";
    src: url("../fonts/Poppins-Bold.ttf");
}

@font-face {
    font-family: "OpenSans";
    src: url("../fonts/OpenSans-Regular.ttf");
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.my-container {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;

    @media (max-width: 767px) {
        flex-direction: column;
        align-items: center;
    }
}
h2 {
    font-family: 'Poppins-Medium', sans-serif;
    font-size: 36px;
    line-height: 50.4px;
    text-align: center;
    color: black;
    margin-bottom: 40px;
}

.btn.btn-primary {
    background: linear-gradient(45.17deg, #1D003F 0%, #360070 39.29%, #B23687 99.7%);
    box-shadow: 0 1px 2px 0 #6951FF0D;
    padding: 8px 16px;
    border-radius: 6px;
    border: 1px solid;
    color: #FFFFFF;
    font-family: 'Poppins-Medium', sans-serif;
    font-size: 14px;
    line-height: 20px;
    cursor: pointer;
    transition: background 2s ease, color .7s ease, border 2s ease;


    &:hover {
        border: 1px solid #1D003F;
        background: linear-gradient(45.17deg, #FFFFFF 0%, #FFFFFF 100%);
        color: black;

    }
}

.main-gradient {
    background: linear-gradient(45.17deg, #1D003F 0%, #360070 39.29%, #6D187A 66.18%, #B23687 99.7%);
}

.backdrop {
    margin-left: auto;

    .nav-background {
        display: flex;
        gap: 92px;

        @media (max-width: 767px) {
            gap: 20px;
        }
    }
}

.navbar {
    padding: 16px 0;
    position: sticky;
    top: 0;
    background: white;
    z-index: 12;

    .navbar-brand {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}



.navbar-nav, .footer-nav {
    display: flex;
    flex-direction: row;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    align-items: center;
    margin-top: 0;
    gap: 38px;


    .nav-link {
        font-size: 16px;
        line-height: 24px;
        text-decoration: none;
        color: #000000;
        padding: 5px;
    }
}

footer {
    padding: 60px 0;

    @media (max-width: 767px) {

        .backdrop {
            margin: 0 auto;
        }

    }

    .my-container {
        max-width: 1240px;
    }

    .footer-down {
        font-size: 12px;
        line-height: 16.32px;
        color: #505050;


        p {
            margin-left: auto;
              @media (max-width: 767px) {
                  margin: 0 auto;
              }
        }

        a {
            text-decoration: none;
            color: #505050;

            &:hover{
                text-decoration: underline;
            }
        }
    }
}
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    padding: 10px 14px;
    font-size: 16px;
    background: linear-gradient(45.17deg, #1D003F 0%, #360070 39.29%, #B23687 99.7%);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: opacity 0.3s ease;
}


.main-hero {
    display: flex;
    justify-content: space-between;
    position: relative;
    align-items: center;

    @media (max-width: 767px) {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .main-container {
        display: flex;
        justify-content: space-between;
        padding: 66px 6px 5.6rem 35px;
        align-items: center;
        max-width: 1220px;
        margin: 0 auto;

        @media (max-width: 767px) {
            flex-direction: column;
            padding: 30px 35px;
        }
    }
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
    object-fit: fill;

    @media (max-width: 767px) {
        object-fit: cover;
    }
}

.main-content {
    width: 48%;
    color: #FFFFFF;
    margin-top: -31px;

    @media (max-width: 767px) {
        width: 100%;
        margin-top: 0;
    }

    h1 {
        font-family: 'Poppins-Bold', sans-serif;
        font-size: 50px;
        line-height: 70px;
        margin: 0 0 20px;
    }

    p {
        font-family: 'OpenSans', sans-serif;
        font-size: 20px;
        line-height: 27.24px;
        margin: 0 6px 20px 0;
    }

}

.main-image-section {
    margin-left: auto;
    position: relative;
    margin-right: 33px;

    @media (max-width: 767px) {
        max-width: 80%;
        margin: 0 auto;
    }

    .main-img {
        width: 100%;
        height: auto;

        @media (max-width: 767px) {
            max-width: 80%;
            margin: 0 auto;
        }
    }

    .circle-pattern {
        position: absolute;
        top: -29px;
        left: -33px;
        z-index: -1;

        @media (max-width: 767px) {
            top: -15px;
            left: 10px;
            width: 60px;
            height: auto;
        }
    }

    .dots-pattern {
        position: absolute;
        bottom: 38px;
        right: -33px;;
        z-index: -1;

        @media (max-width: 767px) {
            bottom: 20px;
            right: 10px;
            width: 60px;
            height: auto;
        }
    }
}


.info-hero {
    padding: 66px 0 55px;

    .info-content {
        max-width: 586px;
        width: 100%;
    }

   .image img {
        width: 100%;
        height: auto;
    }
}

.info-item {
    display: flex;
    gap: 9px;
    align-items: center;
    padding: 13px 0;

    p {
        font-family: 'Poppins-Medium', sans-serif;
        font-size: 20px;
        font-weight: 500;
        color: #525252;
        margin: 0;
    }
}

.works-hero {
    padding: 32px 0 26px;

    h2 {
        color: white;
        margin-bottom: 6px;
    }

    .image {
        position: relative;
        z-index: 1;
        margin-right: 24px;

        @media (max-width: 767px) {
            margin-right: 0;
        }

        .circle-pattern {
            position: absolute;
            top: -29px;
            left: -23px;
            z-index: -1;
            width: 88px;
            height: 88px;
        }

        .dots-pattern {
            position: absolute;
            bottom: -23px;
            right: -24px;
            z-index: -1;
        }
    }
}

.works-content {
    max-width: 637px;
    width: 100%;
    margin-right: 20px;

    ul {
        padding: 0;
        list-style: none;
    }

    .works-item {
        padding: 18px 0;

        > p {
            font-size: 20px;
            line-height: 28px;
            color: white;
            margin: 0;

        }
    }
}


.works-item-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;

    p {
        font-family: 'Poppins-SemiBold', sans-serif;
        font-size: 24px;
        line-height: 32px;
        color: #FFFFFF;
        margin: 0;
    }

    span {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 3.75px;
        background: #FFFFFF;
    }
}

.partners-section {
    padding: 50px 0 80px;

    .partners-item {
        width: 230px;
        height: 110px;
        display: flex;
        align-items: center;
        justify-content: center
    }
}

.features-section {
    padding: 30px 0 60px;

    h2 {
        color: white;
    }
}

.features-card-item {
    max-width: 379px;
    width: 100%;
    min-height: 406px;
    border-radius: 16px;
    background: white;

    @media (max-width: 767px) {
        margin-bottom: 20px;
    }

    img {
        max-width: 100%;
        height: auto;
        width: 100%;
    }

    .features-title {
        font-family: 'Poppins-Medium', sans-serif;
        font-size: 22px;
        line-height: 33px;
        margin: 0;
        padding:12px 20px;
    }


    .features-desc {
        font-size: 18px;
        line-height: 28.8px;
        color: #525252;
        margin: 0;
        padding: 0 20px 20px;
    }
}

.collaborative-section {
    padding: 60px 0;

    h2 {
        width: 56%;
        margin: 0 auto 38px;

        @media (max-width: 767px) {
            width: 100%;
        }
    }

    .my-container {
        align-items: stretch;

        @media (max-width: 767px) {
           align-items: center;
        }
    }
}

.collaborative-item {
    max-width: 339px;
    width: 100%;
    padding:20px;
    border-radius: 16px;
    text-align: center;

    p {
        font-size: 24px;
        line-height: 33.6px;
        color: white;
        margin-bottom: 0;
    }
}

.get-start-section {
    padding: 60px 0 52px;

    .my-container {
        @media (min-width: 768px) {
            align-items: start;
        }
    }

    h2 {
        font-family: 'Poppins-SemiBold', sans-serif;
        color: #FFFFFF;
        text-align: left;
        margin-top: 15px;

        @media (max-width: 767px) {
            text-align: center;
        }
    }

    p {
        font-size: 22px;
        line-height: 35.2px;
        color: #FFFFFF;
    }

    .btn-contact {
        border-radius: 12px;
        background: #FFFFFF;
        border: none;
        color: #000000;
        font-family: 'Poppins-Medium', sans-serif;
        font-size: 20px;
        line-height: 30px;
        padding: 15px 19px;
        margin-top: 32px;
        cursor: pointer;
        transition: background 2s ease, color .7s ease;

        @media (max-width: 767px) {
            margin-bottom: 32px;
        }

        &:hover {
            background: linear-gradient(45.17deg, #1D003F 0%, #360070 39.29%, #B23687 99.7%);
            color: white;
        }
    }
}


.start-content {
    max-width: 555px;
    width: 100%;
    margin-right: 20px;

    @media (max-width: 767px) {
        max-width: 100%;
        text-align: center;
    }
}