/*=================================================================
Project: Personal Portfolio
Author: 
Last change:
Primary use: Personal Details 
=================================================================*/
/*============================ Table of contents Start ============================
1.Default CSS
2.Background Animation
3.Header
4.Hero Section
5.Slider
6.Feature Section
7.Footer
8.Text Animation
============================ Table of contents End ============================*/
/*============================ Color codes ============================
Background:  #FF5730 #141C27 #D9D9D9
Content:     #FFF #7E7E7E #FF5730
================================================================= */
/* ============================ 1.Defualt CSS ======================= */
*,
::before,
::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none !important;
}
html,
body {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    user-select: none;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
body {
    background-color: #000;
}
html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}
.mt-40 {
    margin-top: 40px;
}
/*-----------------------[ 2.Preloader CSS ]------------------------*/
.page-loader {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: #000000;
    z-index: 1100;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
#box div {
    display: inline-block;
    animation: 2s obrot linear infinite;
    color: #FF5730;
    font-size: 50px;
    font-family: Bungee;
}
#box {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    gap: 25px;
}
#l3 {
    margin-right: 15px;
}
@keyframes obrot {
    0% {
        transform: rotateX(0);
    }
    12.5% {
        transform: rotateX(90deg);
    }
    25% {
        transform: rotateX(180deg);
    }
    37.5% {
        transform: rotateX(270deg);
    }
    50% {
        transform: rotateX(360deg);
    }
    100% {
        transform: rotateX(360deg);
    }
}
#box div:nth-child(1) {
    animation-delay: 0s;
}
#box div:nth-child(2) {
    animation-delay: 0.1s;
}
#box div:nth-child(3) {
    animation-delay: 0.2s;
}
#box div:nth-child(4) {
    animation-delay: 0.3s;
}
#box div:nth-child(5) {
    animation-delay: 0.4s;
}
#box div:nth-child(6) {
    animation-delay: 0.5s;
}
#box div:nth-child(7) {
    animation-delay: 0.6s;
}
#box div:nth-child(8) {
    animation-delay: 0.7s;
}
/* ============================ 2.Background Animation ======================= */
.video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}
.video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.75),
            rgba(14, 14, 14, 0.9));
    backdrop-filter: blur(2px);
}
/* ============================ 3.Header ======================= */
header {
    position: relative;
    z-index: 1000;
    transition: .5s ease;
}
header.scrolled {
    position: fixed;
    padding: 0;
    top: 0;
    right: 0;
    left: 0;
    background: transparent;
    transform: translateY(-100%);
    transition: none;
    animation: slideIn 0.5s ease forwards;
    backdrop-filter: blur(12.5px);
    background: #00000099;
}
@keyframes slideIn {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0);
    }
}
header.scrolled .header-containt {
    padding: 20px 0px;
}
.container {
    max-width: 1290px;
    padding: 0px 12px;
    margin: auto;
}
.header-containt {
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-name {
    color: var(--1, rgba(255, 255, 255, 1));
    font-family: Bungee;
    font-size: 40px;
    font-weight: 400;
    line-height: 50px;
}
.header-nav {
    display: flex;
    gap: 60px;
}
.menu-name {
    color: rgba(255, 255, 255, 1);
    font-family: Inter;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
}
.purchase-btn {
    border: 2px solid transparent;
    padding: 15px 40px;
    background-color: #FF5730;
    color: var(--1, rgba(255, 255, 255, 1));
    font-family: Inter;
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    border-radius: 30px;
}
.purchase-btn:hover {
    border-color: #FF5730;
    background-color: transparent;
}
.menu-toggle {
    width: 30px;
    height: 15px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}
.menu-toggle span {
    width: 100%;
    height: 3px;
    background: #fff;
    transition: 0.5s ease;
    display: block;
}
.menu-toggle.active span:nth-child(1) {
    transform: rotate(50deg) translateY(10px);
}
.menu-toggle.active span:nth-child(2) {
    transform: rotate(-50deg) translateY(-10px);
}
.sidebar-btn {
    display: none;
}
/* ============================ 4.Hero Section ======================= */
.hero-main-txt {
    color: var(--1, rgba(255, 255, 255, 1));
    font-family: Bungee;
    font-size: 80px;
    font-weight: 400;
    line-height: 110px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}
.hero-main-txt span {
    color: #FF5730;
}
.hero_section {
    overflow: hidden;
    padding: 110px 0px 100px 0px;
}
.hero-paragraph {
    margin-top: 30px;
    color: #7C7C7C;
    font-family: Inter;
    font-size: 21px;
    font-weight: 500;
    line-height: 36px;
    text-align: center;
    max-width: 900px;
    margin: 30px auto;
}
.layout-main {
    margin-top: 50px;
}
.design-preview {
    width: 100%;
    padding: 15px;
    background: linear-gradient(340deg, #000000, #ffffff9e);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 10px;
    overflow: hidden;
    transition: all .3s ease;
}
.design-preview img {
    width: 100%;
    border-radius: 10px;
}
.preview-page-name {
    margin-top: 10px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    line-height: 30px;
    color: #FFFF;
    text-transform: capitalize;
}
/* ============================ 5.Slider ======================= */
.hero-slider-section {
    background: var(--10, rgba(16, 16, 16, 1));
    padding: 20px 0px;
}
.slide-title {
    color: var(--1, rgba(255, 255, 255, 1));
    font-family: Inter;
    font-size: 45px;
    font-weight: 400;
    line-height: 60px;
    text-transform: uppercase;
    padding: 0px 60px;
}
/* ============================ 6.Feature Section ======================= */
.feature_section {
    padding: 100px 0px;
}
.preview-little-title {
    color: var(--1, rgba(255, 255, 255, 1));
    font-family: Inter;
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
    text-align: center;
}
.preview-title {
    margin-top: 10px;
    color: var(--1, rgba(255, 255, 255, 1));
    font-family: Bungee;
    font-size: 50px;
    font-weight: 400;
    line-height: 60px;
    text-align: center;
}
.preview-paragraph {
    color: rgba(128, 128, 128, 1);
    font-family: Inter;
    font-size: 20px;
    font-weight: 500;
    line-height: 36px;
    text-align: center;
    max-width: 900px;
    margin: 30px auto;
}
.feature-detail {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    padding: 25px;
    border-radius: 15px;
    background: linear-gradient(315deg, #000000, #ffffff87);
    transition: all .3s ease;
    gap: 25px;
    height: 185px;
    max-width: 300px;
    width: 100%;
}
.feature-detail img {
    max-width: 64px;
    width: 100%;
}
.feature {
    display: flex;
    gap: 20px;
    margin-top: 60px;
    justify-content: center;
    flex-wrap: wrap;
}
.feature-name-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    color: #FFF;
    text-align: center;
    font-family: Inter;
}
.feature-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
/* ============================ 7.Footer ======================= */
.footer-button {
    margin-top: 40px;
    display: flex;
    gap: 60px;
    justify-content: center;
}
.demos-btn {
    border: 2px solid transparent;
    padding: 15px 40px;
    background-color: #FFF;
    color: #000;
    font-family: Inter;
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    border-radius: 30px;
}
.demos-btn:hover {
    border-color: #FFF;
    background-color: transparent;
    color: #FFF;
}
.footer-purchase-btn {
    border: 2px solid transparent;
    padding: 15px 40px;
    background-color: #FF5730;
    color: var(--1, rgba(255, 255, 255, 1));
    font-family: Inter;
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    border-radius: 30px;
}
.footer-purchase-btn:hover {
    border-color: #FF5730;
    background-color: transparent;
}
.copy-right {
    margin: 80px 0px 60px 0px;
    color: var(--1, rgba(255, 255, 255, 1));
    font-family: Inter;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    text-align: center;
}
.copy-right a {
    color: var(--1, rgba(255, 255, 255, 1));
    font-family: Inter;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    text-align: center;
}
.copy-right a:hover {
    color: #FF5730;
}
/* ============================ 8.Text Animation ======================= */
.fade_up,
.fade_down,
.zoom_in,
.zoom_out {
    opacity: 0;
    transition: all 2s;
}
.fade_up {
    transform: translateY(-50%);
}
.fade_down {
    transform: translateY(100%);
}
.zoom_in {
    transform: scale(0.5);
}
.zoom_out {
    transform: scale(1.5);
}
.fade_right {
    opacity: 0;
    transform: translateX(-100%);
    transition: all 2s;
}
.fade_left {
    opacity: 0;
    transform: translateX(100%);
    transition: all 2s;
}
.flip_left {
    opacity: 0;
    transform: perspective(400px) rotateY(-90deg);
    transition: all 2s;
}
.flip_right {
    opacity: 0;
    transform: perspective(400px) rotateY(90deg);
    transition: all 2s;
}
.flip_up {
    opacity: 0;
    transform: perspective(400px) rotateX(-90deg);
    transition: all 2s;
}
.flip_down {
    opacity: 0;
    transform: perspective(400px) rotateX(90deg);
    transition: all 2s;
}
.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}