/* =========================
   BASIC RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #0a1f44;
    color: #ede2d7;
    font-family: "DM Sans", sans-serif;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    width: 100%;
    display: block;
}


/* =========================
   CUSTOM CURSOR
========================= */

.cursor {
    width: 40px;
    height: 40px;
    border: 1px solid #111;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition:
        width .2s,
        height .2s,
        background .2s;
}

.cursor-dot {
    width: 5px;
    height: 5px;
    background: #111;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
}


/* =========================
   LOADER
========================= */

.loader {
    position: fixed;
    inset: 0;
    background: #111;
    color: white;
    z-index: 20000;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    transition:
        opacity .8s ease,
        visibility .8s ease;
}

.loader.hide {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    font-family: "Manrope";
    font-size: clamp(30px, 6vw, 80px);
    font-weight: 800;
}

.loader-logo span {
    font-weight: 400;
}

.loader-line {
    width: 250px;
    height: 2px;
    background: #b32626;
    margin-top: 30px;
    overflow: hidden;
}

.loader-progress {
    width: 0%;
    height: 100%;
    background: white;
    animation: loading 1.8s forwards;
}

@keyframes loading {

    to {
        width: 100%;
    }

}


/* =========================
   NAVBAR
========================= */

.navbar {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;

    padding: 25px 4%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    z-index: 100;
}

.logo img {
    width: 120px;
    max-height: 65px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 45px;
}

.nav-links a {
    font-size: 14px;
    position: relative;
}

.nav-links a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -5px;

    width: 0;
    height: 1px;

    background: #f8f6f6;

    transition: .3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-button {
    display: none;

    border: none;
    background: transparent;

    width: 35px;
}

.menu-button span {
    width: 100%;
    height: 2px;
    background: #111;
    display: block;
    margin: 7px;
}


/* =========================
   MOBILE MENU
========================= */

.mobile-menu {
    position: fixed;
    inset: 0;

    background: #111;
    color: white;

    z-index: 1000;

    display: flex;
    justify-content: center;
    align-items: center;

    transform: translateY(-100%);

    transition: .7s cubic-bezier(.77, 0, .18, 1);
}

.mobile-menu.active {
    transform: translateY(0);
}

.close-menu {
    position: absolute;
    top: 25px;
    right: 30px;

    font-size: 45px;

    background: none;
    border: none;
    color: white;
}

.mobile-links {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 20px;
}

.mobile-links a {
    font-family: "Manrope";
    font-size: 45px;
}


/* =========================
   HERO
========================= */

.hero {
    min-height: 100vh;

    padding:
        150px 4%
        40px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    position: relative;
}

.hero-top {
    display: flex;
    justify-content: space-between;

    margin-bottom: 30px;
}

.small-text,
.hero-location {
    font-size: 11px;
    letter-spacing: 1.5px;
}

.hero-location {
    text-align: right;
}

.hero-title h1 {
    font-family: "Manrope";
    font-size: clamp(75px, 14vw, 220px);
    font-weight: 800;

    line-height: .75;

    letter-spacing: -10px;
}

.hero-title h1:last-child {
    text-align: right;
}

.hero-middle {
    display: flex;
    justify-content: center;
    align-items: center;

    height: 150px;

    position: relative;
}

.hero-image {
    width: 220px;
    height: 130px;

    overflow: hidden;

    transform: rotate(-5deg);
}

.hero-image img {
    height: 100%;
    object-fit: cover;

    transition: transform .7s;
}

.hero-image:hover img {
    transform: scale(1.1);
}

.hindi-word {
    font-size: 60px;
    margin-left: 30px;
}

.hero-bottom {
    margin-top: 70px;

    display: flex;
    align-items: center;

    gap: 40px;
}

.hero-bottom p {
    font-size: 12px;
}

.changing-text {
    font-size: clamp(22px, 3vw, 50px);

    font-weight: 600;

    overflow: hidden;
}

#changingWord {
    display: inline-block;

    transition:
        opacity .3s,
        transform .3s;
}

.scroll-down {
    position: absolute;

    right: 4%;
    bottom: 35px;

    display: flex;
    align-items: center;

    gap: 15px;

    font-size: 9px;
    letter-spacing: 2px;
}

.scroll-line {
    width: 70px;
    height: 1px;
    background: #111;

    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {

    0% {
        transform: scaleX(.2);
        transform-origin: left;
    }

    50% {
        transform: scaleX(1);
    }

    100% {
        transform: scaleX(.2);
        transform-origin: right;
    }

}


/* =========================
   TEXT MARQUEE
========================= */

.marquee-section {
    background: #111;
    color: white;

    padding: 25px 0;

    overflow: hidden;
}

.marquee {
    white-space: nowrap;
}

.marquee-track {
    display: inline-flex;

    animation: marquee 25s linear infinite;
}

.marquee-track span {
    font-size: 18px;
    letter-spacing: 3px;

    padding-right: 40px;
}

@keyframes marquee {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}


/* =========================
   FEATURED WORK
========================= */

.featured-work {
    padding: 120px 4%;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 50px;
}

.section-heading h2 {
    font-family: "Manrope";
    font-size: clamp(45px, 7vw, 100px);
    letter-spacing: -5px;
}

.view-all {
    border-bottom: 1px solid #111;

    padding-bottom: 5px;
}

.work-slider {
    display: flex;
    gap: 25px;

    overflow-x: auto;

    cursor: grab;

    scrollbar-width: none;
}

.work-slider::-webkit-scrollbar {
    display: none;
}

.work-card {
    flex: 0 0 38vw;
}

.work-image {
    height: 500px;
    overflow: hidden;
}

.work-image img {
    height: 100%;
    object-fit: cover;

    transition: transform .8s ease;
}

.work-card:hover img {
    transform: scale(1.08);
}

.work-info {
    padding-top: 20px;
}

.work-info h3 {
    font-size: 26px;
    margin-bottom: 5px;
}

.work-info p {
    color: #5f5e5e;
}


/* =========================
   STATEMENT
========================= */

.statement-section {
    padding: 150px 8%;
    background: #111;
    color: white;
}

.statement-label {
    font-size: 11px;
    letter-spacing: 3px;

    margin-bottom: 50px;
}

.statement {
    font-family: "Manrope";

    font-size: clamp(45px, 7vw, 110px);

    line-height: 1;

    letter-spacing: -5px;
}

.statement span {
    color: #777;
}


/* =========================
   ABOUT
========================= */

.about-section {
    padding: 150px 4%;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 8%;
}

.about-images {
    position: relative;

    min-height: 700px;
}

.about-image {
    position: absolute;

    overflow: hidden;
}

.about-image img {
    height: 100%;
    object-fit: cover;
}

.image-left {
    width: 60%;
    height: 500px;

    top: 0;
    left: 0;
}

.image-right {
    width: 50%;
    height: 380px;

    right: 0;
    bottom: 0;
}

.about-content {
    padding-top: 80px;
}

.section-tag {
    font-size: 11px;
    letter-spacing: 3px;

    margin-bottom: 40px;
}

.about-content h2 {
    font-family: "Manrope";

    font-size: clamp(40px, 5vw, 75px);

    line-height: 1;

    letter-spacing: -4px;

    margin-bottom: 50px;
}

.about-description {
    font-size: 18px;

    line-height: 1.8;

    max-width: 600px;

    color: #555;
}

.circle-button {
    width: 150px;
    height: 150px;

    border: 1px solid #111;

    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    margin-top: 50px;

    transition: .4s;
}

.circle-button:hover {
    background: #111;
    color: white;

    transform: rotate(10deg);
}


/* =========================
   SERVICES
========================= */

.services-section {
    background: #111;
    color: white;

    padding: 120px 4%;

    position: relative;
}

.services-header p {
    font-size: 11px;
    letter-spacing: 3px;
}

.services-header h2 {
    font-family: "Manrope";

    font-size: clamp(70px, 10vw, 160px);

    letter-spacing: -8px;

    margin-bottom: 60px;
}

.service-item {
    border-top: 1px solid #444;

    padding: 30px 0;

    display: grid;

    grid-template-columns:
        70px
        1fr
        auto;

    align-items: center;

    cursor: pointer;

    transition: padding .3s;
}

.service-item:last-child {
    border-bottom: 1px solid #444;
}

.service-item:hover {
    padding-left: 20px;
}

.service-number {
    font-size: 12px;
    color: #777;
}

.service-item h3 {
    font-size: clamp(25px, 4vw, 55px);
    font-weight: 400;
}

.service-arrow {
    font-size: 30px;

    transition: transform .3s;
}

.service-item:hover .service-arrow {
    transform: rotate(45deg);
}

/* FORCE SMALL SERVICE HOVER IMAGE */

.service-hover-image {
    position: fixed !important;
    width: 120px !important;
    height: 150px !important;
    max-width: 120px !important;
    max-height: 150px !important;
    overflow: hidden !important;
    pointer-events: none !important;
    z-index: 100 !important;
    opacity: 0;
    transform: translate(-50%, -50%) rotate(-3deg);
    transition: opacity 0.25s ease;
}

.service-hover-image img {
    width: 120px !important;
    height: 150px !important;
    max-width: 120px !important;
    max-height: 150px !important;
    object-fit: cover !important;
    display: block;
}


/* =========================
   IMAGE MARQUEE
========================= */

.image-marquee {
    overflow: hidden;

    padding: 30px 0;

    background: #f2f0ea;
}

.image-track {
    display: flex;

    width: max-content;

    gap: 20px;

    animation:
        imageScroll
        35s
        linear
        infinite;
}

.image-track img {
    width: 300px;
    height: 400px;

    object-fit: cover;
}

@keyframes imageScroll {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}


/* =========================
   DESCRIPTION
========================= */

.agency-description {
    padding: 150px 8%;
}

.agency-description h2 {
    font-family: "Manrope";

    font-size: clamp(45px, 7vw, 110px);

    line-height: 1;

    letter-spacing: -6px;

    max-width: 1200px;
}

.agency-description h2 span {
    color: #999;
}

.agency-description > p:last-child {
    max-width: 650px;

    font-size: 18px;

    line-height: 1.8;

    margin:
        70px 0
        0 auto;

    color: #555;
}


/* =========================
   CTA
========================= */

.cta-section {
    background: #d8ff36;

    padding: 130px 4%;

    text-align: center;
}

.cta-section > p {
    font-size: 11px;

    letter-spacing: 3px;

    margin-bottom: 40px;
}

.cta-section h2 {
    font-family: "Manrope";

    font-size: clamp(60px, 10vw, 160px);

    line-height: .85;

    letter-spacing: -8px;
}

.cta-section h2 span {
    display: block;

    -webkit-text-stroke:
        2px #111;

    color: transparent;
}

.cta-button {
    display: inline-block;

    margin-top: 60px;

    border: 1px solid #111;

    border-radius: 50px;

    padding: 20px 35px;

    transition: .3s;
}

.cta-button:hover {
    background: #111;
    color: white;
}


/* =========================
   FOOTER
========================= */

footer {
    background: #111;
    color: white;

    padding:
        80px 4%
        30px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
}

.footer-logo img {
    width: 140px;
}

.footer-links {
    display: flex;
    gap: 100px;
}

.footer-links div {
    display: flex;
    flex-direction: column;

    gap: 12px;
}

.footer-links p {
    color: #777;

    font-size: 10px;

    letter-spacing: 2px;

    margin-bottom: 10px;
}

.footer-big-text {
    font-family: "Manrope";

    font-size: clamp(55px, 11vw, 180px);

    font-weight: 800;

    text-align: center;

    letter-spacing: -9px;

    margin: 100px 0;
}

.footer-big-text span {
    font-weight: 400;
}

.footer-bottom {
    border-top: 1px solid #444;

    padding-top: 25px;

    display: flex;
    justify-content: space-between;

    font-size: 11px;

    letter-spacing: 1px;
}


/* =========================
   SCROLL REVEAL
========================= */

.reveal-element {
    opacity: 0;

    transform: translateY(60px);

    transition:
        opacity .8s,
        transform .8s;
}

.reveal-element.visible {
    opacity: 1;

    transform: translateY(0);
}


/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

    .nav-links {
        display: none;
    }

    .menu-button {
        display: block;
    }

    .hero-title h1 {
        letter-spacing: -6px;
    }

    .work-card {
        flex-basis: 70vw;
    }

    .about-section {
        grid-template-columns: 1fr;
    }

    .about-images {
        min-height: 650px;
    }

    .service-hover-image {
        display: none;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .navbar {
        padding: 20px;
    }

    .logo img {
        width: 90px;
    }

    .hero {
        padding:
            130px 20px
            40px;
    }

    .hero-top {
        margin-bottom: 70px;
    }

    .hero-title h1 {
        font-size: 20vw;

        letter-spacing: -5px;

        line-height: .9;
    }

    .hero-middle {
        height: 100px;
    }

    .hero-image {
        width: 130px;
        height: 80px;
    }

    .hindi-word {
        font-size: 35px;
    }

    .hero-bottom {
        flex-direction: column;

        align-items: flex-start;

        gap: 15px;
    }

    .scroll-down {
        display: none;
    }

    .featured-work {
        padding:
            80px 20px;
    }

    .section-heading h2 {
        letter-spacing: -3px;
    }

    .work-card {
        flex-basis: 85vw;
    }

    .work-image {
        height: 400px;
    }

    .statement-section {
        padding:
            100px 20px;
    }

    .statement {
        letter-spacing: -3px;
    }

    .about-section {
        padding:
            100px 20px;
    }

    .about-images {
        min-height: 500px;
    }

    .image-left {
        height: 350px;
    }

    .image-right {
        height: 280px;
    }

    .about-content h2 {
        letter-spacing: -3px;
    }

    .services-section {
        padding:
            100px 20px;
    }

    .services-header h2 {
        letter-spacing: -5px;
    }

    .service-item {
        grid-template-columns:
            40px
            1fr
            auto;
    }

    .agency-description {
        padding:
            100px 20px;
    }

    .agency-description h2 {
        letter-spacing: -4px;
    }

    .cta-section {
        padding:
            100px 20px;
    }

    .cta-section h2 {
        letter-spacing: -5px;
    }

    .footer-top {
        flex-direction: column;

        gap: 60px;
    }

    .footer-links {
        gap: 50px;
    }

    .footer-big-text {
        letter-spacing: -5px;
    }

    .footer-bottom {
        flex-direction: column;

        gap: 15px;
    }

    .cursor,
    .cursor-dot {
        display: none;
    }

}

.service-hover-image {
    position: fixed !important;

    width: 120px !important;
    height: 150px !important;

    max-width: 120px !important;
    max-height: 150px !important;

    overflow: hidden;

    pointer-events: none;

    z-index: 9999;

    opacity: 0;

    transform: translate(-50%, -50%) rotate(-3deg);

    transition: opacity 0.2s ease;
}

.service-hover-image img {
    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;

    display: block;
}