/*------------------------------------------------------------------
Project: John Roxton 
Last change: 21/05/2026
Primary use:
------------------------------------------------------------------ */
/*-----------------------[Table of contents]------------------------
1.Default CSS
2.Preloader CSS
3.Whole Page Aniamtion CSS 
4.Dark Light Mode toggle CSS
5.Button CSS
6.Header CSS
7.Section One CSS
8.Grid Menu CSS
9.About Section CSS
10.Services Section CSS
11.Single Service Section CSS
12.Resume Section CSS
13.Process Section CSS
14.Portfolio Section CSS
15.Single Portfolio Section CSS
16.Pricing Section CSS
17.Blog Section CSS
18.Single Blog Section
19.Contact Section
20.404 Page Section
------------------------------------------------------------------ */
/*-----------------------[ 1.Default CSS ]------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-style: normal;
    font-family: "Outfit", sans-serif;
}
html {
    scroll-behavior: smooth;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}
a {
    text-decoration: none;
}
dl,
ol,
ul {
    margin-top: 0;
    margin-bottom: 0rem;
}
ul {
    padding-left: 0;
}
ul li {
    list-style: none;
}
button {
    border: none;
}
::-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 {
    background: var(--primary-color);
    transition:
        background-color .5s ease,
        color .5s ease,
        border-color .5s ease,
        box-shadow .5s ease,
        transform .5s ease,
        opacity .5s ease;
}
:root {
    --primary-color: #FFFFFF;
    --second-color: #000000;
    --third-color: #E5E5E5;
    --four-color: #F3F3F3;
    --text-color: #000000;
    --sub-text: #515151;
    --icon-filter: brightness(0) saturate(100%) invert(32%) sepia(1%) saturate(3409%) hue-rotate(357deg) brightness(88%) contrast(83%);
    --Img-filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(22%) hue-rotate(43deg) brightness(93%) contrast(105%);
    --check-box: brightness(0) saturate(100%) invert(100%) sepia(6%) saturate(26%) hue-rotate(234deg) brightness(107%) contrast(110%);
    --marquee-bg: #000000;
    --box-text: #C4C4C4;
    --award-img: brightness(0) saturate(100%) invert(95%) sepia(0%) saturate(4039%) hue-rotate(195deg) brightness(86%) contrast(84%);
    --box-blog: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(49deg) brightness(103%) contrast(103%);
    --InputBox: #F5F6F7;
}
.dark-mode {
    --primary-color: #000000;
    --second-color: #303030;
    --third-color: #303030;
    --four-color: #242424;
    --text-color: #FFFFFF;
    --sub-text: #C4C4C4;
    --icon-filter: brightness(0) saturate(100%) invert(73%) sepia(3%) saturate(24%) hue-rotate(320deg) brightness(106%) contrast(96%);
    --Img-filter: brightness(0) saturate(100%) invert(100%) sepia(6%) saturate(26%) hue-rotate(234deg) brightness(107%) contrast(110%);
    --check-box: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(22%) hue-rotate(43deg) brightness(93%) contrast(105%);
    --marquee-bg: #242424;
    --box-text: #666666;
    --award-img: brightness(0) saturate(100%) invert(40%) sepia(4%) saturate(4%) hue-rotate(106deg) brightness(98%) contrast(92%);
    --box-blog: brightness(0) saturate(100%) invert(0%) sepia(17%) saturate(4420%) hue-rotate(218deg) brightness(78%) contrast(97%);
    --InputBox: #1A1A1A;
}
/*-----------------------[ 2.Preloader CSS ]------------------------*/
.loader-wrapper {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    overflow: hidden;
    background: #000;
}
.slide {
    position: relative;
    width: 20%;
    height: 100%;
    transform: translateY(100%);
    animation: slideUp 1.8s cubic-bezier(.77, 0, .18, 1) forwards;
    overflow: hidden;
}
.slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top,
            rgba(255, 255, 255, 0.25),
            transparent 60%);
    mix-blend-mode: overlay;
}
.slide::after {
    content: "";
    position: absolute;
    top: 0;
    right: -50px;
    width: 100px;
    height: 100%;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.35),
            transparent);
    filter: blur(15px);
}
.slide1 {
    background: #f4f4f4;
    animation-delay: 0s;
}
.slide2 {
    background: #FBBA42;
    animation-delay: 0.15s;
}
.slide3 {
    background: #1f1f1f;
    animation-delay: 0.3s;
}
.slide4 {
    background: #ffffff;
    animation-delay: 0.45s;
}
.slide5 {
    background: #FBBA42;
    animation-delay: 0.6s;
}
.loader-content {
    position: absolute;
    inset: 0;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}
.loader-title {
    display: flex;
    overflow: hidden;
}
.loader-title span {
    font-size: 120px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 10px;
    transform: translateY(180px);
    display: inline-block;
    opacity: 0;
    animation: textReveal 1s ease forwards;
}
.loader-title span:nth-child(1) {
    animation-delay: 0.3s;
}
.loader-title span:nth-child(2) {
    animation-delay: 0.4s;
}
.loader-title span:nth-child(3) {
    animation-delay: 0.5s;
}
.loader-title span:nth-child(4) {
    animation-delay: 0.6s;
}
.loader-title span:nth-child(5) {
    animation-delay: 0.7s;
}
.loader-title span:nth-child(6) {
    animation-delay: 0.8s;
}
.loader-subtitle {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    letter-spacing: 8px;
    text-transform: uppercase;
    animation: pulse 1.5s infinite;
}
@keyframes slideUp {
    0% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(-100%);
    }
}
@keyframes textReveal {
    0% {
        transform: translateY(180px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes pulse {
    0%,
    100% {
        opacity: 0.4;
    }
    50% {
        opacity: 1;
    }
}
.loader-wrapper.hide-loader {
    animation: hideLoader 1s ease forwards;
}
@keyframes hideLoader {
    0% {
        opacity: 1;
        visibility: visible;
    }
    100% {
        opacity: 0;
        visibility: hidden;
    }
}
/*-----------------------[ 3.Whole Page Aniamtion CSS ]------------------------*/
.fade_up,
.fade_down,
.zoom_in,
.zoom_out {
    opacity: 0;
    transition: all 2s;
}
.fade_up {
    transform: translateY(-100%);
}
.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);
}
/*-----------------------[ 4.Dark Light Mode toggle CSS ]------------------------*/
.theme-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    position: fixed;
    right: 30px;
    top: 25px;
    z-index: 100;
}
.theme-wrapper span {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    transition: .4s;
    color: var(--text-color);
}
.theme-toggle {
    width: 60px;
    height: 32px;
    background: var(--second-color);
    border-radius: 100px;
    position: relative;
    cursor: pointer;
    padding: 4px;
    transition: .4s;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.toggle-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 4px;
    top: 4px;
    transition: .5s cubic-bezier(.68, -0.55, .27, 1.55);
}
.theme-toggle i {
    font-size: 20px;
}
body.dark-mode .toggle-circle {
    left: 32px;
}
.sun-icon,
.moon-icon {
    color: #FBBA42;
}
/*-----------------------[ 5.Button CSS ]------------------------*/
.button-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--3, #FBBA42);
    padding: 12px 24px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    transition: 0.45s ease;
    transform: perspective(500px) rotateX(0deg);
}
.button-main span {
    position: relative;
    z-index: 2;
    transition: 0.4s ease;
}
.button-main::before,
.button-main::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--text-color);
    transition: 0.45s ease;
}
.button-main::before {
    left: 0;
    top: 0;
}
.button-main::after {
    right: 0;
    bottom: 0;
}
.button-main span::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background:
        linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.7),
            transparent);
    transform: skewX(-25deg);
    transition: 0.7s ease;
}
.button-main:hover {
    background: var(--text-color);
    color: var(--primary-color);
}
.button-main:hover::before {
    top: calc(100% - 10px);
    left: calc(100% - 10px);
    background: #fbba42;
}
.button-main:hover::after {
    bottom: calc(100% - 10px);
    right: calc(100% - 10px);
    background: #fbba42;
}
.button-main:hover span::before {
    left: 140%;
}
.button-main:active {
    transform: scale(0.96);
}
/*-----------------------[ 6.Header CSS ]------------------------*/
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px 0 20px;
    position: fixed;
    top: 0;
    z-index: 100;
}
.blur-effect-bottom {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    z-index: 5;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    -webkit-mask: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(black)) add;
    -webkit-mask: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, black 100%) add;
    mask: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(black)) add;
    mask: linear-gradient(0deg, rgba(0, 0, 0, 0.008) 0%, black 100%) add;
}
.menu-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: #FBBA42;
    z-index: 99999;
    cursor: pointer;
    transition: 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 7px;
}
.menu-btn span {
    width: 24px;
    height: 2px;
    background: #FFF;
    transition: 0.4s ease;
    display: block;
    border-radius: 5px;
}
.menu-btn.active {
    background: var(--text-color);
}
.menu-btn.active span {
    background: var(--primary-color);
}
.menu-btn.active span:nth-child(1) {
    transform: rotate(47deg) translate(6px, 4px);
}
.menu-btn.active span:nth-child(2) {
    transform: rotate(-50deg) translate(2px, 0px);
}
.side-menu {
    position: absolute;
    top: 60px;
    left: -120px;
    width: 180px;
    background: #fff;
    border: 2px solid var(--text-color);
    z-index: 99;
    height: auto;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    overflow: hidden;
}
.side-menu.active {
    left: 20px;
    opacity: 1;
    visibility: visible;
    transform: translateX(0) scale(1);
}
.side-menu ul li {
    opacity: 0;
    transform: translateX(-25px);
    transition: 0.4s ease;
}
.side-menu.active ul li {
    opacity: 1;
    transform: translateX(0);
}
.side-menu.active ul li:nth-child(1) {
    transition-delay: 0.08s;
}
.side-menu.active ul li:nth-child(2) {
    transition-delay: 0.16s;
}
.side-menu.active ul li:nth-child(3) {
    transition-delay: 0.24s;
}
.side-menu.active ul li:nth-child(4) {
    transition-delay: 0.32s;
}
.side-menu.active ul li:nth-child(5) {
    transition-delay: 0.40s;
}
.side-menu.active ul li:nth-child(6) {
    transition-delay: 0.48s;
}
.side-menu.active ul li:nth-child(7) {
    transition-delay: 0.56s;
}
.side-menu.active ul li:nth-child(8) {
    transition-delay: 0.64s;
}
.side-menu.active ul li:nth-child(9) {
    transition-delay: 0.72s;
}
.side-menu.active ul li:nth-child(10) {
    transition-delay: 0.80s;
}
.side-menu ul li a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    padding: 12px;
    color: #000;
    font-size: 18px;
    font-weight: 500;
    transition: 0.3s ease;
}
.side-menu ul li a:hover {
    background: #FBBA42;
}
.side-menu ul li a:hover {
    padding-left: 18px;
}
.side-menu ul li a.active{
    background: #FBBA42;
}
/*-----------------------[ 7.Section One CSS ]------------------------*/
.big-text {
    padding-top: 60px;
}
.big-text span {
    -webkit-text-stroke: 2px var(--third-color);
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-family: 'Erica One', sans-serif;
    font-size: 170px;
    line-height: 180px;
    font-weight: 800;
    text-transform: uppercase;
}
.big-text .first,
.big-text .second {
    display: flex;
    align-items: center;
}
.big-text .first img,
.big-text .second img {
    animation: floatRotate 40s infinite linear;
}
.big-text .first {
    gap: 150px;
}
.big-text .second {
    justify-content: center;
    gap: 20px;
}
@keyframes floatRotate {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.hero-img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}
.hero-img img {
    height: 82vh;
    object-fit: contain;
}
.left-content {
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: 20;
}
.left-content p {
    color: var(--sub-text);
    font-size: 18px;
    line-height: 32px;
    font-weight: 400;
}
.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}
.social-icons a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--four-color);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .4s ease;
}
.social-icons a img {
    filter: var(--icon-filter);
    transition: all .4s ease;
    z-index: 2;
}
.social-icons a::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #FBBA42;
    transform: scale(0);
    border-radius: 50%;
    transition: all .4s ease;
}
.social-icons a:hover::before {
    transform: scale(1);
}
.social-icons a:hover {
    transform: translateY(-8px);
}
.social-icons a:hover img {
    transform: scale(1.1);
    filter: brightness(0) invert(1);
}
.right-content {
    position: absolute;
    right: 0;
    bottom: 43%;
    right: 0;
    transform: translateY(100%);
    z-index: 20;
    max-width: 320px;
}
.right-content p {
    margin-bottom: 35px;
    color: var(--sub-text);
    font-size: 20px;
    line-height: 36px;
    font-weight: 400;
}
.hero-section .container {
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}
.hello-text p {
    position: absolute;
    left: 15px;
    top: 140px;
    z-index: 15;
    color: #FBBA42;
    text-align: center;
    font-size: 36px;
    font-weight: 500;
    transform: rotate(-30deg) scale(1, 1);
    animation: float 4s ease-in-out infinite;
}
@keyframes float {
    0%,
    100% {
        transform: rotate(-30deg) translateY(0px);
    }
    50% {
        transform: rotate(-30deg) translateY(-15px);
    }
}
.chkxImg {
    position: fixed;
    bottom: 0;
    right: 0;
    filter: var(--Img-filter);
}
.circulart-text-main {
    background: #FFF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 180px;
    height: 180px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}
.circular-arrow {
    width: 120px;
    height: 120px;
    background: #FFF;
    border-radius: 50%;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
}
.circular-text {
    fill: #FBBA42;
    letter-spacing: 2px;
    width: 175px;
    height: 175px;
    font-size: 19px;
    font-weight: 600;
    line-height: 24px;
    animation: 14s linear infinite rotateText;
    z-index: -1;
}
@keyframes rotateText {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}
/*-----------------------[ 8.Grid Menu CSS ]------------------------*/
.grid-header-main {
    padding: 80px 0;
}
/*-----------------------[ 9.About Section CSS ]------------------------*/
.abouText p {
    color: #FBBA42;
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    padding-bottom: 5px;
    text-transform: uppercase;
}
.main-title {
    font-size: 32px;
    line-height: 48px;
    font-weight: 400;
    color: var(--text-color);
    margin-bottom: 20px;
}
.main-title span {
    font-weight: 700;
}
.description {
    color: var(--sub-text);
    font-size: 20px;
    line-height: 36px;
    font-weight: 400;
    margin-bottom: 30px;
}
.info-list {
    margin-bottom: 30px;
}
.info-list ul li {
    color: var(--sub-text);
    font-size: 17px;
    line-height: 24px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}
.info-list ul i {
    font-size: 24px;
    color: var(--text-color);
}
.story-img {
    height: 560px;
    min-width: 440px;
    width: 440px;
    margin: 0 auto;
}
.btn-group-custom {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.cv-btn {
    color: var(--text-color);
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease-in-out;
}
.cv-btn i {
    font-size: 24px;
    color: var(--text-color);
    transition: all 0.3s ease-in-out;
}
.cv-btn:hover,
.cv-btn:hover i {
    color: #FBBA42;
}
.image-wrapper {
    position: relative;
    text-align: center;
}
.shape-bg {
    position: absolute;
    max-width: 520px;
    width: 100%;
    height: 100px;
    background: #FBBA42;
    border-radius: 100px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.main-img {
    width: 100%;
    max-width: 520px;
    position: relative;
    z-index: 2;
}
.experience-box {
    position: absolute;
    left: 0;
    top: 80px;
    z-index: 5;
    animation: floatImg1 4s ease-in-out infinite alternate;
}
.experience-box h2 {
    color: var(--3, #FBBA42);
    font-size: 80px;
    line-height: 80px;
    font-weight: 400;
}
.experience-box p {
    color: var(--text-color);
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
}
.thrDimg1 {
    position: absolute;
    right: 0;
    top: 50px;
    animation: floatImg1 4s ease-in-out infinite alternate;
}
.thrDimg2 {
    position: absolute;
    left: 0;
    bottom: 50px;
    animation: floatImg1 4s ease-in-out infinite alternate;
}
@keyframes floatImg1 {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0);
    }
}
.brand-main {
    margin: 80px 0;
    overflow: hidden;
}
.brand-track {
    width: 100%;
    overflow: hidden;
    display: flex;
}
.top-track {
    justify-content: flex-start;
}
.bottom-track {
    justify-content: flex-end;
}
.brand-section {
    display: flex;
    align-items: center;
    width: max-content;
    will-change: transform;
}
.brand-box {
    border: 1px solid var(--third-color);
    border-radius: 12px;
    width: 100%;
    width: 205px;
    min-width: 205px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-in-out;
}
.brand-box img {
    filter: var(--Img-filter);
}
.brand-box:hover {
    border-color: #FBBA42;
}
.stoety-main {
    display: flex;
    justify-content: space-between;
    padding-bottom: 70px;
}
.story-title {
    font-size: 32px;
    line-height: 48px;
    font-weight: 400;
    color: var(--text-color);
    max-width: 410px;
}
.story-title span {
    font-weight: 700;
}
.story-text {
    color: var(--sub-text);
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    max-width: 630px;
}
.img-container {
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
}
.img-container img {
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 120%;
    object-fit: cover;
    object-position: center;
}
.stat-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 30px;
    overflow: hidden;
    max-width: 600px;
}
.stat-left {
    display: flex;
    align-items: center;
    gap: 40px;
    min-width: 230px;
}
.dot {
    width: 100%;
    max-width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-color);
}
.stat-number {
    color: var(--text-color);
    font-size: 80px;
    line-height: 100px;
    font-weight: 400;
}
.stat-content {
    width: 100%;
}
.stat-content h3 {
    margin-bottom: 10px;
    color: var(--text-color);
    font-size: 24px;
    line-height: 32px;
    font-weight: 400;
}
.stat-content p {
    color: var(--sub-text);
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
}
/*-----------------------[ 10.Services Section CSS ]------------------------*/
.service-heading {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 60px;
    overflow: hidden;
}
.service-shape img {
    animation: rotateShape 12s linear infinite;
}
.service-list {
    border-top: 1px solid var(--four-color);
}
.service-item {
    display: grid;
    grid-template-columns: 60px 1fr 400px;
    gap: 40px;
    align-items: start;
    padding: 30px 0;
    border-bottom: 1px solid var(--four-color);
    transition: all 0.4s ease;
}
.service-item:hover {
    transform: translateY(-5px);
}
.service-number {
    color: var(--third-color);
    font-size: 48px;
    line-height: 48px;
    font-weight: 400;
    transition: all 0.3s ease-in-out;
}
.service-item:hover .service-number {
    color: #FBBA42;
}
.service-content h2 {
    color: var(--text-color);
    font-size: 24px;
    line-height: 36px;
    font-weight: 600;
    margin-bottom: 35px;
    margin-top: 5px;
    transition: all 0.3s ease-in-out;
}
.service-item:hover .service-content h2 {
    color: #FBBA42;
}
.service-content p {
    color: var(--sub-text);
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    max-width: 630px;
    margin-bottom: 30px;
}
.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.service-tags span {
    padding: 10px 20px;
    border-radius: 100px;
    background: var(--four-color);
    font-size: 14px;
    color: var(--sub-text);
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
}
.service-image {
    height: 100%;
}
.service-image img {
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 120%;
    object-fit: cover;
}
@keyframes rotateShape {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.services-bottom {
    padding-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.services-bottom p {
    color: var(--text-color);
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    max-width: 630px;
}
/*-----------------------[ 11.Single Service Section CSS ]------------------------*/
.vicethDimg-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
    overflow: hidden;
}
.vicethDimg-main div {
    max-width: 830px;
}
.services-detils-main {
    font-size: 48px;
    font-weight: 500;
    line-height: 60px;
    color: var(--text-color);
}
.trabns {
    color: var(--sub-text);
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
}
.single-services-img-container {
    margin-bottom: 35px;
    height: 500px;
}
.services-single-grid {
    height: 410px;
    min-height: 410px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0;
}
.inner-sec-sing {
    padding: 40px 0;
}
.hswhy {
    color: var(--text-color);
    font-size: 32px;
    line-height: 48px;
    font-weight: 500;
    padding-bottom: 15px;
}
.approebe-main {
    display: flex;
    align-items: center;
    gap: 100px;
    margin-top: 30px;
}
.approe li {
    color: var(--text-color);
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}
.approe i {
    font-size: 24px;
}
.servicethDimg2 {
    display: flex;
    align-items: center;
    justify-content: center;
}
.servicethDimg2 img {
    max-width: 220px;
    animation: rotateShape 12s linear infinite;
}
.service-category {
    border: 2px solid var(--third-color);
    padding: 30px;
}
.servic-category-heading {
    color: var(--text-color);
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 35px;
}
.service-category ul li:first-child a {
    padding-top: 0;
}
.service-category ul li:last-child a {
    padding-bottom: 0;
}
.service-category ul li:last-child {
    border-bottom: 0;
}
.service-category ul li {
    border-bottom: 2px solid var(--third-color);
}
.service-category ul li a {
    color: var(--text-color);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 20px;
    font-weight: 500;
    transition: 0.4s ease;
}
li.catoLink.active a {
    color: #FBBA42;
}
.service-category ul li a i {
    font-size: 25px;
    transition: 0.4s ease;
}
.service-category ul li a:hover {
    color: #FBBA42;
    padding-left: 10px;
}
.service-category ul li a:hover i {
    transform: translateX(5px);
}
.contact-box-litt {
    margin-top: 60px;
    padding: 30px;
    background: var(--four-color);
    position: relative;
}
.rotolof {
    filter: var(--Img-filter);
}
.reach {
    color: var(--sub-text);
    font-size: 24px;
    line-height: 36px;
    font-weight: 400;
    max-width: 300px;
    padding: 40px 0;
}
.chkx2 {
    filter: var(--check-box);
    position: absolute;
    top: 0;
    right: 0;
}
.catorSticky {
    position: sticky;
    top: 80px;
}
/*-----------------------[ 12.Resume Section CSS ]------------------------*/
.resume-section {
    position: relative;
}
.resume-wrapper {
    margin-top: 40px;
    align-items: center;
}
.spring {
    transform: rotate(45deg);
}
.spring img {
    animation: floatRotate 30s infinite linear;
}
.resume-image {
    position: relative;
}
.resume-image-bg {
    width: 100%;
    max-width: 330px;
    height: 425px;
    background: #efe3cf;
    border-radius: 220px 220px 0 0;
    position: relative;
    margin: 0 auto;
}
.resume-image-bg img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 330px;
}
.slivercircular,
.sliverbox {
    position: absolute;
}
.slivercircular {
    top: 100px;
    left: 50px;
    animation: floatRotate 30s infinite linear;
}
.sliverbox {
    top: 25px;
    right: 80px;
    animation: floatImg1 4s ease-in-out infinite alternate;
}
.resume-content p {
    color: var(--sub-text);
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    margin-bottom: 40px;
    max-width: 520px;
}
/* -------------------- Slider Logo Design -------------------- */
.slider-logo {
    padding: 100px 0;
    overflow: hidden;
}
.band-outer {
    width: 100%;
    position: relative;
}
.band-outer.band-outer2 {
    margin-top: -40px;
}
.band-dark {
    background: var(--marquee-bg);
    padding: 10px 0;
    transform: rotate(-5deg) scaleX(1.15);
    transform-origin: center;
    cursor: grab;
    user-select: none;
    touch-action: pan-y;
    position: relative;
    z-index: 10;
}
.band-dark.dragging {
    cursor: grabbing;
}
.band-light {
    cursor: grab;
    user-select: none;
    touch-action: pan-y;
    transform: rotate(4deg) scaleX(1.15);
    position: relative;
    z-index: -1;
}
.band-light.dragging {
    cursor: grabbing;
}
.marquee-track {
    display: flex;
    width: max-content;
    white-space: nowrap;
    will-change: transform;
}
.item {
    display: inline-flex;
    align-items: center;
}
.item span {
    padding: 0 15px;
    font-size: 48px;
    line-height: 60px;
    letter-spacing: 0.02em;
    font-weight: 400;
    text-transform: uppercase;
}
.band-dark .item span {
    color: #FFFFFF;
}
.band-light .item span {
    color: #C4C4C4;
}
.item span img {
    animation: floatRotate 30s infinite linear;
}
/* --------------- My Skills ----------------------- */
.uality {
    text-align: center;
    margin-bottom: 10px;
}
.kill-ti {
    text-align: center;
    margin-bottom: 0;
}
.skill-grid-main {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.skill-box>* {
    position: relative;
    z-index: 2;
}
.skill-box {
    position: relative;
    padding: 20px;
    border: 2px solid var(--third-color);
    height: 100%;
    overflow: hidden;
    transition:
        background 0.4s ease,
        border-color 0.4s ease,
        transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        box-shadow 0.4s ease;
}
.skill-box:hover {
    background: var(--four-color);
    transform: translateY(-6px);
    border-color: var(--four-color);
}
.skill-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--four-color);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.45s ease;
    z-index: 0;
}
.skill-box:hover::before {
    transform: scaleY(1);
}
.skill-number {
    color: var(--box-text);
    font-size: 20px;
    line-height: 20px;
    font-weight: 500;
    transition: color 0.3s ease;
}
.skill-box:hover .skill-number {
    color: #C4C4C4;
}
.num-img-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.skill-box h2 {
    color: var(--3, #fbba42);
    font-size: 40px;
    line-height: 40px;
    font-weight: 400;
    padding: 30px 0 20px;
    transition: transform 0.4s ease;
}
.skill-box h3 {
    color: var(--text-color);
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
    padding-bottom: 5px;
    transition: color 0.3s ease, transform 0.4s ease;
}
.skill-box p {
    color: var(--box-text);
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    transition: color 0.3s ease, transform 0.4s ease;
}
.skill-box:hover p {
    color: #C4C4C4;
}
.fixedImg-section {
    background-image: url(../images/resume/woman-deer.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    min-height: 550px;
    width: 100%;
    margin: 80px 0;
}
/* ------------------- Award Section ----------------------- */
.awards-heading {
    max-width: 260px;
}
.bigAwardImg-main {
    display: flex;
    align-items: center;
}
.round-box-award {
    background: linear-gradient(180deg,
            rgba(243, 243, 243, 1) 0%,
            rgba(255, 255, 255, 1) 100%);
    border-radius: 125px 125px 0px 0px;
    width: 250px;
    height: 250px;
    position: absolute;
    left: 50%;
    bottom: -40px;
    transform: translate(-65%, 0%);
    z-index: -1;
}
.dark-mode .round-box-award {
    background: linear-gradient(180deg,
            rgba(48, 48, 48, 1) 0%,
            rgba(0, 0, 0, 1) 100%);
}
.bigAwardImg-main img {
    animation: floatImg1 4s ease-in-out infinite alternate;
    max-width: 100%;
}
.award-row {
    position: relative;
    display: flex;
    align-items: center;
    gap: 125px;
    padding: 22px 0;
    border-top: 2px solid var(--third-color);
    transition: background 0.4s ease, padding 0.4s ease;
    border-radius: 4px;
}
.sub-award-row {
    display: flex;
    align-items: center;
    gap: 45px;
}
.award-row:hover {
    background: var(--hover-bg);
    padding-left: 28px;
}
.award-year {
    font-size: 20px;
    font-weight: 400;
    color: var(--box-text);
    letter-spacing: 0.04em;
    transition: color 0.3s;
}
.award-row:hover .award-year {
    color: var(--text-color);
}
.award-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}
.award-logo img {
    filter: var(--award-img);
}
.award-row:hover .award-logo img {
    filter: var(--Img-filter);
}
.award-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.award-name {
    color: var(--text-color);
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
    transition: color 0.3s;
    margin-bottom: 10px;
}
.award-row:hover .award-name {
    color: #FBBA42;
}
.award-status {
    color: var(--box-text);
    font-size: 18px;
    line-height: 18px;
    font-weight: 500;
    text-transform: uppercase;
    transition: color 0.3s;
}
.award-row:hover .award-status {
    color: var(--text-color);
}
#cursor-img {
    position: fixed;
    top: 0;
    left: 0;
    object-fit: cover;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transform: translate(-50%, -60%) scale(0.82) rotate(5deg);
    transition:
        opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;
}
#cursor-img.visible {
    opacity: 1;
    transform: translate(-50%, -60%) scale(1) rotate(-2deg);
}
/*-----------------------[ 13.Process Section CSS ]------------------------*/
.process-wrapper {
    border-top: 2px solid var(--third-color);
    margin-top: 40px;
}
.processImg-container {
    margin-top: 80px;
    position: sticky;
    top: 100px;
}
.processImg-container img {
    max-width: 100%;
}
.halfthrDimg1 {
    position: absolute;
    top: -60px;
    right: 50px;
    animation: floatImg1 4s ease-in-out infinite alternate;
}
.halfthrDimg2 {
    position: absolute;
    top: 40%;
    left: -50px;
    animation: floatRotate 10s infinite linear;
}
.halfthrDimg3 {
    position: absolute;
    top: 50%;
    right: 0;
    animation: floatImg1 4s ease-in-out infinite alternate;
}
.process-item {
    display: flex;
    gap: 100px;
    padding: 40px 0;
    border-bottom: 2px solid var(--third-color);
}
.process-count {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 8px;
}
.process-count .active {
    filter: var(--Img-filter);
}
.process-count img {
    filter: var(--award-img);
    transition: all 0.3s ease-in-out;
}
.process-item:hover .process-count img {
    transform: rotate(90deg);
}
.process-content h2 {
    color: var(--text-color);
    font-size: 24px;
    line-height: 36px;
    font-weight: 600;
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
}
.process-item:hover .process-content h2 {
    color: #FBBA42;
}
.process-content p {
    color: var(--sub-text);
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    margin-bottom: 30px;
}
.process-content ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-left: 0;
}
.process-content ul li {
    color: var(--sub-text);
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 15px;
}
.process-content ul li::before {
    content: "\ea7d";
    font-family: "tabler-icons";
    color: var(--box-text);
    font-size: 24px;
}
.process-bottom {
    padding-top: 60px;
}
.process-bottom p {
    color: var(--text-color);
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
}
.process-bottom .button-main {
    margin-top: 30px;
}
/*-----------------------[ 14.Portfolio Section CSS ]------------------------*/
.portfolio-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
    margin-bottom: 60px;
}
.ring1 {
    position: absolute;
    bottom: -30px;
    right: -60px;
    animation: floatImg1 4s ease-in-out infinite alternate;
}
.ring2 {
    position: absolute;
    top: -80px;
    right: 0;
    animation: floatImg1 4s ease-in-out infinite alternate;
}
.portfolio-left {
    max-width: 620px;
}
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 30px;
}
.portfolio-item {
    transition: 0.4s ease;
}
.portfolio-item:hover {
    transform: translateY(-8px);
}
.portfolio-img {
    overflow: hidden;
    min-height: 440px;
}
.portfolio-img img {
    width: 100%;
    display: block;
    transition: 0.5s ease;
}
.portfolio-item:hover .portfolio-img img {
    transform: scale(1.05);
}
.portfolio-content {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 20px;
}
.portfolio-number {
    font-size: 32px;
    line-height: 48px;
    font-weight: 400;
    color: var(--text-color);
    transition: all 0.3s ease-in-out;
}
.portfolio-item:hover .portfolio-number,
.portfolio-item:hover .portfolio-content h2 {
    color: #FBBA42;
}
.portfolio-line {
    width: 90px;
    height: 2px;
    background: var(--text-color);
    position: relative;
    transition: all 0.3s ease-in-out;
}
.portfolio-item:hover .portfolio-line {
    background: #FBBA42;
}
.portfolio-line::after {
    content: "";
    position: absolute;
    right: 0;
    top: -3px;
    width: 8px;
    height: 8px;
    border-top: 2px solid var(--text-color);
    border-right: 2px solid var(--text-color);
    transform: rotate(45deg);
    transition: all 0.3s ease-in-out;
}
.portfolio-item:hover .portfolio-line::after {
    border-top: 2px solid #FBBA42;
    border-right: 2px solid #FBBA42;
}
.portfolio-content h2 {
    color: var(--text-color);
    font-size: 32px;
    line-height: 48px;
    font-weight: 400;
    transition: all 0.3s ease-in-out;
}
.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}
.portfolio-tags span {
    padding: 8px 16px;
    border-radius: 100px;
    background: var(--four-color);
    color: var(--sub-text);
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
}
.portfolio-btn-main {
    display: flex;
    justify-content: center;
    margin-top: 70px;
}
/*-----------------------[ 15.Single Portfolio Section CSS ]------------------------*/
.digita-trabns {
    max-width: 550px;
}
.mainProjectImg-container {
    margin: 60px 0;
}
.mainProjectImg-container img {
    width: 100%;
}
.singleImg2-container {
    min-height: 450px;
    margin-top: 30px;
}
.singleImg3-container {
    min-height: 410px;
}
.din-img {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 30px;
}
.epsa {
    color: var(--text-color);
    font-size: 30px;
    line-height: 40px;
    font-weight: 400;
}
.checkSingel {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin: 30px 0;
}
.checkSingel-main {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.checkSingel-main img {
    filter: var(--Img-filter);
}
.nextLiftxBlog {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 30px;
    max-width: 330px;
    margin: 0 auto;
}
.next-text {
    color: var(--11, #c4c4c4);
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    display: block;
    text-align: center;
}
.liftBlog {
    color: var(--text-color);
    text-align: center;
    font-size: 32px;
    line-height: 48px;
    font-weight: 400;
}
.nextLiftxBlog:hover .liftBlog {
    color: #FBBA42;
}
.nextLiftx {
    padding-top: 60px;
    margin-top: 60px;
    border-top: 2px solid var(--third-color);
}
.service-category p {
    color: var(--sub-text);
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 2px solid var(--third-color);
    gap: 20px;
}
.service-category p span {
    color: var(--text-color);
}
/*-----------------------[ 16.Pricing Section CSS ]------------------------*/
.pricing-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
}
.pricing-rocket img {
    animation: rocketMove 4s ease-in-out infinite;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
}
.pricing-card {
    position: relative;
    border: 2px solid var(--InputBox);
    padding: 30px;
    overflow: hidden;
    transition: 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.pricing-card:hover {
    transform: translateY(-10px);
}
.pricing-package {
    color: var(--sub-text);
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
}
.pricing-price {
    display: flex;
    align-items: flex-end;
    gap: 8px;
}
.pricing-price h2 {
    color: var(--text-color);
    font-size: 64px;
    line-height: 80px;
    font-weight: 400;
}
.pricing-price span {
    margin-bottom: 10px;
    color: var(--sub-text);
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
}
.pricing-divider {
    width: 100%;
    height: 2px;
    background: var(--third-color);
    margin: 30px 0;
}
.pricing-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 40px;
}
.pricing-list li {
    position: relative;
    color: var(--sub-text);
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 10px;
}
.pricing-list li::before {
    content: "\ebaa";
    font-family: "tabler-icons";
    font-size: 25px;
    color: var(--text-color);
}
.pricing-check2 {
    filter: brightness(0) saturate(100%) invert(87%) sepia(2%) saturate(90%) hue-rotate(168deg) brightness(113%) contrast(96%);
}
.pricing-card button {
    width: 100%;
}
.pricing-card.active .pricing-btn {
    background: #111;
    color: #fff;
}
.pricing-card.active {
    background: var(--four-color);
    border: 2px solid transparent;
}
.pricing-card.active .pricing-btn:hover {
    background: #f4b63d;
    color: #111;
}
@keyframes rocketMove {
    0% {
        transform: translateY(0px) rotate(-8deg);
    }
    50% {
        transform: translateY(-14px) rotate(2deg);
    }
    100% {
        transform: translateY(0px) rotate(-8deg);
    }
}
/*-----------------------[ 17.Blog Section CSS ]------------------------*/
.silverStar1 {
    position: absolute;
    top: 0;
    right: 0;
    animation: floatImg1 4s ease-in-out infinite alternate;
}
.silverStar2 {
    position: absolute;
    top: 0;
    left: 24%;
    animation: floatRotate 30s infinite linear;
}
.latestNews p {
    text-align: center;
}
.inkers {
    max-width: 850px;
    margin: 0 auto;
}
.masonry-grid {
    column-count: 3;
    column-gap: 30px;
    margin-top: 40px;
}
.mansory-card {
    display: block;
    margin-bottom: 40px;
}
.mansory-card p {
    color: var(--11, #c4c4c4);
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    padding-bottom: 10px;
}
.mansory-card h3 {
    color: var(--text-color);
    font-size: 32px;
    line-height: 48px;
    font-weight: 400;
    transition: all 0.3s ease-in-out;
}
.mansory-card:hover h3 {
    color: #FBBA42;
}
.mansory-card-container1 {
    min-height: 370px;
}
.mansory-card-container2 {
    min-height: 450px;
}
.mansory-card-container1,
.mansory-card-container2 {
    margin-bottom: 20px;
}
/* ----------------------- [ 18.Single Blog Section ] ----------------------- */
.blog-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 20px;
    margin-bottom: 40px;
}
.blog-meta span {
    color: var(--sub-text);
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}
.blog-meta i {
    font-size: 24px;
}
.BlogsingleImg2-container {
    min-height: auto;
}
.silverStar3 {
    justify-content: flex-end;
}
.boxImg1 {
    position: absolute;
    top: 0;
    left: 0;
    filter: var(--box-blog);
}
.boxImg2 {
    position: absolute;
    bottom: 0;
    right: 0;
    filter: var(--box-blog);
}
.single-blog-img2 {
    width: 100%
}
.share-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -30px;
    margin-bottom: 20px;
}
.share-btn {
    width: 100%;
    max-width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    font-size: 32px;
    color: var(--text-color);
    transition: .4s;
    position: relative;
    z-index: 2;
}
.share-btn:hover {
    color: #FBBA42;
}
.share-icons {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    transition: .4s;
}
.share-wrapper:hover .share-icons {
    top: -40px;
    opacity: 1;
    visibility: visible;
}
.share-icons a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}
.share-icons a img {
    width: 20px;
}
.share-icons a:hover {
    background: #FBBA42;
    transform: translateY(-5px);
}
.quote-box {
    display: flex;
    gap: 25px;
    margin: 40px 0;
}
.quote-icon {
    font-size: 65px;
    color: #f4b63d;
    line-height: 1;
}
.quote-content h2 {
    margin-bottom: 30px;
    color: var(--text-color);
    font-size: 36px;
    line-height: 60px;
    font-weight: 400;
}
.quote-content span {
    position: relative;
    padding-left: 110px;
    color: var(--sub-text);
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
}
.quote-content span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 100px;
    height: 1px;
    background: var(--sub-text);
}
.uilt-list-main {
    margin: 30px 0;
}
.uilt-list-main li {
    position: relative;
    margin-bottom: 20px;
    color: var(--sub-text);
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 10px;
}
.uilt-list-main li img {
    width: 30px;
    filter: var(--Img-filter);
}
.next-post {
    position: relative;
    overflow: hidden;
    margin-top: 60px;
}
.next-post img {
    width: 100%;
    display: block;
    transition: .5s;
}
.next-post:hover img {
    transform: scale(1.08);
}
.next-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    color: #fff;
    padding: 20px;
}
.next-overlay span {
    margin-bottom: 10px;
    color: var(--5, #ffffff);
    text-align: center;
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
}
.next-overlay h3 {
    color: var(--5, #ffffff);
    text-align: center;
    font-size: 64px;
    line-height: 80px;
    font-weight: 400;
}
.sidebar-post {
    background: #fff;
    padding: 30px;
    margin-bottom: 40px;
}
.sidebar-post h3 {
    font-size: 28px;
    margin-bottom: 25px;
}
.recent-post {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid var(--third-color);
}
.recent-post img {
    width: 110px;
    height: 110px;
    object-fit: cover;
}
.recent-post span {
    display: block;
    margin-bottom: 8px;
    color: var(--11, #c4c4c4);
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
}
.recent-post h4 {
    color: var(--text-color);
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    transition: all 0.3s ease-in-out;
}
.recent-post:hover h4 {
    color: #FBBA42;
}
/* ----------------------- [ 19.Contact Section ] ----------------------- */
.contact-wrapper {
    position: relative;
}
.map-iframe {
    height: 480px;
    width: 100%;
    margin-top: 120px;
}
.contact-form {
    background: var(--primary-color);
    border: 2px solid var(--third-color);
    padding: 20px;
    position: absolute;
    top: 40px;
    left: 110px;
    max-width: 630px;
    width: 100%;
}
.contact-form h2 {
    margin-bottom: 10px;
    color: var(--text-color);
    font-size: 24px;
    line-height: 36px;
    font-weight: 600;
}
.contact-form p {
    color: var(--sub-text);
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 20px;
}
.input-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-color);
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    background: var(--InputBox);
    border: none;
    padding: 12px 15px;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    outline: none;
    color: var(--text-color);
}
.contact-form select {
    width: 100%;
    padding: 12px 50px 12px 15px;
    border: none;
    outline: none;
    background: var(--InputBox);
    color: var(--text-color);
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url(../images/svg/dropdown.svg);
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 25px;
}
.dark-mode .contact-form select {
    background-image: url(../images/svg/dropdown-white.svg);
}
.contact-form textarea {
    height: 130px;
    resize: none;
}
.contact-card {
    position: absolute;
    right: 30px;
    bottom: -70px;
    background: #f4b63d;
    padding: 20px;
    width: 300px;
    animation: floatImg1 4s ease-in-out infinite alternate;
}
.contact-card h3,
.contact-card a,
.contact-card p {
    color: var(--5, #ffffff);
    font-size: 18px;
    line-height: 32px;
    font-weight: 500;
}
.contact-card p {
    margin-bottom: 8px;
}
#successMsg{
    display: none;
    color: green;
    margin-top: 10px;
}
.social-icons-contact {
    display: flex;
    gap: 12px;
}
.social-icons-contact a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}
.social-icons-contact a:hover {
    background: var(--primary-color);
}
.social-icons-contact a:hover img {
    filter: var(--Img-filter);
}
/* ----------------------- [ 20.404 Page Section ] ----------------------- */
.error-section {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    justify-content: center;
    padding: 30px 0;
}
.oops {
    color: var(--text-color);
    text-align: center;
    font-size: 48px;
    line-height: 64px;
    font-weight: 500;
    margin-bottom: 40px;
}
.scene {
    position: relative;
    height: clamp(180px, 40vw, 340px);
    margin: 4px 0 8px;
    animation: fadeUp 0.6s 0.25s ease both;
    user-select: none;
}
.ghost-digits {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.error-digit {
    font-size: 350px;
    font-weight: 600;
    color: var(--third-color);
}
.face-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 200px;
    width: 100%;
    animation: wobble 3.5s ease-in-out infinite;
}
.file-white-blck {
    fill: #FFF;
}
@keyframes wobble {
    0%,
    100% {
        transform: translate(-50%, -50%) rotate(-3deg);
    }
    50% {
        transform: translate(-50%, -50%) rotate(3deg);
    }
}
.wheel {
    position: absolute;
    top: -110px;
    left: 0px;
    max-width: 300px;
    width: 100%;
    animation: floatRotate 20s infinite linear;
}
.squiggle {
    position: absolute;
    top: 10px;
    right: 100px;
    animation: floatImg1 4s ease-in-out infinite alternate;
}
.tagline {
    color: var(--text-color);
    font-size: 32px;
    line-height: 48px;
    font-weight: 500;
    margin-bottom: 4px;
}
.tagline-sub {
    color: var(--sub-text);
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    margin-bottom: 30px;
}