@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    overflow-x: hidden;
}

.btn {
    width: 120px;
    height: 45px;
    border: 1px solid white;
    color: white;
    background-color: transparent;
    font-size: 15px;
    border-radius: 10px;
    font-weight: 600;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.btn-hover {
    position: absolute;
    top: 0;
    height: 0;
    width: 118px;
    background-color: #3a93e7;
    border-radius: 10px;
    transition: 0.5s ease;
}

.btn-text {
    position: absolute;
}

.btn:hover .btn-hover {
    height: 43px;
}

/* section1 */
.section1-header-container {
    background-image: url(background.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    width: 100%;
}

/* header */
.header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 76px;
    background-color: transparent;
    z-index: 2;
    visibility: visible;
}

.header-scroll {
    width: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    height: 76px;
    background-color: transparent;
    position: fixed;
    top: 0;
    z-index: 2;
    background: linear-gradient(180deg, rgba(91,33,182,0.9) 8%, rgba(55,77,107,0.85) 100%);
}

.header-center {
    height: 100%;
    width: 85%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: transparent;
}

.header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
}

.header-logo-text {
    font-size: 32px;
    color: white;
    font-weight: 600;
}

.header-navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 40px;
}

.header-navbar-container {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    column-gap: 40px;
}

.header-navbar-list {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-navbar-list-item {
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: 500;
}

.header-navbar-list-item-hover {
    position: absolute;
    left: 0;
    width: 0;
    height: 1px;
    background-color: white;
    top: 28px;
    transition: 0.5s ease;
}

.header-navbar-list:hover .header-navbar-list-item-hover {
    width: 100%;
}

/* section1 */
.section1 {
    height: calc(100vh - 76px);
    padding-bottom: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.section1-header {
    font-size: 45px;
    line-height: 1.1;
    color: white;
    font-weight: 600;
    text-align: center;
}

.section1-text {
    font-size: 18px;
    color: white;
    margin-top: 30px;
    line-height: 2;
    text-align: center;
}

.section1-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 25px;
    margin-top: 20px;
}

.section1-btn {
    height: 50px;
    width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #3a93e7;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 500;
}

.section1-btn2 {
    width: 180px;
    height: 50px;
    border: none;
    background-color: white;
}

.section1-btn2-hover {
    position: absolute;
    top: 0;
    background-color: #3a93e7;
    border-radius: 10px;
    height: 0;
    width: 180px;
    transition: 0.5s ease;
}

.section1-btn2-text {
    color: black;
    font-weight: 500;
    font-size: 18px;
    transition: 0.5s ease;
}

.section1-btn2:hover .section1-btn2-hover {
    height: 50px;
}

.section1-btn2:hover .section1-btn2-text {
    color: white;
}

.section1-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: -22%;
}

/* section2 */
.section2 {
    padding: 380px 0px 0px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.section2-cards1 {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 30px;
}

.section2-cards1-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 10px #dbdbdb;
    height: 110px;
    width: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.section2-cards1-card-text {
    font-weight: 500;
    font-size: 14px;
}

.section2-cards2-header {
    font-size: 45px;
    font-weight: 600;
    margin: 30px 0px;
}

.section2-cards2 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 82%;
    gap: 20px;
    padding-bottom: 60px;
    border-bottom: 2px solid #e6e6e6;
}

.section2-cards2-card-container {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 20px;
}

.section2-cards2-card {
    background-color: #f1f1f1;
    padding: 60px 50px;
    text-align: center;
    border-radius: 10px;
}

.section2-cards2-card-commingsoon {
    padding: 119px 50px;
}

.section2-cards2-card-header {
    font-size: 23px;
    margin-bottom: 20px;
}

.section2-cards2-card-header-react {
    color: #52c2df;
}

.section2-cards2-card-header-vue {
    color: #41b883;
}

.section2-cards2-card-header-html {
    color: #ff4e1e;
}

.section2-cards2-card-header-nextjs {
    color: #083943;
}

.section2-cards2-card-header-lavarel {
    color: #F05340;
}

.section2-cards2-card-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
}

.section2-cards2-card-btn {
    width: 94px;
    height: 44px;
    background-color: #303030;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    border-radius: 10px;
    margin-top: 20px;
    font-weight: 500;
}

.section2-cards2-card-btn2 {
    width: 162px;
    height: 44px;
    background-color: white;
    color: black;
}

/* section3 */
.section3 {
    padding: 120px 0px 0px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.section3-header {
    font-size: 45px;
    font-weight: 600;
    text-align: center;
}

.section3-text {
    text-align: center;
    font-size: 18px;
    color: #464646;
    margin: 10px 0px 80px 0px;
}

.section3-cards {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 20px;
    position: relative;
    width: 100%;
}

.section3-card-container {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 20px;
    position: relative;
    right: 0px;
    transition: 0.5s ease;
}

.section3-card-img-container:hover {
    border-color: black;
}

.section3-card-img-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border: 2px solid #e9e9e9;
    border-radius: 10px;
    transition: 0.7s ease;
}

.section3-card-img-container2 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border: 2px solid #e9e9e9;
    border-radius: 10px;
    transition: 0.7s ease;
}

.section3-card-text {
    margin-top: 10px;
    font-size: 15px;
    font-weight: 500;
}

.section3-card-left-cut {
    position: absolute;
    left: 0;
    width: 8.5%;
    height: 100%;
    background-color: white;
    z-index: 1;
}

.section3-card-right-cut {
    position: absolute;
    right: 0;
    width: 8.5%;
    height: 100%;
    background-color: white;
    z-index: 1;
}

.section3-card-left-arrow {
    position: absolute;
    left: 150px;
    width: 50px;
    height: 50px;
    background-color: #727881;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    border: none;
    cursor: pointer;
    z-index: 1;
}

.section3-card-right-arrow {
    position: absolute;
    right: 150px;
    width: 50px;
    height: 50px;
    background-color: #727881;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    border: none;
    cursor: pointer;
    z-index: 1;
}

.section3-card-active {
    border-color: black;
}

.section3-graphics {
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 32px;
    width: 83%;
    border-bottom: 2px solid #e6e6e6;
    padding-bottom: 60px;
}

.section3-graphic-img {
    border: 2px solid #e9e9e9;
    padding: 20px;
    border-radius: 10px;
}

.section3-graphic-text {
    text-align: center;
    font-size: 28px;
    color: #303030;
    font-weight: 400;
}

/* section4 */
.section4 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 120px 0px 90px 0px;
    width: 83%;
    margin: auto;
}

.section4-header {
    font-size: 45px;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.section4-text {
    font-size: 18px;
    text-align: center;
    color: rgb(63, 63, 63);
    margin-bottom: 60px;
}

.section4-card-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    column-gap: 25px;
}

.section4-card {
    background-color: rgb(241, 245, 249);
    padding: 20px 25px;
    display: flex;
    justify-content: center;
    border-radius: 10px;
    width: 100%;
    transition: 0.5s ease;
}

.section4-card:hover {
    box-shadow: 0px 3px 5px #e0e0e0;
}

.section4-card-purple {
    background-color: rgb(224, 231, 255);
}

.section4-card-aqua {
    background-color: rgb(207, 250, 254);
}

.section4-card-pink {
    background-color: rgb(255, 228, 230);
}

.section4-card-icon-container {
    width: 15%;
    margin-right: 30px;
}

.section4-card-icon {
    width: 60px;
    height: 60px;
    background-color: white;
    border-radius: 10px;
}

.section4-card-texts {
    width: 85%;
}

.section4-card-header {
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 400;
}

.section4-card-text {
    font-size: 18px;
    width: 95%;
    color: #464646;
    font-weight: 300;
}

/* section5 */
.section5 {
    height: 280px;
    background: linear-gradient(180deg, rgba(51,8,103,1) 8%, rgba(23,15,42,1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.section5-center {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 83%;
}

.section5-statistic {
    border-right: 1px solid rgb(87, 87, 87, 0.4);
    width: 300px;
}

.section5-static-border-none {
    border: none;
}

.section5-statistic-number {
    font-size: 45px;
    font-weight: 600;
}

.section5-statistic-text {
    font-size: 18px;
}

/* section6 */
.section6 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 100px 0px 50px 0px;
}

.section6-header {
    font-size: 45px;
    font-weight: 600;
}

.section6-text {
    text-align: center;
    margin: 10px 0px 30px 0px;
    font-size: 18px;
    color: #303030;
}

.section6-cards {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 30px;
    margin-bottom: 30px;
    position: relative;
}

.seciton6-card {
    display: flex;
    align-items: center;
    justify-content: center;
}

.section6-card:hover .section6-card-hover {
    width: 491.42px;
}

.section6-card:hover .section6-card-hover-text {
    opacity: 1;
}

.section6-card-img {
    border: 2px solid #d4d4d4;
    border-radius: 10px;
}

.section6-card-img-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.section6-card-hover {
    position: absolute;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(15, 23, 42, 0.7);
    height: 250px;
    width: 0;
    border-radius: 10px;
    transition: 0.5s ease;
}

.section6-card-hover-text {
    color: white;
    font-size: 28px;
    opacity: 0;
    transition: 0.5s ease;
}

@media only screen and (max-width: 1600px) {
    .section2-cards2-card-img {height: 380px;}
    .section3-graphic-img {height: 450px;}
    .section6-card-img {height: 200px;}
    .section6-card-hover {height: 200px;}
    .section6-card:hover .section6-card-hover {width: 392.34px;}
}

@media only screen and (max-width: 1400px) {
    .section2-cards2-card-img {height: 320px;}
    .section3-graphic-img {height: 420px;}
    .section1-banner-img {height: 570px;}
}