* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    @media (min-width: 992px) {
        cursor: none;
    }
}

a {
    text-decoration: none;
    color: inherit;
    cursor: none;
}

ul {
    list-style: none;
}

p {
    font-size: 22px;
    font-weight: 300;
    color: #ffffff;
    opacity: 0.7;

    @media (max-width:1560px) {
        font-size: 20px;
    }

    @media (max-width:1024px) {
        font-size: 18px;
    }

    @media (max-width:992px) {
        font-size: 16px;
    }

}

body {
    font-family: "Inter", sans-serif;
    background-color: var(--bg-color);
    box-sizing: border-box;
    overflow-x: hidden !important;
}

img {
    width: 100%;
    display: block;
}

:root {
    --bg-color: #101010;
    --primary-color: #31BEEC;
    --black-color: #000000;
    --white-color: #FFFFFF;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    width: 90%;

    @media (max-width:1560px) {
        max-width: 1300px;
    }
}

.SubDotTitle {
    position: relative;

    &::after {
        content: "";
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 0;
        width: 10px;
        height: 10px;
        background-color: var(--primary-color);
        border-radius: 50%;
    }

    h3 {
        font-size: 22px;

        @media (max-width: 1024px) {
            font-size: 20px;
        }

        font-weight: 400;
        color: var(--white-color);
        padding-left: 30px;
    }
}

.Title {
    h2 {
        font-size: 50px;
        letter-spacing: -1px;
        color: var(--white-color);
        font-weight: 500;
        text-transform: capitalize;

        span {
            color: var(--primary-color);
        }

        @media (max-width:1560px) {
            font-size: 45px;
        }

        @media (max-width: 1333px) {
            font-size: 42px;
        }

        @media (max-width: 1024px) {
            font-size: 37px;
        }

        @media (max-width: 992px) {
            font-size: 30px;
        }
    }

    h1 {
        font-size: 70px;
        line-height: 70px;
        letter-spacing: -2px;
        font-weight: 500;
        color: var(--white-color);

        span {
            color: var(--primary-color);
        }

        @media (max-width: 992px) {
            font-size: 52px;
            line-height: 58px;
        }

        @media (max-width: 576px) {
            font-size: 40px;
            line-height: 42px;
        }
    }
}

.primary-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    height: 42px;
    padding: 0 20px;
    border-radius: 50px;
    border: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;


    @media (max-width:1024px) {
        height: 35px;
    }

    @media (max-width:600px) {
        font-size: 14px;
        gap: 10px;
        padding: 0 15px;
    }

    i {
        font-size: 14px;
    }

    &:hover {
        background-color: var(--primary-color);
        color: var(--white-color);
    }
}

/* CURSOR */
.cursor {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--white-color);
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease;
    z-index: 9999;

    &.hover {
        transform: translate(-50%, -50%) scale(1.5);
        border-color: var(--primary-color);
    }

    @media (max-width: 992px) {
        display: none;
    }
}

.cursor2 {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;

    &.cursorinnerhover {
        transform: translate(-50%, -50%) scale(2);
    }

    @media (max-width: 992px) {
        display: none;
    }
}

/* ENQUIRY SECTION */
.EnquirySection {
    margin-bottom: 100px;

    @media (max-width:1024px) {
        margin-bottom: 80px;
    }


    .Bg {
        background-color: var(--black-color);
        padding: 100px;
        border-radius: 30px;
        display: flex;
        align-items: start;
        gap: 24px;
        flex-flow: row wrap;
        position: relative;
        overflow: hidden;

        @media (max-width:1200px) {
            padding: 55px;
        }

        @media (max-width:992px) {
            flex-direction: column;
        }

        @media (max-width:576px) {
            padding: 30px;
        }

        &::before {
            content: "";
            position: absolute;
            bottom: 0;
            right: 0;
            width: 60%;
            height: 80%;
            pointer-events: none;

            background: radial-gradient(circle at bottom right,
                    rgba(49, 190, 236, 0.25),
                    rgba(49, 190, 236, 0.1),
                    transparent 70%);

            @media (max-width:992px) {
                width: 100%;
                height: 100%;
            }
        }

        .Left {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            width: calc(50% - 12px);
            height: 477px;

            @media (max-width:992px) {
                width: 100%;
                flex-direction: row;
                height: auto;
            }

            @media (max-width:768px) {
                flex-direction: column;
                height: 300px;
            }

            .Title {
                h2 {
                    font-size: 45px;

                    @media (max-width:1024px) {
                        font-size: 35px;
                    }

                    @media (max-width:992px) {
                        font-size: 30px;
                    }

                    @media (max-width:600px) {
                        br {
                            display: contents;
                        }
                    }
                }
            }

            ul {
                list-style: none;
                display: flex;
                flex-direction: column;
                gap: 24px;

                li {

                    span {
                        font-size: 18px;
                        font-weight: 400;
                        color: var(--white-color);
                        opacity: 0.5;
                        display: block;
                        margin-bottom: 1px;
                    }

                    p {
                        font-size: 28px;
                        font-weight: 500;
                        color: var(--white-color);
                        opacity: 0.7;

                        a {
                            color: var(--white-color);
                            text-decoration: none;
                            transition: all 0.3s ease;
                            font-size: 20px;

                            &:hover {
                                color: var(--primary-color);
                            }
                        }
                    }

                    &:first-child {
                        p {
                            opacity: 1;
                            color: var(--primary-color);

                            a {
                                font-size: 28px;
                                color: var(--primary-color);

                                @media (max-width:992px) {
                                    font-size: 20px;
                                }
                            }
                        }
                    }
                }
            }
        }

        .Right {
            width: calc(50% - 12px);

            @media (max-width:992px) {
                width: 100%;
            }

            .FormGrid {
                display: flex;
                align-items: start;
                gap: 24px;
                flex-flow: row wrap;
                margin-top: 30px;
            }

            .FormGroup {
                display: flex;
                flex-direction: column;
                width: calc(50% - 12px);

                @media (max-width:576px) {
                    width: 100%;
                }

                &.full {
                    width: 100%;
                }

                label {
                    font-size: 16px;
                    color: var(--white-color);
                    margin-bottom: 10px;

                    span {
                        color: red;
                    }
                }

                input,
                textarea {
                    background: transparent;
                    border: none;
                    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
                    padding: 10px 0;
                    color: var(--white-color);
                    font-size: 16px;
                    outline: none;
                    transition: 0.3s;
                    font-family: "Inter", sans-serif;
                    width: 100% !important;

                    &::placeholder {
                        color: rgba(255, 255, 255, 0.4);
                    }

                    &:focus {
                        border-color: var(--primary-color);
                    }
                }

                textarea {
                    resize: none;
                    height: 120px;
                }
            }

            .SubmitBtn {
                margin-top: 40px;
                padding: 14px 28px;
                border-radius: 40px;
                border: 1px solid rgba(255, 255, 255, 0.4);
                background: transparent;
                color: var(--white-color);
                font-size: 16px;
                cursor: pointer;
                display: inline-flex;
                align-items: center;
                gap: 10px;
                transition: 0.3s;

                br {
                    display: contents !important;
                }

                i {
                    font-size: 14px;
                }

                &:hover {
                    background: var(--primary-color);
                    border-color: var(--primary-color);
                }
            }

            /* form {
                margin-top: 30px;

                .FormGrid {
                    display: flex;
                    align-items: start;
                    gap: 24px;
                    flex-flow: row wrap;
                }

                .FormGroup {
                    display: flex;
                    flex-direction: column;
                    width: calc(50% - 12px);

                    @media (max-width:576px) {
                        width: 100%;
                    }

                    &.full {
                        width: 100%;
                    }

                    label {
                        font-size: 16px;
                        color: var(--white-color);
                        margin-bottom: 10px;

                        span {
                            color: red;
                        }
                    }

                    input,
                    textarea {
                        background: transparent;
                        border: none;
                        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
                        padding: 10px 0;
                        color: var(--white-color);
                        font-size: 16px;
                        outline: none;
                        transition: 0.3s;
                        font-family: "Inter", sans-serif;
                        width: 100%;

                        &::placeholder {
                            color: rgba(255, 255, 255, 0.4);
                        }

                        &:focus {
                            border-color: var(--primary-color);
                        }
                    }

                    textarea {
                        resize: none;
                        height: 120px;
                    }
                }

                .SubmitBtn {
                    margin-top: 40px;
                    padding: 14px 28px;
                    border-radius: 40px;
                    border: 1px solid rgba(255, 255, 255, 0.4);
                    background: transparent;
                    color: var(--white-color);
                    font-size: 16px;
                    cursor: pointer;
                    display: inline-flex;
                    align-items: center;
                    gap: 10px;
                    transition: 0.3s;

                    i {
                        font-size: 14px;
                    }

                    &:hover {
                        background: var(--primary-color);
                        border-color: var(--primary-color);
                    }
                }
            } */
        }
    }
}

/* FOOTER */
footer {
    padding: 20px 0 30px;
    position: relative;

    .FooterWrap {
        display: flex;
        justify-content: space-between;
        gap: 40px;
        flex-wrap: wrap;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding-bottom: 50px;
    }

    .LogoSection {
        max-width: 300px;

        .Logo {
            margin-bottom: 20px;

            img {
                width: 150px;
            }

            p {
                font-size: 16px;
                line-height: 1.6;
                margin-top: 15px;
            }
        }
    }

    .QuickLinks,
    .Information {
        h3 {
            font-size: 18px;
            margin-bottom: 20px;
            color: var(--white-color);
            font-weight: 500;
        }

        ul {
            padding: 0;
            margin: 0;
            list-style: none;

            li {
                margin-bottom: 12px;

                a {
                    text-decoration: none;
                    color: rgba(255, 255, 255, 0.6);
                    font-size: 15px;
                    transition: 0.3s;

                    &:hover {
                        color: var(--primary-color);
                        padding-left: 5px;
                    }
                }
            }
        }
    }

    .Information {
        ul {
            li {
                color: rgba(255, 255, 255, 0.6);
                font-size: 15px;

                a {
                    color: rgba(255, 255, 255, 0.6);

                    &:hover {
                        text-decoration: underline;
                    }
                }
            }
        }

        .FooterSocial {
            display: flex;
            align-items: center;
            gap: 5px;

            a {
                width: 35px;
                height: 35px;
                border: 1px solid rgba(255, 255, 255, 0.2);
                border-radius: 6px;
                display: flex;
                align-items: center;
                justify-content: center;
                color: var(--white-color);
                font-size: 15px;
                transition: 0.3s ease;

                &:hover {
                    background: var(--primary-color);
                    border-color: var(--primary-color);
                    color: var(--white-color);
                    transform: translateY(-3px);
                }
            }

            @media (max-width: 576px) {
                gap: 10px;

                a {
                    width: 42px;
                    height: 42px;
                    font-size: 16px;
                }
            }
        }
    }

    &::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 3px;

        background: linear-gradient(to right,
                transparent,
                #31beec,
                #a855f7,
                transparent);
        opacity: 0.6;
    }

    &::after {
        content: "© 2026 Sorexio. All rights reserved.";
        display: block;
        text-align: center;
        color: rgba(255, 255, 255, 0.5);
        font-size: 14px;
        margin-top: 25px;
        text-transform: capitalize;
    }
}

/* TESTIMONIAL HOME */
.HomeTestimonial {
    padding: 30px 0 70px;


    @media (max-width:1024px) {
        padding: 30px 0 60px;
    }

    @media (max-width:767px) {
        padding: 30px 0 60px;
    }

    .ContentWrap {
        display: flex;
        align-items: center;
        gap: 60px;
        position: relative;
        padding: 100px;
        border-radius: 16px;

        @media (max-width:1024px) {
            gap: 30px;
            padding: 50px;
            align-items: start;
        }

        @media (max-width:767px) {
            flex-flow: row wrap;
        }

        @media (max-width:576px) {
            padding: 30px;
        }

        &::before {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: 16px;
            padding: 1px;

            background: linear-gradient(to bottom,
                    rgba(49, 190, 236, 0),
                    rgba(49, 190, 236, 0.4));

            -webkit-mask:
                linear-gradient(#000 0 0) content-box,
                linear-gradient(#000 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;

            pointer-events: none;
        }

        .Left {
            width: calc(30% - 12px);

            @media (max-width:767px) {
                width: 100%;
            }

            .Imag {
                width: 250px;
                margin: 0 auto;
                position: relative;

                @media (max-width:1024px) {
                    width: 190px;
                }

                @media (max-width:992px) {
                    width: 150px;
                }

                @media (max-width:767px) {
                    width: 200px;
                    margin: 0 0;
                }

                img {
                    width: 100%;
                    height: auto;
                    animation: rotateImg 12s linear infinite;
                }

                i {
                    color: var(--primary-color);
                    font-size: 38px;
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%, -50%);
                }
            }
        }

        .Right {
            width: calc(70% - 12px);
            max-width: 700px;
            margin-left: auto;
            margin-right: 0;
            position: relative;

            @media (max-width:767px) {
                width: 100%;
            }

            /* RIGHT SIDE (buttons) */
            .Navigation {
                display: flex;
                align-items: center;
                gap: 5px;
                position: absolute;
                bottom: 10px;
                right: 0;

                @media (max-width:576px) {
                    position: unset;
                    justify-content: center;
                    margin-top: 20px;
                }

                button {
                    width: 40px;
                    height: 40px;
                    border-radius: 50%;
                    border: 1px solid rgba(255, 255, 255, 0.3);
                    background: transparent;
                    color: #fff;
                    cursor: pointer;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    transition: 0.3s;

                    &:hover {
                        background: var(--primary-color);
                        border-color: var(--primary-color);
                    }
                }
            }

            p {
                font-size: 25px;
                line-height: 35px;
                color: #fff;
                margin-bottom: 30px;

                @media (max-width:992px) {
                    font-size: 21px;
                    line-height: 30px;
                }
            }

            .ClientInfo {
                border-top: 1px solid rgba(255, 255, 255, 0.2);
                padding-top: 25px;

                .AuthorWrap {
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                    gap: 20px;
                }

                /* LEFT SIDE (image + text) */
                .ClientImage {
                    width: 55px;
                    height: 55px;
                    border-radius: 50%;
                    overflow: hidden;
                    min-width: 55px;

                    img {
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                    }
                }

                .ClientDetails {
                    flex: 1;

                    h4 {
                        font-size: 18px;
                        font-weight: 600;
                        color: #fff;
                        margin: 0;

                        @media (max-width:992px) {
                            font-size: 16px;
                        }
                    }

                    p {
                        font-size: 14px;
                        color: rgba(255, 255, 255, 0.6);
                        margin: 2px 0 0;

                        @media (max-width:992px) {
                            font-size: 13px;
                        }
                    }
                }

                /* align image + text inline */
                .AuthorWrap>div:first-child {
                    display: flex;
                    align-items: center;
                    gap: 15px;
                }
            }

        }
    }
}

/* OUR CLIENTS */
.OurClients {
    .ClientSlider {
        overflow: hidden;
        position: relative;
        padding: 35px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);

        @media (max-width:762px) {
            padding: 20px 0;
        }


        &::before,
        &::after {
            content: '';
            position: absolute;
            top: 0;
            width: 140px;
            height: 100%;
            z-index: 5;
            pointer-events: none;
        }

        /* LEFT FADE */
        &::before {
            left: 0;
            background: linear-gradient(to right,
                    #101010 0%,
                    #101010 25%,
                    rgba(16, 16, 16, 0.8) 50%,
                    rgba(16, 16, 16, 0.4) 75%,
                    transparent 100%);
        }

        /* RIGHT FADE */
        &::after {
            right: 0;
            background: linear-gradient(to left,
                    #101010 0%,
                    #101010 25%,
                    rgba(16, 16, 16, 0.8) 50%,
                    rgba(16, 16, 16, 0.4) 75%,
                    transparent 100%);
        }

        .slick-track {
            display: flex !important;
            align-items: center;
        }

        .slick-slide {
            display: flex !important;
            align-items: center;
            justify-content: center;
            padding: 0 50px;

            @media (max-width: 1024px) {
                padding: 0 30px;
            }

            @media (max-width: 768px) {
                padding: 0 12px;
            }

            @media (max-width: 480px) {
                padding: 0 10px;
            }

            img {
                height: 40px;
                object-fit: contain;
                opacity: 0.6;
                filter: grayscale(100%);
                transition: 0.3s ease;
            }

            &:hover img {
                opacity: 1;
                filter: grayscale(0%);
                transform: scale(1.05);
            }
        }
    }
}

/* INNTER BANENR */
.InnerBanner {
    padding-top: 190px;
    position: relative;

    @media (max-width: 992px) {
        padding-top: 150px;
    }

    @media (max-width: 576px) {
        padding-top: 120px;
    }

    &::after {
        content: "";
        position: absolute;
        left: -150px;
        top: 190px;
        width: 500px;
        height: 100px;
        background-color: var(--primary-color);
        border-radius: 50%;
        transform: rotate(25deg);
        filter: blur(100px);
        opacity: 0.9;

        @media (max-width: 992px) {
            width: 400px;
            height: 80px;
            top: 150px;
        }

        @media (max-width: 576px) {
            width: 280px;
            height: 70px;
            left: -80px;
            top: 120px;
        }
    }

    .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;

        @media (max-width: 768px) {
            flex-direction: column;
            align-items: flex-start;
        }

        .Title {
            h1 {
                @media (max-width: 600px) {
                    br {
                        display: contents;
                    }
                }

            }
        }

        .Des {
            width: 30%;

            @media (max-width: 992px) {
                width: 40%;
            }

            @media (max-width: 768px) {
                width: 100%;
            }

            p {

                @media (max-width: 992px) {
                    font-size: 15px;
                }

                @media (max-width: 576px) {
                    font-size: 14px;
                }
            }

            .primary-button {
                margin-top: 20px;

                @media (max-width: 576px) {
                    font-size: 13px;
                }
            }
        }
    }

    img {
        width: 100%;
        height: auto;
        margin-top: 130px;

        @media (max-width: 992px) {
            margin-top: 100px;
        }

        @media (max-width: 576px) {
            margin-top: 70px;
        }
    }
}

/* PORTFOLIO */
.PortfoloWrap {
    display: flex;
    align-items: flex-start;
    gap: 100px;
    flex-flow: row wrap;
    margin-bottom: 60px;

    @media (max-width:992px) {
        gap: 24px;
    }

    li {
        width: calc(50% - 50px);

        @media (max-width:992px) {
            width: calc(50% - 12px);
        }

        @media (max-width:767px) {
            width: 100%;
        }

        &.hide {
            display: none;
        }

        a {
            display: block;
            width: 100%;
        }

        img {
            width: 100%;
            border-radius: 16px;
        }

        .Cnt {
            margin-top: 25px;
            display: flex;
            align-items: center;
            justify-content: space-between;

            >div {
                width: 75%;

                h3 {
                    color: var(--white-color);
                    font-weight: 500;
                    font-size: 24px;
                    margin-bottom: 10px;
                }
            }

            i {
                color: var(--white-color);
                font-size: 20px;
                background-color: rgba(255, 255, 255, 0.1);
                width: 90px;
                height: 90px;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 50%;
                transition: all 0.3s ease;
            }
        }

        &:hover {
            i {
                background-color: var(--primary-color);
            }
        }
    }
}