:root {
    --primary: #111827;
    --accent: #f97316;
    --light: #ffffff;
    --gray: #f8fafc;
}

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

.hero {
    background: #fff;
    padding-top: 80px;
}

.hero h1 {
    font-size: 4rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.hero {
    position: relative;
    overflow: hidden;
    background: #fff;
}

.hero-bg {
    position: absolute;
    top: -300px;
    right: -300px;

    width: 900px;
    height: 900px;

    background:
        radial-gradient(circle,
            rgba(249, 115, 22, .20),
            transparent 70%);

    filter: blur(100px);
}

.hero-title {
    font-size: 6rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -3px;
}

.hero-title span {
    color: #f97316;
}

.hero-desc {
    max-width: 600px;
    font-size: 1.2rem;
    color: #64748b;
}

.hero-tag {
    background: #fff7ed;
    color: #f97316;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 14px;
}

.floating-card {
    position: absolute;
    background: #fff;
    padding: 25px;
    border-radius: 20px;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, .08);

    backdrop-filter: blur(20px);
}

.card-1 {
    top: 20%;
    right: 0;
}

.card-2 {
    top: 45%;
    right: 100px;
}

.card-3 {
    bottom: 15%;
    right: 20px;
}

.navbar {
    backdrop-filter: blur(20px);
    background:
        rgba(255, 255, 255, .85);

    border-bottom:
        1px solid rgba(0, 0, 0, .05);
}

.stats-box {
    background: #f8fafc;
    padding: 40px;
    border-radius: 20px;
}

.section-padding {
    padding: 100px 0;
}

.marquee-section {
    background: #111827;
    color: #fff;
    padding: 15px 0;
    overflow: hidden;
}

.marquee {
    white-space: nowrap;
    animation: scroll 20s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(100%)
    }

    100% {
        transform: translateX(-100%)
    }
}

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .4s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.project-card {
    background: #f3f4f6;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-size: 24px;
    font-weight: 600;
}

.large {
    height: 400px;
}

.cta-section {
    background: #111827;
    color: white;
    padding: 100px 0;
}

.footer {
    background: #0f172a;
    color: white;
    padding: 80px 0 30px;
}

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

.footer li {
    margin-bottom: 10px;
}

.cursor {
    width: 20px;
    height: 20px;

    position: fixed;
    z-index: 9999;

    border-radius: 50%;

    background: #f97316;

    pointer-events: none;

    transform: translate(-50%, -50%);
}


.marquee-track {
    display: flex;
    width: max-content;

    animation:
        marquee 20s linear infinite;
}

@keyframes marquee {

    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

}

.service-card {

    padding: 40px;
    border-radius: 24px;

    background: #fff;

    border:
        1px solid #eee;

    transition: .4s;
}

.service-card:hover {

    transform:
        translateY(-12px);

    box-shadow:
        0 30px 60px rgba(0, 0, 0, .12);
}

.project-grid {

    display: grid;

    grid-template-columns:
        2fr 1fr 1fr;

    grid-auto-rows: 300px;

    gap: 25px;
}

.project-large {
    grid-row: span 2;
}

.project-card img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .6s;
}

.project-card:hover img {

    transform: scale(1.1);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(255, 255, 255, .95) 25%,
            rgba(255, 255, 255, .75) 55%,
            rgba(255, 255, 255, .3) 100%);
    z-index: 2;
}

.hero .container {
    z-index: 3;
}

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s;
}

.project-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(transparent,
            rgba(0, 0, 0, .65));
}

.project-content {
    position: absolute;
    left: 30px;
    bottom: 25px;
    z-index: 2;
    color: white;
    font-size: 28px;
    font-weight: 700;
}

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

.service-card {
    background: rgba(255, 255, 255, .7);

    backdrop-filter: blur(25px);

    border: 1px solid rgba(255, 255, 255, .5);

    border-radius: 30px;

    padding: 40px;

    transition: .4s;
}

.service-card:hover {

    transform: translateY(-15px);

    box-shadow:
        0 40px 80px rgba(0, 0, 0, .12);
}

.btn-primary-custom {

    display: inline-block;

    padding: 16px 35px;

    background: #f97316;

    color: #fff;

    border-radius: 100px;

    font-weight: 600;

    text-decoration: none;

    transition: .3s;
}

.btn-primary-custom:hover {

    transform: translateY(-3px);

    box-shadow:
        0 20px 40px rgba(249, 115, 22, .3);
}

.btn-secondary-custom {

    display: inline-block;

    padding: 16px 35px;

    border: 1px solid #ddd;

    border-radius: 100px;

    margin-left: 15px;

    text-decoration: none;

    color: #111;
}

.navbar {

    width: 90%;

    left: 50%;

    transform: translateX(-50%);

    top: 20px;

    border-radius: 20px;

    background: rgba(255, 255, 255, .85);

    backdrop-filter: blur(20px);

    box-shadow:
        0 10px 40px rgba(0, 0, 0, .08);
}

.section-title {

    font-size: 4rem;

    font-weight: 800;

    letter-spacing: -2px;

    color: #111827;

    margin-bottom: 25px;
}

.section-subtitle {

    font-size: 1.2rem;

    max-width: 700px;

    margin: auto;

    color: #64748b;
}

body::before {

    content: "";

    position: fixed;

    top: -200px;
    right: -200px;

    width: 700px;
    height: 700px;

    background:
        radial-gradient(circle,
            rgba(249, 115, 22, .15),
            transparent 70%);

    filter: blur(120px);

    z-index: -1;
}