:root {
    --hj-background-1: #1F232F;
    --hj-background-2: #181B26;
    --hj-color-1: #AC01FF;
    --hj-color-2: #1DCFFC;
    --hj-color-3: #313648;
    --hj-color-4: #222633;
}

/* Common Style - Start */
* {
    position: relative;
}

body {
    margin: 0;
    padding: 0;
    font-family: "poppins";
    background-color: var(--hj-background-1);
}
section {
    position: relative;
    display: flex;
    align-items: center;
    padding: 50px;
    margin: 0 auto;
    gap: 40px;
    box-sizing: border-box;
    width: 100%;
    max-width: 1400px;
    
}
div {
    display: flex;
    gap: 20px;
    box-sizing: border-box;
    width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    color: #ffffff;
    font-weight: 600;
    line-height: 1.2em;
}
h1 {
    font-size: 50px;
    line-height: 1.3em;
}
h2 {
    font-size: 42px;
}
h3 {
    font-size: 22px;
}

h5 {
    font-size: 15px;
    color: #9AA0A7;
    font-weight: 300;
}

p {
    margin: 0 0 0.9rem 0;
    font-size: 15px;
    color: #9AA0A7;
    font-weight: 300;
}

a {
    color: #ffffff;
    fill: #c5c5c5;
    font-size: 15px;
    line-height: 1em;
    text-decoration: none;
    width: fit-content;
    display: inline-flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    gap: 10px;
    font-weight: 500;
}
a:hover {
    color: #9AA0A7;
    fill: rgb(255, 45, 45);
}
a svg {
    height: 14px;
    width: 14px;
}

img {
    width: auto;
    max-width: 100%;
}

.title {
    font-size: 18px;
    font-weight: 500;
    background-color: transparent;
    background-image: radial-gradient(at top right, var(--hj-color-2) 60%, var(--hj-color-1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.heading-description {
    max-width: 600px;
    text-align: center;
}

.button-1 {
    background-color: transparent;
    background-image: radial-gradient(at top right, var(--hj-color-2) 0%, var(--hj-color-1) 100%);
    border-radius: 16px;
    box-shadow: 7px 7px 15px 0px #060709;
    padding: 20px 30px;
    text-decoration: none;
    text-align: center;
    transition: all .5s;
}
.button-1:hover {
    background-image: radial-gradient(at bottom left, var(--hj-color-2) 0%, var(--hj-color-1) 100%);
    transform: scale(0.9);
    color: #fff;
}
/* ------- Common Style - End ------- */






/* ---------- Hero (1st) - Start ---------- */
.hero-back {
    background-image: url(image/hero-background.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}
.hero-back::after {
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: transparent;
    background-image: linear-gradient(180deg, #1F232FAB 0%, var(--hj-background-1) 100%);
    opacity: 1;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    z-index: -1;
}
.hero {
    background-position: 0px 30%;
    padding-top: 130px;
    padding-bottom: 100px;
}

.hero-content {
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 span {
    background-color: transparent;
    background-image: radial-gradient(at top left, var(--hj-color-2) 30%, var(--hj-color-1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 17px;
}


.hero-button-2-icon {
    background-color: transparent;
    background-image: radial-gradient(at top right, var(--hj-color-2) 0%, var(--hj-color-1) 100%);
    transition: background 0.5s;
    border-radius: 50%;
    box-shadow: 7px 7px 15px 0px #060709;
    display: flex;
    padding: 1px;
    margin-right: 10px;
}
.hero-button-2:hover .hero-button-2-icon {
    animation: button-back-spin 1s linear infinite;
}
.hero-button-2-icon svg {
    height: 18px;
    width: 18px;
    padding: 16px;
    border-radius: 50%;
    background-color: var(--hj-background-1);
    fill: #ffffff;
}


.hero-image {
    width: 566px;
}
/* ---------- Hero (1st) - End ---------- */




/* ---------- Services (2nd) - Start ---------- */

.services {
    flex-direction: column;
}

.services-header {
    width: 50%;
    flex-direction: column;
    margin-left: 40px;
}

.services-item {
    flex-direction: column;
    width: 25%;
    padding: 40px 30px 35px 30px;
    border-radius: 26px;
    background-color: transparent;
    background-image: radial-gradient(at top right, var(--hj-color-3) 0%, var(--hj-color-4) 100%);
    transition: background 3s;
    box-shadow: 7px 7px 15px 0px #0E1015;
    gap: 10px;
}
.services-item::before {
    content: "";
    position: absolute;
    top: 1px;
    bottom: 1px;
    left: 1px;
    right: 1px;
    border-radius: 0px;
    background-color: var(--hj-background-1);
    z-index: 0;
    border-radius: 26px;
}
.services-item:hover, .services-item-1 {
    background: radial-gradient(at top right, var(--hj-color-2) 0%, var(--hj-color-1) 100%);
}

.services-item img {
    width: 90px;
    transition: transform 0.5s ease;
}
.services-item:hover img {
    transform: translateY(-10px);
}

.services-footer-p {
    text-align: center;
    line-height: 2em;
    border-top: solid 1px var(--hj-color-3);
    padding-top: 20px;
    width: 100%;
}

.services-footer-p a {
    font-weight: 400;
}
/* ---------- Services (2nd) - End ---------- */




/* ---------- Work (3rd) - Start ---------- */
.work img {
    width: 50%;
}
.work-content {
    flex-direction: column;
    width: 50%;
}

.work-process {
    flex-direction: column;
}
.work-process::after {
    content: "";
    width: 1px;
    height: calc(100% - 95px);
    background-color: var(--hj-color-3);
    position: absolute;
    top: 35px;
    left: 35px;
    z-index: -1;
}

.work-process li {
    display: flex;
    gap: 25px;
}

.work-process svg {
    fill: #ffffff;
    height: 22px;
    width: 22px;
    padding: 23px;
    border: solid 1px var(--hj-color-3);
    border-radius: 50%;
    background-color: transparent;
    background-image: radial-gradient(at top left, var(--hj-color-3) 0%, var(--hj-color-4) 100%);
    flex-shrink: 0;
}
.work-process li:hover svg, .work-process-1 svg {
    background-color: transparent;
    background-image: linear-gradient(180deg, var(--hj-color-2) 0%, var(--hj-color-1) 100%);
}

.work-process li div {
    flex-direction: column;
    gap: 5px;
}
/* ---------- Work (3rd) - End ---------- */




/* ---------- Statistics (5th) - Start ---------- */
.statistics-counter {
    justify-content: space-between;
    box-shadow: 10px 10px 25px 0px #0E1015;
    transition: background 3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    padding: 70px 50px;
    border-radius: 26px;
    background-color: transparent;
    background-image: radial-gradient(at top right, var(--hj-color-3) 0%, var(--hj-color-4) 100%);
}
.statistics-counter::before {
    content: "";
    position: absolute;
    top: 2px;
    bottom: 2px;
    left: 2px;
    right: 2px;
    border-radius: 0px;
    background-color: var(--hj-background-1);
    z-index: 0;
    border-radius: 26px;
}
.statistics-counter:hover {
    background: radial-gradient(at top right, var(--hj-color-2) 0%, var(--hj-color-1) 100%);
}

.statistics-counter div {
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: center;
    gap: 10px;
}

.counter {
    font-size: 42px;
    color: #ffffff;
    font-weight: 600;
    margin: 0;
    line-height: 1;
}

.statistics-counter sup {
    font-size: 20px;
    color: #1DCFFC;
    font-weight: 600;
}

.statistics-counter .money-sup {
    color: var(--hj-color-1);
}

.statistics-counter h5 {
    width: 100%;
    text-align: center;
}
/* ---------- Statistics (5th) - End ---------- */





/* ---------- Plugins (4th) - Start ---------- */
.plugins {
    flex-direction: column;
    gap: 20px;
}

.plugin-products {
    gap: 25px;
}

.plugin-product {
    flex-direction: column;
    gap: 5px;
    padding: 20px 20px 25px 20px;
    border-radius: 26px;
    background-color: transparent;
    background-image: radial-gradient(at top right, var(--hj-color-3) 0%, var(--hj-color-4) 100%);
}
.plugin-product::before {
    content: "";
    position: absolute;
    top: 1px;
    bottom: 1px;
    left: 1px;
    right: 1px;
    border-radius: 0px;
    background-color: var(--hj-background-2);
    z-index: 0;
    border-radius: 26px;
}
.plugin-product:hover {
    background: radial-gradient(at top right, var(--hj-color-2) 0%, var(--hj-color-1) 100%);
}

.plugin-product img {
    border-radius: 16px;
}

.retings-price-box {
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.ratings {
    font-size: 18px;
    font-weight: bold;
    background-image: linear-gradient(90deg, #EDB60A 70%, #dddddd 0%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: auto;
}

.price {
    gap: 3px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    width: auto;
}
.price span {
    color: var(--hj-color-1);
}

.plugin-product h3 {
    font-size: 20px;
}
.plugin-product:hover h3 {
    color: var(--hj-color-1);
}
/* ---------- Plugins (4th) - End ---------- */





/* ---------- Blog (4th) - Start ---------- */
.blog {
    flex-direction: column;
    gap: 20px;
}

.post-box {

}

.post {
    flex-direction: column;
}

.post img {
    
}
/* ---------- Blog (4th) - End ---------- */