/*------------------------------------------------------------------
Project: CODENOVA Portfolio Template
Last change: 01/06/2026
------------------------------------------------------------------ */
/*-----------------------[Table of contents]------------------------
1.Default CSS
2.Preloader CSS
3.Header CSS
4.Button CSS 
5.Hero Section CSS
6.ABOUT SECTION CSS
7.Skills Section CSS 
8.Services Section CSS
9.Project Section CSS
10.Resume Section CSS 
11.Testimonial Section CSS 
12.Pricing Section CSS
13.Blog Section CSS
14.Contact Section CSS 
15.Footer Section CSS
------------------------------------------------------------------ */
/*-----------------------[ 1.Default CSS ]------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-style: normal;
}
html {
    scroll-behavior: smooth;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}
a {
    color: inherit;
    text-decoration: none;
}
dl,
ol,
ul {
    margin-top: 0;
    margin-bottom: 0rem;
}
ul {
    padding-left: 0;
}
ul li {
    list-style: none;
}
button {
    border: none;
    cursor: pointer;
}
::-webkit-scrollbar {
    width: 4px;
}
::-webkit-scrollbar-corner {
    display: none;
}
::-webkit-scrollbar-thumb {
    background: transparent;
    background-clip: content-box;
}
::-webkit-scrollbar-track {
    background-color: transparent;
}
button {
    background: transparent;
}
body {
    font-family: var(--font-outfit);
    background: #09090e;
    overflow-x: hidden;
}
:root {
    --font-big: 'Big Shoulders', sans-serif;
    --font-outfit: 'Outfit', sans-serif;
}
.rotate-text {
    display: block;
    width: 100%;
}
.rotate-text .word {
    white-space: nowrap; 
}
.rotate-text .char {
    display: inline-block;
}
section {
    position: relative;
}
.section-pad {
    padding: 100px 0;
}
.eyebrow {
    font-family: var(--font-outfit);
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #FF6A28;
    margin-bottom: 15px;
    text-align: center;
}
.sec-num {
    font-family: var(--font-big);
    font-size: 200px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(240, 238, 255, 0.08);
    position: absolute;
    top: 80px;
    right: 60px;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}
/*-----------------------[ 2.Preloader CSS ]------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    background: #09090e;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity .6s ease;
}
#preloader.hide {
    animation: loaderExit .8s ease forwards;
}
@keyframes loaderExit {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1.2);
        visibility: hidden;
    }
}
.loader-logo {
    display: flex;
    gap: 8px;
    font-size: 120px;
    font-weight: 900;
    color: #FF6A28;
    font-family: var(--font-big);
    text-transform: uppercase;
}
.loader-logo span {
    opacity: 0;
    transform: translateY(120px);
    animation: letterReveal .6s forwards;
}
.loader-logo span:nth-child(1) {
    animation-delay: .1s;
}
.loader-logo span:nth-child(2) {
    animation-delay: .2s;
}
.loader-logo span:nth-child(3) {
    animation-delay: .3s;
}
.loader-logo span:nth-child(4) {
    animation-delay: .4s;
}
.loader-logo span:nth-child(5) {
    animation-delay: .5s;
}
.loader-logo span:nth-child(6) {
    animation-delay: .6s;
}
.loader-logo span:nth-child(7) {
    animation-delay: .7s;
}
.loader-logo span:nth-child(8) {
    animation-delay: .8s;
}
@keyframes letterReveal {
    0% {
        opacity: 0;
        transform: translateY(120px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
/*-----------------------[ 3.Header CSS ]------------------------*/
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    padding: 20px 30px;
    transition: all 0.4s ease;
}
header.scrolled {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.nav-logo {
    font-size: 30px;
    font-weight: 900;
    color: #FF6A28;
    letter-spacing: 2px;
    font-family: var(--font-big);
    text-transform: uppercase;
}
.menu-toggle {
    background: #FF6A28;
    color: #FFF;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav-link {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #bdbdbd;
    transition: color .2s;
    font-family: var(--font-big);
    gap: 20px;
}
.nav-link:hover {
    color: #FF6A28;
}
.nav-link i {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, .05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border-radius: 6px;
    color: #bdbdbd;
    letter-spacing: 0;
    transition: .4s;
}
.side-menu {
    position: fixed;
    top: 80px;
    right: -300px;
    width: 260px;
    height: auto;
    background: #1e1e1e;
    transition: .4s;
    z-index: 999;
}
.side-menu.active {
    right: 50px;
}
.nav-link.active {
    color: #FF6A28;
}
.nav-link.active i,
.nav-link:hover i {
    background: rgba(255, 106, 40, 0.15);
    color: #FF6A28;
    transform: scale(1.1);
}
/*-----------------------[ 4.Button CSS ]------------------------*/
.btn-quote {
    background: #FF6A28;
    border-radius: 8px;
    color: #FFF;
    font-family: var(--font-outfit);
    padding: 14px 25px;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    overflow: hidden;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}
.btn-quote:hover {
    color: #000;
    border-radius: 0;
    border: 2px solid #FFF;
}
.btn-quote:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 0;
    background-color: #FFF;
    transition: all 0.3s ease;
}
.btn-quote:hover:after {
    top: auto;
    bottom: 0;
    height: 100%;
}
.btn-quote i {
    font-size: 24px;
}
/* ========= Transparent Btn  =============== */
.btn-trasp {
    background: transparent;
    color: #FF6A28;
    border: 2px solid #FF6A28;
    border-radius: 8px;
}
.btn-trasp:hover {
    color: #FFF;
    border-radius: 0;
    border: 2px solid #FF6A28;
}
.btn-trasp:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 0;
    background-color: #FF6A28;
    transition: all 0.3s ease;
}
.btn-trasp:hover:after {
    top: auto;
    bottom: 0;
    height: 100%;
}
/*-----------------------[ 5.Hero Section CSS ]------------------------*/
#hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    padding-top: 60px;
}
#hero-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
}
.hero-bg-word {
    position: absolute;
    font-family: var(--font-big);
    font-weight: 900;
    font-size: clamp(200px, 30vw, 380px);
    color: transparent;
    -webkit-text-stroke: 1px rgba(240, 238, 255, 0.18);
    line-height: 1;
    user-select: none;
    pointer-events: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    z-index: 0;
    letter-spacing: -10px;
    opacity: .5;
}
.hero-inner {
    position: relative;
    z-index: 5;
}
.hero-name {
    font-family: var(--font-big);
    font-weight: 900;
    font-size: 175px;
    line-height: .90;
    text-transform: uppercase;
    letter-spacing: -5px;
    margin-bottom: 24px;
    overflow: hidden;
}
.hero-name .l1 {
    display: block;
    color: #fff;
}
.hero-name .l2 {
    display: block;
    color: #FF6A28;
}
.hero-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.hero-tagline {
    font-family: var(--font-outfit);
    font-size: 18px;
    line-height: 32px;
    color: #bdbdbd;
    max-width: 480px;
}
.hero-cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}
.hero-person-main {
    position: absolute;
    right: 5%;
    bottom: 0;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 2;
}
.hero-person-main .heroImgPerson {
    width: 100%;
    height: 95%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: grayscale(100%) contrast(110%);
}
.hero-person-glow {
    position: absolute;
    width: 65%;
    height: 420px;
    background: #FF6A28;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.8;
    z-index: 1;
    animation: glowMove 5s ease-in-out infinite alternate;
}
@keyframes glowMove {
    0% {
        transform: scale(1) translateY(0px);
    }
    100% {
        transform: scale(1.15) translateY(-20px);
    }
}
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #FF6A28;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    font-family: var(--font-big);
}
.hero-tag::before {
    content: "";
    width: 50px;
    height: 2px;
    background: #FF6A28;
}
.tech-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 10px;
    background: rgba(15, 15, 15, .75);
    border: 1px solid rgba(255, 106, 40, .2);
    backdrop-filter: blur(20px);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .25);
    animation: floatBadge 4s ease-in-out infinite;
    font-family: var(--font-big);
    flex-direction: column;
}
.tech-badge i {
    color: #FF6A28;
    font-size: 22px;
}
/* Positions */
.tech-badge.html {
    top: 15%;
    left: 0;
}
.tech-badge.css {
    top: 40%;
    left: -80px;
    animation-delay: .5s;
    z-index: 8;
}
.tech-badge.js {
    top: 20%;
    right: 60px;
    animation-delay: 1s;
}
.tech-badge.react {
    top: 45%;
    right: 0;
    animation-delay: 1.5s;
}
.tech-badge.figma {
    bottom: 18%;
    left: 0;
    animation-delay: 2s;
}
@keyframes floatBadge {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px);
    }
}
.tech-badge:hover {
    border-color: #FF6A28;
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 0 30px rgba(255, 106, 40, .35);
}
.hero-tech-stack span:hover {
    background: #FF6A28;
    color: #050812;
    transform: translateY(-4px);
    box-shadow: 0 0 25px rgba(255, 106, 40, .4);
}
.hero-tech-stack span {
    animation: floatTech 3s ease-in-out infinite;
}
.hero-tech-stack span:nth-child(2) {
    animation-delay: .2s;
}
.hero-tech-stack span:nth-child(3) {
    animation-delay: .4s;
}
.hero-tech-stack span:nth-child(4) {
    animation-delay: .6s;
}
.hero-tech-stack span:nth-child(5) {
    animation-delay: .8s;
}
@keyframes floatTech {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}
/*-----------------------[ 6.ABOUT SECTION CSS ]------------------------*/
#about {
    background: #0f0f17;
}
.abutwho {
    text-align: left;
}
.portrait-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 5 / 6;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1400px;
    transition: transform 0.2s ease;
}
.portrait-placeholder {
    width: 100%;
    height: 100%;
    transition:
        transform 0.25s ease-out,
        filter 0.4s ease;
    will-change: transform;
}
.portrait-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition:
        transform 0.5s ease,
        filter 0.5s ease;
}
.portrait-frame:hover .portrait-placeholder img {
    transform: scale(1.08);
}
.portrait-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px;
    background: linear-gradient(to top, rgba(0, 0, 0, .83) 0%, transparent 100%);
}
.portrait-badge {
    font-size: 12px;
    color: #FF6A28;
}
.portrait-badge:hover {
    color: #FFF;
}
.portrait-frame::before {
    content: '';
    position: absolute;
    top: 16px;
    right: 16px;
    width: 50px;
    height: 50px;
    border-top: 2px solid #FF6A28;
    border-right: 2px solid #FF6A28;
    z-index: 2;
}
.portrait-frame::after {
    content: '';
    position: absolute;
    bottom: 16px;
    left: 16px;
    width: 50px;
    height: 50px;
    border-bottom: 2px solid #FF6A28;
    border-left: 2px solid #FF6A28;
    z-index: 2;
}
.big-title {
    font-family: var(--font-big);
    font-size: 90px;
    font-weight: 900;
    line-height: 90px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #fff;
}
.big-title em {
    color: #FF6A28;
}
.about-mel-datils ul li {
    color: #bdbdbd;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}
.about-mel-datils ul i {
    font-size: 24px;
    color: #FF6A28;
}
.about-bio {
    font-family: var(--font-outfit);
    font-size: 22px;
    line-height: 37px;
    font-weight: 400;
    color: #bdbdbd;
    margin-bottom: 30px;
}
.about-bio strong {
    color: #FFF;
    font-weight: 500;
}
.about-right {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}
.about-card {
    padding: 25px;
    border: 2px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    transition: 0.4s;
    text-align: center;
}
.about-card:hover {
    transform: translateY(-10px);
    border-color: #FF6A28;
    background: rgba(255, 106, 40, 0.07);
}
.about-card h3 {
    color: #FFF;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.about-card h2 {
    font-family: var(--font-big);
    font-size: 64px;
    font-weight: 900;
    color: #FF6A28;
    margin-bottom: 10px;
}
/*-----------------------[ 7.Skills Section CSS ]------------------------*/
#skills {
    background: #09090e;
}
.lead-text {
    font-family: var(--font-outfit);
    font-size: 22px;
    line-height: 37px;
    font-weight: 400;
    color: #bdbdbd;
    max-width: 540px;
}
.portfolio-skill-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-top: 60px;
}
.frontend-box,
.backend-box {
    border: 2px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    padding: 40px;
    width: 100%;
    position: relative;
}
.skill-box-title {
    color: #34343470;
    font-size: 60px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: absolute;
    top: 52%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.skill-item-box {
    margin-bottom: 35px;
}
.skill-item-box:last-child {
    margin-bottom: 0;
}
.skill-name {
    font-family: var(--font-big);
    color: #FFF;
    font-size: 18px;
    font-weight: 600;
    float: left;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}
.skill-percent {
    float: right;
    color: #fff;
    font-size: 18px;
}
.custom-progress-line {
    position: relative;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    clear: both;
    overflow: hidden;
}
.custom-progress-line span {
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    border-radius: 50px;
    background: #FF6A28;
}
.skill-item-box.active .custom-progress-line span {
    animation: skillFillAnimation 1.8s ease forwards;
}
@keyframes skillFillAnimation {
    from {
        width: 0;
    }
    to {
        width: var(--progress-width);
    }
}
.text-center {
    text-align: center;
}
.eyebrow.text-center {
    justify-content: center;
}
p.lead-text.text-center {
    margin: 0 auto;
}
/*-----------------------[ 8.Services Section CSS ]------------------------*/
#services {
    background: #0f0f17;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    animation: fadeUp .7s .46s cubic-bezier(.16, 1, .3, 1) forwards;
    margin-top: 60px;
}
.service-card {
    position: relative;
    padding: 30px;
    border: 2px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    overflow: hidden;
    transition: background .35s, border-color .35s;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}
.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(255, 106, 40, .055) 0%, transparent 70%);
    opacity: 0;
    transition: opacity .4s;
    z-index: -1;
}
.service-card:hover::before {
    opacity: 1
}
.service-card:hover {
    background: #0c0c0c;
    border: 2px solid #FF6A28;
    z-index: 2;
}
.card-icon img {
    width: 70px;
    filter: brightness(0) saturate(100%) invert(57%) sepia(72%) saturate(3883%) hue-rotate(343deg) brightness(104%) contrast(101%);
}
.card-title {
    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.15;
    transition: all 0.3s ease-in-out;
    font-family: var(--font-big);
    color: #fff;
}
.service-card:hover .card-title {
    color: #FF6A28;
    letter-spacing: 3px;
}
.card-desc {
    font-size: 16px;
    font-weight: 400;
    color: #FFF;
    line-height: 26px;
    font-family: var(--font-outfit);
}
.card-features li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 25px;
    font-weight: 400;
    font-family: var(--font-outfit);
    color: #FFF;
}
.card-features li::before {
    content: "\eb0c";
    font-family: "tabler-icons";
    font-size: 15px;
    color: #FF6A28;
    display: inline-block;
}
.card-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding-top: 1rem;
    border-top: 2px solid rgba(255, 255, 255, 0.08);
    transition: color .25s, border-color .25s;
    margin-top: auto;
    color: #FFF;
}
.service-card:hover .card-link {
    color: #FF6A28;
    border-color: rgba(255, 106, 40, .2)
}
.card-link i {
    font-size: 24px;
}
/* ==========================  SERVICE POPUP ================================ */
.service-popup {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: .4s ease;
    padding: 30px;
}
.service-popup.active {
    visibility: visible;
    opacity: 1;
}
.popup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .82);
    backdrop-filter: blur(10px);
}
.popup-container {
    position: relative;
    max-width: 1200px;
    width: 100%;
    height: 90vh;
    background: #0c0c14;
    border: 1px solid rgba(255, 255, 255, .08);
    display: grid;
    grid-template-columns: 1.2fr .9fr;
    overflow: hidden;
    z-index: 3;
    transform: scale(.85) translateY(50px);
    transition: .55s cubic-bezier(.16, 1, .3, 1);
}
.service-popup.active .popup-container {
    transform: scale(1) translateY(0);
}
.popup-left {
    padding: 50px;
    overflow: auto;
}
.popup-badge {
    display: inline-flex;
    padding: 10px 18px;
    border: 1px solid rgba(255, 106, 40, .15);
    background: rgba(255, 106, 40, .05);
    color: #FF6A28;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 30px;
}
#popupTitle {
    font-size: 68px;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: #fff;
    font-family: var(--font-big);
}
#popupDesc {
    font-size: 18px;
    line-height: 32px;
    color: #bdbdbd;
    margin-bottom: 45px;
    font-family: var(--font-outfit);
}
.popup-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 45px;
}
.feature-box {
    border: 1px solid rgba(255, 255, 255, .06);
    padding: 25px;
    transition: .4s ease;
    background: rgba(255, 255, 255, .02);
}
.feature-box:hover {
    border-color: #FF6A28;
    transform: translateY(-5px);
}
.feature-box i {
    font-size: 32px;
    color: #FF6A28;
    margin-bottom: 18px;
    display: inline-block;
}
.feature-box h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #fff;
    font-family: var(--font-outfit);
}
.feature-box p {
    color: #a4a4a4;
    line-height: 28px;
    font-family: var(--font-outfit);
}
.popup-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 45px;
}
.popup-tech span {
    padding: 12px 18px;
    border: 1px solid rgba(255, 255, 255, .08);
    background: rgba(255, 255, 255, .03);
    font-size: 14px;
    transition: .3s;
    color: #bdbdbd;
}
.popup-tech span:hover {
    border-color: #FF6A28;
    color: #FF6A28;
}
.popup-right {
    position: relative;
    background:
        radial-gradient(circle at top,
            rgba(255, 106, 40, .15),
            transparent 60%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.popup-image-box {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
#popupVideo {
    width: 100%;
    max-width: 100%;
    object-fit: cover;
}
.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    border: none;
    background: rgba(255, 255, 255, .06);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: .3s;
}
.popup-close:hover {
    background: #FF6A28;
    color: #000;
    transform: rotate(90deg);
}
@keyframes floatY {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-18px);
    }
}
/*-----------------------[ 9.Project Section CSS ]------------------------*/
#projects {
    background: #09090e;
}
.work-filter {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 50px 0;
}
.work-filter button {
    height: 48px;
    padding: 0 24px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, .08);
    background: transparent;
    color: #8d8d8d;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    text-transform: uppercase;
    cursor: pointer;
    transition: .4s ease;
}
.work-filter button.active,
.work-filter button:hover {
    color: #FFF;
    border-color: #FF6A28;
    background: #FF6A28;
}
.ourwork-row {
    gap: 30px 0;
}
.project-col {
    transition:
        opacity .45s cubic-bezier(.16, 1, .3, 1),
        transform .45s cubic-bezier(.16, 1, .3, 1),
        filter .45s cubic-bezier(.16, 1, .3, 1);
}
.project-col.hide-project {
    display: none !important;
}
.work-thumb {
    position: relative;
    overflow: hidden;
}
.work-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s ease;
}
.work-card {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.work-content {
    padding: 20px;
    border: 2px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    border-top: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.work-category {
    font-family: var(--font-outfit);
    display: inline-block;
    margin-bottom: 9px;
    font-size: 15px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #FF6A28;
}
.work-content h3 {
    font-family: var(--font-big);
    color: #FFF;
    font-size: 35px;
    line-height: 40px;
    margin-bottom: 24px;
    text-transform: uppercase;
    transition: .4s;
}
.work-card:hover h3 {
    color: #FF6A28;
}
.work-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.work-tags span {
    padding: 10px 14px;
    font-size: 14px;
    color: #FFF;
    transition: .35s;
    border: 1px solid rgba(255, 255, 255, .08);
    background: rgba(255, 255, 255, .03);
}
.work-tags span:hover {
    border-color: #FF6A28;
    color: #FF6A28;
}
.work-card:hover img {
    transform: scale(1.06);
}
.work-card {
    transition:
        opacity .35s ease,
        transform .35s ease,
        background .35s ease;
}
/*-----------------------[ 10.Resume Section CSS ]------------------------*/
#resume {
    background: #0f0f17;
}
.rv-tabs {
    margin-top: 60px;
}
.rv-tl {
    position: relative;
}
.rv-tl::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, .1);
}
.rv-item {
    position: relative;
    padding: 0 0 40px 35px;
}
.rv-item:nth-last-child(1) {
    padding-bottom: 0;
}
.rv-dot {
    position: absolute;
    left: -9px;
    top: 0px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #FF6A28;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s;
}
.rv-dot::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #FF6A28;
    transition: transform .3s;
}
.rv-item:hover .rv-dot {
    background: rgba(255, 106, 40, .08);
}
.rv-item:hover .rv-dot::after {
    transform: scale(1.3);
}
.rv-date {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #FF6A28;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.rv-date-badge {
    padding: 3px 9px;
    border: 1px solid rgba(255, 106, 40, .3);
    font-size: 12px;
    letter-spacing: 2px;
    color: #FF6A28;
}
.rv-role {
    font-family: var(--font-big);
    font-size: 25px;
    line-height: 35px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    margin: 10px 0 5px;
}
.rv-company {
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    color: #FFF;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 7px;
}
.rv-company i {
    font-size: 18px;
}
.rv-item:hover .rv-company {
    color: #FF6A28;
}
.rv-desc {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: #bdbdbd;
}
.rv-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
}
.rv-pill {
    padding: 4px 9px;
    font-size: 14px;
    font-weight: 400;
    border: 1px solid rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .4);
    border-radius: 2px;
    transition: border-color .2s, color .2s;
}
.rv-item:hover .rv-pill {
    border-color: rgba(255, 106, 40, .2);
    color: #FF6A28;
}
.rv-current {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 3px 9px;
    background: rgba(255, 106, 40, .1);
    border: 1px solid rgba(255, 106, 40, .3);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #FF6A28;
}
.rv-current-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #FF6A28;
    animation: blink 1.8s infinite;
}
.rv-section-label {
    font-size: 30px;
    line-height: 41px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #FFF;
    margin-bottom: 30px;
}
/*-----------------------[ 11.Testimonial Section CSS ]------------------------*/
#testimonials {
    position: relative;
    overflow: hidden;
    background: #09090e;
}
.testimonialSwiper {
    padding-top: 60px;
    padding-bottom: 50px;
}
.testimonialSwiper .swiper-slide {
    height: auto;
    display: flex;
}
.testimonial-card {
    border: 2px solid rgba(255, 255, 255, 0.08);
    background: #0f0f17;
    padding: 40px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 400px;
}
.quote-icon {
    margin-bottom: 25px;
}
.quote-icon img {
    width: 50px;
    filter: brightness(0) saturate(100%) invert(57%) sepia(72%) saturate(3883%) hue-rotate(343deg) brightness(104%) contrast(101%);
}
.testimonial-text {
    color: #fff;
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    margin-bottom: 45px;
    flex-grow: 1;
}
.testimonial-user {
    display: flex;
    align-items: center;
    gap: 18px;
}
.testimonial-user-img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
}
.testimonial-user-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.testimonial-user-info h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 5px;
}
.testimonial-user-info span {
    color: #A0A0A0;
}
.swiper-pagination {
    bottom: 0 !important;
}
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #fff;
    opacity: 0.3;
    transition: 0.4s ease;
}
.swiper-pagination-bullet-active {
    width: 30px;
    border-radius: 30px;
    background: #FF6A28;
    opacity: 1;
}
/*-----------------------[ 12.Pricing Section CSS ]------------------------*/
#pricing {
    position: relative;
    overflow: hidden;
    background: #0f0f17;
}
.pricing-row {
    margin-top: 70px;
    align-items: center;
}
.pricing-card {
    position: relative;
    padding: 35px;
    background: #0c0c0c;
    border: 2px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.pricing-card:hover {
    transform: translateY(-12px);
    border-color: #FF6A28;
}
.active-price {
    background: #FF6A28;
    transform: scale(1.04);
}
.active-price:hover {
    transform: scale(1.04) translateY(-10px);
}
.popular-tag {
    position: absolute;
    top: 40px;
    right: -50px;
    background: #000;
    color: #fff;
    font-size: 12px;
    letter-spacing: 2px;
    padding: 10px 50px;
    transform: rotate(45deg);
    text-align: center;
}
.pricing-label {
    display: inline-block;
    color: #FF6A28;
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 25px;
    text-transform: uppercase;
}
.active-price .pricing-label {
    color: #FFF;
}
.pricing-top h2 {
    font-family: var(--font-big);
    font-weight: 800;
    letter-spacing: 2px;
    color: #fff;
    font-size: 65px;
    line-height: 75px;
    margin-bottom: 20px;
}
.active-price .pricing-top h2 {
    color: #FFF;
}
.pricing-top h2 span {
    font-size: 22px;
}
.pricing-top p {
    color: #bdbdbd;
    line-height: 30px;
    margin-bottom: 35px;
    font-size: 18px;
}
.active-price .pricing-top p {
    color: #FFF;
}
.pricing-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 45px;
}
.pricing-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 18px;
}
.active-price .pricing-list li {
    color: #FFF;
}
.pricing-list li i {
    color: #FFF;
    font-size: 20px;
}
.active-price .pricing-list li i {
    color: #FFF;
}
.pricing-btn {
    justify-content: center;
}
.pricing-btn-active {
    background: #000;
    color: #fff;
    justify-content: center;
}
/*-----------------------[ 13.Blog Section CSS ]------------------------*/
#blog {
    position: relative;
    overflow: hidden;
    background: #09090e;
}
.blog-row {
    margin-top: 60px;
}
.blog-card {
    border: 2px solid rgba(255, 255, 255, 0.08);
    background: #0c0c0c;
    overflow: hidden;
    transition: 0.5s ease;
    position: relative;
}
.blog-card:hover {
    border-color: #FF6A28;
}
.blog-img {
    overflow: hidden;
}
.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s ease;
}
.blog-card:hover .blog-img img {
    transform: scale(1.1);
}
.blog-date {
    padding: 8px 12px;
    background: #FFF;
    color: #000;
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    font-family: var(--font-outfit);
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 1;
    transition: all 0.4s ease;
}
.blog-date i {
    font-size: 20px;
}
.blog-card:hover .blog-date {
    background: #FF6A28;
    color: #FFF;
}
.blog-content {
    padding: 30px;
}
.blog-content h3 {
    font-family: var(--font-big);
    letter-spacing: 1px;
    color: #fff;
    font-size: 30px;
    line-height: 42px;
    margin-bottom: 20px;
    transition: 0.4s ease;
}
.blog-card:hover .blog-content h3 {
    color: #FF6A28;
}
.blog-content p {
    color: #bdbdbd;
    line-height: 28px;
    margin-bottom: 30px;
    font-size: 18px;
}
.blog-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #FF6A28;
    transition: 0.4s ease;
    font-size: 18px;
    font-weight: 500;
}
.blog-btn:hover {
    color: #FF6A28;
    gap: 16px;
}
.blog-btn i {
    font-size: 22px;
}
/* ========================== BLOG POPUP  =================================== */
.blog-popup {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s ease;
}
.blog-popup.active-popup {
    opacity: 1;
    visibility: visible;
}
.blog-popup-overlay {
    position: absolute;
    inset: 0;
    background:
        rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
}
.blog-popup-box {
    position: relative;
    width: 1100px;
    max-width: 94%;
    max-height: 92vh;
    overflow-y: auto;
    background: #0B0B12;
    border:
        2px solid rgba(255, 255, 255, 0.08);
    transform:
        scale(0.8) translateY(60px);
    transition: 0.6s ease;
    z-index: 2;
}
.blog-popup.active-popup .blog-popup-box {
    transform:
        scale(1) translateY(0);
}
.blog-popup-img {
    height: 450px;
    position: relative;
    overflow: hidden;
}
.blog-popup-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.popup-category {
    position: absolute;
    left: 40px;
    bottom: 40px;
    padding: 12px 22px;
    background: #FF6A28;
    color: #FFF;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 600;
}
.blog-popup-content {
    padding: 55px;
}
.popup-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}
.popup-meta span {
    color: #bdbdbd;
    display: flex;
    align-items: center;
    gap: 8px;
}
.popup-meta span i {
    color: #FF6A28;
    font-size: 24px;
}
.blog-popup-content h2 {
    color: #fff;
    font-size: 56px;
    line-height: 74px;
    margin-bottom: 35px;
    font-family: var(--font-big);
}
.popup-author {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 35px;
}
.popup-author-img img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}
.popup-author-info h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 5px;
}
.popup-author-info span {
    color: #bdbdbd;
}
.blog-popup-content p {
    color: #bdbdbd;
    font-size: 18px;
    line-height: 36px;
    margin-bottom: 20px;
}
.blogquot-main {
    padding: 30px;
    border: 2px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    margin-bottom: 20px;
}
.blog-popup-content blockquote {
    border-left: 4px solid #FF6A28;
    padding-left: 30px;
    color: #fff;
    font-size: 28px;
    line-height: 46px;
    font-style: italic;
    margin-bottom: 0;
}
.popup-tags {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 45px;
}
.popup-tags span {
    padding: 12px 20px;
    border:
        1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    transition: 0.4s ease;
}
.popup-tags span:hover {
    background: #FF6A28;
    color: #000;
}
.popup-share {
    margin-top: 50px;
    padding-top: 35px;
    border-top:
        1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
.popup-share h3 {
    color: #fff;
    font-size: 22px;
}
.popup-social {
    display: flex;
    align-items: center;
    gap: 14px;
}
.popup-social a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border:
        1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    transition: 0.4s ease;
}
.popup-social a:hover {
    background: #FF6A28;
    transform:
        translateY(-6px) rotate(8deg);
}
.blog-close {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background:
        rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 22px;
    z-index: 5;
    transition: 0.4s ease;
}
.blog-close:hover {
    background: #D9FF00;
    color: #000;
    transform: rotate(90deg);
}
/*-----------------------[ 14.Contact Section CSS ]------------------------*/
#contact {
    position: relative;
    overflow: hidden;
    background: #0f0f17;
}
.contact-row {
    margin-top: 60px;
}
.buidlmain {
    max-width: 760px;
    margin: 0 auto 20px;
}
.contact-heading p {
    color: #bdbdbd;
    font-size: 18px;
    line-height: 34px;
    margin-top: 20px;
}
.contact-info-main {
    height: 100%;
    padding: 45px;
    border:
        2px solid rgba(255, 255, 255, 0.08);
    background: #0c0c0c;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.contact-info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 35px;
    margin-bottom: 35px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.contact-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 106, 40, 0.08);
    border: 1px solid rgba(255, 106, 40, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF6A28;
    font-size: 28px;
    transition: 0.4s ease;
}
.contact-info-card:hover .contact-icon {
    transform:
        rotate(8deg) scale(1.08);
    background: #FF6A28;
    color: #FFF;
}
.contact-info-card span {
    display: block;
    color: #bdbdbd;
    margin-bottom: 8px;
}
.contact-info-card a,
.contact-info-card p {
    color: #fff;
    font-size: 22px;
    transition: 0.4s ease;
}
.contact-info-card a:hover {
    color: #FF6A28;
}
.contact-social {
    display: flex;
    gap: 10px;
}
.contact-social a {
    width: 50px;
    height: 50px;
    border:
        1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s ease;
}
.contact-social a:hover {
    background: #FF6A28;
    color: #FFF;
    transform:
        translateY(-6px) rotate(8deg);
}
.contact-form-main {
    height: 100%;
    padding: 45px;
    border:
        2px solid rgba(255, 255, 255, 0.08);
    background: #0c0c0c;
}
.contact-input {
    margin-bottom: 30px;
}
.contact-input input,
.contact-input textarea {
    width: 100%;
    height: 60px;
    border: none;
    outline: none;
    background:
        rgba(255, 255, 255, 0.04);
    border: 1px solid transparent;
    color: #fff;
    transition: 0.4s ease;
}
.contact-input input {
    padding: 12px 25px 12px 45px;
}
.contact-input textarea {
    padding: 0 25px;
}
.contact-input textarea {
    height: 180px;
    padding-top: 22px;
    resize: none;
}
.contact-input input:focus,
.contact-input textarea:focus {
    border-color: #FF6A28;
}
.contact-input input::placeholder,
.contact-input textarea::placeholder {
    color: #bdbdbd;
}
.contact-input {
    position: relative;
}
.input-icon {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    color: #FF6A28;
    font-size: 25px;
    z-index: 2;
    transition: 0.4s ease;
}
/*-----------------------[ 15.Footer Section CSS ]------------------------*/
.onepage-footer {
    position: relative;
    overflow: hidden;
    padding-top: 120px;
    background: #08080D;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-marquee {
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    overflow: hidden;
    opacity: 0.05;
}
.footer-marquee h2 {
    white-space: nowrap;
    color: #fff;
    font-size: 140px;
    font-weight: 700;
    animation:
        marqueeMove 20s linear infinite;
}
.footer-flex {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    padding-bottom: 45px;
}
.footer-logo {
    font-family: var(--font-big);
    font-size: 28px;
    font-weight: 900;
    color: #FF6A28;
    letter-spacing: 2px;
    margin-bottom: 25px;
    text-transform: uppercase;
}
.footer-logo span {
    color: #FF6A28;
}
.footer-left {
    max-width: 380px;
}
.footer-left p {
    color: #bdbdbd;
    line-height: 32px;
    font-size: 18px;
    padding-top: 15px;
}
.footer-center ul {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.footer-center ul li a {
    color: #fff;
    font-size: 20px;
    transition: 0.4s ease;
}
.footer-center ul li a:hover {
    color: #FF6A28;
    padding-left: 10px;
}
.footer-right {
    text-align: right;
}
.footer-mail {
    color: #fff;
    font-size: 28px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 35px;
    transition: 0.4s ease;
}
.footer-mail:hover {
    color: #FF6A28;
}
.footer-social {
    display: flex;
    justify-content: end;
    gap: 14px;
}
.footer-social a {
    width: 56px;
    height: 56px;
    border:
        1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    transition: 0.4s ease;
}
.footer-social a:hover {
    background: #FF6A28;
    color: #FFF;
    transform:
        translateY(-6px) rotate(8deg);
}
.footer-bottom {
    padding: 30px 0;
    border-top:
        1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}
.footer-bottom p {
    color: #bdbdbd;
    font-size: 18px;
    line-height: 26px;
    text-align: center;
}
.footer-bottom p a {
    color: #FF6A28;
}
.footer-top-btn {
    width: 60px;
    height: 60px;
    background: #FF6A28;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: 0.4s ease;
}
.footer-top-btn:hover {
    transform:
        translateY(-8px);
    box-shadow:
        0 20px 40px rgba(255, 106, 40, 0.15);
}
@keyframes marqueeMove {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
/* ======== Bottom TO Top ===============*/
.scroll-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #FF6A28;
    border: 2px solid rgba(255, 106, 40, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-size: 24px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(40px);
    transition: all .4s ease;
    overflow: hidden;
}
.scroll-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.scroll-top:hover {
    transform: translateY(-8px) scale(1.08);
}
.scroll-top i {
    animation: arrowBounce 1.5s infinite;
    position: relative;
    z-index: 2;
}