*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Axiforma", "Lato", Arial, sans-serif;
}

footer,
header,
aside {
    display: block;
}
@font-face {
    font-family: "Axiforma";
    src: url("../fonts/AXIFORMA-BLACK.TTF");
    src: url("../fonts/AXIFORMA-BOLD.TTF");
    src: url("../fonts/AXIFORMA-BOOK.TTF");
    src: url("../fonts/AXIFORMA-EXTRABOLD.TTF");
    src: url("../fonts/AXIFORMA-HEAVY.TTF");
    src: url("../fonts/AXIFORMA-LIGHT.TTF");
    src: url("../fonts/AXIFORMA-MEDIUM.TTF");
    src: url("../fonts/AXIFORMA-SEMIBOLD.TTF");
    src: url("../fonts/AXIFORMA-THIN.TTF");
    src: url("../fonts/AXIFORMA-REGULAR.TTF");
    font-style: normal;
}

body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    min-height: 100%;
    font-family: "Axiforma", "Lato", Arial, sans-serif;
    -ms-text-size-adjust: 100%;
    scroll-behavior: smooth;
    background: #0d1117;
    color: #e5e7eb;
    line-height: 1.5;
}

input,
button,
textarea {
    font-family: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

a,
a:visited {
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}
ol,
ul {
    padding: 0;
}
ul li {
    list-style: none;
    padding: 0;
}

img {
    vertical-align: middle;
    max-width: 100%;
    display: block;
}

p {
    font-size: 16px;
    margin: 0;
    color: #cfd5e1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-family: "Axiforma", "Lato", Arial, sans-serif;
    color: #f1f5f9;
}

/* main styles start */

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/*  header styles start  */

.nav {
    padding: 17px 0;
}
.nav-fixed {
    position: sticky;
    top: 0;
    z-index: 22;
    width: 100%;
    right: 0;
    left: 0;
    transition: all ease-in-out 0.3s;
    border-bottom: 1px solid #1f2937;
    background-color: rgba(13, 17, 23, 0.9);
    backdrop-filter: blur(10px);
}
.animation-nav {
    box-shadow: 0 10px 30px rgb(0 0 0 / 35%);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo{
    font-weight: 800;
    font-size: 24px;
    color: #e5e7eb;
    letter-spacing: 0.5px;
}
.logo:hover{
    color: #38bdf8;
    transition: color 0.25s ease;
}

.nav-wrapper__links {
    display: flex;
    justify-content: center;
    align-items: center;
}
.nav-items {
    display: flex;
    align-items: center;
}
.nav-btns{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.nav-btns__link {
    background-color: #ff332e;
    color: white;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 5px;
    transition: all ease-in 0.3s;
    border-radius: 50px;
    font-weight: 600;
}
.nav-btns__link-1{
    background-color: #09c326;
}
.nav-btns__link:hover{
    transform: translateY(-2px);
    box-shadow: 0 10px 24px -12px rgb(0 0 0 / 45%);
}

.nav-link {
    font-size: 16px;
    font-weight: 600;
    margin: 0 18px;
    color: #e5e7eb;
}
.nav-link:hover {
    color: #38bdf8;
    transition: all ease-in 0.3s;
}
.nav-btns__link img {
    height: 22px;
    margin-right: 6px;
    width: 22px;
}

/*  nav styles end  */

/*  header styles start  */

.header {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    padding: 40px 0 10px;
}
.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}
.header-content {
    width: 50%;
}
.header-img {
    width: 50%;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.35));
}
.header-btn__wrapper{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.header-title {
    font-weight: 800;
    font-size: 56px;
    color: #f8fafc;
    line-height: 1.1;
}
.header-desc {
    font-weight: 600;
    font-size: 22px;
    color: #cbd5e1;
    margin: 25px 0;
    line-height: 1.5;
}

.header-social {
    position: fixed;
    right: 0px;
    top: 50%;
    z-index: 50;
    display: flex;
    flex-direction: column;
}

.header-social__icons {
    padding: 10px;
    height: 55px;
    width: 55px;
    transform: scale(1);
}
.whats-icon {
    background: #09c326;
}

.header-social__icons:hover {
    transform: scale(1.1);
    transition: all 0.3s ease;
}

/*  header styles end  */


/* marquee start */

.projects-main {
    --space: 3rem;
    display: grid;
    align-content: center;
    overflow: hidden;
    gap: var(--space);
    width: 100%;
    padding: 120px 0 90px;
    font-size: 1.5rem;
    line-height: 1.5;
    background: radial-gradient(circle at 20% 20%, rgba(56, 189, 248, 0.12), transparent 30%), radial-gradient(circle at 80% 10%, rgba(248, 113, 113, 0.12), transparent 32%);
}

.projects {
    --duration: 40s;
    --gap: var(--space);

    display: flex;
    overflow: hidden;
    user-select: none;
    gap: var(--gap);
}

.projects__group {
    padding-top: 20px;
    flex-shrink: 0;
    display: flex;
    justify-content: space-around;
    gap: var(--gap);
    min-width: 100%;
    animation: scroll var(--duration) linear infinite;
}

@media (prefers-reduced-motion: reduce) {
    .projects__group {
        animation-play-state: paused;
    }
}

.projects__group img {
    width: 700px;
    height: 600px;
    object-fit: cover;
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 24px 48px -20px rgba(0, 0, 0, 0.55);
}
.projects__group img{
    transform: scale(1);
    transition: all ease-out 0.5s;
}
.projects__group img:hover {
    transform: scale(1.03);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* marquee end */

#arrowTop {
    cursor: pointer;
    position: fixed;
    left: 10px;
    bottom: 20px;
    display: none;
    outline: 0;
    box-shadow: 0 3px 20px -5px rgb(0 0 0 / 26%);
    transition: all 0.3s;
    opacity: 0.7;
}

#arrowTop::before {
    content: "↑";
    position: relative;
    vertical-align: middle;
    top: -1px;
    color: white;
    background: #38bdf8;
    padding: 12px;
    border-radius: 6px;
}
#arrowTop:hover {
    opacity: 1;
    transform: translateY(-3px) translateZ(0);
}
#arrowTop.active {
    display: inline-block;
}

/* steps styles start */

.steps {
    padding: 60px 0 40px;
}
.steps-wrapper {
    margin: 40px auto;
    width: 90%;
}
.steps-info,.steps-img{
    width: 45%;
}
.steps-item {
   display: flex;
   justify-content: space-between;
   align-items: center;
   margin-bottom: 50px;
   gap: 24px;
}

.steps-item__title {
    text-transform: uppercase;
    font-weight: 800;
    font-size: 24px;
    color: #f8fafc;
    margin: 10px 0 20px;
}
.steps-item p {
    line-height: 1.5;
    color: #cbd5e1;
    padding-bottom: 30px;
    font-size: 18px;
}
/* steps styles end */


/* service styles start */

.service {
    padding: 80px 0 60px;
}

.service-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 60px;
}
.service-card{
    background: #0f172a;
    border: 1px solid #1f2937;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 20px 40px -18px rgba(0, 0, 0, 0.6);
}
.service-info__title {
    font-weight: 800;
    font-size: 22px;
    padding-bottom: 12px;
    color: #e2e8f0;
}
.service-info__desc {
    font-weight: 400;
    font-size: 17px;
    line-height: 1.5;
    color: #cbd5e1;
}

/* service styles end */



/* benefits styles start */

.benefits {
    position: relative;
    padding: 50px 0;
}
.respons-title{
    font-size: 34px;
    text-align: center;
    color: #e2e8f0;
}
.benefits-wrapper {
    display: flex;
    justify-content: center;
    padding-top: 30px;
    gap: 20px;
    flex-wrap: wrap;
}
.benefits-item {
    width: 30%;
    min-width: 240px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid #1f2937;
    background: #0f172a;
    border-radius: 16px;
    box-shadow: 0 10px 30px -14px rgba(0, 0, 0, 0.5);
}
.benefits-item img {
    height: 65px;
}

.benefits-subtitle {
    text-align: center;
    font-weight: 800;
    font-size: 20px;
    padding: 28px 0 10px;
    text-transform: uppercase;
    color: #e2e8f0;
    line-height: 1.4;
}
.benefits-desc {
    font-weight: 500;
    font-size: 16px;
    color: #cbd5e1;
}

/* benefits styles end */

/* reviews start */
.reviews {
    padding: 100px 0 180px;
    position: relative;
    background: radial-gradient(circle at 10% 80%, rgba(79, 70, 229, 0.18), transparent 35%);
}

.container-slyder {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}
#slider {
    box-shadow: -12px 12px 48px -4px rgba(0, 0, 0, 0.45);
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    width: 70%;
    background: #0f172a;
    border-radius: 18px;
    border: 1px solid #1f2937;
}
.main-reviews {
    animation-name: fade;
    animation-duration: 0.4s;
    border: 1px solid #334155;
}
.slide-content {
    display: flex;
    height: 380px;
    flex-direction: column-reverse;
}
.slider-img p{
    font-size: 18px;
    text-transform: uppercase;
    color: #e2e8f0;
}
.slider-img {
    position: absolute;
    height: auto;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
    right: 0;
    top: 40px;
}
.slider-img img {
    height: 80px;
    width: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 10px;
}
.slide-desc {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-align: center;
    background: transparent;
    padding: 0 45px;
}
blockquote {
    font-size: 16px;
    margin-top: 70px;
    color: #e2e8f0;
    line-height: 1.6;
}
#left-arrow {
    left: 30px;
    cursor: pointer;
}
.controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    padding: 10px 0;
    border-radius: 50%;
}
.controls:hover {
    background-color: rgba(148, 163, 184, 0.08);
    transition: all ease 0.3s;
}

.controls img {
    padding: 10px 16px;
}
#right-arrow {
    right: 30px;
    cursor: pointer;
}
#dots-con{
    text-align: center;
    margin-top: 16px;
    padding-bottom: 16px;
}
.main{
    padding-bottom: 110px;
}
.dot{
    height: 12px;
    width: 12px;
    background: #374151;
    border-radius: 50%;
    display: inline-block;
    margin: 0 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}
.dot.active{
    background: #38bdf8;
}
/* reviews end */

/* fixed cta */
.cta-fixed{
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 8px 10px calc(12px + env(safe-area-inset-bottom));
    background: linear-gradient(180deg, rgba(13,17,23,0) 0%, rgba(13,17,23,0.85) 30%);
    backdrop-filter: blur(8px);
}
.cta-fixed__btn{
    flex: 1;
    max-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
    border-radius: 12px;
    font-weight: 700;
    color: #f8fafc;
    text-align: center;
    box-shadow: 0 12px 28px -12px rgba(0,0,0,0.6);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    font-size: 14px;
}
.cta-fixed__btn--phone{
    background: #ff4747;
}
.cta-fixed__btn--wa{
    background: #16a34a;
}
.cta-fixed__sub{
    font-size: 11px;
    font-weight: 500;
    opacity: 0.8;
}
.cta-fixed__btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 16px 32px -14px rgba(0,0,0,0.7);
}


/* footer styles start */
.footer {
     background-color: #0b0f17; 
    padding: 20px 0 20px;
    position: relative;
    border-top: 1px solid #1f2937;
}

.footer-wrapper {
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

.footer-link {
    font-weight: 600;
    font-size: 18px;
    margin-right: 26px;
    color: #e1e1e1;
}
.form-title {
    font-size: 20px;
    font-weight: 700;
    padding-bottom: 20px;
    color: #e1e1e1;
    text-transform: uppercase;
}
.footer-link:hover {
    color: #38bdf8;
    transition: all ease-in 0.3s;
}


.copyright {
    font-size: 12px;
    padding-top: 10px;
    text-align: center;
    color: #e1e1e1;
}

/* burger styles start */

.burger {
    width: 30px;
    height: 30px;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.small-logo {
    display: none;
}

.burger span {
    display: inline-block;
    height: 2px;
    width: 80%;
    background: #e5e7eb;
    position: relative;
}

.burger span:before {
    content: "";
    position: absolute;
    left: 0;
    top: -7px;
    width: 100%;
    height: 100%;
    background-color: #e5e7eb;
}

.burger span:after {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 100%;
    height: 100%;
    background-color: #e5e7eb;
}

.show-menu span:after {
    transform: rotate(40deg);
}

.show-menu span:before {
    transform: rotate(-40deg);
}

.show-menu span:after,
.show-menu span:before {
    top: 0;
    bottom: 0;
    margin: auto;
}
.show-menu span {
    background-color: transparent;
}

/* burger styles end */



/* main styles end */

/* ////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* break points start */

@media (min-width: 320px) and (max-width: 480px) {
    .burger {
        display: flex;
    }
    .container {
        width: 95%;
    }
    p {
        font-size: 14px;
    }
    .header-social {
        right: 0;
        top: 50%;
    }

    .header-social__icons {
        height: 35px;
        width: 35px;
    }
    .nav-items {
        display: none;
    }
    .nav-items.show {
        display: block;
        padding: 50px 15px 15px 0px;
        position: absolute;
        top: 66px;
        right: 0;
        left: 0;
        background: #0d1117;
        z-index: 2;
        text-align: right;
        backdrop-filter: blur(10px);
    }
    .nav-wrapper__links {
        justify-content: flex-end;
    }
    .nav-btns__link {
        padding: 7px 10px;
        margin: 0 1px;
        font-size: 12px;
        font-weight: 500;
    }
    .nav-item {
        margin-bottom: 12px;
    }

    .nav-link {
        font-size: 18px;
        margin: 0;
    }
    .logo {
        font-size: 18px !important;
        color: #e5e7eb;
    }
    .nav-btns__link img {
        height: 18px;
        margin-right: 6px;
        width: 18px;
    }
    .nav {
        padding: 9px 0;
    }
    .nav-wrapper {
        padding-bottom: 7px;
        margin-bottom: 7px;
    }
    .header {
        min-height: auto;
    }
    .header-wrapper {
        flex-direction: column;
    }
    .header-content,
    .header-img {
        width: 100%;
        text-align: center;
        margin-top: 30px;
    }
    .header-title {
        font-size: 26px;
    }
    .header-desc {
        font-size: 15px;
        margin: 12px 0px 12px;
        text-align: center;
    }
    .header-btn__wrapper {
        display: flex;
        justify-content: center;
    }
    .respons-title{
        font-size: 24px;
    }
    .projects-main {
        padding: 40px 0;
    }
    .projects {
        --duration: 30s;
    }
    .projects__group img {
        height: 260px;
        width: 100%;
    }
 
    .steps,
    .trust {
        padding: 30px 0;
    }
    .steps-item{
        flex-direction: column;
    }
    .steps-info, .steps-img{
        width: 95%;
    }
    .steps-item__title{
        font-size: 18px;
    }
    .steps-item p{
        font-size: 15px;
    }
    .reviews {
        padding: 60px 0;
    }
    #slider {
        width: 90%;
    }
    #right-arrow {
        right: 0;
    }
    #left-arrow {
        left: 0;
    }
    .slide-content{
        height: auto;
    }
    .slider-img img {
        height: 60px;
        width: 60px;
    }
    .slider-img p {
        font-size: 16px;
        padding-top: 6px;
    }
    .slider-img{
        flex-direction: column;
    }
    .slide-desc{
        padding: 85px 20px 20px;
    }
    blockquote {
        font-size: 14px;
    }
    .service,
    .benefits {
        padding: 40px 0;
    }
    .service-wrapper{
        margin-top: 30px;
    }
    .service-info__title {
        font-size: 18px;
    }
    .service-info__desc {
        font-size: 15px;
    }
    .benefits-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .benefits-item {
        width: 100%;
    }
    .benefits-item img {
        height: 55px;
    }
    .benefits-subtitle {
        font-size: 18px;
        padding: 20px 0 0px;
    }
    .benefits-desc {
        font-size: 14px;
    }

    .footer-wrapper {
        width: 100%;
        flex-direction: column;
        text-align: center;
    }
    .footer-link,
    .copyright {
        font-size: 15px;
    }
    .footer-item {
        width: 90%;
        margin: 0 auto 0px;
    }
    .cta-fixed{
        gap: 6px;
        padding: 10px 8px calc(12px + env(safe-area-inset-bottom));
    }
    .cta-fixed__btn{
        max-width: none;
        padding: 9px;
        font-size: 13px;
    }
}

@media (min-width: 482px) and (max-width: 1200px) {
    .container {
        width: 94%;
    }
    .nav-link {
        font-size: 14px;
        margin: 0 6px;
    }
    .logo{
        font-size: 22px !important;
        color: #e5e7eb;
    }
    .nav-btns__link img {
        height: 20px !important;
        margin-right: 6px;
        width: 20px !important;
    }
    .header-title{
        font-size: 36px;
    }
    .projects-main {
        display: block;
    }
    p{
        font-size: 14px;
    }
    .header-desc br {
        display: none;
    }
    .header-desc {
        font-size: 18px;
        margin: 15px 0;
    }
    .header {
        min-height: 55vh;
    }
    .service,
    .benefits {
        padding: 60px 0;
    }
    .benefits-item {
        padding: 30px;
    }
    .benefits-item img {
        height: 60px;
    }
    .benefits-subtitle {
        font-size: 18px;
    }
    .steps-item__title {
        font-weight: 700;
        font-size: 20px;
    }
    .steps-item p {
        line-height: 1.4;
        color: #cbd5e1;
        padding-bottom: 30px;
        font-size: 16px;
    }
    .footer-item {
        width: 50%;
    }
    .benefits-subtitle br{
        display: none;
    }
    .footer-subtitle {
        font-size: 25px;
    }
    .nav-btns__link {
        padding: 7px 12px;
        margin: 0px 2px;
    }
    .footer-link {
        font-size: 15px;
        padding-bottom: 14px;
    }
    .copyright {
        font-size: 14px;
    }
}

/* braek points end */
.hdr-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
