:root {color-scheme: light;
    --red: #a90000;
    --cream: #F5E4D2;
    --black: #080808;
    --red-dark: #7f0508;
    --muted-cream: #D8C7B8;
    --txt: #fbc6a8;
    
    
    
}


/* scrollbar */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0b0b0b;
}

::-webkit-scrollbar-thumb {
    background: #e50914;
    border-radius: 0;
    border: 2px solid #0b0b0b;
}

::-webkit-scrollbar-thumb:hover {
    background: #fff;
}

html {
    scrollbar-width: thin;
    scrollbar-color: #e50914 #0b0b0b;
    scroll-behavior: smooth;
}
html,
body {
    color-scheme: light only;
}

/* scrollbar ending */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    letter-spacing: 1px;
}

.language-switcher button {
    border: none;
    background: transparent;
    color: #8b2f2f;
    font: inherit;
    cursor: pointer;
    padding: 4px;
    transition: 0.3s ease;
}

.language-switcher button.active {
    color: #b33a3a;
}

.language-switcher button:hover {
    color: #c94a4a;
}

.language-switcher span {
    color: #5c2020;
}

#google_translate_element {
    display: none;
}

.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

body {
    top: 0 !important;
}

.goog-tooltip {
    display: none !important;
}

.goog-text-highlight {
    background: transparent !important;
    box-shadow: none !important;
}

@media (max-width: 700px) {
    .language-switcher {
        font-size: 11px;
        gap: 5px;
    }
}


/* navbar start */

body {
    background-color: var(--red-dark);
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: var(--red-dark);
    border-bottom: 1px solid rgba(244, 233, 220, 0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    background: rgba(92, 4, 7, 0.96);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
}

.navbar .nav-container {
    width: min(1400px, 92%);
    height: 54px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .nav-container .logo {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--cream);
    text-decoration: none;
    font-family: "Arial Narrow", Impact, sans-serif;
    font-size: 21px;
    font-weight: 700;
    letter-spacing: 1px;
}

.navbar .nav-container .logo .logo-icon {
    width: 28px;
    height: 32px;
    fill: var(--cream);
    transition: transform 0.4s ease;
}

.navbar .nav-container .logo:hover .logo-icon {
    transform: rotate(-8deg) translateY(-2px);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(25px, 3vw, 52px);
}

.nav-links a {
    position: relative;
    color: var(--cream);
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 28px 0;
    transition: opacity 0.25s ease, color 0.25s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 19px;
    width: 0;
    height: 2px;
    background: var(--cream);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.75;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.menu-btn {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: var(--black);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
}

.menu-btn:hover {
    transform: rotate(90deg);
}

.menu-btn span {
    width: 15px;
    height: 1.5px;
    background: var(--cream);
    transition: 0.3s ease;
}

@media (max-width: 850px) {
    html,
    body {
        overflow-x: hidden;
    }
    .navbar {
        position: fixed;
    }
    .nav-links {
        position: fixed;
        top: 88px;
        right: -100%;
        width: min(320px, 85%);
        height: calc(100vh - 68px);
        padding: 55px 35px;
        background: var(--black);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        border-left: 1px solid rgba(244, 233, 220, 0.15);
        transition: right 0.4s cubic-bezier(.77, 0, .18, 1);
    }
    .nav-links.open {
        right: 0;
        top: 68px;
    }
    .nav-links a {
        width: 100%;
        padding: 18px 0;
        font-size: 15px;
        border-bottom: 1px solid rgba(244, 233, 220, 0.12);
    }
    .nav-links a::after {
        bottom: -1px;
    }
}

@media (min-width: 800px) {
    .menu-btn {
        display: none;
    }
}

@media (max-width: 480px) {
    .nav-container {
        width: 88%;
    }
    .nav-container .logo {
        font-size: 18px;
    }
    .nav-container .logo .logo-icon {
        width: 24px;
        height: 28px;
    }
    .menu-btn {
        width: 38px;
        height: 38px;
    }
    .nav-links {
        width: 100%;
        border-left: 0;
    }
}


/* navbar end */


/* HERO START */

.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: var(--red-dark);
}

.hero-content {
    position: relative;
    z-index: 5;
    width: 48%;
    padding-left: 7%;
    padding-top: 15vh;
}

.hero-label {
    display: block;
    margin-bottom: 20px;
    color: red;
    font-size: 14px;
    letter-spacing: 1px;
}

.hero-content h1 {
    margin: 0;
    color: var(--txt);
    font-size: clamp(55px, 6vw, 95px);
    font-weight: 600;
    line-height: .99;
    letter-spacing: -3px;
    text-transform: uppercase;
}

.hero-content h1 b {
    color: var(--black);
    font-weight: inherit;
}

.hero-content p {
    max-width: 420px;
    margin-top: 28px;
    color: var(--muted-cream);
    font-size: 15px;
    line-height: 1.7;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    padding: 16px 22px;
    background: var(--black);
    color: var(--cream);
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
    transition: transform .25s ease;
}

.hero-btn:hover {
    transform: translateY(-3px);
}

.hero-btn i {
    color: var(--cream);
    font-size: 15px;
}

.hero-visual {
    position: absolute;
    inset: 0;
    left: 40%;
    z-index: 0;
    background-repeat: no-repeat;
    background-position: right center;
    background-size: auto 100%;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: right center;
}

.hero-info {
    margin-top: 25px;
    color: #f3e5d5;
    font-size: 15px;
    line-height: 1.7;
    font-weight: 400;
    min-height: 105px;
}

.typing-cursor {
    display: inline-block;
    margin-left: 2px;
    color: #f3e5d5;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

.hero-lamp {
    position: absolute;
    top: -5px;
    left: 40%;
    width: 110px;
    height: 310px;
    z-index: 5;
    pointer-events: none;
    animation: lampSwing 3s ease-in-out forwards;
    transform-origin: 50% 0;
}

.lamp-cord {
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 105px;
    background: #050505;
    transform: translateX(-50%);
}

.lamp-shade {
    position: absolute;
    top: 92px;
    left: 50%;
    width: 94px;
    height: 48px;
    transform: translateX(-50%);
    background: #050505;
    clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
    border-radius: 12px 12px 3px 3px;
}

.lamp-shade::before {
    content: "";
    position: absolute;
    top: -7px;
    left: 50%;
    width: 28px;
    height: 10px;
    transform: translateX(-50%);
    background: #050505;
    border-radius: 50%;
}

.lamp-shade::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -2px;
    width: 100%;
    height: 7px;
    transform: translateX(-50%);
    background: #050505;
    border-radius: 50%;
}

.lamp-bulb {
    position: absolute;
    left: 50%;
    bottom: -5px;
    width: 35px;
    height: 18px;
    transform: translateX(-50%);
    background: #fff9ef;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255, 240, 215, .9), 0 0 22px rgba(255, 190, 120, .55);
}

.lamp-glow {
    position: absolute;
    top: 135px;
    left: 50%;
    width: 145px;
    height: 175px;
    transform: translateX(-50%);
    background: linear-gradient( to bottom, rgba(255, 231, 204, .72) 0%, rgba(255, 214, 173, .42) 35%, rgba(255, 194, 140, .18) 65%, rgba(255, 180, 120, 0) 100%);
    clip-path: polygon(39% 0, 61% 0, 100% 100%, 0 100%);
    filter: blur(2px);
}

@keyframes lampSwing {
    0% {
        opacity: 0;
        transform: translateY(-120px) rotate(-7deg);
    }
    30% {
        opacity: 1;
        transform: translateY(0) rotate(6deg);
    }
    48% {
        transform: translateY(0) rotate(-4.5deg);
    }
    65% {
        transform: translateY(0) rotate(3deg);
    }
    80% {
        transform: translateY(0) rotate(-1.5deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

@media (max-width: 1100px) {
    .hero {
        min-height: 100svh;
    }
    .hero-visual {
        background-position: 85% bottom;
        background-size: auto 78%;
        bottom: -10%;
    }
    .hero-content {
        position: relative;
        z-index: 2;
        width: 55%;
    }
}

@media (max-width: 766px) {
    .hero {
        min-height: 100svh;
        height: auto;
        overflow: hidden;
    }
    .hero-visual {
        inset: auto 0 0 0;
        height: 43%;
        width: 100%;
        background-position: center bottom;
        background-size: auto 100%;
    }
    .hero-content {
        width: 100%;
        padding: 85px 28px 0;
    }
    .hero-content .subtitle {
        font-size: 13px;
        margin-bottom: 22px;
    }
    .hero-content h1 {
        width: 100%;
        max-width: 360px;
        font-size: clamp(42px, 11vw, 58px);
        line-height: .98;
        letter-spacing: -1.5px;
        margin: 0 0 25px;
    }
    .hero-content p {
        width: 100%;
        max-width: 330px;
        font-size: 14px;
        line-height: 1.65;
        margin-bottom: 28px;
    }
    .hero-content .btn {
        position: relative;
        z-index: 5;
        width: fit-content;
        min-height: 48px;
        padding: 0 20px;
    }
    .hero-lamp {
        left: 70%;
        top: -5px;
        height: 380px;
    }
    .lamp-cord {
        height: 175px;
    }
    .lamp-shade {
        top: 162px;
    }
    .lamp-bulb {
        bottom: -5px;
    }
    .lamp-glow {
        top: 205px;
    }
    html[dir="rtl"] .hero-lamp
{
    left: 12%;
}
html[dir="rtl"] .lamp-cord {
    height: 230px;
}
    html[dir="rtl"] .lamp-cord {
    height: 230px;
}

html[dir="rtl"] .lamp-shade {
    top: 230px;
}

html[dir="rtl"] .lamp-glow {
    top: 273px;
}
}

@media (min-width: 767px) and (max-width: 991px) {
    .hero {
        min-height: 600px;
        height: 700px;
    }
    .hero-content {
        width: 52%;
        padding-left: 6%;
        padding-top: 130px;
    }
    .hero-content h1 {
        font-size: clamp(52px, 7vw, 72px);
        line-height: .98;
        letter-spacing: -2px;
    }
    .hero-content p {
        max-width: 360px;
        font-size: 14px;
    }
    .hero-visual {
        left: 42%;
        width: 58%;
        height: 70%;
        bottom: 0;
        background-position: right bottom;
        background-size: auto 100%;
    }
    .hero-lamp {
        left: 36%;
        top: 0;
        transform-origin: top center;
    }
}

@media (max-width: 430px) {
    .hero {
        min-height: 100svh;
        height: 100svh;
    }
    .hero-content {
        padding-top: 78px;
    }
    .hero-content h1 {
        font-size: 48px;
        line-height: .98;
        margin-bottom: 20px;
    }
    .hero-info {
        margin-top: 18px;
        min-height: 90px;
    }
    .hero-btn {
        margin-top: 5px;
        position: relative;
        z-index: 10;
    }
    .hero-visual {
        height: 38%;
        background-size: auto 100%;
        background-position: center bottom;
    }
}
@media (min-width: 767px){
    html[dir="rtl"] .hero-content {
        direction: ltr !important;
        text-align: left !important;
        margin-left: 0 !important;
        margin-right: auto !important;
    }
}

/* HERO END */


/*about start*/

.fattosh-about {
    width: 100%;
    height: 620px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #7f0508;
    color: #f5e4d2;
    overflow: hidden;
}

.fattosh-about-box {
    position: relative;
    width: 100%;
    height: 620px;
    min-width: 0;
    overflow: hidden;
}

.fattosh-flip {
    perspective: 1500px;
    cursor: pointer;
}

.fattosh-flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.9s cubic-bezier(.2, .7, .2, 1);
}

.fattosh-flip.is-flipped .fattosh-flip-inner {
    transform: rotateY(180deg);
}

.fattosh-flip-side {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    overflow: hidden;
}

.fattosh-front {
    background: #7f0508;
}

.fattosh-front>img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    filter: grayscale(100%);
    transition: filter .5s ease, transform .6s ease;
}

.fattosh-flip:hover .fattosh-front>img {
    filter: grayscale(0%);
    transform: scale(1.025);
}

.fattosh-click {
    position: absolute;
    left: 50%;
    bottom: 25px;
    transform: translateX(-50%);
    padding: 9px 16px;
    background: rgba(0, 0, 0, .78);
    color: #f5e4d2;
    font-size: 9px;
    letter-spacing: 3px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity .3s ease;
    pointer-events: none;
}

.fattosh-flip:hover .fattosh-click {
    opacity: 1;
}

.fattosh-back {
    transform: rotateY(180deg);
    background: radial-gradient( circle at center, #a90000 0%, #7f0508 45%, #080808 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.fattosh-back::before {
    content: "";
    position: absolute;
    inset: 25px;
    border: 1px solid rgba(245, 228, 210, .35);
    pointer-events: none;
}

.fattosh-back-content {
    position: relative;
    z-index: 2;
    padding: 25px;
}

.fattosh-back-content p {
    margin: 0 0 18px;
    font-size: 10px;
    letter-spacing: 5px;
    opacity: .6;
}

.fattosh-back-content h2 {
    margin: 0;
    font-size: clamp(40px, 4vw, 68px);
    line-height: .85;
    letter-spacing: -2px;
}

.fattosh-back-content span {
    display: block;
    margin: 28px 0 18px;
    font-size: 28px;
}

.fattosh-back-content small {
    display: block;
    font-size: 11px;
    line-height: 1.7;
    opacity: .65;
}

.fattosh-middle {
    padding: 65px 55px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid rgba(245, 228, 210, .2);
    border-right: 1px solid rgba(245, 228, 210, .2);
}

.fattosh-about-title span {
    display: block;
    margin-bottom: 18px;
    font-size: 10px;
    letter-spacing: 4px;
    opacity: .6;
}

.fattosh-about-title h2 {
    margin: 0;
    font-size: clamp(48px, 5vw, 76px);
    line-height: .82;
    letter-spacing: -3px;
    font-weight: 300;
}

.fattosh-about-title h2 b {
    font-weight: 700;
}

.fattosh-about-text {
    max-width: 430px;
    margin: 35px 0 0;
    color: #eadbd0;
    font-size: 14px;
    line-height: 1.8;
}

.fattosh-info-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 30px;
}

.fattosh-info-box {
    min-height: 72px;
    padding: 12px;
    border: 1px solid rgba(245, 228, 210, .25);
    display: flex;
    align-items: center;
    gap: 12px;
}

.fattosh-info-box>span {
    font-size: 25px;
    flex-shrink: 0;
}

.fattosh-info-box small {
    display: block;
    margin-bottom: 5px;
    font-size: 8px;
    letter-spacing: 1px;
    opacity: .6;
}

.fattosh-info-box strong {
    display: block;
    font-size: 13px;
    font-weight: 500;
}

.fattosh-stats {
    padding: 45px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fattosh-stat {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 35px 0;
    border-bottom: 1px solid rgba(245, 228, 210, .2);
}

.fattosh-stat:first-child {
    border-top: 1px solid rgba(245, 228, 210, .2);
}

.fattosh-number {
    font-size: clamp(45px, 5vw, 72px);
    line-height: 1;
    font-weight: 300;
    letter-spacing: -3px;
}

.fattosh-number span {
    font-size: .45em;
    vertical-align: top;
    margin-left: 3px;
}

.fattosh-label {
    font-size: 9px;
    line-height: 1.5;
    letter-spacing: 1px;
    opacity: .7;
}

@media (max-width: 899px) and (min-width: 600px) {
    .fattosh-about {
        height: 520px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .fattosh-about-box {
        height: 520px;
    }
    .fattosh-middle {
        padding: 35px 22px;
    }
    .fattosh-stats {
        padding: 25px 20px;
    }
    .fattosh-about-text {
        font-size: 12px;
    }
    .fattosh-stat {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 25px 0;
    }
    .fattosh-number {
        font-size: 45px;
    }
}

@media (max-width: 599px) {
    .fattosh-about {
        height: auto;
        display: flex;
        flex-direction: column;
    }
    .fattosh-about-box {
        height: 550px;
        min-height: 550px;
    }
    .fattosh-middle {
        padding: 60px 28px;
    }
    .fattosh-info-row {
        grid-template-columns: 1fr;
    }
    .fattosh-stats {
        padding: 40px 28px;
    }
}

.fattosh-about {
    border: .03px var(--cream) solid;
    margin: auto;
    width: 90%;
}


/* end of about */


/* SKILLS START */

.skills-section {
    width: 100%;
    height: 330px;
    display: grid;
    grid-template-columns: 60% 40%;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 55px;
    margin-bottom: 55px;
}

.skills-section .skills-content {
    width: 100%;
    padding-left: 65px;
    position: relative;
    z-index: 2;
}

.skills-section .skills-content .skills-title {
    margin: 0 0 30px;
    color: #f5e4d2;
    font-size: 32px;
    font-weight: 500;
    letter-spacing: 1px;
}

.skills-section .skills-content .skills-list {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 32px;
}

.skills-section .skills-content .skills-list .skill {
    width: 70px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
}

.skills-section .skills-content .skills-list .skill .skill-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f5e4d2;
    font-size: 42px;
    transition: transform .35s ease, filter .35s ease;
}

.skills-section .skills-content .skills-list .skill:hover .skill-icon {
    transform: translateY(-7px) scale(1.12);
    filter: drop-shadow(0 0 8px rgba(245, 228, 210, .55));
}

.skills-section .skills-content .skills-list .skill .js-icon {
    width: 50px;
    height: 50px;
    background: #f5e4d2;
    color: #7f0508;
    font-family: Arial, sans-serif;
    font-size: 19px;
    font-weight: 800;
}

.skills-section .skills-content .skills-list .skill span {
    color: #f5e4d2;
    font-size: 12px;
    white-space: nowrap;
}

.skills-section .skills-art {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
    z-index: 1;
}

.skills-section .skills-art img {
    width: 60%;
    max-width: none;
    height: auto;
    display: block;
    object-fit: contain;
    transform: translateX(8%);
    transform-origin: center right;
    animation: skillsFloat 5s ease-in-out infinite;
    transition: transform .5s ease;
}

.skills-section .skills-art:hover img {
    transform: translateX(2%) scale(1.02);
}

@keyframes skillsFloat {
    0% {
        transform: translateX(8%) translateY(4px);
    }
    50% {
        transform: translateX(4%) translateY(-6px);
    }
    100% {
        transform: translateX(8%) translateY(4px);
    }
}

@media (max-width: 950px) {
    .skills-section {
        height: 280px;
        grid-template-columns: 62% 38%;
        margin-top: 40px;
        margin-bottom: 40px;
    }
    .skills-content {
        padding-left: 35px;
    }
    .skills-list {
        gap: 18px;
    }
    .skill {
        width: 58px;
    }
    .skill-icon {
        font-size: 34px;
    }
    .skill span {
        font-size: 9px;
    }
    .skills-art {
        height: 3500px;
    }
    .skills-art img {
        height: 200px;
    }
}

@media (max-width: 650px) {
    .skills-section {
        height: auto;
        min-height: 520px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        margin-top: 35px;
        margin-bottom: 35px;
    }
    .skills-section .skills-content {
        width: 100%;
        padding: 50px 20px 20px;
    }
    .skills-section .skills-content .skills-list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 25px;
    }
    
.skills-section .skills-art {
        height: 420px;
        margin-top: 10px;
        overflow: visible;
        justify-content: center;
    }

    .skills-section .skills-art img {
        width: 75%;
        height: auto;
        transform: translateY(40px);
        animation: none;
    }
}
@keyframes skillsFloatMobile {
    0% {
        transform: translateY(4px);
    }
    50% {
        transform: translateY(-7px);
    }
    100% {
        transform: translateY(4px);
    }
}


/* SKILLS END */


/* project starts */

.featured-project {
    width: 100%;
    min-height: 600px;
    display: grid;
    grid-template-columns: 38% 62%;
    align-items: center;
    gap: 20px;
    padding: 66px 5%;
    box-sizing: border-box;
    overflow: hidden;
    background-color: #0d0d0d;
}

.project-info {
    padding-left: 20px;
    
    position: relative;
    z-index: 2;
}

.project-label {
    display: block;
    margin-bottom: 30px;
    color: #a9080b;
    font-size: 25px;
    letter-spacing: 1px;
    font-weight: 500;
}

.project-number {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #a9080b;
    font-size: 18px;
}

.project-number span {
    width: 55px;
    height: 2px;
    display: block;
    background: #a9080b;
}

.project-info h2 {
    margin: 0 0 20px;
    color: #f5e4d2;
    font-size: clamp(38px, 4vw, 58px);
    line-height: .95;
    letter-spacing: 1px;
    font-weight: 600;
}

.project-info p {
    max-width: 430px;
    margin: 0 0 30px;
    color: #ddd0c5;
    font-size: 14px;
    line-height: 1.8;
}

.project-btn {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 15px 20px;
    border: 1px solid #a9080b;
    color: #f5e4d2;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 1px;
    transition: background .3s ease, color .3s ease, transform .3s ease;
}

.project-btn span {
    color: #a9080b;
    font-size: 22px;
    line-height: 1;
    transition: transform .3s ease;
}

.project-btn:hover {
    background: #a9080b;
    color: #fff;
    transform: translateY(-3px);
}

.project-btn:hover span {
    color: #fff;
    transform: translate(4px, -4px);
}

.project-preview {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.laptop {
    width: min(760px, 100%);
    position: relative;
    transform: translateX(30px);
    transition: transform .5s ease;
}

.project-preview:hover .laptop {
    transform: translateX(15px) translateY(-8px);
}

.laptop-screen {
    width: 100%;
    aspect-ratio: 16 / 9;
    padding: 13px;
    box-sizing: border-box;
    background: #111;
    border: 2px solid #292929;
    border-radius: 18px 18px 5px 5px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .35);
    overflow: hidden;
    position: relative;
}

.laptop-screen img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 4px;
    transition: transform .6s ease;
}

.project-preview:hover .laptop-screen img {
    transform: scale(1.025);
}

.laptop-bottom {
    width: 110%;
    height: 14px;
    position: relative;
    left: -5%;
    margin-top: 0;
    background: linear-gradient( to bottom, #777, #292929 45%, #111);
    border-radius: 0 0 10px 10px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, .4);
}
/* Rope separator - hidden by default */
.mobile-separator {
    display: none;
}


@media (max-width: 950px) {
    .featured-project {
        grid-template-columns: 40% 60%;
        min-height: 500px;
        padding: 50px 4%;
    }

    .project-info {
        padding-left: 0;
    }

    .project-label {
        font-size: 20px;
        margin-bottom: 22px;
    }

    .project-info h2 {
        font-size: 38px;
    }

    .project-info p {
        font-size: 12px;
    }

    .laptop {
        transform: translateX(10px);
    }
}

@media (max-width: 700px) {
    .featured-project {
        display: flex;
        flex-direction: column;
        min-height: auto;
        padding: 60px 20px;
        gap: 45px;
        align-items: stretch;
    }

    .project-info {
        padding: 0;
    }

    .project-label {
        font-size: 22px;
    }

    .project-info h2 {
        font-size: 42px;
    }

    .project-info p {
        max-width: 100%;
    }

    .project-preview {
        width: 100%;
    }

    .laptop {
        width: 100%;
        transform: none;
    }

    .project-preview:hover .laptop {
        transform: translateY(-5px);
    }

    .mobile-separator {
        display: flex;
        justify-content: center;
        align-items: center;

        width: 100%;
        height: 420px;

        padding: 0;
        margin-top: -45px;
        margin-bottom: -45px;

        overflow: hidden;

        background: radial-gradient(
            circle at center,
            rgba(169, 8, 11, 0.35) 0%,
            rgba(169, 8, 11, 0.15) 35%,
            transparent 70%
        );
    }

    .mobile-separator svg {
        display: block;

        width: auto;
        height: 380px;
        max-width: 75%;

        
        transition: transform 0.4s ease;
    }

    .mobile-separator svg:hover {
        transform: scale(1.03);
    }
}

@media (min-width: 701px) {
    .featured-project > .project-preview:nth-child(4) ,
    .p4 {
        padding-right: 50px;
    }

    .featured-project > .project-info:nth-child(5),
    .i4{
        padding-left: 70px;
    }
}


/* project end */


/* certificates start */

.certificates-section {
    width: 100%;
    min-height: 500px;
    padding: 60px 5%;
    box-sizing: border-box;
    overflow: hidden;
    margin-top: 55px;
    margin-bottom: 55px;
}

.certificates-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 35px;
}

.certificates-header h2 {
    margin: 0;
    color: #f5e4d2;
    font-size: 32px;
    font-weight: 500;
    letter-spacing: 1px;
}

.view-certificates {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #f5e4d2;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 1px;
    transition: .3s ease;
}

.view-certificates span {
    color: #a9080b;
    font-size: 20px;
    transition: .3s ease;
}

.view-certificates:hover {
    color: #a9080b;
}

.view-certificates:hover span {
    transform: translate(4px, -4px);
}

.certificates-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.certificates-track {
    display: flex;
    width: 100%;
    transition: transform .8s cubic-bezier(.65, 0, .35, 1);
}

.certificate-card {
    min-width: 100%;
    height: 340px;
    padding: 12px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.certificate-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
    transition: transform .5s ease, filter .5s ease;
}

.certificate-card:hover img {
    transform: scale(1.015);
}

.certificate-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
}

.certificate-dots .dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(245, 228, 210, .45);
    cursor: pointer;
    transition: transform .3s ease, background .3s ease;
}

.dot.active {
    background: #a9080b;
    transform: scale(1.4);
}

.dot:hover {
    transform: scale(1.3);
}

@media (max-width: 950px) {
    .certificates-section {
        min-height: 430px;
        padding: 50px 4%;
        margin-top: 40px;
        margin-bottom: 40px;
    }
    .certificate-card {
        height: 290px;
    }
    .certificates-header h2 {
        font-size: 28px;
    }
}

@media (max-width: 700px) {
    .certificates-section {
        min-height: auto;
        padding: 50px 20px;
        margin-top: 35px;
        margin-bottom: 35px;
    }
    .certificates-header {
        margin-bottom: 25px;
        align-items: flex-start;
        gap: 15px;
    }
    .certificates-header h2 {
        font-size: 26px;
    }
    .view-certificates {
        font-size: 9px;
        white-space: nowrap;
    }
    .view-certificates span {
        font-size: 16px;
    }
    .certificate-card {
        height: auto;
        min-height: 240px;
        padding: 5px;
    }
    .certificate-card img {
        width: 100%;
        height: auto;
        max-height: 300px;
        object-fit: contain;
    }
    .certificate-dots {
        margin-top: 20px;
        gap: 9px;
    }
    .dot {
        width: 8px;
        height: 8px;
    }
}
@media (max-width: 700px) {
    .certificate-card {
        flex-direction: column;
    }

    .certificate-card p {
        margin: 3px 0 0 !important;
        font-size: 8px !important;
        line-height: 1.2;
        text-align: center;
    }
}
html[dir="rtl"] #certificates {
    direction: ltr !important;
    text-align: left !important;
}

html[dir="rtl"] #certificates * {
    direction: ltr !important;
}

html[dir="rtl"] #certificates .container,
html[dir="rtl"] #certificates .certificates-container {
    direction: ltr !important;
}

html[dir="rtl"] #certificates h2,
html[dir="rtl"] #certificates h3,
html[dir="rtl"] #certificates p,
html[dir="rtl"] #certificates span,
html[dir="rtl"] #certificates a {
    text-align: left !important;
}
/* journey start */

.journey {
    position: relative;
    min-height: 100vh;
    padding: 150px 7vw 70px;
    background: #0b0909;
    color: #eee5d2;
    overflow: hidden;
}

.journey::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.035;
    background-image: repeating-linear-gradient( 0deg, transparent 0, transparent 3px, #eee5d2 4px);
}

.journey-header {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: end;
    gap: 40px;
    margin-bottom: 120px;
}

.section-number {
    font-family: monospace;
    font-size: 11px;
    letter-spacing: 3px;
    color: #9f2929;
    align-self: start;
    padding-top: 15px;
}

.journey-header h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(70px, 10vw, 150px);
    line-height: 0.78;
    font-weight: 400;
    letter-spacing: -7px;
    text-transform: uppercase;
}

.journey-header p {
    margin: 0;
    max-width: 230px;
    justify-self: end;
    color: #a99f91;
    font-family: Arial, sans-serif;
    font-size: 13px;
    line-height: 1.8;
    letter-spacing: 0.5px;
}

.journey-stage {
    position: relative;
    max-width: 1350px;
    margin: auto;
    min-height: 650px;
}

.journey-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    transform: translateX(-50%);
    background: rgba(238, 229, 210, 0.15);
}

.journey-line::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 7px;
    height: 7px;
    transform: translate(-50%, 0);
    background: #9f2929;
    border-radius: 50%;
    box-shadow: 0 0 0 7px rgba(159, 41, 41, 0.08);
}

.journey-line::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 5px;
    height: 5px;
    transform: translateX(-50%);
    background: #eee5d2;
    border-radius: 50%;
}

.journey-line span {
    position: absolute;
    left: 50%;
    width: 9px;
    height: 9px;
    transform: translateX(-50%);
    border: 1px solid #9f2929;
    background: #0b0909;
    border-radius: 50%;
    z-index: 3;
}

.journey-line span:nth-child(1) {
    top: 12%;
}

.journey-line span:nth-child(2) {
    top: 37%;
}

.journey-line span:nth-child(3) {
    top: 62%;
}

.journey-line span:nth-child(4) {
    top: 87%;
}

.journey-content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 150px;
    row-gap: 110px;
}

.journey-item {
    position: relative;
    padding: 5px 0 35px;
    border-bottom: 1px solid rgba(238, 229, 210, 0.13);
    transition: transform 0.5s ease;
}

.journey-item:nth-child(odd) {
    text-align: right;
    padding-right: 55px;
}

.journey-item:nth-child(even) {
    text-align: left;
    padding-left: 55px;
}

.year {
    display: inline-block;
    margin-bottom: 22px;
    font-family: monospace;
    font-size: 10px;
    letter-spacing: 3px;
    color: #9f2929;
}

.journey-item h3 {
    margin: 0 0 17px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(28px, 3vw, 48px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -1.5px;
    color: #eee5d2;
}

.journey-item p {
    max-width: 360px;
    margin: 0 0 25px;
    color: #928a7e;
    font-family: Arial, sans-serif;
    font-size: 13px;
    line-height: 1.8;
}

.journey-item:nth-child(odd) p {
    margin-left: auto;
}

.skills {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.journey-item:nth-child(odd) .skills {
    justify-content: flex-end;
}

.skills span {
    padding: 7px 11px;
    border: 1px solid rgba(238, 229, 210, 0.18);
    color: #aaa092;
    font-family: monospace;
    font-size: 9px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.skills span:hover {
    border-color: #9f2929;
    color: #eee5d2;
}

.journey-item.current {
    border-bottom-color: #9f2929;
}

.journey-item.current .year {
    color: #eee5d2;
}

.journey-item.current h3 {
    color: #9f2929;
}

.journey-item.current::after {
    content: "CURRENT";
    position: absolute;
    top: 3px;
    right: 0;
    font-family: monospace;
    font-size: 8px;
    letter-spacing: 2px;
    color: #9f2929;
}

.journey-item.current:nth-child(even)::after {
    left: 0;
    right: auto;
}

.journey-image {
    position: absolute;
    overflow: hidden;
    z-index: 0;
    filter: grayscale(100%);
    opacity: 0.32;
    mix-blend-mode: luminosity;
}

.journey-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-one {
    width: 180px;
    height: 240px;
    top: 8%;
    left: -2%;
    transform: rotate(-5deg);
}

.image-two {
    width: 150px;
    height: 200px;
    right: -1%;
    bottom: 8%;
    transform: rotate(6deg);
}

.journey-bottom {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 130px;
    padding-top: 25px;
    border-top: 1px solid rgba(238, 229, 210, 0.2);
}

.journey-bottom span {
    font-family: monospace;
    font-size: 10px;
    letter-spacing: 4px;
    color: #9f2929;
}

.journey-bottom strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(28px, 4vw, 55px);
    font-weight: 400;
    letter-spacing: -2px;
    color: #eee5d2;
}

.journey-item:hover {
    transform: translateY(-5px);
}@media (min-width: 900px) {
    .journey {
        min-height:70vh;
    }
}
@media (max-width: 900px) {
    .journey {
        padding: 100px 6vw 60px;
    }
    .journey-header {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 80px;
    }
    .journey-header h2 {
        font-size: clamp(65px, 18vw, 120px);
    }
    .journey-header p {
        justify-self: start;
    }
    .journey-stage {
        min-height: auto;
    }
    .journey-content {
        grid-template-columns: 1fr;
        gap: 70px;
        padding-left: 35px;
    }
    .journey-line {
        left: 0;
    }
    .journey-item:nth-child(odd),
    .journey-item:nth-child(even) {
        text-align: left;
        padding-left: 35px;
        padding-right: 0;
    }
    .journey-item:nth-child(odd) p {
        margin-left: 0;
    }
    .journey-item:nth-child(odd) .skills {
        justify-content: flex-start;
    }
    .journey-item.current::after,
    .journey-item.current:nth-child(even)::after {
        left: auto;
        right: 0;
    }
    .image-one {
        left: auto;
        right: 0;
        top: 10%;
        width: 120px;
        height: 160px;
        opacity: 0.18;
    }
    .image-two {
        display: none;
    }
    .journey-bottom {
        margin-top: 90px;
        gap: 30px;
        align-items: flex-end;
    }
    .journey-bottom strong {
        text-align: right;
    }
}

@media (max-width: 500px) {
    .journey {
        padding: 80px 20px 45px;
    }
    .journey-header h2 {
        font-size: 65px;
        letter-spacing: -4px;
    }
    .journey-content {
        padding-left: 25px;
        gap: 55px;
    }
    .journey-item:nth-child(odd),
    .journey-item:nth-child(even) {
        padding-left: 25px;
    }
    .journey-item h3 {
        font-size: 30px;
    }
    .journey-item p {
        font-size: 12px;
    }
    .journey-bottom {
        display: block;
    }
    .journey-bottom strong {
        display: block;
        margin-top: 15px;
        text-align: left;
        font-size: 34px;
    }
    .image-one {
        display: none;
    }
}

.journey-item {
    cursor: pointer;
}

.journey-item.active {
    border-bottom-color: #9f2929;
    transform: translateY(-8px);
}

.journey-item.active h3 {
    color: #9f2929;
}

.journey-item.active .year {
    color: #eee5d2;
}

.journey-item.active .skills span {
    border-color: #9f2929;
    color: #eee5d2;
}

.journey-item.active::before {
    content: "";
    position: absolute;
    top: 50%;
    width: 7px;
    height: 7px;
    background: #9f2929;
    border-radius: 50%;
    box-shadow: 0 0 10px #9f2929, 0 0 25px rgba(159, 41, 41, 0.7);
}

.journey-item:nth-child(odd).active::before {
    right: -154px;
}

.journey-item:nth-child(even).active::before {
    left: -154px;
}

.journey-line span.active {
    background: #9f2929;
    border-color: #eee5d2;
    box-shadow: 0 0 10px #9f2929, 0 0 25px rgba(159, 41, 41, 0.7);
    transform: translateX(-50%) scale(1.5);
}

@media (max-width: 900px) {
    .journey-item:nth-child(odd).active::before,
    .journey-item:nth-child(even).active::before {
        left: -39px;
        right: auto;
    }
}


/* end of journey */
/*what can i do start*/
.what-can {
  position: relative;
  overflow: hidden;
  background: #8d0004;
  color: #f6e9d8;
  padding: 110px 6%;
}

.what-can-content {
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 2;
}

.what-can-man {
  position: absolute;
  width: 390px;
  left: -30px;
  bottom: 0;
  z-index: 1;
}

.what-can-title {
  margin-left: 22%;
  margin-bottom: 55px;
}

.what-can-title span {
  font-size: 12px;
  letter-spacing: 4px;
  opacity: .7;
}

.what-can-title h2 {
  font-family: Georgia, serif;
  font-size: clamp(50px, 7vw, 95px);
  font-weight: 400;
  line-height: .95;
  margin: 20px 0;
}

.what-can-title h2 em {
  font-style: italic;
}

.what-can-title p {
  font-size: 17px;
  opacity: .75;
}

.services {
  margin-left: 22%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.service {
  position: relative;
  min-height: 270px;
  padding: 32px;
  border: 1px solid rgba(246, 233, 216, .4);
  margin: -1px 0 0 -1px;
  transition: .3s;
}

.service:hover {
  background: rgba(0, 0, 0, .12);
}

.service-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.service-head span {
  font-family: Georgia, serif;
  font-size: 40px;
}

.service-head b {
  font-size: 22px;
  font-weight: 400;
}

.service h3 {
  font-family: Georgia, serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 18px;
}

.service p {
  max-width: 390px;
  font-size: 14px;
  line-height: 1.7;
  opacity: .75;
}

.service a {
  position: absolute;
  right: 30px;
  bottom: 25px;
  color: inherit;
  font-size: 24px;
  text-decoration: none;
}

.what-can-bottom {
  margin-left: 22%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  padding-top: 60px;
  font-size: 11px;
  letter-spacing: 5px;
}

.what-can-bottom i {
  width: 30px;
  height: 1px;
  background: #f6e9d8;
  opacity: .6;
}

@media (max-width: 900px) {
  .what-can {
    padding: 80px 5%;
  }

  .what-can-man {
    width: 280px;
    left: -90px;
    opacity: .7;
  }

  .what-can-title,
  .services,
  .what-can-bottom {
    margin-left: 14%;
  }

  .services {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .what-can {
    padding: 70px 20px;
  }

  .what-can-man {
    width: 230px;
    left: -100px;
    opacity: .4;
  }

  .what-can-title {
    margin-left: 0;
  }

  .what-can-title span {
    font-size: 10px;
  }

  .what-can-title h2 {
    font-size: 48px;
  }

  .what-can-title p {
    font-size: 15px;
  }

  .services {
    margin-left: 0;
    grid-template-columns: 1fr;
  }

  .service {
    min-height: 220px;
    padding: 25px;
  }

  .service-head span {
    font-size: 34px;
  }

  .service h3 {
    font-size: 26px;
  }

  .service p {
    font-size: 13px;
    max-width: 85%;
  }

  .what-can-bottom {
    margin-left: 0;
    padding-top: 45px;
    gap: 8px;
    font-size: 9px;
    letter-spacing: 3px;
  }
}


body.service-open::before {
  content: "";
  position: fixed;
  inset: 0;

  background: rgba(0, 0, 0, 0.5);

  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  z-index: 9999;
  pointer-events: none;
}


.service {
  position: relative;
  z-index: 1;
  cursor: pointer;

  transition:
    transform 0.6s cubic-bezier(.2, .8, .2, 1),
    box-shadow 0.6s ease;
}



.service.active {
  position: fixed;

  left: 50%;
  top: 50%;

  width: min(500px, 85vw);
  min-height: 350px;

  transform: translate(-50%, -50%) scale(1.05);

  z-index: 10000 !important;

  opacity: 1;
  filter: none !important;

  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.service.active,
.service.active h3,
.service.active p,
.service.active span,
.service.active b {
  color: var(--cream)!important;
    background:var(--red-dark)!important;
}
/*end wt can i do*/


/* start of contact */

.contact {
    position: relative;
    padding: 120px 6vw;
    background: #0b0909;
    overflow: hidden;
    direction: ltr;
}

.contact-paper {
    position: relative;
    width: min(1200px, 100%);
    min-height: 900px;
    margin: auto;
    padding: 75px 80px 35px 100px;
    background-color: #f3ead8;
    color: #171313;
    box-shadow: 18px 20px 0 #000;
    overflow: hidden;
    transform: rotate(-0.35deg);
}

.contact-paper::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.45;
    background-image: linear-gradient( rgba(139, 32, 32, 0.22) 1px, transparent 1px);
    background-size: 100% 32px;
}

.contact-paper::after {
    content: "";
    position: absolute;
    top: 0;
    left: 72px;
    width: 1px;
    height: 100%;
    background: rgba(139, 32, 32, 0.35);
}

.contact-holes {
    position: absolute;
    top: 45px;
    left: 25px;
    bottom: 45px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 3;
}

.contact-holes span {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #0b0909;
    box-shadow: inset 2px 2px 4px rgba(255, 255, 255, 0.15), 0 1px 0 rgba(0, 0, 0, 0.2);
}

.contact-header {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 45px;
}

.contact-number {
    display: block;
    margin-bottom: 15px;
    font-family: monospace;
    font-size: 10px;
    letter-spacing: 3px;
    color: #8b2020;
}

.contact-note {
    display: inline-block;
    margin-bottom: 5px;
    font-family: "Comic Sans MS", cursive;
    font-size: 15px;
    color: #777064;
    transform: rotate(-4deg);
}

.contact-title h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(65px, 9vw, 125px);
    font-weight: 400;
    line-height: 0.78;
    letter-spacing: -6px;
}

.contact-title h2 em {
    color: #8b2020;
    font-style: normal;
}

.contact-title p {
    margin: 28px 0 0;
    font-family: "Comic Sans MS", cursive;
    font-size: 13px;
    line-height: 1.8;
    color: #71695e;
    transform: rotate(-1deg);
}

.contact-stamp {
    width: 125px;
    height: 125px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px solid #8b2020;
    color: #8b2020;
    transform: rotate(8deg);
    opacity: 0.85;
    margin-top: 20px;
}

.contact-stamp span {
    font-family: monospace;
    font-size: 9px;
    letter-spacing: 3px;
}

.contact-stamp strong {
    margin: 7px 0;
    font-family: Georgia, serif;
    font-size: 19px;
    line-height: 0.9;
    text-align: center;
}

.contact-stamp small {
    font-family: monospace;
    font-size: 9px;
}

.contact-divider {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 55px;
}

.contact-divider span:nth-child(2) {
    flex: 1;
    height: 1px;
    background: rgba(23, 19, 19, 0.35);
}

.contact-divider span {
    color: #8b2020;
    font-size: 12px;
}

.contact-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.85fr 1.5fr;
    gap: 90px;
    align-items: start;
}

.contact-art {
    position: relative;
    width: 270px;
    margin: 20px auto 0;
    transform: rotate(-5deg);
}

.art-frame {
    position: relative;
    padding: 12px;
    background: #eee4d1;
    box-shadow: 8px 10px 0 rgba(0, 0, 0, 0.14);
}

.art-frame img {
    display: block;
    width: 100%;
    height: 330px;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.05);
}

.tape {
    position: absolute;
    z-index: 5;
    width: 105px;
    height: 32px;
    top: -16px;
    left: 50%;
    background: rgba(190, 166, 126, 0.7);
    transform: translateX(-50%) rotate(3deg);
}

.art-caption {
    display: block;
    margin-top: 20px;
    font-family: "Comic Sans MS", cursive;
    font-size: 12px;
    color: #625b51;
    text-align: center;
    transform: rotate(2deg);
}

.scribble {
    position: absolute;
    right: -55px;
    bottom: 45px;
    color: #8b2020;
    font-family: cursive;
    font-size: 42px;
    transform: rotate(-15deg);
}

.contact-form {
    position: relative;
}

.field {
    position: relative;
    margin-bottom: 30px;
}

.field label {
    display: block;
    margin-bottom: 5px;
    font-family: monospace;
    font-size: 10px;
    letter-spacing: 2px;
    color: #8b2020;
}

.field input,
.field textarea {
    width: 100%;
    padding: 8px 2px 9px;
    border: 0;
    border-bottom: 1px solid rgba(23, 19, 19, 0.65);
    outline: none;
    background: transparent;
    color: #171313;
    font-family: "Comic Sans MS", cursive;
    font-size: 15px;
    resize: none;
}

.field textarea {
    min-height: 130px;
    line-height: 32px;
    background-image: linear-gradient( transparent 31px, rgba(23, 19, 19, 0.15) 32px);
    background-size: 100% 32px;
}

.field input::placeholder,
.field textarea::placeholder {
    color: #928a7e;
    opacity: 0.8;
}

.field input:focus,
.field textarea:focus {
    border-bottom-color: #8b2020;
}

.field.error input,
.field.error textarea {
    border-bottom-color: #8b2020;
}

.error-message {
    display: block;
    min-height: 16px;
    margin-top: 5px;
    font-family: "Comic Sans MS", cursive;
    font-size: 10px;
    color: #8b2020;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 35px;
}

.form-hint {
    font-family: "Comic Sans MS", cursive;
    font-size: 11px;
    color: #777064;
    transform: rotate(-2deg);
}

.send-button {
    position: relative;
    padding: 13px 25px;
    border: 1px solid #171313;
    background: transparent;
    color: #171313;
    font-family: monospace;
    font-size: 11px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.3s ease;
}

.send-button::after {
    content: "";
    position: absolute;
    inset: 4px -4px -4px 4px;
    border: 1px solid #8b2020;
    z-index: -1;
    transition: 0.3s ease;
}

.send-button:hover {
    background: #8b2020;
    color: #f3ead8;
    transform: translate(-2px, -2px);
}

.send-button:hover::after {
    transform: translate(4px, 4px);
}

.send-button b {
    margin-left: 10px;
    font-size: 16px;
}

.success-message {
    display: none;
    margin-top: 25px;
    padding: 14px;
    border-left: 2px solid #8b2020;
    color: #8b2020;
    font-family: "Comic Sans MS", cursive;
    font-size: 12px;
}

.success-message.show {
    display: block;
}

.contact-bottom {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 100px 1fr auto;
    align-items: end;
    gap: 35px;
    margin-top: 85px;
    padding-top: 30px;
    border-top: 1px dashed rgba(23, 19, 19, 0.4);
}

.mini-art {
    width: 85px;
    height: 105px;
    overflow: hidden;
    transform: rotate(7deg);
    box-shadow: 5px 6px 0 rgba(0, 0, 0, 0.15);
}

.mini-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.contact-quote span {
    display: block;
    font-family: monospace;
    font-size: 9px;
    letter-spacing: 3px;
    color: #8b2020;
}

.contact-quote strong {
    display: block;
    margin-top: 8px;
    font-family: Georgia, serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 0.9;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: right;
}

.contact-links a {
    color: #171313;
    font-family: monospace;
    font-size: 9px;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: 0.3s ease;
}

.contact-links a:hover {
    color: #8b2020;
    transform: translateX(-5px);
}

.contact-footer {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    margin-top: 45px;
    padding-top: 15px;
    border-top: 1px solid rgba(23, 19, 19, 0.2);
    font-family: monospace;
    font-size: 8px;
    letter-spacing: 2px;
    color: #827a6d;
}.content {
  cursor: url("../images/Pen.png") 10 30, auto;
}

@media (max-width: 800px) {
    .contact {
        padding: 70px 20px;
    }
    .contact-paper {
        padding: 60px 35px 30px 55px;
    }
    .contact-paper::after {
        left: 38px;
    }
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 55px;
    }
    .contact-art {
        width: 210px;
        margin: 10px auto 30px;
    }
    .art-frame img {
        height: 260px;
    }
    .contact-stamp {
        width: 90px;
        height: 90px;
    }
    .contact-stamp strong {
        font-size: 14px;
    }
    .contact-bottom {
        grid-template-columns: 80px 1fr;
    }
    .contact-links {
        grid-column: 2;
        text-align: left;
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media (max-width: 500px) {
    .contact {
        padding: 40px 12px;
    }
    .contact-paper {
        min-height: auto;
        padding: 50px 22px 25px 45px;
        box-shadow: 8px 10px 0 #000;
    }
    .contact-paper::after {
        left: 30px;
    }
    .contact-holes {
        left: 9px;
    }
    .contact-holes span {
        width: 13px;
        height: 13px;
    }
    .contact-header {
        display: block;
    }
    .contact-title h2 {
        font-size: 68px;
        letter-spacing: -4px;
    }
    .contact-stamp {
        margin: 35px 0 0 auto;
    }
    .contact-divider {
        margin-bottom: 40px;
    }
    .contact-layout {
        gap: 35px;
    }
    .form-footer {
        align-items: flex-start;
        gap: 20px;
    }
    .contact-bottom {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .contact-links {
        grid-column: auto;
        text-align: left;
    }
    .contact-footer {
        gap: 15px;
        line-height: 1.6;
    }
}


/* end of contact form */


/* start of contact footer */

.swan-footer {
    position: relative;
    min-height: 700px;
    padding: 45px 7vw 25px;
    background: #090707;
    color: #eee5d2;
    overflow: hidden;
}

.swan-footer::before {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -45%);
    border: 1px solid rgba(238, 229, 210, 0.08);
    border-radius: 50%;
}

.swan-footer-inner {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: auto;
}

.footer-label {
    display: flex;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(238, 229, 210, 0.15);
    font-family: monospace;
    font-size: 9px;
    letter-spacing: 3px;
    color: #777067;
}

.footer-label span:first-child {
    color: #9f2929;
}

.swan-scene {
    position: relative;
    min-height: 390px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swan-title {
    position: relative;
    z-index: 3;
    text-align: center;
}

.swan-title>span {
    display: block;
    margin-bottom: 20px;
    font-family: monospace;
    font-size: 9px;
    letter-spacing: 4px;
    color: #9f2929;
}

.swan-title h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(75px, 13vw, 190px);
    font-weight: 400;
    line-height: 0.7;
    letter-spacing: -10px;
}

.swan-title h2 span {
    color: #9f2929;
}

.swan-title p {
    margin: 30px 0 0;
    font-family: monospace;
    font-size: 9px;
    letter-spacing: 4px;
    color: #777067;
}

.swan {
    position: absolute;
    width: 190px;
    height: 280px;
    z-index: 1;
}

.swan svg {
    width: 100%;
    height: 100%;
    fill: #eee5d2;
    opacity: 0.9;
}

.swan-left {
    left: 7%;
    bottom: 30px;
    transform: rotate(-8deg);
}

.swan-right {
    right: 7%;
    bottom: 30px;
    transform: rotate(8deg);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(238, 229, 210, 0.15);
    border-bottom: 1px solid rgba(238, 229, 210, 0.15);
}

.footer-links a {
    display: grid;
    grid-template-columns: 30px 1fr 25px;
    align-items: center;
    padding: 20px 18px;
    color: #eee5d2;
    text-decoration: none;
    border-right: 1px solid rgba(238, 229, 210, 0.15);
    font-family: monospace;
    font-size: 10px;
    letter-spacing: 2px;
    transition: 0.35s ease;
}

.footer-links a:last-child {
    border-right: 0;
}

.footer-links a span {
    color: #9f2929;
    font-size: 8px;
}

.footer-links a b {
    font-size: 15px;
    font-weight: 400;
    transition: 0.35s ease;
}

.footer-links a:hover {
    background: #9f2929;
    color: #eee5d2;
}

.footer-links a:hover b {
    transform: translate(5px, -5px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 22px;
    font-family: monospace;
    font-size: 8px;
    letter-spacing: 1.5px;
    color: #5f5a53;
}

.footer-bottom button {
    padding: 0;
    border: 0;
    background: transparent;
    color: #9f2929;
    font-family: monospace;
    font-size: 8px;
    letter-spacing: 1.5px;
    cursor: pointer;
}

.footer-bottom button:hover {
    color: #eee5d2;
}

@media (max-width: 800px) {
    .swan-footer {
        min-height: 620px;
        padding: 35px 6vw 20px;
    }
    .swan-scene {
        min-height: 330px;
    }
    .swan {
        width: 125px;
        height: 190px;
    }
    .swan-left {
        left: -5px;
    }
    .swan-right {
        right: -5px;
    }
    .swan-title h2 {
        font-size: 75px;
        letter-spacing: -5px;
    }
    .swan-title>span {
        font-size: 7px;
    }
    .footer-links a {
        grid-template-columns: 1fr;
        gap: 8px;
        text-align: center;
    }
    .footer-links a span,
    .footer-links a b {
        display: none;
    }
    .footer-bottom {
        flex-wrap: wrap;
        gap: 15px;
    }
}

@media (max-width: 500px) {
    .swan-scene {
        min-height: 280px;
    }
    .swan {
        width: 85px;
        height: 135px;
    }
    .swan-left {
        left: -18px;
        bottom: 15px;
    }
    .swan-right {
        right: -18px;
        bottom: 15px;
    }
    .swan-title h2 {
        font-size: 58px;
    }
    .swan-title p {
        font-size: 7px;
        letter-spacing: 2px;
    }
    .footer-links {
        grid-template-columns: 1fr;
    }
    .footer-links a {
        min-height: 55px;
        border-right: 0;
        border-bottom: 1px solid rgba(238, 229, 210, 0.15);
    }
    .footer-links a:last-child {
        border-bottom: 0;
    }
    .footer-bottom {
        font-size: 7px;
    }
}


/* end of contact footer */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    letter-spacing: 1px;
}

.language-switcher button {
    border: none;
    background: transparent;
    color: #8b2f2f;
    font: inherit;
    cursor: pointer;
    padding: 4px;
    transition: 0.3s ease;
}

.language-switcher button.active {
    color: #b33a3a;
}

.language-switcher button:hover {
    color: #c94a4a;
}

.language-switcher span {
    color: #5c2020;
}

#google_translate_element {
    display: none !important;
}

.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
iframe.goog-te-banner-frame {
    display: none !important;
    visibility: hidden !important;
}

body {
    top: 0 !important;
}

html {
    margin-top: 0 !important;
}

body > .skiptranslate {
    display: none !important;
}

body > .skiptranslate iframe {
    display: none !important;
}

.goog-te-gadget {
    display: none !important;
}

.goog-tooltip,
.goog-te-balloon-frame {
    display: none !important;
}

.goog-text-highlight {
    background: transparent !important;
    box-shadow: none !important;
}

@media (max-width: 700px) {
    .language-switcher {
        font-size: 11px;
        gap: 5px;
    }
}
.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
body > .skiptranslate {
    display: none !important;
}

body {
    top: 0 !important;
}

html {
    margin-top: 0 !important;
}

.goog-te-gadget,
.goog-tooltip,
.goog-te-balloon-frame,
.goog-text-highlight {
    display: none !important;
}
.goog-te-spinner-pos,
.goog-te-spinner,
.goog-te-menu-frame,
.goog-te-balloon-frame,
.goog-tooltip,
.goog-te-banner-frame,
.goog-te-ftab,
#goog-gt-tt {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

body {
    top: 0 !important;
}

.language-switcher {
    translate: no;
}html[dir="rtl"] .nav-links {
    direction: rtl;
}

html[dir="rtl"] .project-info {
    text-align: right;
}

.goog-te-banner-frame, 
.goog-te-gadget-icon,
#google_translate_element,
.skiptranslate {
    display: none !important;
}

body {
    top: 0px !important;
}

