/*
Theme Name:   GeneratePress Child
Theme URI:    https://generatepress.com/
Description:  A child theme for GeneratePress
Author:       Your Name
Author URI:   https://yourwebsite.com/
Template:     generatepress
Version:      1.0.0
Text Domain:  generatepress-child
*/


/* Add your custom styles below */

@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");
:root {
    --black: #000000;
    --orange: #fca311;
    --navyblue: #14213d;
    --gray-light: #e5e5e5;
    --transition-smooth: cubic-bezier(0.22, 1, 0.36, 1);
    --shadow-gold: 0 10px 40px -10px hsl(38 95% 52% / 0.45);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Jost", sans-serif !important;
}

a {
    text-decoration: none;
    display: inline-block;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li,
a {
    margin: 0;
}

.site-content {
    display: block;
}

html {
    scroll-behavior: smooth;
}

section{
    scroll-margin-top:70px;
}

.container {
    max-width: 1330px;
    margin: 0 auto;
    padding: 0 15px;
}

.main-navigation,
.main-navigation ul ul {
    background-color: transparent !important;
}

.site-header .inside-header {
    max-width: 1300px !important;
    margin: 0 auto;
    padding: 18px 15px;
    width: 100%;
}

.site-header .site-branding a {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin: 0;
}

.site-header .dot-start {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
    margin-right: 8px;
    position: relative;
    top: -2px;
}

.site-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-header .brand-dev {
    color: var(--orange);
    font-weight: 600;
}

.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 999;
    transition: all .3s ease;
}

.site-header.header-scrolled {
    background: radial-gradient(circle at top right, rgba(252, 163, 17, 0.08), transparent 40%), radial-gradient(circle at bottom left, rgba(252, 163, 17, 0.05), transparent 40%), linear-gradient(180deg, #0a0f1e 0%, #0e1628 100%);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.main-navigation .main-nav ul li a {
    color: var(--gray-light);
    font-size: 15px;
    font-weight: 400;
    line-height: normal !important;
    padding: 0 !important;
    transition: 0.2s all ease-in-out;
}

.main-navigation li {
    padding: 0 15px;
}

.main-navigation .main-nav ul li a:hover {
    color: var(--orange) !important;
}

.main-navigation .main-nav ul li a {
    position: relative;
    color: var(--gray-light);
    transition: color 0.3s var(--transition-smooth);
}

.main-navigation .main-nav ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 1px;
    background: var(--orange);
    transition: width 0.5s var(--transition-smooth);
}

.main-navigation .main-nav ul li a:hover {
    color: var(--orange);
}

.main-navigation .main-nav ul li a:hover::after {
    width: 100%;
}

.gp-icon svg {
	fill: var(--orange);
}

.portfolio-banner {
    background-color: var(--navyblue);
    padding: 50px 0;
}

.portfolio-banner .banner-grid {
    display: grid;
    align-items: center;
    grid-template-columns: 50% 45%;
    justify-content: space-between;
}

.portfolio-banner .portfolio-tagline {
    font-size: 12px;
    font-weight: 400;
    display: block;
    color: var(--gray-light);
    text-transform: uppercase;
}

.banner-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 700px;
}

.portfolio-banner h1 {
    font-size: 60px;
    font-weight: 500;
    color: var(--gray-light);
	opacity: 0;
    transform: translateY(40px);
    animation: fadeUp .8s ease forwards;
}

.portfolio-banner h1 span {
    color: var(--orange);
}

.portfolio-banner p {
    font-size: 16px;
    line-height: 25px;
    color: rgba(229, 229, 229, 0.75);
	opacity: 0;
    transform: translateY(40px);
    animation: fadeUp .8s ease forwards;
    animation-delay: .2s;
}

.portfolio-banner p span {
    color: #fff;
    font-weight: 600;
}

.portfolio-banner .site-links {
    display: flex;
    gap: 15px;
	opacity: 0;
    transform: translateY(40px);
    animation: fadeUp .8s ease forwards;
    animation-delay: .4s;
}

.portfolio-banner .site-links a {
    display: flex;
    gap: 5px;
    align-items: center;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatImg {
    0%,100%{
        transform: translateY(0);
    }

    50%{
        transform: translateY(-12px);
    }
}

.btn {
    color: var(--black);
    font-size: 16px;
    padding: 12px 30px;
    border: 1px solid var(--orange);
    border-radius: 100px;
    display: inline-block;
    min-width: 160px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn.btn--primary {
    background: linear-gradient(135deg, #fca311, #ffb703);
}

.btn.btn--primary:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(252, 163, 17, 0.45);
}

.site-links .btn.btn--primary svg {
    transition: transform 0.3s ease;
}

.site-links .btn.btn--primary:hover svg {
    transform: rotate(45deg);
}

img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

.btn.btn--secondary {
    background-color: transparent !important;
    border: 1px solid var(--gray-light);
    color: var(--gray-light);
}

.btn.btn--secondary:hover {
    border: 1px solid var(--orange);
    color: var(--orange);
}

.container.grid-container {
    width: 100%;
    max-width: 100%;
    padding: 0;
}

.portfolio-img {
    max-width: 100%;
    margin-left: auto;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
    radial-gradient(circle at 20% 30%,
    rgba(252,163,17,.08),
    transparent 35%);
    pointer-events: none;
    animation: moveGlow 12s ease-in-out infinite;
}

@keyframes moveGlow {
    0%,100%{
        transform: translate(0,0);
    }

    50%{
        transform: translate(80px,-40px);
    }
}

.typing-wrap {
    display: inline-block;
}

.typing-text {
    display: inline-block;
    color: var(--orange);
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid var(--orange);
    width: 0;
    animation:
        typing 4s steps(21) infinite,
        cursor .8s step-end infinite;
}

@keyframes typing {

    0% {
        width: 0;
    }

    40% {
        width: 100%;
    }

    60% {
        width: 100%;
    }

    100% {
        width: 0;
    }

}

@keyframes cursor {

    50% {
        border-color: transparent;
    }

}

.rotate-wrapper{
    display:inline-block;
    min-width:520px;
}

.rotate-text{
    color:var(--orange);
    border-right:3px solid var(--orange);
    padding-right:6px;
    white-space:nowrap;
    display:inline-block;
}


/* Wrapper */

.img-wrapper {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid rgba(252, 163, 17, 0.3);
    background: #1c2541;
}


/* GOLD GLOW (important part 🔥) */

.img-wrapper::before {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 6px;
    background: linear-gradient(135deg, #fca311, #c27c0e);
    opacity: 0.4;
    filter: blur(12px);
    z-index: 0;
}


/* Image */

.img-wrapper img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 15, 30, 0.7), transparent 50%);
    z-index: 2;
}

.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 999;
}

body {
    background: radial-gradient( circle at top right, rgba(252, 163, 17, 0.08), transparent 40%), radial-gradient( circle at bottom left, rgba(252, 163, 17, 0.05), transparent 40%), linear-gradient(180deg, #0a0f1e 0%, #0e1628 100%);
}

.portfolio-banner {
    background: transparent;
}


.hero-gallery{
    display:flex;
    gap:20px;
    height:650px;
    overflow:hidden;

    mask-image:linear-gradient(
        to bottom,
        transparent,
        #000 10%,
        #000 90%,
        transparent
    );
}

.gallery-col{
    flex:1;
    display:flex;
    flex-direction:column;
    gap:20px;
}
/* 
.gallery-col img{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:10px;
    display:block;
} */

.gallery-col img{
    width:100%;
    height:auto;
    object-fit:cover;
    object-position:top;
    border-radius:3px;
}

.col-up{
    animation:moveUp 10s linear infinite;
}

.col-down{
    animation:moveDown 10s linear infinite;
}

@keyframes moveUp{
    from{
        transform:translateY(0);
    }
    to{
        transform:translateY(calc(-50% - 10px));
    }
}

@keyframes moveDown{
    from{
        transform:translateY(calc(-50% - 10px));
    }
    to{
        transform:translateY(0);
    }
}

.stats {
    margin-bottom: 50px;
}

.statsgrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    background: rgba(10, 15, 30, 0.6);
    backdrop-filter: blur(10px);
}

.stat {
    padding: 40px 30px;
    text-align: left;
    position: relative;
    transition: 0.3s all ease-in-out;
    cursor: pointer;
}

.stat:hover {
    background-color: #171f2e;
}

.stat:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.stat h3 {
    font-size: 48px;
    font-weight: 600;
    color: var(--orange);
}

.stat p {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(229, 229, 229, 0.6);
    margin-top: 10px;
}

/* stats animation */

.statsgrid .stat{
    position: relative;
    overflow: hidden;
    transition: all .35s ease;
}

.statsgrid .stat:hover{
    transform: translateY(-8px);
}

.statsgrid .stat::before{
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: var(--orange);
    transition: .5s ease;
}

.statsgrid .stat:hover::before{
    left: 0;
}

.statsgrid .stat h3{
    position: relative;
    display: inline-block;
    transition: .35s ease;
}

.statsgrid .stat h3::after{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    background: var(--orange);
    border-radius: 50%;
    filter: blur(35px);
    opacity: 0;
    transform: translate(-50%, -50%);
    z-index: -1;
    transition: .35s ease;
}

.statsgrid .stat:hover h3{
    color: var(--orange);
    text-shadow: 0 0 20px rgba(252,163,17,.4);
}

.statsgrid .stat:hover h3::after{
    opacity: .15;
}

.statsgrid .stat p{
    transition: .35s ease;
}

.statsgrid .stat:hover p{
    color: rgba(255,255,255,.9);
}

.statsgrid{
    position: relative;
}

.statsgrid::before{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 28px;
    padding: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(252,163,17,.5),
        transparent
    );
    background-size: 300% 100%;
    animation: statsBorder 6s linear infinite;

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;
    mask-composite: exclude;

    pointer-events: none;
}

@keyframes statsBorder{

    0%{
        background-position: 0% 50%;
    }

    100%{
        background-position: 300% 50%;
    }

}

/* image zoom */

.about-img{
    overflow:hidden;
}

.about-img img{
    transition:.6s ease;
}

.about-img:hover img{
    transform:scale(1.05);
}

/* available pulse */

.meta-status{
    animation:pulseText 2s infinite;
}

@keyframes pulseText{
    0%,100%{
        opacity:1;
    }
    50%{
        opacity:.5;
    }
}

/* stats cards */

.info-box{
    position:relative;
    overflow:hidden;
    transition:.35s ease;
}

.info-box:hover{
    transform:translateY(-8px);
    border-color:var(--orange);
    box-shadow:0 15px 40px rgba(252,163,17,.12);
}

.info-box::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:2px;
    background:var(--orange);
    transition:.5s;
}

.info-box:hover::before{
    left:0;
}

/* heading */

.about-content .home-heading{
    position:relative;
}

.about-content .home-heading::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-12px;
    width:80px;
    height:2px;
    background:var(--orange);
}

/* current role */

.about-current{
    transition:.3s ease;
}

.about-current:hover{
    padding-left:10px;
}

.about-current:hover p{
    color:var(--orange);
}

/* image frame glow */

.about-frame{
    transition:.4s ease;
}

.about-frame:hover{
    box-shadow:0 0 35px rgba(252,163,17,.18);
}

.about-us-wrap{
    position:relative;
}

.about-us-wrap::before{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    background:rgba(252,163,17,.08);
    border-radius:50%;
    filter:blur(100px);
    top:120px;
    left:100px;
    pointer-events:none;
}

/* smooth reveal ready */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all .8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.skills-wrap {
    padding: 30px 0;
}

.skills-wrap .skills {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.skills-wrap .marquee {
    display: flex;
    gap: 50px;
    width: 100%;
    overflow: hidden;
}

.skills-wrap .track {
    display: flex;
    gap: 50px;
    white-space: nowrap;
    animation: scroll 25s linear infinite;
}

.skills-wrap .track span {
    font-size: 30px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
}

.skills-wrap .track span b {
    color: var(--orange);
    margin-left: 8px;
}

/* about-us css */

.about-us-wrap {
    padding: 60px 0;
    background: #fffbfb;
    overflow: hidden;
}

.about-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
}

.about-label {
    position: relative;
    padding-left: 60px;
}

.about-label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 1px;
    background: var(--orange);
}

.about-label,
.about-count {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(20, 33, 61, 0.7);
}

.about-grid {
    display: grid;
    grid-template-columns: 35% 60%;
    justify-content: space-between;
    align-items: start;
    gap: 50px;
}

.about-frame {
    position: relative;
    border: 1px solid var(--orange);
    padding: 12px;
}

.about-img img {
    width: 100%;
    height: 540px;
    object-fit: cover;
/*     filter: grayscale(100%); */
}

.about-img {
    position: relative;
}

.about-card {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    background: var(--navyblue);
    padding: 15px 25px 18px 25px;
    min-height: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-meta {
	display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.craft-badge {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: #091224;
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255,255,255,0.08);
}

.meta-name h4 {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 3px;
}

.meta-name p {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
}

.meta-status {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
}

.home-heading {
    font-size: 48px;
    line-height: 1;
    color: var(--black);
    font-weight: 500;
    max-width: 600px;
    margin-bottom: 30px;
}

.home-heading span {
    color: var(--orange);
}

.about-text {
    border-top: 1px solid rgba(20, 33, 61, 0.12);
    padding-top: 30px;
}

.about-text p {
    font-size: 18px;
    line-height: 1.9;
    color: rgba(20, 33, 61, 0.78);
}

.about-text p:not(:last-child) {
    margin-bottom: 15px;
}

.about-text strong {
    color: var(--navyblue);
    font-weight: 600;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 45px;
}

.info-box {
    border: 1px solid rgba(20, 33, 61, 0.15);
    padding: 28px;
    transition: 0.3s ease;
    background: transparent;
}

.info-box:hover {
    transform: translateY(-4px);
    border-color: var(--orange);
}

.info-icon {
    display: inline-block;
    color: var(--orange);
    font-size: 18px;
    margin-bottom: 22px;
}

.info-box h3 {
    font-size: 34px;
    color: var(--navyblue);
    margin-bottom: 6px;
    font-weight: 600;
}

.info-box p {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(20, 33, 61, 0.45);
}

.about-current {
    margin-top: 35px;
    padding-top: 23px;
    border-top: 1px solid rgba(20, 33, 61, 0.12);
}

.about-current b {
	color:var(--orange)
}

.about-current span {
    display: block;
    margin-bottom: 10px;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(20, 33, 61, 0.45);
}

.about-current p {
    font-size: 18px;
    color: var(--navyblue);
    font-weight: 500;
}

/* services css */

.services-wrap {
    padding: 60px 0;
    background: transparent;
}

.services-wrap .about-label,
.services-wrap .about-count {
    color: rgba(229, 229, 229, 0.7);
}

.service-head {
    margin-bottom: 35px;
}

.service-head .home-heading {
	color:#fff;
}

.service-head h2 span {
    font-style: italic;
}

.service-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-light);
    font-size: 14px;
    transition: 0.3s ease;
}

.service-link:hover {
    color: var(--orange);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    overflow: hidden;
    background: rgba(10, 15, 30, 0.55);
    backdrop-filter: blur(10px);
}

.service-card {
    padding: 32px;
    min-height: auto;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.3s ease;
    background: transparent;
	cursor:pointer;
}

.service-card:nth-child(2n) {
    border-right: none;
}

.service-card:nth-last-child(-n+2) {
    border-bottom: none;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.02);
}

.service-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.service-count {
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    flex-shrink: 0;
}

.service-icon svg {
    width: 18px;
    height: 18px;
}

.service-count p {
    font-size: 14px;
    color: rgba(229, 229, 229, 0.6);
}

.service-arrow {
    color: rgba(229, 229, 229, 0.25);
    transition: 0.3s ease;
}

.service-card:hover .service-arrow {
    color: var(--orange);
    transform: translate(3px, -3px);
}

.service-content h3 {
    font-size: 22px;
    color: var(--gray-light);
    margin-bottom: 18px;
    font-weight: 500;
}

.service-content p {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(229, 229, 229, 0.68);
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.service-tags span {
    padding: 7px 14px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 11px;
    color: rgba(229, 229, 229, 0.7);
    transition: 0.3s ease;
}

.service-card:hover .service-tags span {
    border-color: rgba(252, 163, 17, 0.35);
    color: #fff;
}

.expertise-wrap {
    padding: 60px 0;
    background: #fffbfb;
}

.expertise-grid {
    display: grid;
    grid-template-columns: 38% 52%;
    justify-content: space-between;
    gap: 50px;
    align-items: start;
}

.expertise-content .about-top {
    margin-bottom: 20px;
}

.expertise-content p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(20, 33, 61, 0.75);
    max-width: 520px;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-content: flex-start;
}

.expertise-tags span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 100px;
    border: 1px solid rgba(20, 33, 61, 0.15);
    background: #fff;
    color: rgba(20, 33, 61, 0.85);
    font-size: 16px;
    transition: 0.3s ease;
    cursor: pointer;
}

.expertise-tags span::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--orange);
    transition: 0.3s ease;
}

.expertise-tags span:hover {
    background: var(--navyblue);
    border-color: var(--orange);
    color: #fff;
    box-shadow: var(--shadow-gold);
}

.expertise-tags span:hover::before {
    transform: scale(1.5);
}

.experience-wrap {
    padding: 60px 0;
    background: transparent;
}

.experience-heading {
    color: #fff;
    margin-bottom: 45px;
    max-width: 850px;
}

.experience-heading span {
    font-style: italic;
    font-weight: 300;
}

.experience-list {
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    overflow: hidden;
    background: rgba(10, 15, 30, 0.55);
    backdrop-filter: blur(10px);
}

.experience-card {
    display: grid;
    grid-template-columns: 28% 65%;
    justify-content: space-between;
    gap: 40px;
    padding: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: 0.3s ease;
}

.experience-card:last-child {
    border-bottom: none;
}

.experience-card:hover {
    background: rgba(255,255,255,0.02);
}

.experience-date {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 18px;
}

.experience-left h3 {
    font-size: 32px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 8px;
}

.experience-left p {
    font-size: 14px;
    color: rgba(229,229,229,0.5);
}

.experience-right h4 {
    font-size: 28px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 22px;
}

.experience-right ul {
    list-style: none;
}

.experience-right ul li {
    position: relative;
    padding-left: 24px;
    font-size: 17px;
    line-height: 1.8;
    color: rgba(229,229,229,0.72);
}

.experience-right ul li:not(:last-child) {
    margin-bottom: 14px;
}

.experience-right ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    width: 12px;
    height: 1px;
    background: var(--orange);
}

.experience-wrap .about-label {
	color: rgba(229, 229, 229, 0.7);
}

.reviews-wrap {
    padding: 60px 0;
    background: transparent;
    overflow: hidden;
}

.reviews-wrap .about-label {
    color: rgba(229,229,229,0.7);
}

.reviews-heading {
    color: #fff;
    max-width: 850px;
    margin-bottom: 45px;
}

.reviews-slider {
    overflow: visible;
}

.review-card {
    height: 100%;
    padding: 30px 25px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(10, 15, 30, 0.55);
    backdrop-filter: blur(10px);
    transition: 0.3s ease;
	min-height:340px;
}

.review-card:hover {
    transform: translateY(-6px);
    border-color: rgba(252,163,17,0.25);
}

.review-stars {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--orange);
    margin-bottom: 22px;
}

.review-stars svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.review-text {
    font-size: 16px;
    line-height: 1.9;
    color: rgba(229,229,229,0.72);
    margin-bottom: 35px;
}

.review-user {
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.review-user h4 {
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 6px;
}

.review-user span {
    font-size: 14px;
    color: rgba(229,229,229,0.5);
}

.review-pagination {
    position: relative;
    margin-top: 35px;
    text-align: center;
}

.review-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.25);
    opacity: 1;
    transition: 0.3s ease;
}

.review-pagination .swiper-pagination-bullet-active {
    background: var(--orange);
    width: 28px;
    border-radius: 100px;
}

/* contact css */

.contact-wrap {
    padding: 70px 0 0;
    position: relative;
    overflow: hidden;
}

.contact-wrap::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(252, 163, 17, 0.08);
    filter: blur(90px);
}

.contact-wrap::after {
    content: "";
    position: absolute;
    bottom: -120px;
    left: 20%;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(252, 163, 17, 0.05);
    filter: blur(90px);
}

.contact-grid {
    display: grid;
    grid-template-columns: 58% 32%;
    justify-content: space-between;
    align-items: end;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.contact-heading {
    color: #fff;
    margin-bottom: 30px;
}

.contact-heading em {
    font-style: italic;
    font-weight: 300;
    color: rgba(255,255,255,0.45);
}

.contact-content p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(229,229,229,0.7);
    max-width: 620px;
    margin-bottom: 40px;
}

.contact-content .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.contact-content .btn svg {
    transition: 0.3s ease;
}

.contact-content .btn:hover svg {
    transform: rotate(45deg);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.contact-item span {
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item a,
.contact-item p {
    font-size: 15px;
    color: rgba(229,229,229,0.72);
    transition: 0.3s ease;
}

.contact-item a:hover {
    color: var(--orange);
}

.contact-bottom {
    margin-top: 70px;
    padding: 22px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.contact-bottom p,
.contact-bottom a {
    font-size: 13px;
    color: rgba(229,229,229,0.45);
}

.contact-bottom a:hover {
    color: var(--orange);
}

.bottom-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.contact-wrap .about-label {
    color: rgba(229,229,229,0.7);
}

.site-footer {
	display:none;
}

/* projects */

.projects-wrap {
    padding: 60px 0;
    background: #fffbfb;
}

.projects-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
}

.projects-head .home-heading {
	margin-bottom:0;
} 

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--navyblue);
    transition: 0.3s ease;
}

.project-link:hover {
    color: var(--orange);
}

.project-link svg {
    width: 14px;
    height: 14px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.project-card {
    position: relative;
    padding: 20px;
    border-radius: 4px;
    border: 1px solid rgba(20,33,61,0.12);
    background: #fff;
    overflow: hidden;
    transition: 0.35s ease;
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(20,33,61,0.08);
    border-color: rgba(252,163,17,0.35);
}

.project-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 25px;
    background: #0b132b;
}

.project-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.project-card:hover .project-thumb img {
    transform: scale(1.04);
}

.project-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    border-radius: 100px;
    border: 1px solid rgba(252,163,17,0.35);
    background: rgba(252,163,17,0.08);
    color: #c77700;
    font-size: 11px;
    margin-bottom: 18px;
}

.project-content h3 {
    font-size: 32px;
    line-height: 1.1;
    color: var(--navyblue);
    margin-bottom: 12px;
}

.project-tech {
    font-size: 13px;
    color: rgba(20,33,61,0.55);
    margin-bottom: 14px;
}

.project-text {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(20,33,61,0.72);
}

.project-arrow {
    position: absolute;
    right: 20px;
    bottom: 22px;
    color: rgba(20,33,61,0.25);
    transition: 0.3s ease;
	display:none;
}

.project-arrow svg {
    width: 24px;
    height: 24px;
}

.project-card:hover .project-arrow {
    color: var(--orange);
    transform: translate(3px, -3px);
}

/* project framer section */

.project-framer-main {
	background: #fffbfb;
}

.projects-framer{
    background: #fffbfb;
}

.projects-framer .project-slide{
    height:100vh;
    position:sticky;
    top:0;
    display:grid;
    grid-template-columns:50% 45%;
    align-items:center;
	justify-content:space-between;
    padding:40px 20px;
    background:#f5f5f5;
}

.projects-framer .project-slide:nth-child(1){
    z-index:1;
}

.projects-framer .project-slide:nth-child(2){
    z-index:2;
}

.projects-framer .project-slide:nth-child(3){
    z-index:3;
}

.projects-framer .project-slide:nth-child(4){
    z-index:4;
}

.projects-framer .project-slide:nth-child(5){
    z-index:5;
}

.projects-framer .project-content{
    max-width:650px;
}

.projects-framer .project-number{
    width:90px;
    height:90px;
    border-radius:50%;
    background:#1b1b1b;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    margin-bottom:40px;
}

.projects-framer .project-tag{
    display:inline-block;
    padding:12px 22px;
    border:1px solid #d7b06a;
    border-radius:50px;
    margin-bottom:25px;
}

.projects-framer .project-content h2{
    margin-bottom:30px;
    color:var(--black);
}

.projects-framer .project-content p{
    font-size:18px;
    line-height:1.8;
    color:#666;
    margin-bottom:40px;
}

.projects-framer .project-btn{
    display:inline-flex;
    padding:18px 34px;
    border:1px solid #111;
    border-radius:60px;
    text-decoration:none;
    color:var(--black);
}

.projects-framer .project-image{
    display:flex;
    justify-content:center;
}

.projects-framer .project-image img{
    width:100%;
    max-width:900px;
    border-radius:20px;
    display:block;
}

.project-framer-main {
	padding:60px 0;
} 

.main-navigation .main-nav ul li:not([class*="current-menu-"]):hover > a, .main-navigation .main-nav ul li:not([class*="current-menu-"]):focus > a, .main-navigation .main-nav ul li.sfHover:not([class*="current-menu-"]) > a, .main-navigation .menu-bar-item:hover > a, .main-navigation .menu-bar-item.sfHover > a {
    color: var(--orange) !important;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-75%);
    }
}

.review-card{
    background: rgba(10,15,30,.55);
    border:1px solid rgba(255,255,255,.08);
    transition:.4s ease;
}

.review-card .review-stars{
    color:#FCA311;
}

.review-card .review-text{
    color:rgba(255,255,255,.75);
}

.review-card .review-user h4{
    color:#fff;
}

.review-card .review-user span{
    color:rgba(255,255,255,.55);
}

/* ORANGE REVIEW CARD */

.orange-review .review-card{
    background:var(--orange);
    border-color:var(--orange);
}

.orange-review .review-stars{
    color:var(--navyblue);
}

.orange-review .review-text{
    color:var(--navyblue);
}

.orange-review .review-user{
    border-top:1px solid rgba(20,33,61,.15);
}

.orange-review .review-user h4{
    color:var(--navyblue);
}

.orange-review .review-user span{
    color:var(--navyblue);
}

@media (max-width: 1024px) {
    .portfolio-banner h1 {
        font-size: 40px;
    }
    .skills-wrap {
        padding: 20px 0;
    }
    .skills-wrap .marquee {
        gap: 30px;
    }
    .skills-wrap .track {
        gap: 30px;
    }
    .skills-wrap .track span {
        font-size: 24px;
    }
	
	.about-us-wrap {
        padding: 40px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .home-heading {
        font-size: 36px;
        max-width: 100%;
    }

    .about-img img {
        height: auto;
    }
	
	 .expertise-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
	
	.experience-card {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .experience-left h3 {
        font-size: 26px;
    }

    .experience-right h4 {
        font-size: 24px;
    }
	
	 .project-content h3 {
        font-size: 26px;
    }
	
	.projects-wrap {
		display:block !important;
	}
	
	.project-framer-main {
		display:none;
	}
}

@media (max-width: 768px) {
    .portfolio-banner p {
        font-size: 14px;
        line-height: 23px;
    }
    .portfolio-banner .banner-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .portfolio-banner h1 {
        font-size: 28px;
    }
/*     .portfolio-img {
        max-width: 500px;
        margin: 0 auto;
    } */
    .banner-content {
        gap: 15px;
        max-width: 100%;
    }
    .stats {
        margin-bottom: 30px;
    }
    .portfolio-banner {
        padding: 30px 0;
    }
    .statsgrid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stat {
        padding: 25px 20px;
        border-right: none;
        text-align: center;
    }
    .stat h3 {
        font-size: 30px;
    }
    .stat:not(:last-child) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        border-right: none;
    }
	
	.about-top {
        margin-bottom: 20px;
    }

    .home-heading {
        font-size: 28px;
    }

    .about-text p {
        font-size: 14px;
        line-height: 1.6;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .about-card {
        position: relative;
        width: 100%;
        left: 0;
        bottom: 0;
    }
	
	.services-wrap {
        padding: 40px 0;
    }

    .service-head {
        margin-bottom: 25px;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        border-right: none;
        padding: 25px;
        min-height: auto;
    }

    .service-card:nth-last-child(-n+2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .service-card:last-child {
        border-bottom: none;
    }

    .service-content p {
        font-size: 14px;
        line-height: 1.7;
    }
	
	.expertise-wrap {
        padding: 40px 0;
    }

    .expertise-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    .expertise-tags {
        gap: 10px;
    }

    .expertise-tags span {
        font-size: 14px;
        padding: 10px 18px;
    }
	
	.experience-wrap {
        padding: 40px 0;
    }

    .experience-heading {
        margin-bottom: 30px;
    }

    .experience-card {
        padding: 25px;
        gap: 20px;
    }

    .experience-left h3 {
        font-size: 22px;
    }

    .experience-right h4 {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .experience-right ul li {
        font-size: 14px;
        line-height: 1.7;
    }
	
	.reviews-wrap {
        padding: 40px 0;
    }

    .reviews-heading {
        margin-bottom: 30px;
    }

    .review-card {
        padding: 25px;
    }

    .review-text {
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 25px;
    }
	
	.contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-heading {
        font-size: 58px;
    }
	
	  .contact-wrap {
        padding: 40px 0 0;
    }

	.contact-heading {
        margin-bottom: 20px;
    }

    .contact-content p {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 25px;
    }

    .contact-info {
        gap: 18px;
    }

    .contact-item {
        align-items: flex-start;
    }

    .contact-item a,
    .contact-item p {
        font-size: 14px;
        line-height: 1.6;
    }

    .contact-bottom {
        margin-top: 40px;
        padding: 18px 0;
        flex-direction: column;
        text-align: center;
    }

    .bottom-links {
        flex-direction: column;
        gap: 10px;
    }
	
	 .projects-wrap {
        padding: 40px 0;
    }

    .projects-head {
        margin-bottom: 30px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .project-card {
        padding: 16px;
    }

    .project-content {
        padding-right: 0;
    }

    .project-content h3 {
        font-size: 22px;
    }

    .project-text {
        font-size: 14px;
        line-height: 1.7;
    }

    .project-link {
        display: none;
    }
	
	.main-navigation .main-nav ul li a {
		display: inline-block;
	} 
	
	.site-header .inside-header {
		padding:8px 15px;
	}
	
	.main-navigation.toggled .main-nav li {
		padding:0;
		padding-bottom:10px;
	}
	
	.main-navigation.toggled .main-nav li:last-child {
		padding:0;
		padding-bottom:0;
	}
	
	.has-inline-mobile-toggle #site-navigation.toggled {
    	margin-top: 0;
	}
	
	.main-nav ul li{
        opacity:0;
        transform:translateY(40px);
        animation:none;
    }

    #site-navigation.toggled .main-nav ul li{
        animation:menuSlideUp .5s ease forwards;
    }

    #site-navigation.toggled .main-nav ul li:nth-child(1){
        animation-delay:.05s;
    }

    #site-navigation.toggled .main-nav ul li:nth-child(2){
        animation-delay:.10s;
    }

    #site-navigation.toggled .main-nav ul li:nth-child(3){
        animation-delay:.15s;
    }

    #site-navigation.toggled .main-nav ul li:nth-child(4){
        animation-delay:.20s;
    }

    #site-navigation.toggled .main-nav ul li:nth-child(5){
        animation-delay:.25s;
    }

    #site-navigation.toggled .main-nav ul li:nth-child(6){
        animation-delay:.30s;
    }

    #site-navigation.toggled .main-nav ul li:nth-child(7){
        animation-delay:.35s;
    }
	
	.rotate-wrapper{
        min-width:0;
        max-width:100%;
        display:block;
    }

    @keyframes menuSlideUp{
        from{
            opacity:0;
            transform:translateY(40px);
        }
        to{
            opacity:1;
            transform:translateY(0);
        }
    }
	
	.review-card {
		min-height:auto;
	}
}

@media (max-width: 480px) {
    .statsgrid {
        grid-template-columns: repeat(1, 1fr);
    }
	
	.portfolio-banner .site-links {
		flex-wrap:wrap;
	}
	
	.portfolio-banner .site-links a {
		width:100%;
		justify-content:center;
	}
}