* {
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: Arial, sans-serif
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 110px;
    padding: 0 40px;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .05);
    z-index: 9999;
    transition: .35s
}

.header-inner {
    width: min(96%, 1600px);
    height: 100%;
    margin: auto;
    display: grid;
    grid-template-columns: 120px 1fr 150px;
    align-items: start
}

.header-bg {
    position: absolute;
    inset: 0;
    background: #fff;
    z-index: -1
}

.header-bg {
    position: absolute;
    inset: 0;
    background-image: url("../images/background.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1
}

.tag-logo {
    justify-self: start;
    margin-left: 140px;
    margin-top: 0;
    z-index: 1000
}

.tag-logo img {
    height: 125px;
    width: auto;
    display: block
}

.navbar {
    justify-self: center;
    align-self: start;
    margin-top: 18px;
    background: linear-gradient(0deg, #a94d00 0, #d86c00 25%, #f28c18 60%, #fc6 100%);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    padding: 0 40px;
    width: auto;
    height: 62px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 11px 30px rgba(0, 0, 0, .18)
}

.nav-menu {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 10px
}

.nav-link {
    font-size: 16px;
    font-weight: 700;
    color: #2d1b17;
    padding: 6px 20px;
    border-radius: 10px;
    text-decoration: none;
    transition: .3s
}

.nav-link.active,
.nav-link:hover {
    background: 0 0;
    color: #5b3125;
    border: 2px solid #5b3125
}

.main-logo {
    justify-self: end;
    margin-right: 100px;
    margin-top: 20px
}

.main-logo img {
    width: 150px;
    height: auto
}

.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: #faf9f7;
    isolation: isolate;
    padding-top: 130px;
    padding-bottom: 70px
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0
}

.hero-container {
    position: relative;
    z-index: 10;
    width: min(1400px, 92%);
    margin: auto;
    min-height: 100vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 50px
}

.hero-left {
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin-top: -380px;
    margin-left: 70px
}

.hero-tag {
    color: #f28c18;
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 16px;
    display: inline-block;
    margin: 0 0 12px
}

.hero h1 {
    font-size: 55px;
    color: #4e2a21;
    margin: 0;
    line-height: 1.05;
    font-weight: 150
}

.hero h1 span {
    color: #f28c18
}

.hero p {
    margin-bottom: 50px;
    font-size: 16px;
    color: #0d0d0d;
    line-height: 1.8;
    max-width: 620px
}

.hero-btns {
    display: flex;
    gap: 18px;
    margin-top: 5px
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 190px;
    height: 54px;
    padding: 0 34px;
    background: 0 0;
    color: #5b3125;
    border: 2px solid #f28c18;
    border-radius: 10px;
    text-decoration: none;
    font-family: Poppins, sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color .35s ease, color .35s ease, transform .35s ease, box-shadow .35s ease;
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0)
}

.btn-secondary:hover {
    background: #f28c18;
    color: #fff;
    transform: translate3d(0, -3px, 0);
    box-shadow: 0 12px 25px rgba(242, 140, 24, .25)
}

.hero-right {
    position: absolute;
    width: 10%;
    height: 100px;
    display: grid
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #faf9f7;
    z-index: 0;
    transform: translateZ(0);
    filter: brightness(1.15) contrast(1.05) saturate(1.08)
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(230, 230, 228, .532) 100%, rgba(251, 251, 251, .49) 100%, rgba(172, 231, 21, .203) 100%)
}

.service-cards {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    gap: 18px;
    margin-top: 55px;
    flex-wrap: nowrap;
    position: absolute;
    bottom: 160px;
    left: 50;
    margin-top: 60px
}

.service-card {
    width: 220px;
    min-height: 130px;
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
    transition: .35s;
    flex-shrink: 0;
    border: 1px solid rgba(0, 0, 0, .656)
}

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: #f28c18;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0
}

.service-icon.dark {
    background: #f28c18
}

.service-icon svg {
    width: 24px;
    height: 24px;
    color: #fff
}

.service-content h4 {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    color: #3e241d
}

.service-content p {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.6
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .12)
}

.mouse-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(242, 140, 24, .22), transparent 70%);
    filter: blur(45px);
    pointer-events: none;
    z-index: 2;
    transition: left .15s linear, top .15s linear
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: #000;
    z-index: 30
}

.scroll-indicator span {
    width: 2px;
    height: 40px;
    background: #f28c18;
    animation: scrollLine 1.5s infinite
}

@keyframes scrollLine {
    0% {
        height: 10px;
        opacity: 0
    }

    50% {
        height: 40px;
        opacity: 1
    }

    100% {
        height: 10px;
        opacity: 0
    }
}

.hero-divider {
    width: 120px;
    height: 2px;
    margin: 45px 0 35px;
    background: linear-gradient(to right, #f28c18, #5b3125);
    border-radius: 10px
}

.hero-stats {
    position: relative;
    margin-top: -5px;
    margin-bottom: 13px;
    z-index: 99
}

.stats-bar {
    max-width: 1300px;
    margin: auto;
    background: linear-gradient(135deg, #3e241d, #642319);
    border-radius: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 12px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .18);
    overflow: hidden
}

.stat-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 15px 20px;
    position: relative;
    transition: .35s;
    min-height: 90px
}

.stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, .12)
}

.stat-item:hover {
    transform: translateY(-5px)
}

.stat-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(242, 140, 24, .08);
    border: 1px solid rgba(242, 140, 24, .35);
    flex-shrink: 0;
    transition: .35s
}

.stat-icon svg {
    width: 28px;
    height: 28px;
    stroke: #F28C18
}

.stat-item:hover .stat-icon {
    background: #f28c18;
    box-shadow: 0 0 18px rgba(242, 140, 24, .45)
}

.stat-item:hover svg {
    stroke: #fff
}

.stat-content h3 {
    margin: 0;
    font-size: 42px;
    font-weight: 800;
    font-family: Outfit, sans-serif;
    color: #fff;
    line-height: 1;
    letter-spacing: -1px
}

.stat-content p {
    margin-top: 6px;
    color: #ddd;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 0
}

@media(max-width:991px) {
    .hero-stats {
        margin-top: -30px
    }

    .stats-bar {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
        padding: 25px;
        max-width: 700px;
        align-items: center
    }

    .stat-item::after {
        display: none
    }

    .stat-content h3 {
        font-size: 36px
    }

    .stat-icon {
        width: 52px;
        height: 52px
    }

    .stat-icon svg {
        width: 24px;
        height: 24px
    }
}

.services-marquee {
    position: relative;
    padding: 90px 0;
    background: #fff;
    overflow: hidden
}

.section-heading {
    text-align: center;
    margin-bottom: 50px
}

.section-heading span {
    color: #f28c18;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase
}

.section-heading h2 {
    margin-top: 12px;
    font-size: 48px;
    color: #4b2b24;
    font-weight: 800
}

.marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    max-width: 1400px;
    margin: 0 auto
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 25px;
    width: max-content;
    animation: marqueeScroll 28s linear infinite;
    padding: 0;
    will-change: transform
}

.marquee:hover .marquee-track {
    animation-play-state: paused
}

@keyframes marqueeScroll {
    from {
        transform: translate3d(0, 0, 0)
    }

    to {
        transform: translate3d(calc(-50% - 12px), 0, 0)
    }
}

.service-pill {
    min-width: 240px;
    height: 70px;
    padding: 0 22px;
    display: flex;
    align-items: center;
    gap: 18px;
    text-decoration: none;
    color: #4b2b24;
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(242, 140, 24, .474);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
    transition: .4s;
    flex-shrink: 0
}

.service-pill i {
    width: 55px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, #f28c18, #ffb347);
    color: #fff
}

.service-pill span {
    font-size: 20px;
    font-weight: 700
}

.service-pill:hover {
    transform: translateY(-8px);
    background: #f28c18;
    color: #fff;
    box-shadow: 0 18px 40px rgba(242, 140, 24, .35)
}

.service-pill:hover i {
    background: #fff;
    color: #f28c18;
    transform: rotate(-8deg)
}

.service-pill {
    position: relative;
    overflow: hidden
}

.service-pill::before {
    content: "";
    position: absolute;
    left: -120%;
    top: 0;
    width: 80px;
    height: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, .45), rgba(255, 255, 255, 0));
    transform: skewX(-25deg);
    animation: shine 5s infinite
}

@keyframes shine {
    0% {
        left: -120%
    }

    40% {
        left: 150%
    }

    100% {
        left: 150%
    }
}

.services-marquee::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(242, 140, 24, .12), transparent 70%);
    top: -180px;
    right: -120px;
    filter: blur(70px)
}

.about-section {
    position: relative;
    padding-top: 50px;
    background: linear-gradient(180deg, #fff, #faf9f7);
    overflow: hidden
}

.section-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 34px;
    background: linear-gradient(135deg, #f28c18, #ff9f1c);
    color: #fff;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(242, 140, 24, .3);
    transition: .35s
}

.section-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .45), transparent);
    transform: skewX(-25deg);
    transition: left .7s ease;
    pointer-events: none
}

.section-tag:hover::before {
    left: 140%
}

.section-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(242, 140, 24, .4)
}

.about-section::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 123, 255, .05), transparent 70%);
    bottom: -180px;
    left: -120px;
    border-radius: 50%;
    pointer-events: none
}

.about-container {
    max-width: 1300px;
    margin: auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
    position: relative;
    z-index: 2
}

.about-left h2 {
    font-size: 40px;
    line-height: 1.15;
    font-weight: 800;
    color: #360f08;
    margin: 20px 0
}

.about-left h2 span {
    color: #ee892b;
    display: block
}

.about-left p {
    font-size: 18px;
    line-height: 1.9;
    color: #5d6472;
    max-width: 620px;
    margin-bottom: 45px
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 45px
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(225, 144, 39, .884);
    box-shadow: 0 12px 35px rgba(0, 0, 0, .05);
    transition: .35s
}

.feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 123, 255, .12);
    background-color: #ee892b
}

.feature i {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff8ea;
    color: #000;
    border-radius: 14px
}

.feature svg {
    width: 24px;
    height: 24px;
    stroke: #000;
    stroke-width: 2;
    transition: all .35s ease
}

.feature:hover svg {
    stroke: #fff !important
}

.feature span {
    color: #4b2b24;
    font-weight: 600;
    transition: all .35s ease
}

.feature:hover span {
    color: #fff !important
}

.about-image {
    position: relative;
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .08)
}

.about-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: contain;
    transition: .4s ease
}

.about-image::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 30px;
    background: linear-gradient(45deg, #e89e28a2, transparent, #462118b4);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: borderMove 6s linear infinite
}

@keyframes borderMove {
    100% {
        transform: rotate(360deg)
    }
}

.about-right {
    position: relative
}

.about-values {
    display: grid;
    grid-template-columns: repeat(2, minmax(320px, 420px));
    justify-content: center;
    gap: 30px;
    margin: 45px 0
}

.value-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 28px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(0, 123, 255, .08);
    box-shadow: 0 12px 35px rgba(0, 0, 0, .05);
    transition: .35s ease;
    position: relative;
    overflow: hidden;
    min-height: 180px;
    padding: 30px
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #f28c18, #ffb347);
    transition: .35s
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(242, 140, 24, .18)
}

.value-card:hover::before {
    width: 8px
}

.value-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, #fff3e4, #ffe7c6);
    color: #f28c18
}

.value-icon svg {
    width: 28px;
    height: 28px
}

.value-content h4 {
    margin: 0 0 10px;
    font-size: 22px;
    font-weight: 700;
    color: #081c36
}

.value-content p {
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
    color: #5f6675
}

@media (max-width:992px) {
    .about-values {
        grid-template-columns: 1fr
    }
}

.floating-buttons {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    z-index: 9999
}

.fab {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    overflow: hidden;
    transition: all .35s ease;
    text-decoration: none;
    position: relative;
    white-space: nowrap;
    padding: 0;
    color: #fff
}

.fab i {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center
}

.fab svg {
    width: 28px;
    height: 28px
}

.whatsapp {
    background: #25d366;
    animation: whatsPulse 2s infinite
}

.phone {
    background: #f28c18
}

.top {
    background: #814b01;
    opacity: 0;
    visibility: hidden;
    border: none;
    transform: translateY(20px);
    transition: all .35s ease
}

.top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.top.show:hover {
    transform: translateY(-6px) scale(1.12);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .25)
}

.fab:hover {
    transform: translateY(-6px) scale(1.12);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .25)
}

@keyframes whatsPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, .5)
    }

    70% {
        box-shadow: 0 0 0 18px rgba(37, 211, 101, .092)
    }
}

.whatsapp img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    flex-shrink: 0;
    display: block
}

::-webkit-scrollbar {
    width: 18px
}

::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 30px
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #f28c18, #ffb347, #d66b00);
    border-radius: 30px;
    border: 3px solid #f5f5f5;
    box-shadow: 0 0 12px rgba(242, 140, 24, .45), inset 0 0 8px rgba(255, 255, 255, .35);
    transition: all .3s ease
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ffa726, #ff8f00);
    box-shadow: 0 0 22px rgba(242, 140, 24, .8), inset 0 0 10px rgba(255, 255, 255, .45)
}

html {
    scrollbar-width: thin;
    scrollbar-color: #F28C18 #f5f5f5
}

.why-vqube {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(180deg, #fff, #faf8f5);
    overflow: hidden
}

.why-vqube::before {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    top: -220px;
    right: -220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(242, 140, 24, .1), transparent 70%);
    filter: blur(70px)
}

.why-layout {
    width: 100%;
    display: grid;
    grid-template-columns: 58% 42%;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2
}

.why-left {
    max-width: 650px;
    order: 2;
    text-align: left;
    width: 100%
}

.why-left h2 {
    font-size: 40px;
    line-height: 1.15;
    color: #360f08;
    font-weight: 800;
    margin-bottom: 25px
}

.why-left h2 span {
    color: #f28c18
}

.why-left p {
    font-size: 18px;
    line-height: 1.9;
    color: #667085;
    margin-bottom: 35px
}

.why-list {
    list-style: none;
    padding: 0;
    margin: 0
}

.why-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    font-size: 17px;
    font-weight: 500;
    color: #2d3748
}

.why-list svg {
    width: 22px;
    height: 22px;
    color: #f28c18;
    flex-shrink: 0
}

.why-left .btn-primary {
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    gap: 12px
}

.why-left .btn-primary svg {
    width: 18px;
    height: 18px
}

.why-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    align-content: center;
    order: 1
}

.why-card:nth-child(2n) {
    margin-top: 45px
}

.why-card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 16px;
    min-height: auto;
    width: 250px;
    height: 160px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .08);
    border: 1px solid rgba(18, 12, 5, .756);
    transition: .35s ease;
    overflow: hidden
}

.why-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: #f28c18
}

.why-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 14px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, #fff3e4, #ffe0b8)
}

.why-icon svg {
    width: 22px;
    height: 22px;
    color: #f28c18
}

.why-card:hover .why-icon {
    transform: rotate(-10deg) scale(1.08)
}

.why-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin: 0 0 8px;
    text-align: center
}

.why-card p {
    font-size: 14px;
    line-height: 1.5;
    color: #6b7280;
    margin: 0;
    text-align: center
}

.why-card:hover::after {
    opacity: 1;
    transform: translateX(0)
}

.why-card:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: #f28c18;
    box-shadow: 0 25px 60px rgba(242, 140, 24, .22)
}

.why-card:hover .why-icon {
    transform: rotate(-12deg) scale(1.15)
}

.why-card {
    isolation: isolate
}

.why-card::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: .4s
}

.why-card:hover::after {
    opacity: 1
}

.why-container {
    max-width: 1300px;
    margin: auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 90% 10%;
    gap: 90px;
    align-items: center;
    position: relative;
    z-index: 2
}

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

.center-circle {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 200px;
    height: 200px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px;
    z-index: 10
}

.center-logo {
    width: 180px;
    max-width: 100%;
    height: auto;
    transition: .4s
}

.center-circle:hover .center-logo {
    transform: scale(1.08)
}

.center-circle::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    z-index: -1
}

.orbit {
    position: relative;
    width: 100%;
    height: 100%;
    margin: auto
}

.center-circle h2 {
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: 700
}

.industry-card {
    position: absolute;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(242, 140, 24, .814);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .08);
    cursor: pointer;
    left: 50%;
    top: 50%;
    margin-left: -55px;
    margin-top: -55px
}

.industry-card:hover {
    background: linear-gradient(135deg, #f28c18, #ffb347);
    box-shadow: 0 20px 45px rgba(100, 59, 11, .799)
}

.industry-card:hover span {
    color: #fff
}

.industry-card:hover svg {
    stroke: #fff
}

.industry-icon {
    width: 55px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff5e9;
    border-radius: 50%;
    margin-bottom: 12px;
    transition: .35s
}

.industry-card:hover {
    background: linear-gradient(135deg, #f28c18, #ffb347);
    border-color: #f28c18
}

.industry-card:hover span {
    color: #fff
}

.industry-card:hover svg {
    stroke: #fff
}

.industry-card:hover .industry-icon {
    background: rgba(255, 255, 255, .18)
}

.industry-icon svg {
    width: 28px;
    height: 28px;
    stroke: #F28C18
}

.industry-card span {
    font-size: 15px;
    font-weight: 600;
    color: #4b2b24
}

.card1 {
    transform: rotate(0) translateY(-260px) rotate(0)
}

.card2 {
    transform: rotate(40deg) translateY(-260px) rotate(-40deg)
}

.card3 {
    transform: rotate(80deg) translateY(-260px) rotate(-80deg)
}

.card4 {
    transform: rotate(120deg) translateY(-260px) rotate(-120deg)
}

.card5 {
    transform: rotate(160deg) translateY(-260px) rotate(-160deg)
}

.card6 {
    transform: rotate(200deg) translateY(-260px) rotate(-200deg)
}

.card7 {
    transform: rotate(240deg) translateY(-260px) rotate(-240deg)
}

.card8 {
    transform: rotate(280deg) translateY(-260px) rotate(-280deg)
}

.card9 {
    transform: rotate(320deg) translateY(-260px) rotate(-320deg)
}

.orbit::before {
    content: "";
    position: absolute;
    width: 530px;
    height: 530px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: repeating-conic-gradient(from 0deg, #f28c18 0deg 7deg, transparent 7deg 13deg, rgba(242, 140, 24, .4) 13deg 16deg, transparent 16deg 22deg);
    mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 2px));
    animation: ringRotate 18s linear infinite
}

@keyframes ringRotate {
    to {
        transform: translate(-50%, -50%) rotate(360deg)
    }
}

.industry-map {
    position: relative;
    width: 560px;
    height: 560px;
    margin: auto;
    flex-shrink: 0
}

.card1 {
    background: #eff6ff;
    border: 1px solid #2563eb
}

.card1 .industry-icon {
    background: #dbeafe
}

.card1 svg {
    stroke: #2563EB
}

.card2 {
    background: #f0fdf4;
    border: 1px solid #16a34a
}

.card2 .industry-icon {
    background: #dcfce7
}

.card2 svg {
    stroke: #16A34A
}

.card3 {
    background: #fff7ed;
    border: 1px solid #ea580c
}

.card3 .industry-icon {
    background: #ffedd5
}

.card3 svg {
    stroke: #EA580C
}

.card4 {
    background: #f5f3ff;
    border: 1px solid #7c3aed
}

.card4 .industry-icon {
    background: #ede9fe
}

.card4 svg {
    stroke: #7C3AED
}

.card5 {
    background: #fdf2f8;
    border: 1px solid #ec4899
}

.card5 .industry-icon {
    background: #fce7f3
}

.card5 svg {
    stroke: #EC4899
}

.card6 {
    background: #ecfeff;
    border: 1px solid #0891b2
}

.card6 .industry-icon {
    background: #cffafe
}

.card6 svg {
    stroke: #0891B2
}

.card7 {
    background: #fef2f2;
    border: 1px solid #dc2626
}

.card7 .industry-icon {
    background: #fee2e2
}

.card7 svg {
    stroke: #DC2626
}

.card8 {
    background: #fffbeb;
    border: 1px solid #f59e0b
}

.card8 .industry-icon {
    background: #fef3c7
}

.card8 svg {
    stroke: #F59E0B
}

.card9 {
    background: #fff8e7;
    border: 1px solid #f28c18
}

.card9 .industry-icon {
    background: #ffe8c2
}

.card9 svg {
    stroke: #F28C18
}

.industries-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(30px, 4vw, 80px);
    width: min(94%, 1400px);
    margin: 0 auto
}

.industries-content {
    flex: 0 0 45%;
    padding-left: 100px;
    padding-top: 80px
}

.industries-content h2 {
    margin: 20px 0
}

.industries-content p {
    margin-bottom: 35px;
    color: #666;
    line-height: 1.8
}

.industry-highlights {
    display: grid;
    grid-template-columns: repeat(2, minmax(270px, 1fr));
    gap: 30px 40px;
    margin-bottom: 35px
}

.highlight-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    padding: 12px 12px;
    border-radius: 18px;
    border: 1px solid rgba(242, 140, 24, .15);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .05);
    transition: .35s;
    width: 120%;
    min-height: 100px
}

.highlight-card:hover {
    transform: translateX(10px);
    background: linear-gradient(135deg, #f28c18, #ffb347);
    box-shadow: 0 15px 35px rgba(242, 140, 24, .3)
}

.highlight-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff6ec;
    flex-shrink: 0;
    transition: .35s
}

.highlight-icon svg {
    width: 28px;
    height: 28px;
    stroke: #F28C18
}

.highlight-card h4 {
    margin-bottom: 6px;
    color: #4b2b24;
    font-size: 18px;
    transition: .35s
}

.highlight-card p {
    margin: 0;
    font-size: 14px;
    color: #666;
    transition: .35s
}

.highlight-card:hover h4,
.highlight-card:hover p {
    color: #fff
}

.highlight-card:hover svg {
    stroke: #fff
}

.highlight-card:hover .highlight-icon {
    background: rgba(255, 255, 255, .18)
}

@media(max-width:1200px) {
    .industries-wrapper {
        flex-direction: column;
        text-align: center
    }

    .industries-content {
        max-width: 700px;
        padding: 0
    }

    .industry-highlights {
        grid-template-columns: 1fr
    }

    .industry-map {
        width: 500px;
        height: 500px
    }
}

.industries-content h2 {
    font-size: 40px;
    line-height: 1.15;
    font-weight: 800;
    color: #360f08;
    margin: 20px 0
}

.industries-content h2 span {
    color: #ee892b;
    display: block
}

.industries-content p {
    font-size: 18px;
    line-height: 1.9;
    color: #5d6472;
    max-width: 620px;
    margin-bottom: 45px
}

.industries-content p1 {
    font-size: 14px;
    line-height: 1.9;
    color: #5d6472;
    max-width: 620px;
    margin-bottom: 45px
}

.technologies {
    background: linear-gradient(180deg, #fff 0, #fff8f1 50%, #fff 100%);
    overflow: hidden;
    padding-top: 100px
}

.tech-slider {
    width: 100%;
    overflow-x: hidden;
    overflow-y: visible;
    position: relative;
    padding: 30px 0
}

.tech-track {
    display: flex;
    align-items: center;
    gap: 70px;
    width: max-content;
    height: 150px;
    animation: techScroll 35s linear infinite
}

.tech-slider:hover .tech-track {
    animation-play-state: paused
}

.tech-item {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: none
}

.tech-item i {
    font-size: 70px;
    filter: grayscale(100%);
    opacity: .75;
    transition: .4s
}

.tech-item:hover i {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.18);
    filter: drop-shadow(0 0 14px rgba(242, 140, 24, .45))
}

.tech-item {
    position: relative;
    flex: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer
}

.tech-name {
    position: absolute;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    background: #654321;
    color: #fff;
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease;
    z-index: 999
}

.tech-name::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #654321
}

.tech-item:hover .tech-name {
    opacity: 1;
    visibility: visible;
    bottom: 100px;
    transform: translateX(-50%) translateY(0)
}

.tech-item img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: .75;
    transition: .4s ease
}

.tech-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.15)
}

@keyframes techScroll {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

@media(max-width:991px) {
    .tech-item i {
        font-size: 56px
    }

    .tech-track {
        gap: 50px
    }
}

@media(max-width:576px) {
    .tech-item i {
        font-size: 42px
    }

    .tech-track {
        gap: 35px
    }
}

.process {
    background: #fff
}

.process .section-title {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px
}

.process-timeline {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 90px;
    width: max-content;
    margin: 0 auto
}

.timeline-line {
    position: absolute;
    top: 42px;
    left: 40px;
    right: 40px;
    height: 4px;
    background: #ffe3bf;
    border-radius: 10px;
    z-index: 0
}

.timeline-progress {
    position: absolute;
    top: 42px;
    left: 48px;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #f28c18, #ffb347);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(242, 140, 24, .5), 0 0 25px rgba(242, 140, 24, .4);
    transition: width .6s ease;
    z-index: 2
}

.process-step {
    width: 160px;
    text-align: center;
    position: relative;
    z-index: 5
}

.step-circle {
    width: 80px;
    height: 80px;
    margin: auto;
    border-radius: 50%;
    background: #fff;
    border: 2px solid rgba(242, 140, 24, .18);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: .35s;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .08)
}

.step-circle svg {
    width: 34px;
    height: 34px;
    stroke: #F28C18
}

.step-number {
    position: absolute;
    top: -8px;
    right: -6px;
    width: 26px;
    height: 26px;
    background: #f28c18;
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600
}

.process-step h4 {
    margin-top: 18px;
    color: #4b2b24;
    font-size: 18px
}

.process-step p {
    margin-top: 6px;
    color: #666;
    font-size: 14px
}

.process-step:hover .step-circle {
    background: #f28c18;
    transform: translateY(-8px) scale(1.08);
    box-shadow: 0 20px 40px rgba(242, 140, 24, .35)
}

.process-step:hover svg {
    stroke: #fff
}

.process-step:hover h4 {
    color: #f28c18
}

@media(max-width:992px) {
    .process-timeline {
        justify-content: center;
        gap: 40px
    }

    .timeline-line,
    .timeline-progress {
        display: none
    }

    .process-step {
        width: 45%
    }
}

@media(max-width:768px) {
    .process-step {
        width: 100%;
        margin-bottom: 30px
    }
}

.process-step.active .step-circle {
    background: #f28c18;
    border-color: #f28c18;
    transform: translateY(-8px) scale(1.08);
    animation: pulseStep .8s ease;
    box-shadow: 0 0 20px rgba(242, 140, 24, .5), 0 0 45px rgba(242, 140, 24, .35)
}

@keyframes pulseStep {
    0% {
        transform: scale(.9)
    }

    50% {
        transform: scale(1.15)
    }

    100% {
        transform: scale(1.08)
    }
}

.process-step.active svg {
    stroke: #fff
}

.process-step.active h4 {
    color: #f28c18
}

.process-step.active p1 {
    color: #ba6413
}

.timeline-progress {
    transition: width .6s ease
}

.process h2 {
    font-size: 40px;
    line-height: 1.15;
    font-weight: 800;
    color: #360f08;
    margin: 20px 0
}

.process h2 span {
    color: #ee892b;
    display: block
}

.process p {
    font-size: 18px;
    line-height: 1.9;
    color: #5d6472;
    max-width: 620px;
    margin-bottom: 45px;
    text-align: center
}

.process p1 {
    font-size: 14px;
    line-height: 1.9;
    color: #3f1f0f;
    max-width: 620px;
    margin-bottom: 45px
}

.process-container {
    margin-top: 100px;
    margin-bottom: 100px
}

.testimonials {
    background: #fff;
    overflow: hidden;
    padding-inline: clamp(20px, 5vw, 110px);
    padding-bottom: 10px
}

.rating-summary {
    text-align: center;
    margin: 25px 0 45px
}

.rating-summary .stars {
    color: #f28c18;
    font-size: 28px
}

.rating-summary h3 {
    color: #4b2b24;
    margin: 8px 0
}

.rating-summary p {
    color: #666
}

.testimonial-slider {
    width: 100%;
    overflow: hidden;
    padding: 25px 0 15px;
    position: relative
}

.testimonial-track {
    display: flex;
    align-items: stretch;
    gap: clamp(16px, 2vw, 25px);
    width: max-content;
    animation: testimonialMove 45s linear infinite;
    will-change: transform
}

.testimonial-card {
    width: clamp(280px, 20vw, 340px);
    flex-shrink: 0;
    background: rgba(255, 255, 255, .75);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(242, 140, 24, .15);
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .07);
    transition: .4s;
    display: flex;
    flex-direction: column
}

.testimonial-message {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between
}

.testimonial-text {
    height: 120px;
    overflow: hidden;
    line-height: 1.8;
    color: #555;
    margin: 0 0 12px 0;
    transition: height .35s ease
}

.testimonial-text.expanded {
    height: auto
}

.testimonial-text.clamped {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    line-clamp: 6;
    overflow: hidden
}

.view-review {
    display: none;
    align-self: flex-start;
    margin-bottom: 18px;
    background: 0 0;
    border: none;
    padding: 0;
    color: #4f42c1;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer
}

.view-review:hover {
    color: #f28c18;
    text-decoration: underline
}

.testimonial-text.expanded {
    display: block;
    overflow: visible
}

.testimonial-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: #f28c18;
    box-shadow: 0 20px 45px rgba(242, 140, 24, .25)
}

.testimonial-card svg {
    width: 34px;
    height: 34px;
    color: #f28c18;
    margin-bottom: 15px
}

.testimonial-card .stars {
    color: #f28c18;
    margin-bottom: 12px
}

.testimonial-card p {
    color: #555;
    line-height: 1.8;
    margin: 0
}

.client {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto
}

.avatar {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #f28c18;
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px
}

.client h4 {
    margin: 0;
    color: #4b2b24
}

.client span {
    font-size: 14px;
    color: #777
}

@keyframes testimonialMove {
    from {
        transform: translate3d(0, 0, 0)
    }

    to {
        transform: translate3d(-50%, 0, 0)
    }
}

.testimonial-track:hover {
    animation-play-state: paused
}

@media(max-width:768px) {
    .testimonial-card {
        width: 290px
    }

    .rating-summary .stars {
        font-size: 22px
    }
}

.section-title {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px
}

.section-title .section-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px
}

.section-title h2 {
    font-size: 40px;
    line-height: 1.15;
    font-weight: 800;
    color: #360f08;
    margin: 20px 0
}

.section-title p {
    max-width: 700px;
    margin: 20px auto 0;
    text-align: center;
    line-height: 1.8;
    color: #878181fc;
    font-size: 18px
}

.testi-container {
    width: min(95%, 1400px);
    margin: 60px auto
}

.testimonial-heading {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.2;
    color: #4b2b24;
    text-align: center;
    white-space: nowrap
}

.testimonial-heading span {
    color: #f28c18
}

.faq {
    background: #fff;
    position: relative
}

.faq-container {
    max-width: 900px;
    margin: 50px auto 0
}

.faq-item {
    background: #fff;
    border: 1px solid rgba(242, 140, 24, .15);
    border-radius: 18px;
    margin-bottom: 18px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .05);
    transition: .35s
}

.faq-item:hover {
    border-color: #f28c18;
    box-shadow: 0 15px 35px rgba(242, 140, 24, .15)
}

.faq-question {
    width: 100%;
    background: 0 0;
    border: none;
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: #4b2b24;
    text-align: left
}

.faq-question svg {
    width: 22px;
    height: 22px;
    color: #f28c18;
    transition: .3s
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease
}

.faq-answer p {
    padding: 0 28px 24px;
    color: #666;
    line-height: 1.8
}

.faq-item.active .faq-answer {
    max-height: 220px
}

.faq-item.active .faq-question svg {
    transform: rotate(45deg)
}

@media(max-width:768px) {
    .faq-question {
        font-size: 16px;
        padding: 20px
    }

    .faq-answer p {
        padding: 0 20px 20px
    }
}

.footer-cta {
    position: relative;
    margin-bottom: -90px;
    z-index: 10;
    width: 100%;
    padding-inline: clamp(20px, 8vw, 120px)
}

.footer-cta .container {
    width: min(100%, 1500px);
    margin: auto
}

.cta-card {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: auto;
    overflow: hidden;
    border-radius: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    padding: 28px 45px;
    min-height: 160px;
    background: linear-gradient(90deg, rgba(45, 24, 21, .95) 0, rgba(75, 43, 36, .88) 35%, rgba(75, 43, 36, .55) 55%, rgba(0, 0, 0, .1) 100%), url("../images/cta-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .22)
}

.cta-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 40% 50%, rgba(242, 140, 24, .3), transparent 60%);
    pointer-events: none
}

.cta-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .08), transparent);
    animation: shine 8s linear infinite
}

.cta-content {
    position: relative;
    z-index: 2;
    flex: 1;
    max-width: 650px
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 50px;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .15);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 15px
}

.cta-badge svg {
    width: 18px;
    height: 18px
}

.cta-content h2 {
    color: #fff;
    font-size: 40px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 12px
}

.cta-content h2 span {
    color: #f28c18
}

.cta-content p {
    color: rgba(255, 255, 255, .85);
    font-size: 18px;
    line-height: 1.8
}

.cta-action {
    position: relative;
    z-index: 2
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    text-decoration: none;
    padding: 18px 32px;
    border-radius: 50px;
    background: #f28c18;
    color: #fff;
    font-weight: 700;
    font-size: 17px;
    transition: .35s;
    box-shadow: 0 15px 35px rgba(242, 140, 24, .35)
}

.cta-btn span {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    color: #f28c18;
    transition: .35s
}

.cta-btn:hover {
    transform: translateY(-5px);
    background: #fff;
    color: #4b2b24
}

.cta-btn:hover span {
    background: #f28c18;
    color: #fff;
    transform: translateX(6px)
}

@keyframes shine {
    100% {
        left: 150%
    }
}

@media(max-width:991px) {
    .cta-card {
        flex-direction: column;
        text-align: center;
        padding: 50px 35px;
        gap: 35px;
        min-height: auto
    }

    .cta-content {
        max-width: 100%
    }

    .cta-content h2 {
        font-size: 38px
    }
}

@media(max-width:768px) {
    .footer-cta {
        margin-bottom: -70px;
        padding-inline: 20px
    }

    .cta-card {
        padding: 35px 25px;
        border-radius: 22px
    }

    .cta-content h2 {
        font-size: 30px
    }

    .cta-content p {
        font-size: 16px
    }

    .cta-btn {
        width: 100%;
        justify-content: center
    }
}

@media(min-width:1800px) {
    .footer-cta .container {
        max-width: 1600px
    }
}

.footer {
    position: relative;
    overflow: hidden;
    padding-top: 180px;
    padding-right: 100px;
    padding-bottom: 25px;
    padding-left: 130px;
    background: linear-gradient(180deg, #3d231d 0, #4b2b24 45%, #2f1a15 100%);
    color: #fff
}

.footer-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(130px)
}

.glow-1 {
    width: 350px;
    height: 350px;
    top: 80px;
    right: -120px;
    background: rgba(242, 140, 24, .1)
}

.glow-2 {
    width: 280px;
    height: 280px;
    bottom: 40px;
    left: -80px;
    background: rgba(242, 140, 24, .08)
}

.footer-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr 1.3fr;
    gap: 70px;
    max-width: 1300px;
    margin: 0 auto
}

.footer-company p {
    margin-top: 20px;
    color: rgba(255, 255, 255, .75);
    line-height: 1.9;
    font-size: 16px
}

.footer-logo {
    width: 220px
}

.footer-column h3 {
    position: relative;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px
}

.footer-column h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 55px;
    height: 4px;
    border-radius: 10px;
    background: #f28c18
}

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

.footer-column li {
    margin-bottom: 18px;
    color: rgba(255, 255, 255, .75);
    display: flex;
    align-items: center;
    gap: 12px
}

.footer-column li svg {
    width: 18px;
    height: 18px;
    color: #f28c18
}

.footer-column a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, .75);
    text-decoration: none;
    transition: .35s
}

.footer-column a:hover {
    color: #f28c18;
    transform: translateX(8px)
}

.footer-column a svg {
    transition: .35s
}

.footer-column a:hover svg {
    transform: translateX(5px)
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 30px
}

.footer-social a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: .35s
}

.footer-social a:hover {
    border-color: #f28c18;
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(242, 140, 24, .35)
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px
}

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .08);
    color: #fff;
    transition: .35s
}

.social-icon {
    color: #fff
}

.social-icon svg {
    width: 22px;
    height: 22px;
    display: block
}

.social-icon svg path {
    fill: currentColor
}

.social-icon:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(242, 140, 24, .35)
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 18px
}

.contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 15px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .05);
    transition: .35s
}

.contact-item:hover {
    background: rgba(242, 140, 24, .1);
    border-color: rgba(242, 140, 24, .3);
    transform: translateX(6px)
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #f28c18;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    color: #fff
}

.contact-item span {
    display: block;
    color: #f28c18;
    font-size: 13px;
    margin-bottom: 5px
}

.contact-item p {
    margin: 0;
    color: #fff;
    line-height: 1.6
}

.footer-bottom {
    width: 100%;
    max-width: 1400px;
    margin: 70px auto 0;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, .65);
    font-size: 14px;
    flex: 1;
    text-align: left
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: right;
    gap: 24px;
    flex: 1
}

.footer-social i {
    font-size: 20px;
    color: #fff
}

.footer-links a {
    color: rgba(255, 255, 255, .65);
    text-decoration: none;
    transition: .35s
}

.footer-links a:hover {
    color: #f28c18
}

@media(max-width:991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 45px
    }
}

@media(max-width:768px) {
    .footer {
        padding-top: 150px;
        text-align: center
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%)
    }

    .footer-social {
        justify-content: center
    }

    .contact-item {
        text-align: left
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px
    }

    .footer-bottom p,
    .footer-credit,
    .footer-links {
        flex: none;
        width: 100%;
        text-align: center
    }
}

.footer {
    padding: 180px 0 25px
}

.footer .container {
    width: min(92%, 1400px);
    margin: 0 auto
}

@media (max-width:992px) {
    .footer {
        padding: 160px 40px 25px
    }
}

@media (max-width:768px) {
    .footer {
        padding: 150px 20px 20px
    }
}

.trusted-brands {
    position: relative;
    overflow: hidden;
    padding: 40px 0 80px;
    margin-top: -30px;
    background: linear-gradient(rgba(255, 255, 255, .05), rgba(255, 255, 255, .05)), url("../images/about-back.webp");
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center center
}

.trusted-brands::before {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    right: -180px;
    top: -180px;
    background: radial-gradient(circle, rgba(242, 140, 24, .18) 0, rgba(242, 140, 24, .08) 35%, transparent 75%);
    filter: blur(70px);
    pointer-events: none
}

.trusted-container {
    position: relative;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 80px;
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 70px;
    align-items: center
}

.trusted-content {
    position: sticky;
    top: 120px;
    z-index: 5
}

.trusted-content h2 {
    font-size: 40px;
    line-height: 1.15;
    font-weight: 800;
    color: #fff;
    margin: 20px 0
}

.trusted-content h2 span {
    display: block;
    color: #f28c18
}

.trusted-content p {
    margin: 25px 0 35px;
    font-size: 18px;
    line-height: 1.9;
    color: rgba(255, 255, 255, .82)
}

.trusted-wall {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 35px;
    height: 520px;
    overflow: hidden
}

.logo-column {
    display: flex;
    flex-direction: column;
    gap: 0
}

.logo-card {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px;
    margin: 0;
    background: 0 0 !important;
    border: none !important;
    border-radius: 0;
    box-shadow: none !important;
    backdrop-filter: none;
    min-height: auto;
    transition: .3s ease
}

.logo-card:hover {
    transform: scale(1.05)
}

.logo-card img {
    width: auto;
    height: auto;
    max-width: 140px;
    max-height: 70px;
    object-fit: contain
}

.logo-card:hover img {
    transform: scale(1.08);
    filter: drop-shadow(0 10px 25px rgba(242, 140, 24, .35))
}

.logo-column.up {
    animation: columnUp 26s linear infinite
}

.logo-column.down {
    animation: columnDown 26s linear infinite
}

.logo-column:nth-child(2) {
    animation-duration: 30s
}

.logo-column:nth-child(3) {
    animation-duration: 24s
}

.logo-column:nth-child(4) {
    animation-duration: 28s
}

.logo-column:nth-child(5) {
    animation-duration: 22s
}

@keyframes columnUp {
    from {
        transform: translateY(0)
    }

    to {
        transform: translateY(-50%)
    }
}

@keyframes columnDown {
    from {
        transform: translateY(-50%)
    }

    to {
        transform: translateY(0)
    }
}

.trusted-wall:hover .logo-column {
    animation-play-state: paused
}

@media(max-width:1200px) {
    .trusted-container {
        grid-template-columns: 360px 1fr;
        gap: 45px
    }

    .trusted-wall {
        grid-template-columns: repeat(4, 1fr)
    }

    .logo-column:last-child {
        display: none
    }
}

@media(max-width:991px) {
    .trusted-wall {
        grid-template-columns: repeat(2, 1fr)
    }

    .logo-column:last-child {
        display: none
    }
}

@media(max-width:768px) {
    .trusted-wall {
        grid-template-columns: 1fr;
        height: 450px
    }

    .logo-column:nth-child(2),
    .logo-column:nth-child(3) {
        display: none
    }

    .logo-card {
        min-height: 90px;
        padding: 15px;
        border-radius: 18px
    }

    .logo-card img {
        max-width: 90px;
        max-height: 45px
    }
}

@media(max-width:480px) {
    .trusted-wall {
        height: 460px;
        gap: 12px
    }

    .logo-card {
        min-height: 80px;
        padding: 12px
    }

    .logo-card img {
        max-width: 80px
    }
}

.scroll-up {
    animation: scrollUp 60s linear infinite
}

.scroll-down {
    animation: scrollDown 60s linear infinite
}

.logo-column {
    animation-duration: 60s !important
}

@keyframes scrollUp {
    from {
        transform: translateY(0)
    }

    to {
        transform: translateY(-50%)
    }
}

@keyframes scrollDown {
    from {
        transform: translateY(-50%)
    }

    to {
        transform: translateY(0)
    }
}

.trusted-wall:hover .logo-column {
    animation-play-state: paused
}

.nav-dropdown {
    position: relative
}

.nav-dropdown-menu {
    position: absolute;
    top: 180%;
    left: 0;
    right: auto;
    width: 275px;
    padding: 8px 0;
    background: #fff;
    border: 1px solid rgba(75, 43, 36, .15);
    border-radius: 12px 12px 12px 12px;
    box-shadow: 0 12px 30px rgba(75, 43, 36, .18);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(0);
    transition: opacity .2s ease, visibility .2s ease;
    z-index: 99999
}

.nav-dropdown-menu a {
    display: block;
    width: 100%;
    padding: 12px 22px;
    color: #4b2b24;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: background .2s ease, color .2s ease, padding-left .2s ease
}

.nav-dropdown-menu a:hover {
    background: #fff3e3;
    color: #f28c18;
    padding-left: 27px
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto
}

.nav-dropdown>.nav-link svg {
    width: 14px;
    height: 14px;
    transition: transform .25s ease
}

.nav-dropdown:hover>.nav-link svg {
    transform: rotate(180deg)
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}