@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Handlee&display=swap');

.theme {
    --primaryColor: #F26722;
    --blackColor: #000;
    --gray-200: #E5E7EB;
    --gray-100: #A1A1AA;
    --whiteColor: #ffffff;
    --duration: 50s;
}

html,
body {
    margin: 0;
    width: 100%;
    height: 100%;
}

body {
    overflow-y: auto;
    overflow-x: hidden;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--whiteColor);
    text-align: left;
    font-family: "Figtree", sans-serif;
}

body {
    scroll-behavior: smooth;
    scroll-padding-top: 10px;
}

* {
    scroll-behavior: smooth;
}

*,
::after,
::before {
    box-sizing: border-box;
}

/* ===== Chrome, Edge, Safari ===== */
.theme::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.theme::-webkit-scrollbar-track {
    background: transparent;
}

.theme::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.35);
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.theme::-webkit-scrollbar-thumb:hover {
    background-color: rgba(255, 255, 255, 0.6);
}

/* ===== Firefox ===== */
* {
    scrollbar-width: thin;
    /* thin | auto */
    scrollbar-color: rgba(255, 255, 255, 0.35) transparent;
}

.theme {
    background-color: var(--blackColor);
}

@media (min-width: 1400px) {
    .container {
        max-width: 1180px;
    }
}

@media (min-width: 1600px) {
    .container {
        max-width: 1400px;
    }
}


.theme .btn {
    font-size: 14px;
    line-height: normal;
    font-weight: 600;
    border-radius: 0px;
    position: relative;
    border-radius: 50px;
    animation-timing-function: ease-out;
    animation-duration: 300ms;
}

.theme .btn-white {
    background-color: var(--whiteColor);
    color: var(--blackColor);
    box-shadow: 1px -2px 4px 1px rgba(47, 49, 47, 0.2) inset;
    border: solid 1px rgba(0, 0, 0, 0.50);
}

/* BUTTON */
.theme .btn-primary {
    position: relative;
    padding: 1px;
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: 0.5s;
}

.theme .btn-primary,
.theme .btn-primary:first-child:active {
    background: linear-gradient(180deg, rgb(255, 255, 255, 0.3) 0%, rgba(9, 9, 11, 0) 100%);
}

/* ROTATING BORDER */
.theme .btn-primary::after {
    content: '';
    position: absolute;
    inset: -50%;
    border-radius: 50%;
    background: conic-gradient(from var(--angle),
            transparent 0%,
            transparent 75%,
            white 100%);
    animation: rotate 3s linear infinite;
    pointer-events: none;
    opacity: 0;
}


.theme .btn-primary .btn-inner {
    position: relative;
    z-index: 1;
    padding: 12px 28px;
    border-radius: 50px;
    background: linear-gradient(180deg, #27272A 0%, #09090B 100%);
    color: #A1A1AA;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.5s;
    position: relative;
}

.theme .btn-primary .btn-inner::before {
    content: "";
    display: block;
    position: absolute;
    top: 100%;
    bottom: 0;
    left: 0px;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
    z-index: -1;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), radial-gradient(85% 150% at 50% 150%, rgba(242, 103, 34, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
    backdrop-filter: blur(20px);
    width: 100%;
    height: 100%;
    border-radius: 50px;
}

.theme .btn-primary:hover::after,
.theme .btn-primary:focus::after {
    opacity: 1;
}

.theme .btn-primary:hover,
.theme .btn-primary:focus,
.theme .btn-primary:not(.btn-check)+.btn:active,
.theme .btn-primary.active {
    background-color: transparent;
    box-shadow: 0px 0px 10px 4px rgba(255, 255, 255, .08);
}

.theme .btn-primary:hover .btn-inner::before {
    top: 1px;
}

/* ANIMATION */
@keyframes rotate {
    from {
        --angle: 0deg;
    }

    to {
        --angle: 360deg;
    }
}

/* REQUIRED FOR CSS VARIABLES */
@property --angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

.padder-15 {
    padding: 100px 0px;
}

@media screen and (max-width: 1200px) {
    .padder-15 {
        padding: 80px 0px;
    }
}

@media screen and (max-width: 767px) {
    .padder-15 {
        padding: 60px 0px;
    }
}

.mainTitle {
    margin-bottom: 50px;
}

.mainTitle .smallHeading {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: var(--whiteColor);
    margin-bottom: 10px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    text-transform: uppercase;
}

.mainTitle .smallHeading::before,
.mainTitle .smallHeading::after {
    content: '';
    background-image: url('../images/shap-img.svg');
    background-repeat: no-repeat;
    width: 35px;
    height: 35px;
    opacity: 0.8;
}

.mainTitle .smallHeading::after {
    display: none;
}

.mainTitle.text-center .smallHeading::after {
    display: block;
}

.mainTitle .mainHeading {
    font-weight: 500;
    font-size: 64px;
    line-height: 68px;
    color: var(--whiteColor);
    letter-spacing: -0.8px;
    margin: 0px;
    position: relative;
}

.mainTitle .mainHeading span {
    background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.3) 100%, rgba(255, 255, 255, 0.1) 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.link {
    font-size: 22px;
    font-weight: 600;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 8.85%, rgba(255, 255, 255, 0.5) 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease-in-out;
}

.link:hover,
.link:focus {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.85) 8.85%, rgba(255, 255, 255, 0.35) 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 1600px) {
    .mainTitle {
        margin-bottom: 30px;
    }

    .mainTitle .smallHeading::before,
    .mainTitle .smallHeading::after {
        width: 30px;
        height: 30px;
    }

    .mainTitle .mainHeading {
        font-size: 54px;
        line-height: 60px;
    }

    .link {
        font-size: 18px;
    }
}

@media screen and (max-width:1024px) {

    .mainTitle {
        margin-bottom: 30px;
    }

    .mainTitle .smallHeading {
        font-size: 14px;
        line-height: 20px;
        gap: 10px;
    }



    .mainTitle .mainHeading {
        font-size: 42px;
        line-height: 50px;
    }
}

@media screen and (max-width: 767px) {
    .mainTitle .smallHeading {
        font-size: 14px;
        line-height: 20px;
        gap: 10px;
    }

    .mainTitle .smallHeading::before,
    .mainTitle .smallHeading::after {
        width: 30px;
        height: 30px;
    }

    .mainTitle .mainHeading {
        font-size: 46px;
        line-height: 100%;
    }

    .link {
        font-size: 20px;
    }
}

@media screen and (max-width: 480px) {
    .mainTitle .mainHeading {
        font-size: 32px;
        line-height: 100%;
    }

    .mainTitle .smallHeading::before,
    .mainTitle .smallHeading::after {
        width: 25px;
        height: 25px;
    }

    .mainTitle .smallHeading {
        font-size: 13px;
        line-height: 18px;
        gap: 8px;
    }

}

/* Header Section Start  */
.themeHeader {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 3;
}

.themeHeader.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
}

.themeHeader .navbar {
    padding: 15px 0px;
}

.themeHeader .navbar-brand {
    padding: 0px;
    margin: 0px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: 0.5s;
}

.themeHeader .navbar-brand .brand-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0px 2px 28px 0px rgba(0, 0, 0, 0.50);
}

.themeHeader .navbar-brand .brand-text {
    font-weight: 500;
    font-size: 26px;
    line-height: 100%;
    color: var(--whiteColor);
    transition: 0.5s;
}

@media screen and (min-width: 992px) {
    .themeHeader .navbar-brand .brand-text {
        opacity: 0;
    }

    .themeHeader .navbar-brand:hover .brand-text {
        opacity: 1;
    }
}

.themeHeader .navbar-menu {
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.01) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(255, 255, 255, 0.08) 100%);
    box-shadow: 0px 25px 50px 0px rgba(0, 0, 0, 0.50);
    backdrop-filter: blur(5.2px);
    padding: 8px 8px 8px 16px;
    display: flex;
    align-items: center;
}

.themeHeader .navbar-nav .nav-link {
    padding: 0px 15px;
    font-weight: 600;
    font-size: 14px;
    line-height: normal;
    letter-spacing: -0.56px;
    color: var(--whiteColor);
    transition: 0.5s;
}

.themeHeader .navbar-nav .nav-link:hover,
.themeHeader .navbar-nav .nav-link:focus,
.themeHeader .navbar-nav .nav-link.active {
    color: var(--primaryColor);
}


.theme .themeHeader .btn-inner {
    padding: 10px 18px;
    font-size: 13px;
    text-transform: uppercase;
}

.burger {
    position: relative;
    width: 22px;
    height: 14px;
    cursor: pointer;
    display: none;
    background: transparent;
    border: 0;
    padding: 0px;
    box-shadow: none;
}

.burger:focus {
    outline: 0;
}

.burger span {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 2px;
    transition:
        all 0.2s,
        background 0s;
    border-radius: 5px;
    background: var(--whiteColor);
}

.burger span:first-child {
    width: 70%;
    right: 0px;
    left: inherit;
}

.burger span:nth-child(2) {
    top: 7px;
}

.burger span:last-child {
    top: 14px;
    width: 70%;
}

.burger.show-x span:first-child {
    transform: rotate(45deg);
    width: 100%;
}

.burger.show-x span:nth-child(2) {
    opacity: 0;
    visibility: hidden;
}

.burger.show-x span:last-child {
    transform: rotate(-45deg);
    width: 100%;
}

.burger.show-x span:first-child,
.burger.show-x span:last-child {
    top: 8px;
}

@media screen and (max-width: 1600px) {
    .theme .themeHeader .btn-inner {
        font-size: 12px;
    }

    .themeHeader .navbar-brand .brand-logo {
        width: 50px;
        height: 50px;
    }
}

@media screen and (max-width: 992px) {
    .themeHeader .navbar {
        padding: 15px;
    }

    .main-body .themeHeader .container {
        border-radius: 30px;
    }

    .themeHeader .container {
        border-radius: 50px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
            linear-gradient(180deg, rgba(255, 255, 255, 0.08) -2.34%, rgba(255, 255, 255, 0.04) 44.8%, rgba(255, 255, 255, 0.08) 115.52%);
        box-shadow: 0px 25px 50px 0px rgba(0, 0, 0, 0.50);
        backdrop-filter: blur(24px);
        position: relative;
        padding-top: 10px;
        padding-bottom: 10px;
        transition: 0.5s;
    }

    .themeHeader .navbar-menu {
        flex-flow: column;
        justify-content: flex-start;
        border-radius: 0px;
        background: transparent;
        box-shadow: none;
        backdrop-filter: inherit;
        border: 0px;
        padding: 0px;
    }

    .themeHeader .navbar-menu .navbar-nav {
        padding: 10px 0px 30px 0px;
    }

    .themeHeader .burger {
        display: block;
    }

    .themeHeader .burger.show-x {
        z-index: 11;
    }

    .themeHeader .burger:hover,
    .themeHeader .burger:focus {
        outline: 0;
        box-shadow: none;
    }

    .themeHeader .navbar-nav {
        width: 100%;
    }

    .themeHeader .navbar-nav .nav-link {
        padding: 15px 10px;
        font-size: 22px;
        font-weight: 400;
        border-bottom: solid 1px rgba(255, 255, 255, 0.4);
        letter-spacing: 0;
    }

    .themeHeader .navbar-nav .nav-link:hover,
    .themeHeader .navbar-nav .nav-link:focus,
    .themeHeader .navbar-nav .nav-link.active {
        color: var(--whiteColor);
        border-bottom-color: #F69464;
    }

    .themeHeader .navbar-menu .d-flex.gap-2 {
        margin-bottom: 5px;
        gap: 0px !important;
        border: solid 1px rgba(255, 255, 255, 0.2);
        border-radius: 20px;
        overflow: hidden;
    }

    .theme .themeHeader .btn-primary,
    .theme .themeHeader .btn-inner {
        border-radius: 0px;
        font-size: 18px;
        text-transform: capitalize;
        color: #fff;
        font-weight: 400;
    }

    .theme .themeHeader .btn-primary:first-child {
        border-bottom: solid 1px rgba(255, 255, 255, 0.2);
    }

    .theme .themeHeader .btn-inner {
        padding: 5px 18px;
    }

    .theme .themeHeader .btn-primary .btn-inner::before,
    .theme .themeHeader .btn-primary::after {
        display: none;
    }

    .theme .themeHeader .btn-primary {
        background: rgba(242, 103, 34, 0.1);
        height: 50px;
    }

    .theme .themeHeader .btn-inner {
        background: transparent;
        justify-content: space-between;
        height: 100%;
    }

    .theme .themeHeader .btn-inner img {
        width: 25px;
        filter: grayscale(100%) brightness(180%);
    }

    .themeHeader .navbar-menu .d-flex.gap-2 {
        flex-flow: column;
        width: 100%;
    }

    .theme .themeHeader .btn-primary:hover,
    .theme .themeHeader .btn-primary:focus,
    .theme .themeHeader .btn-primary:not(.btn-check)+.btn:active,
    .theme .themeHeader .btn-primary.active {
        background-color: var(--primaryColor);
        box-shadow: inherit;
    }
}

@media screen and (max-width: 767px) {
    .themeHeader .navbar-brand .brand-text {
        font-size: 20px;
    }

    .themeHeader .navbar-brand .brand-logo {
        width: 42px;
        height: 42px;
    }

    .themeHeader .navbar-brand {
        gap: 10px;
    }

}

@media screen and (max-width: 450px) {
    .theme .themeHeader .btn-inner {
        padding: 12px 15px;
    }
}

/* Header Section End  */
/* Banner Section Start */
main {
    position: relative;
    z-index: 1;
}

.themeBannerImg {
    background-image: url('../images/home-banner.png');
    background-position: top center;
    background-size: cover;
    width: 100%;
    position: relative;
}

.themeBannerImg::after {
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-image: url('../images/bg-gradient.png');
    background-size: cover;
    background-position: top center;
    z-index: -1;
}

.themeBanner,
.themeBannerMain {
    padding: 240px 0px 150px 0px;
}

.themeBanner .headingSmall {
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primaryColor);
    margin-bottom: 15px;
}

.themeBanner .headingBig {
    font-size: 72px;
    font-weight: 700;
    line-height: 110%;
    cursor: pointer;
    text-transform: uppercase;
    color: var(--whiteColor);
    margin-bottom: 15px;
}

/* Wrapper */
.lineHover {
    position: relative;
    display: inline-flex;
    overflow: hidden;
    will-change: transform;
}

/* Base (white text) */
.lineHover .base {
    position: relative;
    z-index: 1;
    transition: opacity 0.35s ease;
}

/* Fade base text on hover */
.headingBig.is-hover .lineHover .base {
    opacity: 0;
}

/* Animated color letters layer */
.lineHover .fill {
    position: absolute;
    inset: 0;
    display: flex;
    pointer-events: none;
}

.lineHover .fill span {
    display: inline-block;
    color: #374151;
    transform: translateY(120%);
    opacity: 0;
    will-change: transform, opacity;
    text-shadow: 0px 5px 7px rgba(255, 255, 255, 0.1);
}

.themeBanner .information {
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    color: transparent;
    margin: 0 auto;
    background: linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 70%, rgba(255, 255, 255, 0.5) 140%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media screen and (min-width: 1200px) {
    .themeBanner .information {
        max-width: 50%;
    }
}

.theme .themeBanner .btn-primary {
    font-size: 20px;
    padding: 2px;
}

.theme .themeBanner .btn-inner {
    padding: 16px 40px;
    font-size: 20px;

}

.theme .themeBanner .btn-primary span {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 8.85%, #FFFFFF 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Inner Banner Section Start */


.themeBannerInner .themeBannerMain .innerSection {
    position: relative;
    display: inline-block;
    width: auto;
    z-index: -1;
    top: 80px;
}

.themeBannerInner .themeBannerMain .innerHeading {
    font-size: 170px;
    line-height: 100%;
    font-weight: 700;
    margin-bottom: 0px;
    text-transform: uppercase;
    background: linear-gradient(180deg, #fff 0%, #fff 45%, rgba(255, 255, 255, .2) 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transform-origin: center;
    position: relative;
    z-index: 1;
}

.themeBanner .themeBannerMain {
    transform-style: preserve-3d;
}

.themeBannerInner .themeBannerMain .innerTitle {
    margin: 0;
    position: absolute;
    top: -85px;
    left: 10px;
    width: 100%;
}

.themeBannerInner .themeBannerMain .innerSection.workSection {
    top: 50px;
}

.themeBannerInner .themeBannerMain .workSection .innerTitle {
    left: 120px;
}

.themeBannerInner .themeBannerMain .workSection .innerTitle {
    top: -60px;
    left: 10px;
    width: auto;
}

.themeBannerInner .themeBannerMain .innerTitle img {
    max-width: 100%;
}

.themeBannerInner .themeBannerMain .workSection .innerHeading {
    font-size: 220px;
    padding-right: 100px;
}

.serviceBanner {
    height: 110vh;
}

/* Inner Banner Section Start */
@media screen and (min-width: 1601px) and (max-width: 1900px) {
    .themeBannerInner .themeBannerMain .workSection .innerHeading {
        font-size: 180px;
    }

    .themeBannerInner .themeBannerMain .innerSection {
        top: 40px;
    }

    .themeBannerInner .themeBannerMain .innerTitle {
        width: 80%;
        right: 0px;
        left: 0;
        margin: 0 auto;
        top: -85px;
    }

    .themeBannerInner .themeBannerMain .innerHeading {
        font-size: 160px;
    }

    .serviceBanner {
        height: 100vh;
    }
}

@media screen and (max-width: 1600px) {

    .themeBanner,
    .themeBannerMain {
        padding: 200px 0px 80px 0px;
    }

    .themeBanner .headingBig {
        font-size: 60px;
    }

    .themeBanner .information {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 30px;
    }

    .theme .themeBanner .btn-inner {
        padding: 14px 35px;
        font-size: 18px;
    }

    .themeBannerInner .themeBannerMain .innerSection.workSection {
        top: 0;
    }

    .themeBannerInner .themeBannerMain .innerSection {
        top: 20px;
    }

    .themeBannerInner .themeBannerMain .workSection .innerHeading {
        font-size: 160px;
        padding-right: 100px;
    }

    .themeBannerInner .themeBannerMain .innerTitle {
        width: 80%;
        right: 0px;
        left: 0;
        margin: 0 auto;
        top: -75px;
    }

    .themeBannerInner .themeBannerMain .innerHeading {
        font-size: 125px;
    }

    .serviceBanner {
        height: 90vh;
    }
}

@media screen and (max-width: 1300px) {

    .themeBanner {
        padding: 180px 0px 30px 0px;
    }

    .themeBannerMain {
        padding: 180px 0px 100px 0px;
    }
}



@media screen and (min-width: 1025px) and (max-width: 1300px) {
    .themeBannerInner .themeBannerMain .workSection .innerHeading {
        font-size: 130px;
        padding-right: 50px;
    }

    .themeBannerInner .themeBannerMain .workSection .innerTitle {
        left: 50px;
        width: 100%;
    }

    .themeBannerInner .themeBannerMain .innerSection {
        top: 0px;
    }

    .themeBannerInner .themeBannerMain .innerTitle {
        width: 85%;
        right: 0px;
        left: 0;
        margin: 0 auto;
        top: -70px;
    }

    .themeBannerInner .themeBannerMain .innerHeading {
        font-size: 110px;
    }

    .serviceBanner {
        height: 78vh;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .themeBannerInner .themeBannerMain .workSection .innerHeading {
        font-size: 130px;
        padding-right: 30px;
    }

    .themeBannerInner .themeBannerMain .workSection .innerTitle {
        left: 50px;
        width: 100%;
    }

    .themeBannerInner .themeBannerMain .innerSection {
        top: 40px;
    }

    .themeBannerInner .themeBannerMain .innerTitle {
        width: 85%;
        right: 0px;
        left: 0;
        margin: 0 auto;
        top: -85px;
    }

    .themeBannerInner.serviceBanner .themeBannerMain .innerSection {
        top: 40px;
    }

    .themeBannerInner .themeBannerMain .workSection .innerTitle {
        top: -35px;
    }

    .themeBannerInner .themeBannerMain .innerHeading {
        font-size: 125px;
    }
}

@media screen and (max-width: 992px) {
    .themeBanner .headingBig {
        font-size: 34px;
    }

    .serviceBanner {
        height: 70vh;
    }
}

@media screen and (max-width: 767px) {

    .themeBanner,
    .themeBannerMain {
        padding: 150px 0px 70px 0px;
    }

    .themeBanner .information br {
        display: none;
    }

    .themeBanner .information {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 25px;
    }

    .themeBanner .headingSmall {
        font-size: 12px;
        line-height: 18px;
    }

    .theme .themeBanner .btn-inner {
        padding: 12px 30px;
        font-size: 16px;
    }

    .themeBanner .headingBig .text-swap span {
        text-align: center;
        right: 0;
        justify-content: center;
    }

    .themeBannerInner .themeBannerMain .workSection .innerHeading {
        font-size: 100px;
        padding-right: 20px;
    }


    .themeBannerInner .themeBannerMain .workSection .innerTitle {
        left: 30px;
        width: 100%;
        top: -30px;
    }

    .serviceBanner {
        height: 60vh;
    }

    .themeBannerInner .themeBannerMain .innerTitle {
        width: 80%;
        right: 0px;
        left: 0;
        margin: 0 auto;
        top: -50px;
    }

    .themeBannerInner .themeBannerMain .innerHeading {
        font-size: 70px;
    }
}

@media screen and (max-width: 480px) {
    .themeBanner .headingBig {
        font-size: 34px;
    }

    .themeBanner .information {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 25px;
    }

    .theme .themeBanner .btn-primary {
        font-size: 16px;
    }

    .themeBannerInner .themeBannerMain .workSection .innerHeading {
        font-size: 90px;
        padding-right: 0px;
    }

    .serviceBanner {
        height: 70vh;
    }

    .themeBannerInner.serviceBanner .themeBannerMain .innerSection {
        top: 0;
    }

    .themeBannerInner.serviceBanner .themeBannerMain .innerHeading {
        font-size: 65px;
    }

}

@media screen and (max-width: 350px) {
    .themeBanner .headingBig {
        font-size: 36px;
    }
}

/* Banner Section End */
/* Partners Section Start */
.partnerSwiper {
    --fade-size: clamp(40px, 8vw, 150px);

    -webkit-mask-image: linear-gradient(to right,
            transparent 0,
            black var(--fade-size),
            black calc(100% - var(--fade-size)),
            transparent 100%);

    mask-image: linear-gradient(to right,
            transparent 0,
            black var(--fade-size),
            black calc(100% - var(--fade-size)),
            transparent 100%);
}

.themePartners .partnerLogo {
    max-height: 55px;
    text-align: center;
}

.themePartners .partnerLogo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 767px) {

    .partnerSwiper::before,
    .partnerSwiper::after {
        width: 80px;
    }

    .partnerSwiper::before {
        background: linear-gradient(90deg, #0a0a0a 0%, rgba(10, 10, 10, 0) 100%);
    }

    .partnerSwiper::after {
        background: linear-gradient(270deg, #0a0a0a 0%, rgba(10, 10, 10, 0) 100%);
    }

    .themePartnersSec .partnerSwiper::before {
        background: linear-gradient(90deg, #000000 0%, rgba(10, 10, 10, 0) 100%);
    }

    .themePartnersSec .partnerSwiper::after {
        background: linear-gradient(270deg, #000000 0%, rgba(10, 10, 10, 0) 100%);
    }

    .mainTitle .smallHeading span {
        flex: 1;
    }
}

/* Partners Section End */
/* Selected Works Section Start */
.workSlider .swiper-slide {
    width: auto;
}

.workSlider .workImg {
    width: 100%;
    height: 450px;
    display: inline-block;
}

.workSlider .workImg img {
    border-radius: 10px;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.workSlider .workInfo {
    padding-top: 10px;
}

.workSlider .workInfo .workTitle {
    font-size: 18px;
    font-weight: 500;
    line-height: 20px;
    color: var(--whiteColor);
    margin: 0;
}

@media screen and (max-width:1600px) {
    .workSlider .workInfo .workTitle {
        font-size: 16px;
        line-height: 20px;
    }

    .workSlider .workImg {
        height: 400px;
    }
}

@media screen and (max-width:1024px) {
    .workSlider .workImg {
        height: 350px;
    }
}

/* Selected Works Section End */
/* We are Great at Section Start */
.topBannerAnimation {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}



.themeGreat {
    position: relative;
    overflow: hidden;
}

.themeGreat .mainTitle {
    margin-bottom: 30px;
}

.themeGreat .card {
    background: #0C0C0C;
    border: 1px solid #1F2937;
    border-radius: 20px;
    box-shadow: none;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
    margin: 10px 0px;
    height: calc(100% - 20px);
    transform-origin: center;
    will-change: transform, opacity;
}

.themeGreat .card .card-body {
    padding: 0px 20px 20px;
    text-align: center;
}

.themeGreat .card .icon {
    width: 100%;
    height: 240px;
}

.themeGreat .card .icon img {
    width: 100%;
}

.themeGreat .card .title {
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    color: var(--whiteColor);
    margin: 0px;
}

@media screen and (max-width:1600px) {

    .themeGreat .card .icon {
        height: 190px;
    }

    .themeGreat .card .title {
        font-size: 18px;
        line-height: 22px;
    }
}

@media screen and (max-width: 1080px) {
    .themeGreat .card {
        margin: 8px 0px;
        height: calc(100% - 16px);
    }

    .themeGreat .card .icon {
        height: 200px;
    }

    .themeGreat .card .title {
        font-size: 18px;
        line-height: 22px;
    }

    .themeGreat .card .card-body {
        padding: 0px 15px 20px;
    }
}

@media screen and (max-width: 767px) {
    .themeGreat .card {
        border-radius: 15px;
    }

    .themeGreat .card .icon {
        height: auto;
    }

    .themeGreat .card .title {
        font-size: 16px;
        line-height: 20px;
    }
}

/* We are Great at Section End */
/* Testimonials Section Start */
.themeTestimonials .mainTitle .mainHeading {
    background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 50%, rgba(255, 255, 255, 0) 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (min-width: 1040px) {
    .container-md {
        max-width: 900px;
    }
}

@media (min-width: 1600px) {
    .container-md {
        max-width: 1024px;
    }
}


.themeTestimonials .mainSwiper {
    margin-bottom: 30px;

}

.themeTestimonials .sliderCard {
    background-color: var(--primaryColor);
    border-radius: 24px;
    width: 100%;
    box-shadow: 0px 8px 100.3px 0px #272727;
    border: 1px solid #1F2937;
    padding: 8px;
}

.sliderCard .sliderHeader {
    display: flex;
    align-items: center;
    padding: 15px;
    gap: 10px;
}

.sliderHeader {
    perspective: 800px;
}

.sliderLogo {
    /* width: 90px; */
    width: 40px;
}

.sliderLogo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sliderCard .sliderHeader .list {
    display: inline-flex;
    gap: 25px;
    flex: 1;
    width: 100%;
    margin: 0px;
    padding-left: 15px;
}

.sliderCard .sliderHeader .list li {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    color: var(--whiteColor);
}

.sliderCard .sliderBody {
    padding: 45px 40px;
    background-color: #0F0F0F;
    border-radius: 20px;
    box-shadow: 0px 48px 48px -24px rgba(41, 41, 41, 0.039);
}

.sliderCard .sliderBody .sliderText {
    font-size: 24px;
    font-weight: 400;
    line-height: 28px;
    color: var(--whiteColor);
    margin: 0px;
}

.sliderCard .sliderBody .userProfile {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
}

.sliderBody .userProfile .userImg {
    width: 58px;
    height: 58px;
    padding: 5px;
    border: solid 1px var(--whiteColor);
    border-radius: 50%;
}

.sliderBody .userProfile .userImg img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.sliderBody .userProfile .userInfo .userName {
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    color: var(--whiteColor);
}

.sliderBody .userProfile .userInfo .userDetails {
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.5);
}

.themeTestimonials .thumbSwiper {
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0.01)),
        radial-gradient(107.5% 107.5% at 50% 215%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 50px;
    padding: 10px 20px;
    -webkit-mask-image: linear-gradient(to right, transparent 0, black 150px, black calc(100% - 150px), transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, black 150px, black calc(100% - 150px), transparent 100%);
}

.themeTestimonials .thumbSwiper .swiper-slide {
    padding: 8px;
    text-align: center;
    color: #6B7280;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 50px;
}

.themeTestimonials .thumbSwiper .swiper-slide.swiper-slide-thumb-active {
    color: var(--whiteColor);
    background-color: var(--primaryColor);
}

.themeTestimonials .thumbOuter {
    position: relative;
}

.thumbOuter .thumb-next,
.thumbOuter .thumb-prev {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 28px;
    height: 28px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0px;
    background-color: var(--primaryColor);
    z-index: 3;
}

.thumbOuter .thumb-next {
    right: -10px;
}

.thumbOuter .thumb-prev {
    left: -10px;
}

.thumbOuter .thumb-next img,
.thumbOuter .thumb-prev img {
    width: 100%;
    height: 100%;
}

.thumbOuter .thumb-next.swiper-button-disabled,
.thumbOuter .thumb-prev.swiper-button-disabled {
    cursor: not-allowed;
    background: #4B5563;

}

@media screen and (max-width: 1600px) {

    .sliderCard .sliderBody {
        padding: 30px 25px;
    }

    .sliderCard .sliderBody .sliderText {
        font-size: 18px;
        line-height: 26px;
    }

    .sliderCard .sliderBody .userProfile {
        margin-top: 30px;
    }
}

@media screen and (max-width: 767px) {
    .themeTestimonials .sliderCard {
        border-radius: 15px;
    }

    .sliderCard .sliderHeader {
        padding: 8px 10px;
        gap: 5px;
    }

    .sliderCard .sliderHeader {
        flex-flow: column;
    }

    .sliderCard .sliderHeader .list {
        justify-content: center;
        padding-left: 0px;
        gap: 20px;
    }

    .sliderCard .sliderHeader .list li {
        font-size: 12px;
    }

    .sliderCard .sliderBody {
        padding: 15px;
    }

    .sliderCard .sliderBody .sliderText {
        font-size: 14px;
        line-height: 22px;
    }

    .sliderCard .sliderBody .userProfile {
        margin-top: 15px;
    }

    .sliderBody .userProfile .userImg {
        width: 48px;
        height: 48px;
    }

    .themeTestimonials .thumbSwiper {
        padding: 8px 15px;
    }

    .themeTestimonials .thumbSwiper .swiper-slide {
        font-size: 14px;
    }
}

/* Testimonials Section End */
/* Process Section Start */
.processTheme .processLine {
    position: relative;
}

.processTheme .processLine::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 11px;
    width: calc(100% - 11px);
    height: 10px;
    background: linear-gradient(90deg, rgba(31, 41, 55, 1) 0%, rgba(31, 41, 55, 1) 60%, rgba(31, 41, 55, 0) 100%);
    z-index: 0;
}

.processTheme .processCard {
    position: relative;
    z-index: 1;
}

.processCard img {
    width: 40px;
    height: 40px;
    margin-bottom: 40px;
    background-color: var(--blackColor);
}

.processCard .processTitle {
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
    color: var(--primaryColor);
    margin-bottom: 10px;
}

.processCard .processInfo {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--whiteColor);
    margin: 0px;
    max-width: 100%;
}


@media screen and (max-width: 1400px) {
    .processCard img {
        margin-bottom: 30px;
    }

    .processCard .processTitle {
        font-size: 20px;
        line-height: 26px;
    }

    .processCard .processInfo {
        max-width: 100%;
    }
}

@media screen and (max-width: 1024px) {
    .processCard img {
        width: 35px;
        height: 35px;
        margin-bottom: 30px;
    }

    .processCard .processTitle {
        font-size: 20px;
        line-height: 26px;
    }

    .processCard .processInfo {
        font-size: 14px;
        line-height: 22px;
        max-width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .processTheme .processLine::before {
        top: 22px;
        left: 20px;
        width: 8px;
        height: 100%;
        background: linear-gradient(180deg, rgba(31, 41, 55, 1) 0%, rgba(31, 41, 55, 1) 60%, rgba(31, 41, 55, 0) 100%);
    }

    .processTheme .processCard {
        display: flex;
        gap: 20px;
        margin-bottom: 30px;
    }

    .processTheme .col-md-4:last-child .processCard {
        margin-bottom: 0px;
    }

    .processCard img {
        width: 25px;
        height: 25px;
        margin-bottom: 0px;
    }
}

/* Process Section End */
/* Pricing Section Start  */
.pricingTheme .pricingInner {
    background-image: url('../images/pricing-bg.png');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}

.pricingTheme .pricingInner .container {
    position: relative;
}

.pricingTheme .pricingInner .container::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(206 145 115) 50%, rgba(255, 255, 255, 0) 100%);
}

.pricingTheme .reviewSwiper {
    padding: 30px 0px;
    position: relative;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0, black 150px, black calc(100% - 150px), transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, black 150px, black calc(100% - 150px), transparent 100%);
}

.reviewSwiper .reviewBody {
    padding: 0px 20px;
    border-left: solid 1px var(--primaryColor);
}

.reviewSwiper .reviewBody .reviewTitle {
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    color: var(--whiteColor);
    margin-bottom: 0px;
}

.reviewSwiper .reviewBody .reviewInfo {
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.5);
}

@media screen and (max-width:1024px) {
    .pricingTheme .reviewSwiper {
        padding: 20px 15px;
    }
}

@media screen and (max-width:767px) {
    .reviewSwiper .reviewBody {
        padding: 0px 15px;
    }
}

/* Pricing Section End  */
/* Why Choose Us Section Start */
.whychooseTheme {
    padding-top: 30px;
}

.whychooseTheme .title {
    font-size: 40px;
    font-weight: 500;
    line-height: 120%;
    color: var(--whiteColor);
    margin-bottom: 40px;
}

.whychooseTheme .list {
    list-style: none;
    padding: 0px 30px 0px 0px;
    margin: 0px;
}

.whychooseTheme .list li {
    display: flex;
    align-items: start;
    gap: 15px;
    margin-bottom: 25px;
}

.whychooseTheme .list li img {
    width: 30px;
    height: 30px;
}

.whychooseTheme .list li .listInfo {
    flex: 1;
}

.whychooseTheme .list li .listInfo .smalltitle {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 7px;
    color: var(--whiteColor);

}

.whychooseTheme .list li .listInfo .smallInfo {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #9CA3AF;
    margin: 0px;
    max-width: 95%;

}

.whychooseTheme .bookYourCall {
    margin-top: 80px;
}

.bookYourCall .bookYourCallOuter {
    position: relative;
    display: inline-block;
    width: auto;
}

.bookYourCallOuter .smallText {
    position: absolute;
    top: -30px;
    right: -80px;
    font-size: 26px;
    font-weight: 500;
    line-height: 20px;
    color: #22C55E;
    font-family: "Caveat", cursive;
    transform: rotate(10deg);
}

.bookYourCall .btnPrimary {
    width: 400px;
    height: 120px;
    display: inline-block;
    border-radius: 15px;
    background: transparent;
    padding: 1px;
    position: relative;
    transition: 0.5s;
}

.bookYourCall .btnPrimary::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    z-index: -1;
    filter: blur(15px);
    background:
        linear-gradient(157deg,
            #F26722 1.5%,
            rgba(242, 103, 34, 0) 43.97%),
        linear-gradient(334deg,
            #F26722 2.11%,
            rgba(242, 103, 34, 0) 44.37%);
    opacity: 0;
    transition: 0.5s;
}

.bookYourCall .btnPrimary .bg {
    width: 100%;
    height: 100%;
}

.bookYourCall .btnPrimary .btnInner {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 30px;
}

.bookYourCall .btnPrimary .btnInner span {
    font-size: 24px;
    font-weight: 500;
    line-height: 100%;
    color: var(--whiteColor);
    text-align: left;
    flex: 1;
}

.bookYourCall .btnPrimary span small {
    display: block;
    width: 100%;
    font-size: 14px;
    font-weight: 500;
    line-height: 100%;
    margin-bottom: 5px;
}

.bookYourCall .btnPrimary img {
    width: 30px;
    height: 30px;
    object-fit: cover;
}

.bookYourCall .btnPrimary:hover,
.bookYourCall .btnPrimary:focus {
    background: linear-gradient(160deg, #F26722 1.5%, rgba(242, 103, 34, 0) 43.97%), linear-gradient(340deg, #F26722 2.11%, rgba(242, 103, 34, 0) 44.37%);
}

.bookYourCall .btnPrimary:hover::before,
.bookYourCall .btnPrimary:focus::before {
    opacity: 1;
}

@media screen and (max-width:1300px) {
    .whychooseTheme .bookYourCall {
        margin-top: 40px;
    }
}

@media screen and (max-width:1024px) {
    .whychooseTheme .title {
        font-size: 36px;
    }

    .whychooseTheme .list {
        padding: 0px;
    }

    .bookYourCall .btnPrimary img {
        width: 20px;
        height: 20px;
    }

}

@media screen and (max-width: 767px) {
    .whychooseTheme .title {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .whychooseTheme {
        padding-top: 30px;
    }


    .whychooseTheme .list li {
        margin-bottom: 15px;
    }

    .bookYourCallOuter .smallText {
        right: -45px;
    }

    .bookYourCall .btnPrimary {
        width: 85%;
        height: auto;
    }

    .bookYourCall .btnPrimary .btnInner {
        padding: 10px 30px;
    }

    .bookYourCall .btnPrimary .btnInner span {
        font-size: 18px;
    }
}

@media screen and (max-width: 480px) {
    .whychooseTheme .title {
        font-size: 28px;
    }

    .bookYourCallOuter .smallText {
        right: 0px;
        top: -40px;
    }

    .bookYourCall .btnPrimary .btnInner span {
        font-size: 16px;
    }

    .bookYourCall .btnPrimary .btnInner {
        padding: 10px 25px;
    }

}

/* Why Choose Us Section End */
/* FAQ Section Start */
.faqTheme .accordion {
    border-radius: 30px;
}

.faqTheme .accordion .accordion-item:first-of-type,
.faqTheme .accordion .accordion-item:first-of-type .accordion-button {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.faqTheme .accordion .accordion-item:last-of-type,
.faqTheme .accordion .accordion-item:last-of-type .accordion-button {
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
}

.faqTheme .accordion .accordion-item.active {
    background: radial-gradient(100% 100% at 0% 0%, rgba(75, 85, 99, 0.4) 0%, rgba(75, 85, 99, 0) 100%);
}

.faqTheme .accordion .accordion-item {
    background: rgba(0, 0, 0, .2);
    /* background: linear-gradient(90deg, rgba(255, 255, 255, 0.01) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(255, 255, 255, 0.08) 100%); */
    border-color: var(--gray-800, #1F2937);
    backdrop-filter: blur(14px);
}

.faqTheme .accordion .accordion-item .accordion-button {
    background-color: transparent;
    padding: 20px 30px;
}

.faqTheme .accordion .accordion-item .accordion-button .count {
    color: var(--whiteColor);
}

.faqTheme .accordion .accordion-button .title {
    font-size: 18px;
    color: var(--whiteColor);
    font-weight: 500;
}

.faqTheme .accordion .accordion-button:not(.collapsed) .title {
    color: var(--primaryColor);
}

.faqTheme .accordion .accordion-button:not(.collapsed) {
    box-shadow: none;
}

.faqTheme .accordion .accordion-button:focus {
    box-shadow: none;
}

.faqTheme .accordion .accordion-body {
    padding: 0px 30px 25px 58px;
}

.faqTheme .accordion .accordion-body .smallText {
    font-size: 16px;
    line-height: 24px;
    color: var(--whiteColor);
    opacity: 0.6;
    margin-bottom: 0px;
}

.faqTheme .accordion .accordion-button::after {
    background-image: none;
    content: "+";
    font-size: 26px;
    font-weight: 400;
    transform: none;
    width: auto;
    height: auto;
    color: #fff;
    line-height: 22px;
}

.faqTheme .accordion .accordion-button:not(.collapsed)::after {
    content: "−";
    /* minus */
}

.faqTheme .cardQuestion {
    background-image: url('../images/question-bg.png');
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(5px);
    border-radius: 30px;
    padding: 35px;
}

.faqTheme .cardQuestion .title {
    font-size: 24px;
    line-height: 30px;
    color: var(--whiteColor);
    margin-bottom: 40px;
}

.faqTheme .cardQuestion .title span {
    color: #A2A2A2;
}

.faqTheme .cardQuestion .btn {
    padding: 18px 20px;
    font-size: 16px;
}


@media screen and (max-width: 1400px) {
    .faqTheme .cardQuestion {
        padding: 20px;
    }

    .faqTheme .cardQuestion .title {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 1200px) {
    .faqTheme .accordion .accordion-item .accordion-button {
        padding: 20px 20px;
    }

    .faqTheme .accordion .accordion-button .title {
        font-size: 16px;
    }

    .faqTheme .cardQuestion {
        padding: 25px 20px;
    }

    .faqTheme .accordion .accordion-body {
        padding: 0px 20px 15px 80px;
    }

    .faqTheme .accordion .accordion-body .smallText {
        font-size: 14px;
        line-height: 20px;
    }
}

@media screen and (max-width: 1024px) {
    .faqTheme .accordion .accordion-item .accordion-button .count {
        margin-right: 10px;
    }

    .faqTheme .accordion .accordion-item .accordion-button {
        padding: 15px;
    }

    .faqTheme .accordion .accordion-body {
        padding: 0px 15px 10px;
    }

    .faqTheme .accordion .accordion-button .title {
        font-size: 16px;
        line-height: 22px;
    }
}

@media screen and (max-width: 767px) {
    .faqTheme .accordion .accordion-item .accordion-button .count {
        margin-right: 5px;
    }

    .faqTheme .accordion .accordion-body {
        padding: 0px 15px 10px;
    }

    .faqTheme .accordion {
        margin-bottom: 15px;
    }

    .faqTheme .cardQuestion .title {
        margin-bottom: 20px;
    }

    .faqTheme .cardQuestion .btn {
        padding: 15px 25px;
    }

    .faqTheme .accordion .accordion-body .smallText {
        font-size: 14px;
        line-height: 20px;
    }

    .faqTheme .cardQuestion .title {
        font-size: 22px;
        line-height: 28px;
    }
}

/* FAQ Section End */
/* Crafters Section Start */
.themeCrafters .craftersLogo {
    position: relative;
}

.craftersLogo img {
    max-width: 100%;
    height: auto;
}

.craftersLogo .craftersList {
    position: absolute;
    bottom: -20px;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    list-style: none;
}

.craftersLogo img,
.craftersLogo .craftersList li {
    will-change: transform, opacity;
}

.craftersLogo .craftersList li {
    background: var(--primaryColor);
    padding: 18px 22px;
    border-radius: 18px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    text-transform: uppercase;
    box-shadow:
        -0.5px -0.5px 0px #952B0087,
        10px 10px 21.21px -3.75px #0000003B,
        5.9px 5.9px 8.35px -3px #00000031,
        2.66px 2.66px 3.76px -2.25px #0000003B,
        1.21px 1.21px 1.71px -1.5px #0000003F,
        0.44px 0.44px 0.63px -1px #00000042,
        -1px -1px 1px #0000003B inset,
        1px 1px 1px #ffffffd4 inset;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease;
}

.craftersLogo .craftersList li:hover {
    transform: translateY(-6px) scale(1.02);

    background:
        url('../images/shadow-img.png') center / cover no-repeat,
        var(--primaryColor);

    box-shadow:
        0 3.71px 4.85px #ff580027,
        0 10.27px 13.4px #ff580038,
        0 24.72px 32.26px #ff580030,
        0 42px 107px #ff580057,
        0 1px 10px 2px rgba(255, 255, 255, 0.08) inset,
        0 1px 10px 1px rgba(255, 255, 255, 1) inset;
}

@media (max-width: 1024px) {
    .craftersLogo .craftersList {
        gap: 15px;
    }

    .craftersLogo .craftersList li {
        padding: 12px 10px;
        font-size: 14px;
        border-radius: 16px;
    }
}

@media (max-width: 767px) {
    .craftersLogo .craftersList {
        position: relative;
        top: -20px;
        gap: 10px;
    }
}

/* Crafters Section End */
/* Crafters Appointment Section Start */
.appointmentTheme {
    background-image: url('../images/appointment-bg.png');
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;
}

.appointmentTheme .calender {
    width: 100%;
    height: 100%;
    overflow: auto;
}

/* Crafters Appointment Section End */
/* Footer Section Start  */
.footerTheme {
    position: relative;
    z-index: 1;
    padding: 25px 50px;
    border-top: solid 1px rgba(255, 255, 255, 0.1);
    margin-top: -2px;
}

.footerTheme .copyright,
.footerTheme .listLink li a {
    font-size: 14px;
    color: var(--whiteColor);
    font-weight: 400;
    line-height: 22px;
}

.footerTheme .copyright a,
.footerTheme .listLink li a {
    color: var(--whiteColor);
    text-decoration: none;
    transition: 0.5s;
}

.footerTheme .copyright a:hover,
.footerTheme .copyright a:focus,
.footerTheme .listLink li a:hover,
.footerTheme .listLink li a:focus {
    color: var(--primaryColor);
}

.footerTheme .listLink,
.footerTheme .socialIcon {
    display: flex;
    width: auto;
    padding: 0px;
    margin: 0px;
    list-style: none;
    gap: 30px;
}

.footerTheme .listLink li,
.footerTheme .socialIcon li {
    display: inline-flex;
    width: auto;
    position: relative;
}

.footerTheme .listLink li::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 5px;
    height: 5px;
    background-color: #8F9BB7;
    border-radius: 50px;
}

.footerTheme .listLink li:first-child::before {
    display: none;
}

.footerTheme .socialIcon {
    gap: 10px;
}

.footerTheme .socialIcon li .icon {
    display: inline-flex;
    width: 35px;
    height: 35px;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    transition: 0.5s;
    backdrop-filter: blur(5px);
}

.footerTheme .socialIcon li .icon:hover,
.footerTheme .socialIcon li .icon:focus {
    background-color: var(--primaryColor);
}

.footerTheme .socialIcon li .icon img {
    max-width: 100%;
    max-height: 100%;
}

@media screen and (max-width:1024px) {
    .footerTheme {
        padding: 15px 20px;
    }
}

@media screen and (max-width:767px) {
    .footerTheme {
        padding: 10px 15px;
    }

    .footerTheme .row {
        text-align: center;
    }

    .footerTheme .copyright {
        margin-bottom: 5px;
        display: inline-block;
    }
}

@media screen and (max-width:480px) {

    .footerTheme .copyright,
    .footerTheme .listLink li a {
        font-size: 13px;
    }

    .footerTheme .listLink,
    .footerTheme .socialIcon {
        gap: 20px;
    }

    .footerTheme .socialIcon {
        margin-left: 10px;
        gap: 10px;
    }
}

/* Footer Section End  */
/* Work List Section Start */
.workListTheme {
    /* padding-left: 80px;
    padding-right: 80px; */
    padding-left: 265px;
    padding-right: 265px;
}

.workListTheme .workView:first-child {
    padding-top: 0px;
}

.workListTheme .workList {
    margin: 0px;
    padding: 0px 0px 0px 25px;
    list-style: none;
    border-left: solid 1px #1F2937;
}

.workListTheme .workList li {
    margin-bottom: 12px;
}

.workListTheme .workList li:last-child {
    margin-bottom: 0px;
}

.workListTheme .workList li a {
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    color: #EFEEEC;
    text-decoration: none;
    position: relative;

    display: inline-block;
    transform: translateX(0);
    transition:
        transform 0.35s ease,
        background 0.35s ease;
}

/* DOT */
.workListTheme .workList li a::after {
    content: '';
    position: absolute;
    left: -15px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 6px;
    height: 6px;
    background-color: var(--primaryColor);
    border-radius: 50px;
    transition: 0.5s;
    opacity: 0;
}

/* HOVER EFFECT */
.workListTheme .workList li a:hover,
.workListTheme .workList li a:focus {
    transform: translateX(10px);
    color: var(--primaryColor);
    font-weight: 600;
}

/* DOT MOVE + SCALE */
.workListTheme .workList li a:hover::after,
.workListTheme .workList li a:focus::after {
    opacity: 1;
}

.workView {
    padding-top: 30px;
    padding-bottom: 30px;
}

.workView .workTitle {
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    color: #EFEEEC;
    margin-bottom: 30px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.workView .workTitle::after {
    content: '';
    flex: 1;
    width: 100%;
    height: 1px;
    background-color: #fff;
}

.workView .workCard {
    margin: 5px 0px;
}

.workView .workCard .workImg {
    display: inline-block;
    width: 100%;
    transition: 0.5s;
    overflow: hidden;
    position: relative;
    height: 430px;
}

.workView .workCard .workImg img {
    width: 100%;
    max-height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.6s ease;
}

.workView .workCard .workImg .actionView {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition:
        opacity 0.5s ease,
        transform 0.4s ease;
}

.theme .actionView .btn-primary {
    padding: 2px;
    box-shadow: 0px 8px 5px rgba(0, 0, 0, .1);
}

.theme .actionView .btn-primary::after {
    background: conic-gradient(from var(--angle), transparent 0%, transparent 75%, #F26722 100%);
}

.theme .actionView .btn-primary .btn-inner {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        radial-gradient(107.5% 107.5% at 50% 215%, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0) 100%);
    backdrop-filter: blur(20px);
    font-size: 18px;
}

.theme .actionView .btn-primary span {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 8.85%, #FFFFFF 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.theme .actionView .btn-primary .btn-inner::before {
    display: none;
}

.workView .workCard .workImg:hover img {
    transform: scale(1.08);
}

.workView .workCard .workImg:hover {
    border-radius: 20px;
}

.workView .workCard .workImg:hover .actionView {
    opacity: 1;
    transform: translateY(0);
}

.actionView .btn-primary {
    transform: translateY(10px);
    transition: transform 0.5s ease;
}

.workView .workCard .workImg:hover .actionView .btn-primary {
    transform: translateY(0);
}

.workView .workCard .workBody {
    padding: 10px 0px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.workView .workCard .workBody .title {
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    color: #EFEEEC;
    width: 30%;
    margin: 0px;
}

.workView .workCard .workBody .info {
    flex: 1;
    justify-content: flex-end;
    display: inline-flex;
    margin-left: auto;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    vertical-align: middle;
    color: #EFEEEC;
    margin: 0px;
}

@media screen and (max-width: 1600px) {
    .workListTheme {
        padding-left: 50px;
        padding-right: 50px;
    }

    .workListTheme .workList li a {
        font-size: 18px;
    }
}

@media screen and (max-width: 1400px) {
    .workView .workCard .workImg {
        height: auto;
    }

}

@media screen and (max-width: 1024px) {
    .workListTheme {
        padding: 30px;
    }

    .workListTheme .workList {
        padding: 0px 0px 0px 15px;
    }

    .workListTheme .workList li a {
        font-size: 14px;
    }

    .workView .workCard .workBody {
        padding: 5px 0px;
    }

}

@media screen and (max-width: 767px) {
    .workListTheme {
        padding-left: 15px;
        padding-right: 15px;
    }

    .workListTheme .workList {
        padding: 0px 0px 0px 15px;
    }

    .workListTheme .workList li a {
        font-size: 14px;
    }

    .workListTheme .workList li {
        margin-bottom: 5px;
    }

    .workView .workCard .workBody {
        flex-flow: column;
        gap: 5px;
    }
}

/* Work List Section End */
/* Crafters Animation Section Start */
.craftImage {
    padding-top: 120px;
    position: relative;
}

.craftersAnimation {
    overflow: hidden;
    width: 100%;
    position: absolute;
    top: 150px;
}

.craftersAnimation .innerAnimation {
    overflow: hidden;

}

.innerAnimation .track {
    display: flex;
    gap: 30px;
    align-items: center;
    width: max-content;
    white-space: nowrap;
}

.craftersAnimation .innerAnimation .text {
    font-size: clamp(60px, 10vw, 190px);
    line-height: 1;
    color: #2D2D2D;
    font-weight: 700;
    position: relative;
    display: flex;
    align-items: center;
    gap: 25px;
}

.craftersAnimation .innerAnimation .text::before {
    content: '';
    background-image: url("../images/shap-img.svg");
    background-repeat: no-repeat;
    width: clamp(16px, 2vw, 35px);
    height: clamp(16px, 2vw, 35px);
    opacity: 0.8;
}

.craftImage .imageStack {
    position: relative;
    width: min(90vw, 680px);
    aspect-ratio: 680 / 440;
    cursor: pointer;
    margin: 0 auto 80px;
}

.craftImage .imageStack img {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    border-radius: clamp(10px, 2vw, 16px);
    border: clamp(3px, 0.6vw, 6px) solid var(--whiteColor);
    transform-origin: center;
    will-change: transform;
}

.craftImage .infoText {
    font-weight: 200;
    font-size: 20px;
    line-height: 28px;
    color: var(--whiteColor);
    margin-bottom: 30px;
}

.craftImage .infoText strong {
    font-weight: 700;
}

@media screen and (min-width: 1401px) and (max-width: 1800px) {
    .craftImage .imageStack {
        width: min(90vw, 500px);
    }

    .craftImage {
        padding-top: 80px;
    }

    .craftersAnimation {
        top: 100px;
    }
}

@media screen and (min-width: 1201px) and (max-width: 1400px) {
    .craftImage .imageStack {
        width: min(90vw, 450px);
    }

    .craftImage {
        padding-top: 80px;
    }

    .craftersAnimation {
        top: 80px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
    .craftImage .imageStack {
        width: min(90vw, 400px);
    }

    .craftImage {
        padding-top: 30px;
    }

    .craftersAnimation {
        top: 100px;
    }

    .craftImage .infoText {
        font-size: 16px;
        line-height: 26px;
    }
}

@media screen and (max-width: 767px) {
    .craftImage .imageStack {
        width: min(90vw, 380px);
    }

    .craftImage {
        padding-top: 30px;
    }

    .craftersAnimation {
        top: 60px;
    }

    .craftImage .infoText {
        font-size: 16px;
        line-height: 26px;
    }
}

@media screen and (max-width: 450px) {
    .craftImage .imageStack {
        width: min(75vw, 380px);
    }
}

/* Crafters Animation Section End */
/* Service Animation Section Start */
.serviceAnimation {
    padding-bottom: 150px;
}

.serviceAnimation .interText {
    font-size: clamp(42px, 7vw, 110px);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.hoverArea {
    cursor: pointer;
}

.serviceImageStack {
    display: flex;
    align-items: center;
    height: clamp(40px, 6vw, 80px);
    flex-shrink: 0;
}

.serviceImageStackInner {
    position: relative;
    width: 100%;
    height: 100%;
}

.serviceImageStack img {
    position: absolute;
    inset: 0;
    margin: auto;
    width: clamp(40px, 6vw, 80px);
    height: clamp(40px, 6vw, 80px);
    object-fit: cover;
    border-radius: clamp(8px, 2vw, 16px);
    border: clamp(2px, 0.3vw, 3px) solid #fff;
    transform-origin: center;
}

.workBtnWrap {
    width: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(12px);
    white-space: nowrap;
}

.workBtn {
    display: inline-flex;
    width: auto;
    letter-spacing: normal;
    pointer-events: auto;
}

.theme .serviceAnimation .btn-inner {
    padding: clamp(10px, 1.8vw, 14px) clamp(20px, 3vw, 30px);
    font-size: clamp(14px, 1.5vw, 18px);
}

.theme .serviceAnimation .btn-primary .btn-inner span {
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.3) 8.85%,
            #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media screen and (min-width: 1025px) and (max-width: 1500px) {
    .serviceAnimation {
        padding-bottom: 100px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .serviceAnimation {
        padding-bottom: 80px;
    }
}

@media screen and (max-width: 767px) {
    .serviceAnimation {
        padding-bottom: 50px;
    }
}

@media screen and (max-width: 480px) {
    .serviceAnimation .interText {
        font-size: 36px;
        line-height: 48px;
        gap: 10px;
    }
}

@media screen and (max-width: 400px) {
    .serviceAnimation .interText {
        font-size: 26px;
        line-height: 45px;
        gap: 5px;
    }
}

/* Service Animation Section End */
/* Service Brand Section Start  */
.serviceBrand .brandList {
    display: inline-block;
    width: 100%;
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.serviceBrand .brandList li {
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
}

.brandList li:last-child {
    margin-bottom: 0px;
}

.brandList li .innerList {
    display: flex;
    gap: 15px;
    width: 100%;
    text-decoration: inherit;
    padding-bottom: 25px;
    border-bottom: solid 1px #374151;
}

.brandList li .innerList .number {
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    color: #374151;
    transition: 0.5s;
}

@media screen and (min-width: 1800px) {
    .brandList li .innerList .number {
        margin-top: 5px;
    }
}

.brandList li .innerList .smallText {
    font-size: 34px;
    font-weight: 600;
    line-height: 48px;
    color: #374151;
    transition: 0.5s;
}

.brandList li .innerList:hover,
.brandList li .innerList.active {
    border-color: var(--primaryColor);
}

.brandList li .innerList.active .number {
    color: var(--primaryColor);
}

.brandList li .innerList:hover .number,
.brandList li .innerList:hover .smallText {
    color: var(--whiteColor);
}

.brandList li .innerList:hover .smallText,
.brandList li .innerList.active .smallText {
    font-size: 40px;
}

.brandList li .innerList.active .smallText {
    background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.3) 100%, rgba(255, 255, 255, 1) 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;

}

.brandService {
    position: relative;
}

.brandService .serviceCard {
    display: inline-block;
    width: 100%;
    background-color: #222222;
    border-radius: 15px;
    padding: 10px;
    overflow: hidden;
    opacity: 0;
    position: absolute;
    inset: 0;
    width: 460px;
    height: 360px;
    top: 50px;
    left: 0;
    right: 0;
    margin: 0 auto;
    box-shadow: 1px 1px 1px 0px rgba(255, 255, 255, 0.698) inset;
}

.brandService .serviceCard .serviceTitle {
    font-weight: 700;
    font-style: Bold;
    font-size: 18px;
    line-height: 100%;
    color: var(--whiteColor);
    padding: 10px 10px 15px;
}

.brandService .serviceCard .serviceBody {
    border-radius: 15px;
    background-color: #000000;
    overflow: hidden;
    width: 100%;
    height: calc(100% - 45px);
}

.brandService .serviceCard .serviceBody img {
    width: 100%;
}

.innerList.active {
    pointer-events: none;
}

.padder-150 {
    padding: 130px 0px;
}

@media screen and (min-width: 1401px) and (max-width: 1800px) {
    .brandList li .innerList .smallText {
        font-size: 28px;
        line-height: 32px;
    }

    .brandList li .innerList:hover .smallText,
    .brandList li .innerList.active .smallText {
        font-size: 34px;
    }

    .brandService .serviceCard {
        top: 30px;
        width: 400px;
        height: 300px;
    }
}

@media screen and (min-width: 1201px) and (max-width: 1400px) {

    .padder-150 {
        padding: 100px 0px;
    }

    .brandList li .innerList .smallText {
        font-size: 24px;
        line-height: 26px;
    }

    .brandList li .innerList:hover .smallText,
    .brandList li .innerList.active .smallText {
        font-size: 28px;
    }

    .brandService .serviceCard {
        top: 0;
        width: 400px;
        height: 300px;
    }
}

@media screen and (min-width: 1025px) and (max-width: 1200px) {

    .padder-150 {
        padding: 80px 0px;
    }

    .brandList li .innerList .smallText {
        font-size: 24px;
        line-height: 26px;
    }

    .brandList li .innerList:hover .smallText,
    .brandList li .innerList.active .smallText {
        font-size: 28px;
    }

    .brandService .serviceCard {
        top: 0;
        width: 400px;
        height: 300px;
    }
}

@media screen and (min-width: 767px) and (max-width:1024px) {

    .padder-150 {
        padding: 80px 0px;
    }

    .brandList li .innerList .smallText {
        font-size: 20px;
        line-height: 26px;
    }

    .brandList li .innerList:hover .smallText,
    .brandList li .innerList.active .smallText {
        font-size: 24px;
    }

    .brandList li .innerList {
        padding-bottom: 20px;
    }

    .brandService .serviceCard {
        width: 90%;
        height: 300px;
    }
}

@media screen and (max-width: 767px) {

    .padder-150 {
        padding: 60px 0px;
    }

    .brandList li .innerList .smallText {
        font-size: 20px;
        line-height: 26px;
    }

    .brandList li .innerList:hover .smallText,
    .brandList li .innerList.active .smallText {
        font-size: 24px;
    }

    .brandList li .innerList {
        padding-bottom: 20px;
        gap: 10px;
    }

    .brandService {
        height: 400px;
        margin-top: 50px;
        width: 100%;
        display: inline-block;
    }

    .brandService .serviceCard {
        width: 80%;
        height: 290px;
        margin-right: auto;
        margin-left: 10px;
        top: 0px;
    }

    .brandList li .innerList .number {
        font-size: 14px;
        line-height: 18px;
        margin-top: 0px;
    }

    .brandService .serviceCard .serviceTitle {
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
    .brandService {
        height: 380px;
    }

    .brandService .serviceCard {
        height: 240px;
    }

}

/* Service Brand Section End  */
/* We operate across various industries Section Start  */
.industriesTheme .mainTitle .mainHeading {
    background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.3) 100%, rgba(255, 255, 255, 0.1) 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
}

.industriesTheme .mainTitle .small-info {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #E5E7EB;
    margin: 0px;
}

.industriesTheme .industriesCard {
    border-radius: 16px;
    border-width: 1px;
    text-align: center;
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.2) 100%);
    padding: 1px;

}

.industriesTheme .industriesCard .industriesInner {
    padding: 22px 30px;
    background: #1A1A1A;
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #FFFFFF;
    border-radius: 16px;
}

.industriesSwiper .swiper-slide {
    width: auto;
    white-space: nowrap;
}

@media screen and (min-width: 768px) and (max-width: 1600px) {
    .industriesTheme .industriesCard .industriesInner {
        font-size: 18px;
        padding: 20px 30px;
        border-radius: 12px;
    }
}

@media screen and (max-width: 1024px) {
    .industriesTheme .industriesCard .industriesInner {
        font-size: 16px;
        padding: 18px 25px;
        border-radius: 12px;
    }
}

/* We operate across various industries Section End  */
/* Why client choose us Section Start */
.whyChooseTheme .mainTitle {
    position: sticky;
    top: 100px;
}

.whyChooseTheme .whyCard {
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    position: relative;
}

.cardOrange {
    background: linear-gradient(180deg, #F26722 0%, #F26722 100%);
    box-shadow:
        0 3.71px 4.85px rgba(255, 88, 0, 0.15),
        0 10.27px 13.4px rgba(255, 88, 0, 0.22),
        0 24.72px 32.26px rgba(255, 88, 0, 0.19),
        0 42px 107px rgba(255, 88, 0, 0.34),
        inset 0 1px 4px 2px #FFEDDB,
        inset 0 1px 18px 2px #FFEDDB;
}

.cardOrange::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-image: url('../images/orange-shap.png');
    background-repeat: no-repeat;
    background-size: cover;
}

.cardOrange .smallInfo {
    font-size: 36px;
    font-weight: 400;
    line-height: 150%;
    color: #fff;
    margin: 0px;
}

.cardGreen {
    background: #14532D;
    border: 1px solid #22965A;
    box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    position: relative;
}

.whyCard .digiHeader {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    margin-bottom: 25px;
}

.whyCard .digiHeader .smallTitle {
    font-size: 26px;
    line-height: 30px;
    color: var(--whiteColor);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.cardGreen .count,
.cardDark .count {
    font-weight: 700;
    font-size: 100px;
    line-height: 100%;
    letter-spacing: -2px;
    vertical-align: middle;
    color: var(--whiteColor);

}

.cardGreen .smallInfo,
.cardDark .smallInfo {
    font-weight: 500;
    font-size: 20px;
    line-height: 140%;
    letter-spacing: 0%;
    color: #FFFFFF;
    margin: 0px;
    max-width: 70%;
}

.cardGreen .progressWrap {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 9px;
    border-radius: 100px;
}

.cardGreen .progressBar {
    width: 0;
    height: 100%;
    background-color: #22C55E;
    border-radius: inherit;
    position: relative;
}

.cardGreen .progressWrap .progressBar .number {
    position: absolute;
    bottom: 20px;
    right: 5px;
    padding: 10px;
    font-weight: 700;
    font-size: 18px;
    line-height: 100%;
    color: #000;
    background-color: var(--whiteColor);
    border-radius: 10px;
}

.cardDark {
    background: linear-gradient(120deg, #4B4B4B 0%, #030303 50%, #4B4B4B 100%);
    backdrop-filter: blur(5px);
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
    background-clip: border-box;
    border: solid 1px transparent;

}

.cardDark::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    margin: -2px;
    border-radius: inherit;
    background: linear-gradient(140deg, #141414 30%, #030303 50%, #141414 80%);
    transition: 0.8s;
}

.cardDark .userImage {
    display: inline-flex;
    width: auto;
    background-color: var(--whiteColor);
    border-radius: 50px;
    padding: 10px 15px;
}

.cardDark .userImage .img {
    display: inline-flex;
    width: 50px;
    height: 50px;
    overflow: hidden;
    border-radius: 50px;
    margin-left: -10px;
}

.cardDark .userImage .img:first-child {
    margin-left: 0px;
}

.cardDark .userImage .img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.whyChooseTheme .information {
    font-weight: 400;
    font-style: Italic;
    font-size: 24px;
    line-height: 150%;
    color: var(--whiteColor);
    border-left: 3px solid #374151;
    padding: 10px 25px;
    margin: 50px 0px 0px 0px;
}

@media screen and (min-width: 1201px) and (max-width: 1800px) {
    .cardOrange .smallInfo {
        font-size: 30px;
        line-height: 140%;
    }

    .whyCard .digiHeader .smallTitle {
        font-size: 18px;
        line-height: 24px;
    }

    .cardGreen .count,
    .cardDark .count {
        font-size: 80px;
    }

    .cardGreen .smallInfo,
    .cardDark .smallInfo {
        font-size: 18px;
    }

    .whyChooseTheme .information {
        font-size: 20px;
        padding: 5px 15px;
    }
}


@media screen and (min-width: 1025px) and (max-width: 1200px) {
    .whyChooseTheme .whyCard {
        padding: 40px 30px;
    }

    .cardOrange .smallInfo {
        font-size: 26px;
        line-height: 140%;
    }

    .whyCard .digiHeader {
        margin-bottom: 20px;
    }

    .whyCard .digiHeader .smallTitle {
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 5px;
    }

    .cardGreen .count,
    .cardDark .count {
        font-size: 75px;
    }

    .cardGreen .smallInfo,
    .cardDark .smallInfo {
        font-size: 16px;
    }

    .cardDark .userImage .img {
        width: 40px;
        height: 40px;
    }

    .whyChooseTheme .information {
        font-size: 16px;
        border-left-width: 2px;
        padding: 5px 15px;
        margin: 30px 0px 0px 0px;
    }
}

@media screen and (min-width: 767px) and (max-width:1024px) {
    .whyChooseTheme .whyCard {
        padding: 30px 25px;
    }

    .cardOrange .smallInfo {
        font-size: 24px;
        line-height: 140%;
    }

    .cardGreen .count,
    .cardDark .count {
        font-size: 65px;
    }

    .whyCard .digiHeader .smallTitle {
        font-size: 18px;
        line-height: 24px;
    }

    .cardGreen .smallInfo,
    .cardDark .smallInfo {
        font-size: 16px;
    }

    .cardDark .userImage .img {
        width: 40px;
        height: 40px;
    }

    .whyChooseTheme .information {
        font-size: 16px;
        border-left-width: 2px;
        padding: 5px 15px;
        margin: 30px 0px 0px 0px;
    }
}

@media screen and (max-width: 767px) {

    .whyChooseTheme .whyCard {
        padding: 30px 20px;
    }

    .cardOrange .smallInfo {
        font-size: 20px;
        line-height: 120%;
    }

    .whyCard .digiHeader {
        margin-bottom: 20px;
    }

    .whyCard .digiHeader .smallTitle {
        font-size: 14px;
        line-height: 18px;
        margin-bottom: 0px;
    }

    .cardGreen .count,
    .cardDark .count {
        font-size: 50px;
    }

    .cardGreen .smallInfo,
    .cardDark .smallInfo {
        font-size: 16px;
        max-width: 100%;
    }

    .cardDark .userImage {
        padding: 10px;
    }

    .cardDark .userImage .img {
        width: 40px;
        height: 40px;
    }

    .cardGreen .progressWrap .progressBar .number {
        padding: 8px;
        font-size: 16px;
    }

    .whyChooseTheme .information {
        font-size: 16px;
        border-left-width: 2px;
        padding: 5px 15px;
        margin: 30px 0px 0px 0px;
    }
}

@media screen and (max-width: 400px) {

    .cardGreen .count,
    .cardDark .count {
        font-size: 46px;
    }

    .whyCard .digiHeader {
        gap: 5px;
    }

    .whyCard .digiHeader .smallTitle {
        font-size: 12px;
        line-height: 16px;
        margin-bottom: 0px;
    }

    .cardDark .userImage {
        padding: 6px;
    }

    .cardDark .userImage .img {
        width: 35px;
        height: 35px;
    }

    .cardGreen .smallInfo,
    .cardDark .smallInfo {
        font-size: 14px;
    }
}

/* Why client choose us Section End */
/* About Us Section Start */
/* ===============================
   SECTION SPACING
================================ */
.serviceBanner .themePartners {
    padding-top: clamp(60px, 12vw, 150px);
}

/* ===============================
   TITLE
================================ */
.craftedClarity .mainTitle .mainHeading {
    margin-bottom: clamp(16px, 3vw, 25px);
}

.craftedClarity .mainTitle .smallInfo {
    font-size: clamp(14px, 2.5vw, 16px);
    font-weight: 400;
    line-height: 1.4;
    color: #E5E7EB;
}

/* ===============================
   DETAILS CARD
================================ */
.detailsCard {
    margin-bottom: clamp(30px, 8vw, 80px);
}

/* LABEL */
.detailsCard .label {
    font-weight: 400;
    font-size: clamp(14px, 2.5vw, 16px);
    line-height: 1;
    letter-spacing: 1.06px;
    text-transform: uppercase;
    color: #F1EEE6;
}

/* BIG NUMBER */
.detailsCard .percount {
    font-weight: 700;
    font-size: clamp(40px, 8vw, 90px);
    line-height: 1;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: #F1EEE6;
    margin: clamp(12px, 3vw, 20px) 0;
}

/* DESCRIPTION */
.detailsCard .small-Info {
    font-weight: 300;
    font-size: clamp(14px, 2vw, 16px);
    line-height: 120%;
    color: #DADADA;
    max-width: 90%;
}

.detailsCard {
    transition: transform 0.3s ease;
}

.detailsCard:hover {
    transform: translateY(-4px);
}

/* ===============================
   MOBILE TWEAKS
================================ */
@media screen and(max-width: 767px) {

    .detailsCard {
        margin-bottom: 24px;
    }

    .craftedClarity .mainTitle {
        margin-bottom: 32px;
    }

    .detailsCard .percount {
        letter-spacing: -0.5px;
    }
}

/* About Us Section End */
/* Animation Information Section Start  */
.typing-section {
    display: flex;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

.typing-section .info {
    font-weight: 400;
    font-style: italic;
    font-size: clamp(18px, 2.4vw, 2vw);
    line-height: 1.35;
    letter-spacing: -0.03em;
    color: var(--primaryColor);
}

.typing-section .typing-text {
    font-weight: 400;
    font-size: clamp(28px, 5vw, 2.8vw);
    line-height: 1.18;
    letter-spacing: -0.03em;
    margin-top: clamp(32px, 6vh, 90px);
}

.typing .word {
    display: inline-block;
    white-space: nowrap;
}

.typing .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(18px);
    will-change: transform, opacity;
}

/* =========================
   RESPONSIVE TWEAKS
========================= */
@media (max-width: 768px) {
    .typing-section .typing-text {
        margin-top: 35px;
    }
}

/* Animation Information Section End */
/* People Section Start */
.peopleTheme .peopleCard {
    margin-bottom: 20px;
}

.peopleCard .peopleimg {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    /* prevents image jump */
    max-height: 500px;
    overflow: hidden;
    border-radius: 10px;
}

.peopleCard .peopleimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.peopleCard .peopleBody {
    padding: 12px 0;
}

.peopleCard .peopleBody .peopleName {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 400;
    color: var(--whiteColor);
    margin-bottom: 0;
}

.peopleCard .peopleBody .peopleInfo {
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #9CA3AF;
}

@media (max-width: 1199px) {
    .peopleCard .peopleimg {
        max-height: 420px;
    }

    .peopleCard .peopleBody .peopleName {
        font-size: 17px;
    }

    .peopleCard .peopleBody .peopleInfo {
        font-size: 15px;
    }
}

@media (max-width: 991px) {
    .peopleCard .peopleimg {
        max-height: 360px;
    }

    .peopleCard .peopleBody {
        padding: 10px 0;
    }

    .peopleCard .peopleBody .peopleName {
        font-size: 16px;
    }

    .peopleCard .peopleBody .peopleInfo {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .peopleTheme .peopleCard {
        margin-bottom: 10px;
    }

    .peopleCard .peopleimg {
        aspect-ratio: 1 / 1;
        /* square cards on mobile */
        max-height: none;
        border-radius: 6px;
    }

    .peopleCard .peopleBody {
        padding: 8px 0;
    }

    .peopleCard .peopleBody .peopleName {
        font-size: 15px;
    }

    .peopleCard .peopleBody .peopleInfo {
        font-size: 13px;
        letter-spacing: 0.3px;
    }
}

/* People Section End */
/* Project Section Start */
@media (min-width: 576px) {

    .projectTheme .container-lg,
    .projectTheme .container-md {
        max-width: 540px;
    }
}

@media (min-width: 768px) {

    .projectTheme .container-lg,
    .projectTheme .container-md {
        max-width: 720px;
    }

}

@media (min-width: 992px) {
    .projectTheme .container-lg {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .projectTheme .container-lg {
        max-width: 1140px;
    }

    .projectTheme .container-md {
        max-width: 950px;
    }
}

.project-top {
    padding-top: 200px;
}

/* ===============================
   PROJECT TOP
================================ */

.project-top .title {
    font-size: clamp(28px, 5vw, 64px);
    line-height: 1.1;
    font-weight: 700;
    color: var(--whiteColor);
    margin-bottom: clamp(20px, 4vw, 40px);
}

.project-top .list {
    margin-bottom: clamp(16px, 2vw, 30px);
}

.project-top .list:last-child {
    margin-bottom: 0;
}

.project-top .list .label {
    display: inline-block;
    width: 100%;
    font-size: clamp(12px, 1.2vw, 18px);
    font-weight: 500;
    text-transform: uppercase;
    color: #6B7280;
    margin-bottom: 4px;
}

.project-top .list .smallInfo {
    font-size: clamp(14px, 1.3vw, 18px);
    line-height: 1.6;
    font-weight: 400;
    color: var(--whiteColor);
    margin: 0;
}

.project-top .list a.smallInfo {
    text-decoration: inherit;
    transition: color 0.3s ease;
}

.project-top .list a.smallInfo:hover,
.project-top .list a.smallInfo:focus {
    color: var(--primaryColor);
}

/* ===============================
   IMAGE / BANNER
================================ */

.project-full-banner {
    width: 100%;
}

.projectTheme img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* ===============================
   PROJECT DETAILS
================================ */

.project-details .title {
    font-size: clamp(22px, 3.5vw, 42px);
    line-height: 1.15;
    font-weight: 600;
    color: var(--whiteColor);
    margin-bottom: clamp(16px, 3vw, 25px);
}

.project-details .smallInfo {
    font-size: clamp(14px, 1.3vw, 18px);
    line-height: 1.6;
    font-weight: 300;
    color: var(--whiteColor);
    margin-bottom: clamp(14px, 2vw, 25px);
}

.project-details .smallInfo:last-child {
    margin-bottom: 0;
}

/* ===============================
   COMPANY INFO
================================ */

.project-details .company-info {
    display: flex;
    gap: clamp(10px, 2vw, 15px);
    align-items: center;
    flex-wrap: wrap;
}

.company-info .company-logo {
    width: clamp(42px, 5vw, 60px);
    height: clamp(42px, 5vw, 60px);
    border-radius: 100px;
    overflow: hidden;
    flex-shrink: 0;
}

.company-info .company-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.company-info .company-name {
    font-size: clamp(16px, 1.5vw, 20px);
    font-weight: 700;
    color: var(--whiteColor);
}

@media screen and (max-width: 1300px) {
    .project-top {
        padding-top: 180px;
    }
}

@media screen and (max-width: 1024px) {
    .project-top {
        padding-top: 150px;
    }
}

@media screen and (max-width: 767px) {
    .project-top {
        padding-top: 120px;
    }
}

/* Project Section End */