* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}


:root {
    --surface-color: #1b262c;
    --bg-color: #031119;
    --text-color: #ffffff;
    --accent-color: #e3a127;
    --circle-bg: #0e1117;
    --nav-color: rgba(255, 255, 255, .8);
    --nav-hover-color: #e3a127;
    --nav-dropdown-background-color: #29343a;
    --nav-dropdown-hover-color: #e3a127
}

/*Carousel*/

.carousel {
    width: 100%;
    height: 100vh;
    margin-top: -0px;
    overflow: hidden;
    position: relative;
}

.carousel .list .item {
    width: 180px;
    height: 250px;
    position: absolute;
    top: 80%;
    transform: translateY(-70%);
    left: 70%;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    background-position: 50% 50%;
    background-size: cover;
    z-index: 100;
    transition: 1s;
}

.carousel .list .item:nth-child(1),
.carousel .list .item:nth-child(2) {
    top: 0;
    left: 0;
    transform: translate(0, 0);
    border-radius: 0;
    width: 100%;
    height: 100%;
}

.carousel .list .item:nth-child(3) {
    left: 67%;
}

.carousel .list .item:nth-child(4) {
    left: calc(67% + 200px);
}

.carousel .list .item:nth-child(5) {
    left: calc(67% + 400px);
}

.carousel .list .item:nth-child(6) {
    left: calc(67% + 600px);
}

.carousel .list .item:nth-child(n + 7) {
    left: calc(67% + 800px);
    opacity: 0;
}

.item .content {
    position: absolute;
    top: 50%;
    left: 100px;
    transform: translateY(-50%);
    width: 400px;
    text-align: left;
    color: #ffffff;
    display: none;
}

.list .item:nth-child(2) .content {
    display: block;
}

.content .title {
    font-size: 100px;
    text-transform: uppercase;
    color: var(--accent-color);
    font-weight: bold;
    line-height: 1;
    opacity: 0;
    animation: animate 1s ease-in-out 0.3s 1 forwards;
}

.content .name {
    font-size: 100px;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 1;
    text-shadow: 3px 4px 4px rgba(255, 255, 255, 0.8);
    opacity: 0;
    animation: animate 1s ease-in-out 0.6s 1 forwards;
}

.content .des {
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 18px;
    margin-left: 5px;
    opacity: 0;
    animation: animate 1s ease-in-out 0.9s 1 forwards;
}

.content .btn {
    margin-left: 5px;
    opacity: 0;
    animation: animate 1s ease-in-out 1.2s 1 forwards;
}

@keyframes animate {
    from {
        opacity: 0;
        transform: translate(0, 100px);
        filter: blur(33px);
    }

    to {
        opacity: 1;
        transform: translate(0);
        filter: blur(0);
    }
}

.content .btn button {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border: 2px solid #ffffff;
}

.content .btn button:nth-child(1) {
    margin-right: 15px;
}

.content .btn button:nth-child(2) {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid #ffffff;
    transition: 0.3s;
}

.content .btn button:nth-child(2):hover {
    background: var(--accent-color);
    color: #ffffff;
    border-color: var(--accent-color);
}

.arrows {
    position: absolute;
    top: 80%;
    right: 52%;
    z-index: 100;
    width: 300px;
    max-width: 30%;
    display: flex;
    gap: 10px;
    align-items: center;
}

.arrows button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: #ffffff;
    border: none;
    outline: none;
    font-size: 16px;
    font-family: monospace;
    font-weight: bold;
    transition: 0.5s;
    cursor: pointer;
}

.arrows button:hover {
    background: #ffffff;
    color: #000000;
}

.carousel .timeRunning {
    position: absolute;
    z-index: 1000;
    width: 0%;
    height: 4px;
    background-color: var(--accent-color);
    left: 0;
    top: 0;
    animation: runningTime 7s linear 1 forwards;
}

@keyframes runningTime {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

/*Media Queries*/

@media screen and (max-width: 999px) {
    header {
        padding-left: 50px;
    }

    .list .item .content {
        left: 50px;
    }

    .content .title,
    .content .name {
        font-size: 70px;
    }

    .content .des {
        font-size: 16px;
    }
}

@media screen and (max-width: 690px) {
    header nav a {
        font-size: 14px;
        margin-right: 0;
    }

    .list .item .content {
        top: 40%;
    }

    .content .title,
    .content .name {
        font-size: 45px;
    }

    .content .btn button {
        padding: 10px 15px;
        font-size: 14px;
    }
}

@media screen and (max-width: 450px) {
    .item .content {
        width: 300px;
    }

    .list .item .content {
        left: 20px;
    }
}

.Steps_process_sec {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(0, 1fr);
    gap: 8px;
    color: var(--text-color);
    margin: 30px 0 30px;
}

.steps_sec_title {
    font-size: 40px;
    line-height: 1.28em;
    color: var(--accent-color);
    font-weight: 600;
    padding: 40px 0;
}

.steps {
    display: inline-block;
    font-family: var(--heading-font);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.step_title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--heading-color);

}

.step_para {
    color: #969494;
    padding-right: 10px;

}

.div1 {
    grid-column: span 4 / span 4;
    background-color: var(--nav-dropdown-background-color);
    border-radius: 5px;
    justify-content: center;
    padding: 20px 0 0 20px;
    height: fit-content;
    margin-bottom: 30px;

}

.div2 {
    grid-column: span 4 / span 4;
    grid-column-start: 2;
    grid-row-start: 2;
    background-color: var(--nav-dropdown-background-color);
    border-radius: 5px;
    justify-content: center;
    padding: 20px 0 0 20px;
    height: fit-content;
    margin-bottom: 30px;
}

.div3 {
    grid-column: span 4 / span 4;
    grid-column-start: 1;
    grid-row-start: 3;
    background-color: var(--nav-dropdown-background-color);
    border-radius: 5px;
    justify-content: center;
    padding: 20px 0 0 20px;
    height: fit-content;
    margin-bottom: 30px;
}

.div4 {
    grid-column: span 4 / span 4;
    grid-column-start: 2;
    grid-row-start: 4;
    background-color: var(--nav-dropdown-background-color);
    border-radius: 5px;
    justify-content: center;
    padding: 20px 0 0 20px;
    height: fit-content;
    margin-bottom: 30px;
}

.div8 {
    grid-column: span 4 / span 4;
    grid-column-start: 1;
    grid-row-start: 5;
    background-color: var(--nav-dropdown-background-color);
    border-radius: 5px;
    justify-content: center;
    padding: 20px 0 0 20px;
    height: fit-content;

}



.div12 {
    grid-column-start: 5;
    grid-row-start: 1;
    justify-content: center;
    align-items: center;
    display: flex;
}

.icon_sec i {
    background-color: var(--nav-dropdown-background-color);
    justify-content: center;
    padding: 15px 25px;
    font-size: 2.5rem;
    border-radius: 50px;
    color: #e3a127;

}



.div13 {
    grid-column-start: 5;
    grid-row-start: 3;
    border-radius: 5px;
    justify-content: center;
    align-items: center;
    padding: 20px;
    display: flex;
}

.div14 {
    grid-column-start: 5;
    grid-row-start: 5;
    border-radius: 5px;
    justify-content: center;
    align-items: center;
    display: flex;
    padding: 20px;
}



.div18 {
    grid-column-start: 1;
    grid-row-start: 4;
    border-radius: 5px;
    justify-content: center;
    align-items: center;
    padding: 20px;
    display: flex;
}

.div19 {
    grid-column-start: 1;
    grid-row-start: 2;
    align-items: center;
    border-radius: 5px;
    justify-content: center;
    padding: 20px;
    display: flex;
}

.why_choose_sec p {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-color);
    color: var(--text-color)
}




/* hero section Start  */
.main_ab-hero {
    background-image: url('../content_imgs/Augmented.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    overflow: hidden;
}

.main_ab-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(32, 38, 41, 0.7);
    z-index: 1;
}

.main_ab-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1300px;
    flex-wrap: wrap;
}

.main_ab-hero-text {
    flex: 1 1 500px;
    padding-right: 20px;
}

.main_ab-hero-text h1 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.main_ab-hero-text p {
    margin-bottom: 15px;
    color: var(--text-color);
    line-height: 1.6;
}

.main_ab-hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.main_ab-hero-buttons a {
    background: var(--accent-color);
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
    transition: background 0.3s ease;
}

.main_ab-hero-buttons a:hover {
    background: var(--nav-hover-color);
}

.main_ab-diamond-grid {
    display: grid;
    grid-template-columns: repeat(2, 140px);
    gap: 20px;
    transform: rotate(45deg);
    flex: 1 1 300px;
    justify-content: center;
}

.main_ab-diamond {
    width: 140px;
    height: 140px;
    overflow: hidden;
    transform: rotate(-90deg);
    border: 3px solid var(--accent-color);
    background-color: var(--circle-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.main_ab-diamond img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Tablet */
@media (max-width: 1024px) {
    .main_ab-hero-content {
        margin-top: 100px;
        flex-direction: column;
        text-align: center;
    }

    .main_ab-hero-text {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .main_ab-diamond-grid {
        margin-top: 30px;
        transform: rotate(45deg) scale(0.9);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .main_ab-hero {
        height: auto;
        padding: 60px 0;
    }

    .main_ab-hero-text h1 {
        font-size: 28px;
    }

    .main_ab-hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .main_ab-diamond-grid {
        grid-template-columns: repeat(2, 100px);
        gap: 10px;
        transform: rotate(45deg) scale(0.8);
        margin-bottom: 40px;
    }

    .main_ab-diamond {
        width: 100px;
        height: 100px;
    }
}

/* hero section End  */