/* Font  */
@font-face {
    font-family: lightFont;
    src: url('/static/fonts/AeonikProTRIAL-Light.otf');
}

@font-face {
    font-family: regularFont;
    src: url('/static/fonts/AeonikProTRIAL-Regular.otf');
}

@font-face {
    font-family: boldFont;
    src: url('/static/fonts/AeonikProTRIAL-Bold.otf');
}

.poppins {
    font-family: "Poppins", serif;
}

.lightFont {
    font-family: lightFont;
}

.regularFont {
    font-family: regularFont;
}

.boldFont {
    font-family: boldFont;
}

/* CSS Reset */
* {
    padding: 0;
    margin: 0;
    font-family: lightFont;
}

body {
    overflow-x: hidden;
}

/* Marquee */

.woods-marquee {
    font-size: 1px;

    overflow: hidden;
    user-select: none;

    --gap: 20px;
    display: flex;
    gap: var(--gap);
}

.woods-marquee ul {
    list-style: none;
    flex-shrink: 0;
    min-width: 50%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--gap);

    animation: scroll 20s linear infinite;
}


.woods-marquee:hover ul {
    animation-play-state: paused;
}



@keyframes scroll {
    to {
        transform: translateX(calc(-60% - var(--gap)));
    }
}

h1 {
    transition: all 0.3s ease;
}


/* Ensure the grid items have random sizes */
.grid-item {
    width: calc(150px + 100px * random());
    /* Random width generator, you can adjust this logic as per your needs */
}


@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translatex(-100vw);
    }
}


/* ---------- Project work slide (Home page) --------  */

.slider-box {
    width: 100%;
    height: 450px;
    overflow: hidden;
    position: relative;
}

.box-holder {
    display: flex;
    width: calc(100% * 5);
    animation: slide 40s linear infinite;
    gap: 15px;
}

.box-anime {
    display: flex;
    width: 100%;
    gap: 15px;
}

.left-post,
.rightpost {
    width: 30%;
    height: 450px;
}

.left-box-upper,
.right-box-upper {
    width: 100%;
    background: rgb(46, 164, 211);
    height: 225px;
}

.left-box-lower,
.right-box-lower {
    width: 100%;
    background: rgb(223, 167, 26);
    height: 225px;
    margin-top: 15px;
}

.right-box-upper {
    background: rgb(40, 244, 64);
}

.right-box-lower {
    background: #ad59ee;
}

.middle-post {
    width: 40%;
    background: rgb(45, 242, 134);
    height: 450px;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }

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

/* Home page */

.noScroll::-webkit-scrollbar {
    display: none;
}

/* ----------------------------- Home page ---------------------- */


/* client logo animation  */
.wrapper {
    margin-top: 2rem;
    width: 100%;
    max-width: 1536px;
    margin-inline: auto;
    height: 100px;
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(to right,
            rgba(0, 0, 0, 0),
            rgba(0, 0, 0, 1) 20%,
            rgba(0, 0, 0, 1) 80%,
            rgba(0, 0, 0, 0));
}

@keyframes scrollLeft {
    to {
        left: -200px;
    }
}

@keyframes scrollRight {
    to {
        right: -200px;
    }
}

.itemLeft,
.itemRight {
    width: 200px;
    height: auto;
    /* background-color: #e11d48; */
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 20px; */
    /* border: 1px solid #ccc; */
    border-radius: 6px;
    position: absolute;
    animation-timing-function: linear;
    animation-duration: 30s;
    animation-iteration-count: infinite;
}

.itemLeft {
    left: max(calc(200px * 8), 100%);
    animation-name: scrollLeft;
}

.itemRight {
    right: max(calc(200px * 8), calc(100% + 200px));
    animation-name: scrollRight;
}

.item1 {
    animation-delay: calc(30s / 8 * (8 - 1) * -1);
}

.item2 {
    animation-delay: calc(30s / 8 * (8 - 2) * -1);
}

.item3 {
    animation-delay: calc(30s / 8 * (8 - 3) * -1);
}

.item4 {
    animation-delay: calc(30s / 8 * (8 - 4) * -1);
}

.item5 {
    animation-delay: calc(30s / 8 * (8 - 5) * -1);
}

.item6 {
    animation-delay: calc(30s / 8 * (8 - 6) * -1);
}

.item7 {
    animation-delay: calc(30s / 8 * (8 - 7) * -1);
}

.item8 {
    animation-delay: calc(30s / 8 * (8 - 8) * -1);
}



/* Magnetic Effetc - Base.html code */
.cursor {
    pointer-events: none;
    /* Prevent interaction */
    mix-blend-mode: difference;
}

.magnetic:hover .cursor {
    transform: scale(1.5);
}

.headingFont {
    font-family: "Bebas Neue", serif;
}

.drag-item {
    cursor: grab;
}

.drag-item:active {
    cursor: grabbing;
}

#sidebar {
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    /* Ensures smooth scrolling on mobile */
}


/* Career Page CSS COde */

.career-nav-part3 h4 {
    padding: 10px 20px;
    border: 1px solid #fff;
    border-radius: 50px;
    font-weight: 500;
    color: #fff;
    transition: all ease 0.4s;
    position: relative;
    font-size: 18px;
    overflow: hidden;
}

.career-nav-part3 h4::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: #fff;
    left: 0;
    bottom: -100%;
    border-radius: 50%;
    transition: all ease 0.4s;
}

.career-nav-part3 h4:hover::after {
    bottom: 0;
    border-radius: 0;
}

.career-nav-part3 h4 a {
    color: #fff;
    text-decoration: none;
    position: relative;
    z-index: 9;
}

.career-nav-part3 h4:hover a {
    color: #ED353A;
}


/* Project CSS Code */

.nav-project h4 {
    padding: 10px 20px;
    border: 1px solid #000;
    border-radius: 50px;
    /* font-weight: 500; */
    /* color: #fff; */
    transition: all ease 0.4s;
    position: relative;
    font-size: 15px;
    overflow: hidden;
    z-index: 100;
}

.nav-project h4::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: #222222;
    left: 0;
    bottom: -100%;
    border-radius: 50%;
    transition: all ease 0.4s;
    z-index: -1;
    /* color: #fff; */
}

.nav-project h4:hover::after {
    bottom: 0;
    border-radius: 0;
}

.nav-project h4 a {
    color: #363636;
    text-decoration: none;
    position: relative;
    z-index: 10;
}

.nav-project a:hover h4 {
    color: #fff;
}



/* About Us Marquee text */

body {
    font-family: 'Poppins', sans-serif;
}

.sectionMarquee {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* gap: 50px; */
    /* min-height: 40vh; */
    overflow: hidden;
    min-width: 110vw;
}

.marquee {
    padding: 2vw;
    white-space: nowrap;
}

.marquee:first-child {
    background-color: #fff5f3;
    transform: rotateZ(-2deg);
}

.marquee:first-child .marquee__content {
    color: #000;
}

.marquee:last-child {
    background-color: #1f1f1f;
    transform: rotateZ(2deg);
}

.marquee__inner {
    display: flex;
    gap: 20px;
}

.marquee__content {
    color: #fff;
    font-size: clamp(20px, 4.375vw, 50px);
}



/* Border Animation */
.box {
    width: 100px;
    height: 100px;
    border-radius: 5px;
    background: #000;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin: 2rem;
}

.linear::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background-image: conic-gradient(rgb(168, 239, 255, 1) 20deg, transparent 120deg);
    border-radius: 5px;
    animation-name: rotate;
    animation-duration: 4s;
    animation-timing-function: linear;
}

.linear::after {
    content: 'Linear';
    position: absolute;
    width: 90px;
    height: 90px;
    background: #000;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
}


/* Animation */
