/* =========================
   COLOR & FONT VARIABLES
========================= */
:root {
    --tj-ff-body: "Sora", sans-serif;
    --tj-ff-heading: "Sora", sans-serif;
    --tj-ff-russo: "Russo One", sans-serif;
    --tj-ff-fontawesome: "Font Awesome 6 Pro";
    --tj-body: #dddddd;
    --tj-white: #ffffff;
    --tj-off-white: #f6f3fc;
    --tj-black: #000000;
    --tj-black-2: #050709;
    --tj-black3: #5c6266;
    --tj-black4: #585859;
    --tj-heading-primary: #8750f7;
    --tj-heading-secondary: #ffffff;
    --tj-theme-primary: #8750f7;
    --tj-theme-primary-1: #2400ff;
    --tj-theme-primary-2: #9b8dff;
    --tj-theme-primary-3: #4654f9;
    --tj-theme-secondary: #2a1454;
    --tj-theme-accent-1: #0f0715;
    --tj-theme-accent-2: #140c1c;
    --tj-scrollbar-primary: #8750f7;
    --tj-scrollbar-secondary: #2a1454;
    --tj-grey-1: #747779;
    --tj-grey-2: #d9d9d9;
    --tj-grey-3: #dddddd;
    --tj-grey-4: #22272c;
    --tj-grey-5: #636363;
    --tj-grey-6: #1b262e;
    --tj-bg: #0c1115;
    --tj-bg-2: #0e1418;
    --tj-bg-3: #10171c;
    --tj-bg-4: #151b1f;
    --tj-border: #1b2227;
    --tj-border1: #2a343c;
    --tj-fw-normal: normal;
    --tj-fw-elight: 200;
    --tj-fw-light: 300;
    --tj-fw-regular: 400;
    --tj-fw-medium: 500;
    --tj-fw-sbold: 600;
    --tj-fw-bold: 700;
    --tj-fw-ebold: 800;
    --tj-fw-black: 900;
    --tj-fz-body: 16px;
    --tj-fz-btn: 15px;
    --tj-fz-p: 18px;
    --tj-fz-h1: 65px;
    --tj-fz-h2: 45px;
    --tj-fz-h3: 30px;
    --tj-fz-h4: 24px;
    --tj-fz-h5: 22px;
    --tj-fz-h6: 18px;
    --tj-fz-sub-title: 36px;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

body {
    font-family: var(--tj-ff-body);
    background: var(--tj-bg);
    color: var(--tj-body);
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--tj-ff-heading);
    color: var(--tj-heading-secondary);
    font-weight: var(--tj-fw-bold);
}
/* Works on Chrome, Edge, Safari */
::-webkit-scrollbar {
    width: 6px; /* width of the scrollbar */
}

::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--tj-scrollbar-primary);
    border-radius: 10px;
    border: 1px solid #f0f0f0;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #e05500;
}

/* For Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--tj-scrollbar-primary) #f0f0f0;
}

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
    width: 5px;
    height: 5px; 
}
/* Accent text */
.accent {
    font-family: var(--tj-ff-russo);
    letter-spacing: 1px;
    color: var(--tj-theme-primary);
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;

    width: 100%;
  box-sizing: border-box;
}

/* Header */
header {
    position: sticky;
    top: 0;
    width: 100%;
    background: var(--tj-bg-3);
    padding: 15px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    z-index: 1000;
}
.header_section{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo img {
    height: 45px;
    width: auto;
    display: block;
}

/* Navigation */
nav {
    display: flex;
    align-items: center;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav ul li a {
    position: relative;
    text-decoration: none;
    font-size: var(--tj-fz-body);
    color: var(--tj-body);
    font-family: var(--tj-ff-body);
    transition: color 0.3s ease;
}

/* Hover color */
nav ul li a:hover {
    color: var(--tj-theme-primary);
}

/* Gradient underline */
nav ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background-image: linear-gradient(to right,
            var(--tj-theme-primary) 0%,
            var(--tj-theme-secondary) 51%,
            var(--tj-theme-primary) 100%);
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

/* Button */
/* .btn-talk {
    background-image: linear-gradient(45deg,
            var(--tj-theme-primary),
            var(--tj-theme-primary-1),
            var(--tj-theme-primary-2),
            var(--tj-theme-primary-3));
    color: var(--tj-white);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1.8rem;
      font-family: "Goldman", sans-serif;

    transition: transform 0.2s ease, background-position 0.5s ease;
    background-size: 300% 300%;
    background-position: 0% 50%;
} */

/* Animate gradient on hover */
.btn-talk {
    position: relative;
    padding: 12px 28px;
    border: none;
    background-size: 200% 200%;
    transition: background-position 0.4s ease;
    /* overflow: hidden; */
    /* border-radius: 25px; */
    font-size: 1.8rem;
      font-family: "Goldman", sans-serif;
    color: var(--tj-white);
    background-image: linear-gradient(45deg,
            var(--tj-theme-primary),
            var(--tj-theme-primary-1),
            var(--tj-theme-primary-2),
            var(--tj-theme-primary-3));
}

/* Gradient hover */
.btn-talk:hover {
    background-position: 100% 50%;
    background: none;
    cursor: pointer;
}

/* Border animation layers */
.btn-talk::before,
.btn-talk::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    pointer-events: none;
}

/* top-left */
.btn-talk::before {
    top: 0;
    left: 0;
}

/* bottom-right */
.btn-talk::after {
    bottom: 0;
    right: 0;
}

/* hover border draw */
.btn-talk:hover::before {
    width: 100%;
    height: 100%;
    border-top-color: var(--tj-theme-primary-2);
    border-left-color: var(--tj-theme-primary-2);
}

.btn-talk:hover::after {
    width: 100%;
    height: 100%;
    border-bottom-color: var(--tj-theme-primary-2);
    border-right-color: var(--tj-theme-primary-2);
}



/* Desktop vs Mobile Buttons */
.desktop-btn {
    margin-left: 20px;
}

.mobile-btn {
    display: none;
    margin-top: 20px;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--tj-body);
    transition: all 0.3s ease;
}

/* Hamburger toggle effect */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    nav {
        position: absolute;
        top: 70px;
        left: -100%;
        background: var(--tj-bg-3);
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        transition: left 0.3s ease;
    }

    nav.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 20px;
    }

    .desktop-btn {
        display: none;
    }

    .mobile-btn {
        display: inline-block;
    }

    .hamburger {
        display: flex;
    }
}

/* Hero Section */
.hero {
    padding: 50px 0;
    color: var(--tj-white);
    font-family: var(--tj-ff-body);
    background: var(--tj-bg-3);
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Left side 60%, Right side 40% */
.hero-text {
    flex: 0 0 60%;
    max-width: 60%;
}

.hero-image {
    flex: 0 0 40%;
    max-width: 40%;
}

/* Left side text */
.hero-text h2 {
    font-family: var(--tj-ff-russo);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.4;
    font-weight: var(--tj-fw-medium);

    /* Gradient text effect */
    background-image: linear-gradient(to right,
            var(--tj-heading-primary) 0%,
            var(--tj-heading-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
     font-family: "Abril Fatface", serif;
     letter-spacing: 1px;
}

.hero-text h4 {
    /* font-family: var(--tj-ff-heading); */
    font-family: "Berkshire Swash", serif;
    letter-spacing: 1.3px;
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--tj-white);
}


.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 600px;
}

/* Hero buttons + social links */
.hero-btns {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-social {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 2px solid var(--tj-grey-3);
    border-radius: 50%;
    color: var(--tj-white);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    background: transparent;
}

.social-link:hover {
    color: var(--tj-theme-primary);
    border-color: var(--tj-theme-primary);
    transform: scale(1.2);
    box-shadow: 0 4px 15px rgba(135, 80, 247, 0.4);
}


/* Right side image */
.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 15px;
    /* transform: rotate(-10deg); */
    transition: transform 0.5s ease, filter 0.5s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    /* Apply base tint */
    filter: brightness(0.7) hue-rotate(15deg);
}

.hero-image img:hover {
    transform: rotate(0deg);
    filter: brightness(1)hue-rotate(0deg);
}

/* Optional: Overlay for stronger theme color */
.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    pointer-events: none;
}


/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-text,
    .hero-image {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text h3 {
        font-size: 1.5rem;
    }

    .hero-image img {
        max-width: 80%;
    }

    .hero-btns {
        justify-content: center;
    }
}

 /* Hero Stats Section */
.hero-stats {
    padding: 80px 0;
    background: var(--tj-bg-2);
    color: var(--tj-white);
    font-family: var(--tj-ff-body);
    
}

.stats-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    text-align: center;
    width: 100%;
}

.stat-item h2 {
    font-size: 3rem;
    font-weight: var(--tj-fw-bold);
    margin-bottom: 10px;
    color: var(--tj-theme-primary);
}

.stat-item h2 span {
    font-size: 2rem;
    vertical-align: super;
}

.stat-item p {
    font-size: 1rem;
    color: var(--tj-grey-2);
}

/* Responsive */
@media (max-width: 992px) {
    .stats-container {
        flex-direction: column;
        gap: 40px;
    }

    .stat-item h2 {
        font-size: 2.5rem;
    }
}

/* Recent Work Section */
.recent-work {
    padding: 80px 0;
    background: var(--tj-bg-3);
    color: var(--tj-white);
    font-family: var(--tj-ff-body);
    text-align: center;
}

.recent-work .section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-family: var(--tj-ff-russo);
    color: var(--tj-theme-primary);
}

/* Filter buttons */
.filter-buttons {
    text-align: center;
    margin-bottom: 40px;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--tj-theme-primary);
    color: var(--tj-white);
    padding: 10px 22px;
    margin: 5px 8px;
    border-radius: 25px;
    cursor: pointer;
    font-family: var(--tj-ff-russo);
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--tj-theme-primary);
    color: var(--tj-white);
    transform: scale(1.1);
}

/* Projects Grid */
.projects-grid {
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.project-item {
    position: relative;
    width: calc(50% - 20px); /* 50% minus horizontal margins (10px left + 10px right) */
    margin: 10px;
    background: rgb(20,12,28);
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    padding: 2rem;
    height: 450px;
}



.project-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.project-item:hover img {
    filter: brightness(70%);
}

/* Title hover effect */
.project-item h2 {
    position: absolute;
    bottom: -100%;
    left: 20px;
    right: 20px;
    padding: 12px 15px;
    font-size: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;

    background: linear-gradient(
        90deg,
        var(--tj-theme-primary-1),
        var(--tj-theme-primary-2)
    );
    /* font-family: var(--tj-ff-russo); */
    font-family: "Berkshire Swash", serif;
    letter-spacing: 1.3px;
}

.project-item:hover h2 {
    bottom: 30px;
}

.project-item h2 i {
    font-size: 2rem;
    margin-left: 10px;
    transition: transform 0.3s ease, border 0.3s ease, color 0.3s ease;
    border: 2px solid #333; /* initial border */
    padding: 5px; /* spacing inside border */
    border-radius: 5px; /* optional rounded corners */
    color: #333; /* initial color */
}

/* Hover effect */
.project-item h2 i:hover {
    transform: scale(1.2) rotate(10deg); /* grow and rotate */
    border-color: #dddddd; /* border color changes on hover */
    color: #dddddd; /* icon color changes on hover */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* optional shadow */
}


.project-item:hover h2 i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 992px) {
    .project-item { width: 45%; }
}
@media (max-width: 576px) {
    .project-item { width: 100%; margin: 0 0 20px 0; }
}

/* Quality Services Section */
.quality-services {
    padding: 80px 0;
    background: var(--tj-bg-2);
    color: var(--tj-white);
    font-family: var(--tj-ff-body);
}

.quality-services .section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-family: var(--tj-ff-russo);
    color: var(--tj-theme-primary);
    text-align: center;
}

/* Services List (full-width rows) */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Individual Service Row */
.service-item {
    width: 100%;
    display: flex;
    gap: 20px;
    padding: 2rem 3rem;
    background: rgb(20,12,28);
    transition: all 0.4s ease;
    cursor: pointer;
    align-items: center;
}

.service-col-10 {
    flex: 0 0 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    
}
.service-col-10 span{
    font-size: 2rem;
    font-weight: bold;
    font-family: var(--tj-ff-russo);
}

.service-col-30 {
    flex: 0 0 30%;
    display: flex;
    align-items: center;
    
}
.service-col-30 h3{
    font-size: 1.5rem;
    color: var(--tj-theme-primary-2);
    font-family: var(--tj-ff-russo);
}

.service-col-60 {
    flex: 0 0 60%;
}

.service-col-60 h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    background: linear-gradient(90deg, var(--tj-theme-primary-1), var(--tj-theme-primary-2));
    -webkit-text-fill-color: transparent;
    transition: all 0.4s ease;
    
}

.service-col-60 p {
    font-size: 1.1rem;
    line-height: 1.6;
    font-family: var(--tj-ff-russo);;
}

.service-item:hover {
    background: linear-gradient(90deg, var(--tj-theme-primary-1), var(--tj-theme-primary-2));
    color: var(--tj-white);
}

.service-item:hover h3,
.service-item:hover p {
    -webkit-text-fill-color: var(--tj-white);
}

@media (max-width: 768px) {
    .service-item {
        flex-direction: column;
        gap: 10px;
    }
    .service-col-10,
    .service-col-30,
    .service-col-60 {
        flex: 0 0 100%;
        text-align: center;
    }
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    font-family: var(--tj-ff-russo);
    color: var(--tj-theme-primary-2);
    position: relative;
}

.section-title::after {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--tj-theme-primary-1), var(--tj-theme-primary-2));
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Services List (full-width rows) */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Individual Service / Education Row */

.education{
    padding: 80px 0;
    /* background: var(--tj-bg-2); */
    color: var(--tj-white);
    font-family: var(--tj-ff-body);
}
.service-item {
    width: 100%;
    display: flex;
    gap: 20px;
    padding: 2rem 3rem;
    background: rgb(20, 12, 28);
    transition: all 0.4s ease;
    cursor: pointer;
    align-items: center;
    border-radius: 10px;
}

.service-col-10 {
    flex: 0 0 10%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-col-10 span {
    font-size: 2rem;
    font-weight: bold;
    font-family: var(--tj-ff-russo);
}

.service-col-30 {
    flex: 0 0 30%;
    display: flex;
    align-items: center;
}

.service-col-30 h3 {
    font-size: 1.5rem;
    color: var(--tj-theme-primary-2);
    font-family: var(--tj-ff-russo);
}

.service-col-60 {
    flex: 0 0 60%;
}

.service-col-60 h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    background: linear-gradient(90deg, var(--tj-theme-primary-1), var(--tj-theme-primary-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.4s ease;
    font-family: var(--tj-ff-russo);
}

.service-col-60 p {
    font-size: 1rem;
    line-height: 1.6;
    font-family: var(--tj-ff-russo);
    color: #ccc;
}

/* Hover effects */
.service-item:hover {
    background: linear-gradient(90deg, var(--tj-theme-primary-1), var(--tj-theme-primary-2));
    color: var(--tj-white);
}

.service-item:hover h3,
.service-item:hover p,
.service-item:hover span {
    -webkit-text-fill-color: var(--tj-white);
    color: var(--tj-white);
}
@media (max-width: 768px) {
    .service-item {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .service-col-10,
    .service-col-30,
    .service-col-60 {
        flex: 0 0 100%;
    }
}
.experience {
    padding: 80px 0;
    background: var(--tj-bg-2);
    color: var(--tj-white);
    font-family: var(--tj-ff-body);
}

.pricing {
    padding: 80px 0;
    background: var(--tj-bg-3);
    color: var(--tj-white);
    font-family: var(--tj-ff-body);
}

.pricing .section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    font-family: var(--tj-ff-russo);
    color: var(--tj-theme-primary-2);
}
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
     justify-content: center;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-cards {
        grid-template-columns: 1fr;
    }
}

/* Individual Card */
.pricing-card {
    background: rgba(20, 12, 28, 0.192);
    padding: 3rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.5s ease, box-shadow 0.3s ease;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--tj-theme-primary-2);
    font-family: var(--tj-ff-russo);
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 15px;
}
/* Hover effects */
.pricing-card {
    position: relative;
}

.pricing-card::before,
.pricing-card::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border: 2px solid transparent;
    transition: all 0.4s ease;
}

.pricing-card::before {
    top: 0;
    left: 0;
}

.pricing-card::after {
    bottom: 0;
    right: 0;
}

.pricing-card:hover::before {
    width: 100%;
    height: 100%;
    border-top-color: var(--tj-theme-primary-2);
    border-left-color: var(--tj-theme-primary-2);
}

.pricing-card:hover::after {
    width: 100%;
    height: 100%;
    border-bottom-color: var(--tj-theme-primary-2);
    border-right-color: var(--tj-theme-primary-2);
}


.pricing-card:hover h3,
.pricing-card:hover p,
.pricing-card:hover .features li,
.pricing-card:hover a {
    -webkit-text-fill-color: var(--tj-white);
    color: var(--tj-white);
}
.pricing-card .features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.pricing-card .features li {
    margin-bottom: 16px;
    color: #ccc;
    font-family: var(--tj-ff-russo);
}

/* Buttons */
.card-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}


/* Responsive buttons */
@media (max-width: 768px) {
    .card-buttons {
        flex-direction: column;
    }
}
.lets-work {
    padding: 80px 0;
    background: var(--tj-bg-2);
    color: var(--tj-white);
    font-family: var(--tj-ff-body);
}

.lets-work .section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-family: var(--tj-ff-russo);
  color: var(--tj-theme-primary-2);
}

.work-grid {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}
.work-form , .work-info {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  box-sizing: border-box;
}

/* Left form */
.work-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.work-form input,
.work-form textarea {
  width: 100%;
  padding: 20px 12px;
  border-radius: 10px;
  border: none;
  font-size: 1rem;
  font-family: var(--tj-ff-russo);
  background: #2a1f3d;
  color: var(--tj-white);
}
.work-form input,
.work-form textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.work-form input::placeholder,
.work-form textarea::placeholder {
  color: #bbb;
}
.work-form button {
    border: none;
}

/* Right info */
.work-info ul {
  list-style: none;
  padding: 0;
}

.work-info ul {
  list-style: none;
  padding: 0;
}

.work-info li {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  font-family: var(--tj-ff-russo);
  display: flex;
  align-items: center;
  gap: 10px;
}

.work-info i {
  font-size: 1.4rem;
  color: var(--tj-theme-primary-2);
  min-width: 25px;
}
.work-info a {
  color: var(--tj-white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.work-info a:hover {
  color: var(--tj-theme-primary-1);
}
@media (max-width: 768px) {
  .work-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .work-form,
  .work-info {
    width: 100%;
  }

  .work-info ul {
    margin-top: 1.5rem;
    padding-left: 0;
  }
  .work-grid {
    flex-direction: column;
  }
  .work-info li {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
}

/* Footer */
.site-footer {
  background: rgb(20, 12, 28);
  padding: 2rem 0;
  color: #ccc;
  text-align: center;
  font-family: var(--tj-ff-russo);
}

.site-footer p {
  margin: 0 0 1rem 0;
  font-size: 1.1rem;
}

.footer-social {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 0;
}

.footer-social li a {
  color: #ccc;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.footer-social li a:hover {
  color: var(--tj-theme-primary-2);
}





