/* ===========

// ### TABLE OF CONTENTS ###
// 
// 01. ABSTRACTS ............ Variables, Mixins, Animations
// 02. BASE ................. Typography, Global, Theme
// 03. LAYOUT ............... Header, Menu, Top-bar
// 04. COMPONENTS ........... UI Elements, Buttons, Modals
// 05. PAGES ................ Page-specific styles
// ------------------------------------------------
*/

/* ### TYPOGRAPHY CSS ### */

/* ### FONT FAMILY ### */

/* Teko font */

@import url("https://fonts.googleapis.com/css2?family=Teko:wght@300..700&display=swap");
/* Kanit font */

@import url("https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100..900;1,100..900&display=swap");
/* Instrument Sans font */

@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap");
/* Inter font */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");

:root {
    --border: #7373733D;
    --border-2: #FFFFFF29;

    --bg: #030922;
    --theme: #0b2a6f;
    --black: #06051d79;

    --white: #FFFFFF;
    --text: #FFFFFFB2;
}

@keyframes ar-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes ar-pulse-glow {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
        filter: brightness(100%);
    }

    50% {
        transform: scale(1.05);
        opacity: 0.9;
        filter: brightness(110%);
    }
}

@keyframes ar-fade-up {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.98);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes ar-reveal-left {
    0% {
        clip-path: inset(0 100% 0 0);
    }

    100% {
        clip-path: inset(0 0 0 0);
    }
}

@keyframes ar-reveal-right {
    0% {
        clip-path: inset(0 0 0 100%);
    }

    100% {
        clip-path: inset(0 0 0 0);
    }
}

@keyframes ar-shimmer {
    0% {
        transform: translateX(-100%);
    }

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

@keyframes ar-zoom-io {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

@keyframes ar-bg-pan {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes ar-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* --- Backward Compatibility & Template Specifics --- */

@keyframes spinner {
    to {
        transform: rotateZ(360deg);
    }
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes sheen {
    50% {
        transform: translateY(-20px);
        color: var(--primary);
    }
}

@keyframes characters {

    0%,
    75%,
    100% {
        opacity: 0;
        transform: rotateY(-90deg);
    }

    25%,
    50% {
        opacity: 1;
        transform: rotateY(0deg);
    }
}

@keyframes reveal {
    to {
        opacity: 1;
        filter: blur(0px);
    }
}

:root {
    --font_kanit: "Kanit", sans-serif;
    --font_awesome: 'Font Awesome 6 Free';
    --font_teko: "Teko", sans-serif;
    --font_instrument: "Instrument Sans", sans-serif;
    --font_inter: "Inter", sans-serif;
    /* Keeping old variable names for compatibility but pointing to new fonts */
    --font_mona: var(--font_kanit);
    --font_playfair: var(--font_teko);
}

/* ### DEFAULT STYLE ### */

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font_mona);
    line-height: 1;
    background:
        radial-gradient(circle at top left,
            rgba(204, 153, 51, 0.12) 0%,
            transparent 35%),

        radial-gradient(circle at bottom right,
            rgba(255, 255, 255, 0.04) 0%,
            transparent 30%),

        linear-gradient(135deg,
            #050505 0%,
            #0d0d0d 25%,
            #111111 50%,
            #0b0b0b 75%,
            #050505 100%);

    color: #fff;
}



html {
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0;
    margin: 0;
    color: var(--primary);
    line-height: 1.22;
    font-family: var(--font_playfair);
    font-weight: 500;
}

ul,
ol {
    padding: 0;
    margin: 0;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    transition: all 0.3s;
    color: inherit;
}

a:hover {
    color: var(--primary);
}

button {
    background-color: transparent;
    border: 0;
}

p {
    padding: 0;
    margin: 0;
    font-family: var(--font_mona);
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0%;
}

strong {
    font-weight: 500;
}

video,
iframe,
img {
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
}

.medium {
    font-weight: 600;
}

.bold {
    font-weight: 700;
}

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

    .row.g-0 {
        padding-right: 0;
        padding-left: 0;
    }

    br {
        display: none;
    }
}

main {
    display: inline-block;
    width: 100%;
    overflow: hidden;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 32px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 18px;
}

.preloader-active {
    overflow: hidden !important;
}

.parallax-view {
    overflow: hidden;
}

.section-padding {
    padding: 130px 0;
}

@media only screen and (max-width: 1919px) {
    .section-padding {
        padding: 90px 0;
    }
}

@media only screen and (max-width: 1399px) {
    .section-padding {
        padding: 80px 0;
    }
}

@media only screen and (max-width: 1199px) {
    .section-padding {
        padding: 70px 0;
    }
}

.container {
    --bs-gutter-x: 32px;
    max-width: 1632px;
}

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

.container.full-hd {
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
}

.container-xl {
    max-width: 1800px;
}

.text-slider-active .swiper-slide {
    width: auto;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #d6d6d6;
}

::-webkit-scrollbar-thumb {
    background: #888;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.pos-abs {
    position: absolute;
}

.circle-text {
    width: 140px;
    height: 140px;
    position: relative;
    border-radius: 100px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
}

@media only screen and (max-width: 991px) {
    .circle-text {
        width: 120px;
        height: 120px;
    }
}

.circle-text .text {
    animation: spinner 5s infinite linear;
    width: 100%;
}

.circle-text .icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.circle-text:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    border: 37px solid var(--white);
    border-radius: 50%;
}

.p-relative {
    position: relative;
}

.p-absolute {
    position: absolute;
}

.fix {
    overflow: hidden;
}

.bg-full {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

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

.has-top-line {
    position: relative;
    padding-top: 10px;
}

.has-top-line:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background-color: currentColor;
    top: 0;
    left: 0;
}

.has-bottom-line {
    position: relative;
    padding-bottom: 10px;
}

.has-bottom-line:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background-color: currentColor;
    bottom: 0;
    left: 0;
}

.has-left-line {
    position: relative;
    padding-inline-start: 35px;
    display: inline-block;
}

.has-left-line:before {
    position: absolute;
    content: "";
    width: 30px;
    height: 1px;
    background-color: currentColor;
    inset-inline-start: 0;
    top: 50%;
    transform: translateY(-50%);
}

.has-right-line {
    position: relative;
    padding-inline-end: 35px;
    display: inline-block;
}

.has-right-line:after {
    position: absolute;
    content: "";
    width: 30px;
    height: 1px;
    background-color: currentColor;
    inset-inline-end: 0;
    top: 50%;
    transform: translateY(-50%);
}

.t-btn-play {
    width: 56px;
    height: 56px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 1.5px solid currentColor;
    color: var(--primary);
    border-radius: 50%;
    transition: all 0.5s;
    font-size: 14px;
}

@media only screen and (max-width: 767px) {
    .t-btn-play {
        width: 50px;
        height: 50px;
        font-size: 12px;
        border-width: 1px;
    }
}

.t-btn-play:hover {
    color: var(--theme, --action);
}

.t-btn-play.light {
    color: var(--white);
}

.t-btn-play.light:hover {
    color: var(--white);
}

.t-btn-play.dark {
    color: var(--black);
}

.t-btn-play.dark:hover {
    color: var(--black);
}

.show-light {
    display: inline-block;
}

.dark .show-light {
    display: none;
}

.show-dark {
    display: none;
}

.dark .show-dark {
    display: inline-block;
}

.line-area {
    position: relative;
}

.lines {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
}

.lines .line {
    width: 1px;
    height: 100%;
    background-color: rgba(0, 81, 83, 0.031372549);
    display: inline-block;
    position: relative;
    z-index: 1;
}

.t-btn-icon i {
    transform: rotate(-45deg);
    transition: all 0.3s;
    font-size: 20px;
    color: var(--primary);
}

.dir-rtl .t-btn-icon i {
    transform: rotate(-135deg);
}

.t-btn-icon:hover i {
    transform: rotate(0);
}

.dir-rtl .t-btn-icon:hover i {
    transform: rotate(-180deg);
}

.list-check li {
    position: relative;
    padding-inline-start: 30px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 10px;
}

.list-check li::before {
    content: "";
    position: absolute;
    inset-inline-start: 0;
    background-image: url("../images/electrician/check-mark.webp");
    background-repeat: no-repeat;
    width: 14px;
    height: 14px;
    top: 4px;
    transform: rotateY(0deg);
}

.dir-rtl .list-check li::before {
    transform: rotateY(180deg);
}

.list-check li:last-child {
    margin-bottom: 0;
}

.list-plus li {
    position: relative;
    padding-inline-start: 30px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    display: inline-block;
    width: 100%;
}

.list-plus li::before {
    content: "+";
    position: absolute;
    inset-inline-start: 0;
    top: -10px;
    font-size: 30px;
    font-weight: 300;
    line-height: 1;
}

.list-plus li:not(:last-child) {
    margin-bottom: 10px;
}

.pos-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.pagination-with-dash {
    font-size: 14px;
    display: flex;
    gap: 10px;
    color: var(--primary);
    align-items: center;
}

.pagination-with-dash .dash {
    width: 100px;
    height: 1px;
    background-color: var(--primary);
}

.pagination-with-dash .swiper-pagination-current {
    display: flex;
    gap: 5px;
    align-items: center;
}

.pagination-with-dash .swiper-pagination-current:before {
    content: url(../images/icon/arrow-left.webp);
}

.pagination-with-dash .swiper-pagination-total {
    display: flex;
    gap: 5px;
    align-items: center;
}

.pagination-with-dash .swiper-pagination-total:after {
    content: url(../images/icon/arrow-right.webp);
}

.form-search input {
    width: 100%;
    height: 55px;
    background: transparent;
    border: 0;
    color: var(--white);
}

.form-search input:focus {
    outline: 0;
}

.form-search {
    display: flex;
    gap: 10px;
    border: 1px solid rgba(95, 96, 98, 0.3);
    border-radius: 70px;
    padding: 0 15px;
}

.form-search button i {
    color: var(--white);
    opacity: 0.7;
}

.btn-close {
    content: "\e92d";
    font-family: "icomoon";
    font-size: 16px;
    opacity: 1;
    filter: brightness(100) contrast(0);
    border-radius: 50px;
    width: 2em;
    height: 2em;
    border: 1px solid var(--white);
    position: absolute;
    inset-inline-end: 20px;
    top: 20px;
    transition: unset;
}

.modal {
    background-color: var(--primary);
    z-index: 99999;
}

.modal-content {
    background-color: transparent;
    border: 0;
}

.mb-40 {
    margin-bottom: 40px !important;
}

.mb-50 {
    margin-bottom: 50px !important;
}

.mb-60 {
    margin-bottom: 60px !important;
}

.mb-70 {
    margin-bottom: 70px !important;
}

.mt-50 {
    margin-top: 50px !important;
}

.mt-60 {
    margin-top: 60px !important;
}

.g-20 {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 20px;
}

.g-10 {
    --bs-gutter-x: 10px;
    --bs-gutter-y: 10px;
}

.gx-48 {
    --bs-gutter-x: 48px;
}

.modern-reveal {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.modern-reveal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.3);
    will-change: transform;
}

.modern-reveal .reveal-overlay {
    position: absolute;
    inset: 0;
    background-color: var(--theme);
    z-index: 2;
    transform: translateX(0);
    will-change: transform;
}

a[href^="tel:"],
a[href^="mailto:"] {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

a[href^="tel:"]:hover,
a[href^="mailto:"]:hover {
    color: var(--secondary);
}

html {
    --container-max-widths: 1320px;
}

@media only screen and (max-width: 1399px) {
    html {
        --container-max-widths: 1140px;
    }
}

@media only screen and (max-width: 1199px) {
    html {
        --container-max-widths: 960px;
    }
}

@media only screen and (max-width: 991px) {
    html {
        --container-max-widths: 720px;
    }
}

@media only screen and (max-width: 767px) {
    html {
        --container-max-widths: 540px;
    }
}

@media (max-width: 575px) {
    html {
        --container-max-widths: 100%;
    }
}

body {
    background-color: #F5F5F5;
    color: var(--secondary);
}

.body-wrapper {
    background-color: var(--white);
}

.dark .body-wrapper {
    background-color: var(--black);
}

.img-reveal-top {
    visibility: hidden;
    overflow: hidden;
}

.img-reveal-top img {
    object-fit: cover;
    transform-origin: left;
}

.anim-reveal {
    overflow: hidden;
}

.anim-reveal-line {
    overflow: hidden;
}

.color-white {
    color: var(--white);
}

.color-black {
    color: var(--black);
}

.color-primary {
    color: var(--primary);
}

.color-secondary {
    color: var(--secondary);
}

.bg-white {
    background-color: var(--white);
}

.bg-black {
    background-color: var(--black);
}

.bg-primary {
    background-color: var(--primary);
}

.bg-secondary {
    background-color: var(--secondary);
}

.bg-transparent {
    background-color: transparent !important;
}

.zi-1 {
    z-index: 1;
}

.zi-2 {
    z-index: 2;
}

.zi-0 {
    z-index: 0;
}

.zi--1 {
    z-index: -1;
}

.box-layout {
    max-width: 1600px;
    margin: 0 auto;
    overflow: hidden !important;
}

.text-underline {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
}

.header__area-6 {
    position: unset;
}

.vertically-center {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-indent-40 {
    text-indent: 40px;
}

.text-indent-50 {
    text-indent: 50px;
}

header {
    margin-bottom: -1px;
    z-index: 100;
}

section {
    margin-bottom: -1px;
}

.dir-rtl {
    direction: rtl;
}

.show-dark {
    display: inline-block;
}

.dark .show-dark {
    display: none;
}

.show-light {
    display: none;
}

.dark .show-light {
    display: inline-block;
}

.line-divider-sm {
    height: 0.5px;
    background-color: var(--black-9);
}

.dark .line-divider-sm {
    background-color: #E9E9E9;
}

.admin-bar header,
.admin-bar .body-wrapper {
    margin-top: 32px;
}

.swiper,
.swiper-container {
    direction: ltr;
}

.border-e-0 {
    border-inline-end: 0 !important;
}

.border-s-0 {
    border-inline-start: 0 !important;
}

/* side info style */

.offcanvas-overlay {
    position: fixed;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 900;
    top: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.offcanvas-overlay.overlay-open {
    opacity: 1;
    visibility: visible;
}

.side-info-close {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background-color: rgba(216, 120, 39, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(216, 120, 39, 0.2);
}

.side-info-close:hover {
    transform: rotate(90deg) scale(1.1);
    background-color: #0310c2;
    color: var(--white);
}

.side-info {
    background: rgba(19, 19, 21, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    height: 100%;
    position: fixed;
    z-index: 999;
    inset-inline-end: -100%;
    top: 0;
    width: 500px;
    padding: 0;
    overflow-y: auto;
    transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

@media (max-width: 575px) {
    .side-info {
        width: 100%;
    }
}

.side-info::-webkit-scrollbar {
    width: 4px;
}

.side-info::-webkit-scrollbar-thumb {
    background: rgba(216, 120, 39, 0.2);
    border-radius: 10px;
}

.side-info.info-open {
    inset-inline-end: 0;
}

.side-info-content {
    position: relative;
    min-height: 100%;
    padding-bottom: 100px;
}

.offset-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    margin-bottom: 40px;
}

@media (max-width: 575px) {
    .offset-header {
        padding: 30px;
        margin-bottom: 20px;
    }
}

.offset-logo {
    width: 120px;
}

.offset-logo img {
    width: 100%;
}

.logo-text {
    font-family: var(--font-outfit), "Outfit", sans-serif;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -1.5px;
    color: var(--white) !important;
    
    display: inline-block;
    transition: all 0.3s ease;
    line-height: 1;
}

.logo-text .dot {
    color: #0310c2;
}

.logo-text:hover {
    opacity: 0.9;
    transform: scale(0.98);
    color: var(--white) !important;
}

.offset-info-box {
    padding: 30px 50px;
    margin-bottom: 50px;
}

@media (max-width: 575px) {
    .offset-info-box {
        padding: 30px;
    }
}

.offset-info-box .title {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 15px;
}

.offset-info-box .text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.offset-info-box .post-image {
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 35px;
}

.offset-info-box .post-image img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    transition: all 0.4s ease;
    filter: grayscale(0.2);
}

.offset-info-box .post-image img:hover {
    filter: grayscale(0);
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.offset-widget-box {
    margin-bottom: 40px;
    padding: 0 50px;
}

@media (max-width: 575px) {
    .offset-widget-box {
        padding: 0 30px;
    }
}

.offset-widget-box .title {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.offset-widget-box .title::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #0310c2;
}

.offset-widget-box .contact-meta {
    margin-top: 15px;
}

.offset-widget-box .contact-item {
    margin-bottom: 10px;
}

.offset-widget-box .contact-item .text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.offset-widget-box .contact-item .text a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.offset-widget-box .contact-item .text a:hover {
    color: #0310c2;
}

.offset-widget-box .contact-item .text:hover {
    color: #0310c2;
    padding-left: 5px;
}

.offset-widget-box .social-links {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.offset-widget-box .social-links a {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    color: var(--white);
}

.offset-widget-box .social-links a:hover {
    background-color: #0310c2;
    border-color: #0310c2;
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(216, 120, 39, 0.3);
}

.offset-logo-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 50px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.8), transparent);
    pointer-events: none;
}

.offset-logo-footer img {
    width: 150px;
}

/* mean menu customize */

.mobile-menu {
    padding: 0 50px;
}

@media (max-width: 575px) {
    .mobile-menu {
        padding: 0 30px;
    }
}

.mobile-menu.mean-container .mean-nav>ul {
    padding: 0;
    margin: 0;
    width: 100%;
    list-style-type: none;
    display: block !important;
}

.mobile-menu.mean-container .mean-nav>ul>li:last-child>a {
    border-bottom: 1px solid rgba(14, 15, 17, 0.1);
}

.mobile-menu.mean-container .mean-nav {
    background: none;
    margin-top: 0;
}

.mobile-menu.mean-container .mean-nav .new {
    font-size: 10px;
    font-weight: 600;
    background: #FFA38E;
    color: var(--black2);
    padding: 3px 7px;
    line-height: 1;
    display: flex;
    align-items: center;
    border-radius: 2px;
}

.mobile-menu.mean-container .mean-nav ul li a {
    width: 100%;
    padding: 15px 0;
    padding-inline-start: 0px;
    font-weight: 400;
    font-size: 14px !important;
    line-height: 1;
    color: var(--secondary);
    text-transform: capitalize;
    border-top: 1px solid rgba(14, 15, 17, 0.1);
    display: flex;
    gap: 8px;
    justify-content: flex-start;
    align-items: center;
    outline: none;
    transform: translateY(var(--y)) translateZ(0);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-sizing: border-box;
    opacity: 1;
}

@media only screen and (max-width: 767px) {
    .mobile-menu.mean-container .mean-nav ul li a {
        font-size: 20px;
    }
}

.mobile-menu.mean-container .mean-nav ul li a.mean-expand {
    width: 100%;
    height: 48px;
    justify-content: end;
    font-weight: 300;
    border: none !important;
}

.dir-rtl .mobile-menu.mean-container .mean-nav ul li a.mean-expand {
    right: 275px;
}

@media only screen and (max-width: 767px) {
    .mobile-menu.mean-container .mean-nav ul li a.mean-expand {
        height: 50px;
    }
}

.mobile-menu.mean-container .mean-nav ul li a.mean-expand:hover {
    background: transparent;
    opacity: 1;
}

.mobile-menu.mean-container .mean-nav ul li li:first-child {
    border-top: 1px solid rgba(14, 15, 17, 0.1);
}

.mobile-menu.mean-container .mean-nav ul li li a {
    font-size: 16px;
    text-transform: capitalize;
    border-top: none !important;
    padding: 12px 0;
    padding-inline-start: 15px;
}

.mobile-menu.mean-container .mean-nav ul li li a.mean-expand {
    height: 58px;
}

@media only screen and (max-width: 991px) {
    .mobile-menu.mean-container .mean-nav ul li li a.mean-expand {
        height: 25px;
    }
}

@media only screen and (max-width: 767px) {
    .mobile-menu.mean-container .mean-nav ul li li a.mean-expand {
        height: 22px;
    }
}

.mobile-menu.mean-container .mean-nav ul li li li:last-child {
    border-bottom: 1px solid var(--border);
}

.mobile-menu.mean-container .mean-nav ul li li li a {
    padding-left: 40px;
}

.mobile-menu.mean-container .mean-bar {
    padding: 0;
    background: none;
    max-height: auto;
    overflow-y: scroll;
}

.mobile-menu.mean-container .mean-bar::-webkit-scrollbar {
    width: 0;
}

.mobile-menu.mean-container a.meanmenu-reveal {
    display: none !important;
}

/* header area style  */

.header-area {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    margin-top: 20px;
}

.header-area-inner {
    display: grid;
    gap: 0 130px;
    grid-template-columns: auto 1fr auto auto 140px auto;
    justify-content: space-between;
}

@media only screen and (max-width: 1399px) {
    .header-area-inner {
        gap: 0 100px;
    }
}

@media only screen and (max-width: 1199px) {
    .header-area-inner {
        gap: 0 80px;
        grid-template-columns: auto 1fr auto 140px auto;
    }
}

@media only screen and (max-width: 991px) {
    .header-area-inner {
        gap: 0 50px;
        grid-template-columns: auto 1fr auto auto auto;
    }
}

@media only screen and (max-width: 767px) {
    .header-area-inner {
        grid-template-columns: 1fr auto;
    }
}

.header-area .header-main {
    padding-top: 14px;
    padding-bottom: 14px;
    border-top: 1px solid rgba(14, 15, 17, 0.08);
}

.header-area .header-main .main-menu {
    display: block !important;
}

.header-area .header-main.sticky-header,
.header-area .header-main.transformed {
    background-color: #F2F2F2;
}

.header-area .header-main.sticky-header .header-area-inner,
.header-area .header-main.transformed .header-area-inner {
    grid-template-columns: 1fr 545px auto;
    align-items: center;
}

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

    .header-area .header-main.sticky-header .header-area-inner,
    .header-area .header-main.transformed .header-area-inner {
        grid-template-columns: 1fr auto;
    }
}

.header-area .header-main.sticky-header .site-category,
.header-area .header-main.transformed .site-category {
    display: none !important;
}

.header-area .header-main.sticky-header .main-menu>ul,
.header-area .header-main.transformed .main-menu>ul {
    flex-direction: row;
    gap: 30px;
}

.header-area .header-main.sticky-header .social-links,
.header-area .header-main.transformed .social-links {
    display: none !important;
}

.header-area .header-main.sticky-header .office-location,
.header-area .header-main.transformed .office-location {
    display: none !important;
}

.header-area .header-logo {
    width: 101px;
    margin-top: 6px;
}

@media only screen and (max-width: 1399px) {
    .header-area .header-logo {
        width: 101px;
    }
}

@media only screen and (max-width: 991px) {
    .header-area .header-logo {
        width: 101px;
    }
}

.header-area .header-logo img {
    width: 100%;
}

.header-area .site-category {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: var(--primary);
}

@media only screen and (max-width: 1199px) {
    .header-area .site-category {
        font-size: 14px;
    }
}

.header-area .main-menu>ul>li>a {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    padding: 0;
}

.header-area .main-menu>ul>li>a:hover {
    color: var(--action);
}

.header-area .social-links li:not(:first-child) {
    margin-top: 6px;
}

.header-area .social-links li a {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}

.header-area .social-links li a:hover {
    color: var(--action);
}

.header-area .office-location li a {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}

.header-area .office-location li a:hover {
    color: var(--action);
}

.header-area .main-menu>ul {
    flex-direction: column;
    gap: 6px;
}

@media (max-width: 575px) {
    .header-area .header-button {
        display: none;
    }
}

.header-area .header-offcanvas {
    margin-top: 6px;
}

.header-area .side-toggle {
    width: 44px;
    height: 44px;
}

@media only screen and (max-width: 1399px) {
    .header-area .side-toggle {
        width: 33px;
        height: 33px;
    }
}

/* header area 1 style  */

.header-area-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.header-area-1 .header-area-1-inner .left {
    gap: 100px;
}

.header-area-1.border-bottom {
    border-bottom: 1px solid var(--border);
}

.header-area-1.border-bottom .main-menu>ul {
    display: flex;
    align-items: center;
    gap: 34px;
    list-style-type: none;
}

.header-area-1.border-bottom .side-toggle {
    margin-left: 24px;
}

.header-area-1.header-inner {
    position: relative;
    background: var(--white);
}

.header-area-1-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
    height: 90px;
}

@media only screen and (max-width: 1199px) {
    .header-area-1-inner {
        height: 70px;
    }
}

.header-area-1-inner .left {
    display: flex;
    align-items: center;
    gap: 100px;
}

@media only screen and (max-width: 1399px) {
    .header-area-1-inner .left {
        gap: 50px;
    }
}

.header-area-1-inner .header-search {
    width: 300px;
    background: #F8F5F2;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 5px 5px 5px 6px;
    transition: all 0.3s ease;
    max-width: 209px;
}

@media only screen and (max-width: 1919px) {
    .header-area-1-inner .header-search {
        width: 200px;
    }
}

.header-area-1-inner .header-search:focus-within {
    border-color: var(--secondary);
    background: var(--white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.header-area-1-inner .header-search form {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-area-1-inner .header-search form input {
    border: none;
    background: transparent;
    width: 100%;
    padding: 0 15px;
    font-size: 14px;
    color: var(--black);
    outline: none;
}

.header-area-1-inner .header-search form input::placeholder {
    color: #999;
}

.header-area-1-inner .header-search form button {
    background: var(--secondary);
    color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.header-area-1-inner .header-search form button:hover {
    background: var(--primary);
    transform: scale(1.05);
}

.header-area-1-inner .header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-area-1-inner .header-right__user {
    padding-right: 20px;
    border-right: 1px solid rgb(217, 217, 217);
    margin-left: 95px;
}

.header-area-1-inner .header-right__cart {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-area-1-inner .header-right__cart-badge {
    position: absolute;
    top: -5px;
    right: -8px;
    background: var(--secondary);
    color: var(--white);
    font-family: var(--font_mona);
    font-weight: 600;
    font-size: 10px;
    line-height: 120%;
    letter-spacing: 0%;
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    line-height: 1;
}

.header-area-1 .header-logo img {
    width: 100%;
}

.header-area-1 .main-menu>ul>li:hover>a {
    color: var(--secondary);
}

.header-area-1 .main-menu>ul>li>a {
    font-family: var(--font_mona);
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: capitalize;
    color: var(--primary);
}

.header-area-1 .search-icon {
    color: var(--primary);
}

@media (max-width: 575px) {
    .header-area-1 .header-meta {
        display: none;
    }
}

.header-area-1 .t-btn-primary {
    padding: 10px 25px;
}

@media only screen and (max-width: 991px) {
    .header-area-1 .t-btn-primary {
        padding: 10px 20px;
    }
}

@media (max-width: 575px) {
    .header-area-1 .header-button {
        display: none;
    }
}

.header-area-1 .header-offcanvas i {
    font-size: 22px;
}

.header-area-1 .sticky-header {
    background-color: #FFFAF4;
}

.body-inner-page .header-area-1 .sticky-header {
    background-color: #FFFFFF;
}

/* header area 1 style  */

.header-area-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.header-area-2 .header-top {
    background-color: var(--secondary);
}

.header-area-2 .header-top__offer span {
    color: var(--primary);
    font-weight: 500;
}

.header-area-2 .header-top__left-item a:hover {
    color: var(--primary);
}

.header-area-2 .header-top__left-item a:hover svg path {
    fill: var(--primary);
}

.header-area-2 .header-top__right .language:before {
    background: var(--border2);
}

.header-area-2 .header-top__right .language__current:hover {
    color: var(--primary);
}

.header-area-2 .header-top__right .language__current:hover svg path {
    fill: var(--primary);
}

.header-area-2 .header-top__arabic:hover {
    color: var(--primary);
}

.header-area-2-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
    height: 90px;
}

@media only screen and (max-width: 1199px) {
    .header-area-2-inner {
        height: 70px;
    }
}

.header-area-2-inner .left {
    display: flex;
    align-items: center;
    gap: 100px;
}

.header-area-2-inner .header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-area-2-inner .header-right__user {
    padding-right: 20px;
    border-right: 1px solid var(--border2);
    margin-left: 95px;
}

@media only screen and (max-width: 1199px) {
    .header-area-2-inner .header-right__user {
        margin-left: 0;
    }
}

.header-area-2-inner .header-right__user svg path {
    fill: var(--white);
}

.header-area-2-inner .header-right__cart {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.header-area-2-inner .header-right__cart svg path {
    fill: var(--white);
}

.header-area-2-inner .header-right__cart-badge {
    position: absolute;
    top: -5px;
    right: -8px;
    background: var(--secondary);
    color: var(--white);
    font-size: 10px;
    font-weight: 600;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    line-height: 1;
}

.header-area-2-inner .header-right__cart-badge--bg-yellow {
    background: var(--yellow);
    color: var(--primary);
}

.header-area-2 .header-logo img {
    width: 100%;
}

.header-area-2 .main-menu>ul>li:hover>a {
    color: var(--secondary);
}

.header-area-2 .main-menu>ul>li>a {
    font-family: var(--font_mona);
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: capitalize;
    color: var(--white);
}

.header-area-2 .search-icon {
    color: var(--primary);
}

@media (max-width: 575px) {
    .header-area-2 .header-meta {
        display: none;
    }
}

@media (max-width: 575px) {
    .header-area-2 .header-button {
        display: none;
    }
}

.header-area-2 .header-offcanvas i {
    font-size: 22px;
}

.header-area-2 .sticky-header {
    background-color: var(--primary);
}

.body-inner-page .header-area-2 .sticky-header {
    background-color: #FFFFFF;
}

/* sticky header style */

.header-sticky {
    transition: all 0.5s;
}

.transformed {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 800;
    transform: translateY(-100%);
}

.sticky-header {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 800;
    background-color: #FFFFFF;
    transform: translateY(0%);
}

/*----------------------------------------*/

/* menu css */

/*----------------------------------------*/

.main-menu.menu-dark>ul>li>a {
    color: var(--black);
}

.main-menu.menu-light>ul>li>a {
    color: var(--white);
}

.main-menu>ul {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style-type: none;
}

@media only screen and (max-width: 1399px) {
    .main-menu>ul {
        gap: 20px;
    }
}

.main-menu>ul>li:hover>a {
    color: var(--primary);
}

.main-menu>ul>li:hover>ul,
.main-menu>ul>li:hover>.mega-menu-home {
    opacity: 1;
    pointer-events: all;
    inset-inline-start: 0;
}

.main-menu>ul>li:hover>ul.dp-menu li:hover>ul,
.main-menu>ul>li:hover>.mega-menu-home.dp-menu li:hover>ul {
    opacity: 1;
    pointer-events: all;
    inset-inline-start: 100%;
}

.main-menu li {
    position: relative;
    list-style-type: none;
}

.main-menu li a {
    display: flex;
    align-items: center;
    font-family: var(--font_mona);
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    color: var(--white);
    padding: 37px 0px;
    text-transform: capitalize;
}

.dark .main-menu li a {
    color: var(--black);
}

.main-menu ul.dp-menu {
    background-color: var(--white);
    padding: 18px 0px;
    width: 250px;
    position: absolute;
    inset-inline-start: 10px;
    opacity: 0;
    pointer-events: none;
    z-index: 10;
    transition: all 0.5s;
}

.main-menu ul.dp-menu ul {
    background-color: var(--white);
    padding: 18px 0px;
    width: 250px;
    position: absolute;
    inset-inline-start: calc(100% + 10px);
    top: 0;
    opacity: 0;
    pointer-events: none;
    z-index: 10;
    transition: all 0.5s;
}

.main-menu ul.dp-menu li {
    position: relative;
    padding: 0 25px;
}

.main-menu ul.dp-menu li:hover>a {
    color: var(--black);
    background-color: transparent;
}

.main-menu ul.dp-menu li:hover>ul {
    opacity: 1;
    transform: none !important;
    pointer-events: all;
}

.main-menu ul.dp-menu li a {
    font-family: var(--font_mona);
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: capitalize;
    color: var(--primary);
    padding: 10px 0;
    background-color: transparent;
    border-radius: 8px;
    text-transform: capitalize;
}

.main-menu ul.dp-menu li a:hover {
    letter-spacing: 0.5px;
}

.main-menu ul.dp-menu li a:after {
    transform: rotate(-90deg);
    margin-left: auto;
}

.main-menu .has-mega-menu {
    position: static;
}

.main-menu li.menu-item-has-children>a:after {
    content: "\f107";
    font-family: var(--font_awesome);
    margin-inline-start: 4px;
    font-weight: 600;
    font-size: 14px;
}

.main-menu .mega-menu {
    background-color: var(--black);
    padding: 30px 50px;
    width: 100%;
    position: absolute;
    left: 10px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 50px;
    justify-content: center;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    z-index: 10;
    transition: all 0.5s;
}

@media only screen and (max-width: 1399px) {
    .main-menu .mega-menu {
        column-gap: 30px;
    }
}

.main-menu .mega-menu li:has(ul)>a:after {
    content: "";
}

.main-menu .mega-menu li a {
    font-size: 16px;
    font-weight: 500;
    color: #999999;
    height: 40px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--black);
    border-radius: 8px;
    overflow: hidden;
}

.main-menu .mega-menu li a:hover {
    color: var(--white);
    background: #2C2C2F;
}

.main-menu .mega-menu .title {
    font-weight: 600;
    color: var(--white);
    
    border-bottom: 1px solid #333337;
    padding-bottom: 20px;
    margin-bottom: 20px;
    pointer-events: none;
    border-radius: 0;
}

.main-menu .mega-style-2 {
    padding: 0 15%;
    gap: 0;
    grid-template-columns: repeat(2, 1fr);
}

.main-menu .mega-style-2 .title {
    height: 70px;
    padding-bottom: 0;
    margin-bottom: 0;
    position: relative;
    overflow: visible;
    padding-left: 30px;
}

.main-menu .mega-style-2 .title:after {
    position: absolute;
    content: "";
    width: 5000px;
    height: 1px;
    background-color: #333337;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
}

.main-menu .mega-style-2>li:not(:first-child) {
    border-left: 1px solid #333337;
}

.main-menu .mega-style-2 ul {
    column-count: 2;
    position: relative;
    padding: 20px 0;
}

.main-menu .mega-style-2 ul:after {
    position: absolute;
    content: "";
    width: 1px;
    height: 700px;
    background-color: #333337;
    top: 0;
    left: 50%;
    z-index: 1;
}

.main-menu .mega-style-2 ul li a {
    padding-left: 30px;
}

.main-menu .mega-style-3 {
    padding: 0 0 0 20px;
    gap: 0;
    grid-template-columns: repeat(3, 1fr);
}

.main-menu .mega-style-3 .title {
    height: 70px;
    padding-bottom: 0;
    margin-bottom: 0;
    position: relative;
    overflow: visible;
    padding-left: 30px;
}

.main-menu .mega-style-3 .title:after {
    position: absolute;
    content: "";
    width: 5000px;
    height: 1px;
    background-color: #333337;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
}

.main-menu .mega-style-3>li:not(:first-child) {
    border-left: 1px solid #333337;
}

.main-menu .mega-style-3>li:last-child {
    border: none;
    width: 36vw;
}

@media only screen and (max-width: 1399px) {
    .main-menu .mega-style-3>li:last-child {
        width: 32vw;
    }
}

.main-menu .mega-style-3 ul {
    column-count: 2;
    position: relative;
    padding: 20px 0;
    column-gap: 0;
}

.main-menu .mega-style-3 ul:after {
    position: absolute;
    content: "";
    width: 1px;
    height: 700px;
    background-color: #333337;
    top: 0;
    left: 50%;
    z-index: 1;
}

.main-menu .mega-style-3 ul li {
    margin: 0 10px;
}

.main-menu .mega-style-3 ul li a {
    padding-left: 20px;
}

.main-menu .mega-grid-6 {
    grid-template-columns: repeat(6, 1fr);
}

.main-menu .mega-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 60px;
}

.main-menu .list-3-column ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 50px;
}

@media only screen and (max-width: 1399px) {
    .main-menu .list-3-column ul {
        column-gap: 30px;
    }
}

.main-menu .span-first-item ul li:first-child {
    grid-column: 1/-1;
    column-span: all;
}

.main-menu .new {
    font-size: 10px;
    font-weight: 600;
    background: #FFA38E;
    color: var(--black);
    padding: 3px 7px;
    line-height: 1;
    border-radius: 2px;
    margin-inline-start: 8px;
    display: inline-block;
}

.main-menu .mega-menu-home {
    background-color: var(--white);
    position: absolute;
    inset-inline-start: 10px;
    top: 100%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    z-index: 10;
    transition: all 0.5s;
    padding: 10px;
}

@media only screen and (max-width: 1199px) {
    .main-menu .mega-menu-home {
        display: none !important;
    }
}

.main-menu .mega-menu-home__left {
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 200px;
    flex: 0 0 auto;
    width: 50%;
}

@media only screen and (max-width: 1399px) {
    .main-menu .mega-menu-home__left {
        gap: 30px;
        justify-content: space-between;
    }
}

.main-menu .mega-menu-home__column {
    position: relative;
}

.main-menu .mega-menu-home__column:first-child:after {
    content: "";
    position: absolute;
    right: -100px;
    top: 10px;
    bottom: 10px;
    width: 1px;
    background-color: var(--border);
}

@media only screen and (max-width: 1399px) {
    .main-menu .mega-menu-home__column:first-child:after {
        right: -87.5px;
    }
}

.main-menu .mega-menu-home__column ul {
    display: flex;
    flex-direction: column;
}

.main-menu .mega-menu-home__column ul li a {
    font-family: var(--font_mona);
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: capitalize;
    color: var(--primary);
    padding: 12.5px 0;
    display: flex;
    align-items: center;
    background: transparent;
    border-radius: 0;
}

.main-menu .mega-menu-home__column ul li a:hover {
    color: var(--secondary);
    letter-spacing: 0.5px;
}

.main-menu .mega-menu-home .badge-new {
    font-family: var(--font_mona);
    font-weight: 500;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: capitalize;
    background: var(--primary);
    color: var(--white);
    padding: 3.05px 6.5px;
    border-radius: 2px;
    margin-left: 12px;
}

.main-menu .mega-menu-home .badge-new2 {
    background: #07875A;
    margin-left: 10px;
}

.main-menu .mega-menu-home .badge-hot {
    font-family: var(--font_mona);
    font-weight: 500;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: capitalize;
    background: var(--secondary);
    color: var(--white);
    padding: 3.05px 6.5px;
    border-radius: 2px;
    margin-left: 12px;
}

.main-menu .mega-menu-home .badge-hot2 {
    background: #C08552;
    margin-left: 10px;
}

.main-menu .mega-menu-home__banner {
    background-color: var(--primary);
    padding: 10px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 0 0 auto;
    width: 39%;
    gap: 30px;
    border-radius: 6px;
    overflow: hidden;
}

.main-menu .mega-menu-home__banner-shape {
    position: absolute;
    bottom: 20px;
    right: 10px;
    z-index: 1;
}

.main-menu .mega-menu-home__banner .banner-content {
    order: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    z-index: 2;
    width: 100%;
}

.main-menu .mega-menu-home__banner .banner-content .text {
    text-align: left;
    margin-bottom: 30px;
    color: var(--white);
    font-family: var(--font_mona);
    font-weight: 500;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: -3%;
}

.main-menu .mega-menu-home__banner .banner-content .text span {
    font-family: var(--font_playfair);
    font-weight: 400;
    font-style: Italic;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: -3%;
    color: var(--secondary);
}

.main-menu .mega-menu-home__banner .banner-content .buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
    width: 100%;
}

.main-menu .mega-menu-home__banner .banner-content .buttons a {
    display: inline-block;
    padding: 0;
}

.main-menu .mega-menu-home__banner .banner-content .buttons a img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
}

.main-menu .mega-menu-home__banner .banner-image {
    order: 1;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 20px 0;
    border-radius: 6px;
    background: #0E392F;
}

.main-menu .mega-menu-home__banner .banner-image img {
    max-width: 200px;
    display: block;
}

@media only screen and (max-width: 1199px) {
    .main-menu-2 {
        display: none;
    }
}

.main-menu-2 li {
    display: inline-block;
    padding: 0 10px;
}

.main-menu-2 li a {
    display: block;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.5;
    color: var(--white);
    padding: 10px;
    text-transform: capitalize;
}

.main-menu-2 li a:hover {
    color: var(--primary);
}

@media only screen and (max-width: 1399px) {
    .main-menu-2 li a {
        padding: 5px 0;
    }
}

.main-menu-3 li {
    display: inline-block;
    margin-right: 45px;
}

@media only screen and (max-width: 1199px) {
    .main-menu-3 li {
        margin-right: 25px;
    }
}

.main-menu-3 li:last-child {
    margin-right: 0;
}

.main-menu-3 li a {
    color: var(--white);
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
}

.main-menu-3 li a:hover {
    color: var(--primary);
}

.main-menu-4 li {
    display: inline-block;
    margin-right: 50px;
}

.main-menu-4 li a {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--white);
    
}

.main-menu-4 li a:hover {
    color: var(--primary);
}

.mega-menu-thumb {
    width: 108%;
    aspect-ratio: 100/83;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}

@media only screen and (max-width: 1199px) {
    .mega-menu-thumb {
        width: 100%;
        height: 100%;
    }
}

.mega-menu-thumb:after {
    position: absolute;
    content: "";
    width: 76%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(270deg, rgba(28, 29, 32, 0) 0%, #1C1D20 100%);
}

.mega-menu-thumb .laptop-view {
    width: 70%;
    aspect-ratio: 100/114;
    object-fit: cover;
    object-position: center top;
    position: absolute;
    right: 70px;
    bottom: 0;
}

.mega-menu-counter__item {
    text-align: center;
    display: inline-block;
    margin-top: 35%;
    margin-left: 17%;
    position: relative;
}

@media only screen and (max-width: 1199px) {
    .mega-menu-counter__item {
        margin: 30px auto 50px;
    }
}

.mega-menu-counter__text p {
    font-size: 30px;
    line-height: 28px;
    color: var(--white);
    font-weight: 500;
}

.mega-menu-counter__number {
    font-size: 150px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 24px;
    color: var(--white);
    background: linear-gradient(136deg, #9479FF 0%, #FFA6D6 47.92%, #FFFCE3 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media only screen and (max-width: 1199px) {
    .menu-with-number {
        display: none;
    }
}

.menu-with-number li {
    display: inline-block;
}

.menu-with-number li a {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.5;
    color: var(--white);
    padding: 34px 40px;
    display: inline-block;
    
}

.menu-with-number li a:hover span {
    color: var(--white);
}

.menu-with-number li a:hover span::before {
    background-color: var(--white);
}

.menu-with-number li a.active span {
    color: var(--white);
}

.menu-with-number li a.active span::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 1px;
    right: 20px;
    top: 50%;
    background-color: var(--white);
}

.menu-with-number li a span {
    display: block;
    font-weight: 500;
    font-size: 12px;
    line-height: 10px;
    text-align: right;
    color: #999999;
    position: relative;
    transition: all 0.5s;
}

.menu-with-number li a span::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 1px;
    right: 20px;
    top: 50%;
    transition: all 0.5s;
    background-color: var(--black-6);
}

.sidebar-menu li {
    display: block;
    padding-bottom: 15px;
}

@media only screen and (max-width: 1919px) {
    .sidebar-menu li {
        padding-bottom: 10px;
    }
}

.sidebar-menu li a {
    display: block;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.5;
    color: var(--white);
    padding: 10px 0;
    
}

.sidebar-menu li a:hover,
.sidebar-menu li a.active {
    color: var(--primary);
}

@media only screen and (max-width: 1399px) {
    .sidebar-menu li a {
        padding: 5px 0;
    }
}

/* mean menu customize */

.offcanvas__menu-wrapper.mean-container .mean-nav>ul {
    padding: 0;
    margin: 0;
    width: 100%;
    list-style-type: none;
    display: block !important;
}

.offcanvas__menu-wrapper.mean-container .mean-nav>ul>li:last-child>a {
    border-bottom: 1px solid var(--black-4);
}

.offcanvas__menu-wrapper.mean-container .mean-nav {
    background: none;
    margin-top: 0;
}

.offcanvas__menu-wrapper.mean-container .mean-nav .new {
    font-size: 10px;
    font-weight: 600;
    background: #FFA38E;
    color: var(--black);
    padding: 3px 7px;
    line-height: 1;
    display: flex;
    align-items: center;
    border-radius: 2px;
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li a {
    width: 100%;
    padding: 15px 0;
    padding-inline-start: 15px;
    font-weight: 400;
    font-size: 22px;
    line-height: 1;
    color: var(--white);
    text-transform: capitalize;
    border-top: 1px solid var(--black-4);
    display: flex;
    gap: 8px;
    justify-content: flex-start;
    align-items: center;
    outline: none;
    transform: translateY(var(--y)) translateZ(0);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-sizing: border-box;
}

.dark .offcanvas__menu-wrapper.mean-container .mean-nav ul li a {
    color: var(--black);
    border-color: var(--white-4);
}

@media only screen and (max-width: 767px) {
    .offcanvas__menu-wrapper.mean-container .mean-nav ul li a {
        font-size: 20px;
    }
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li a.mean-expand {
    width: 54px;
    height: 54px;
    justify-content: center;
    font-weight: 300;
    border: none !important;
}

.dark .offcanvas__menu-wrapper.mean-container .mean-nav ul li a.mean-expand {
    background-color: var(--white-4);
}

.dir-rtl .offcanvas__menu-wrapper.mean-container .mean-nav ul li a.mean-expand {
    right: 275px;
}

@media only screen and (max-width: 767px) {
    .offcanvas__menu-wrapper.mean-container .mean-nav ul li a.mean-expand {
        height: 50px;
    }
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li a.mean-expand:hover {
    background: var(--secondary);
    opacity: 1;
}

.dark .offcanvas__menu-wrapper.mean-container .mean-nav ul li a.mean-expand:hover {
    background-color: var(--white-4);
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li li:first-child {
    border-top: 1px solid var(--black-4);
}

.dark .offcanvas__menu-wrapper.mean-container .mean-nav ul li li:first-child {
    border-color: var(--white-4);
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li li a {
    font-size: 20px;
    text-transform: capitalize;
    border-top: none !important;
    padding: 12px 0;
    padding-inline-start: 30px;
}

@media only screen and (max-width: 767px) {
    .offcanvas__menu-wrapper.mean-container .mean-nav ul li li a {
        font-size: 18px;
    }
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li li a.mean-expand {
    height: 58px;
}

@media only screen and (max-width: 991px) {
    .offcanvas__menu-wrapper.mean-container .mean-nav ul li li a.mean-expand {
        height: 25px;
    }
}

@media only screen and (max-width: 767px) {
    .offcanvas__menu-wrapper.mean-container .mean-nav ul li li a.mean-expand {
        height: 22px;
    }
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li li li:last-child {
    border-bottom: 1px solid var(--black-4);
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li li li a {
    padding-left: 40px;
}

.offcanvas__menu-wrapper.mean-container .mean-bar {
    padding: 0;
    background: none;
    max-height: auto;
    overflow-y: scroll;
}

.offcanvas__menu-wrapper.mean-container .mean-bar::-webkit-scrollbar {
    width: 0;
}

.offcanvas__menu-wrapper.mean-container a.meanmenu-reveal {
    display: none !important;
}

.offcanvas__menu-wrapper.mean-container .mean-nav .mega-menu-home {
    display: none !important;
}

.light .main-menu li a:hover {
    color: var(--primary);
}

.light .main-menu-2 li a {
    color: var(--black);
}

.light .main-menu-2 li a:hover {
    color: var(--primary);
}

.light .main-menu-3 li a {
    color: var(--black);
}

.light .main-menu-3 li a:hover {
    color: var(--primary);
}

.light .sidebar-menu li a {
    color: var(--black);
}

.light .sidebar-menu li a:hover {
    color: var(--primary);
}

.light .menu-with-number li a {
    color: var(--black);
}

.light .menu-with-number li a:hover span {
    color: var(--black);
}

.light .menu-with-number li a:hover span::before {
    background-color: var(--black);
}

.light .menu-with-number li a span {
    color: var(--black-9);
}

.light .menu-with-number li a span::before {
    background-color: var(--black-9);
}

.light .menu-with-number li a.active span {
    color: var(--black);
}

.light .menu-with-number li a.active span::before {
    background-color: var(--black);
}

.header-top {
    background-color: #1A453B;
    padding: 8.8px 0;
    color: var(--white);
    font-size: 14px;
    font-weight: 400;
}

.header-top__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

@media only screen and (max-width: 991px) {
    .header-top__inner {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

.header-top__left {
    display: flex;
    align-items: center;
    gap: 30px;
}

@media (max-width: 575px) {
    .header-top__left {
        flex-direction: column;
        gap: 5px;
    }
}

.header-top__left-item a {
    font-family: var(--font_mona);
    font-weight: 400;
    font-size: 14px;
    line-height: 160%;
    letter-spacing: 0%;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 4.25px;
    transition: color 0.3s ease;
}

.header-top__left-item a svg path {
    transition: all 0.3s ease;
}

.header-top__left-item a i {
    font-size: 14px;
    opacity: 0.8;
}

.header-top__left-item a:hover {
    color: var(--secondary);
}

.header-top__left-item a:hover svg path {
    fill: var(--secondary);
}

.header-top__offer {
    margin: 0;
    font-family: var(--font_mona);
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: capitalize;
    color: var(--white);
}

.header-top__offer span {
    color: var(--secondary);
    font-weight: 500;
}

.header-top__right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-top__right .language {
    position: relative;
}

.header-top__right .language:before {
    position: absolute;
    content: "";
    width: 1px;
    height: 16px;
    background: rgb(58, 95, 86);
    top: 50%;
    right: -10.5px;
    transform: translateY(-50%);
}

@media only screen and (max-width: 991px) {
    .header-top__right .language:before {
        display: none;
    }
}

.header-top__right .language__current {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 4.25px;
    transition: color 0.3s ease;
    cursor: pointer;
    font-family: var(--font_mona);
    font-weight: 400;
    font-size: 14px;
    line-height: 160%;
    letter-spacing: 0%;
}

.header-top__right .language__current i {
    font-size: 14px;
}

.header-top__right .language__current:hover {
    color: var(--secondary);
}

.header-top__right .language:hover .language__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-top__right .language__dropdown {
    position: absolute;
    top: 30px;
    left: 0;
    background: var(--white);
    min-width: 120px;
    padding: 10px 0;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 10;
    margin: 0;
    list-style: none;
}

.header-top__right .language__dropdown li a {
    display: block;
    padding: 5px 15px;
    color: var(--black);
    font-size: 14px;
    transition: background 0.3s ease, color 0.3s ease;
}

.header-top__right .language__dropdown li a:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--secondary);
}

.header-top__divider {
    color: rgba(255, 255, 255, 0.3);
}

.header-top__arabic {
    color: var(--white);
    font-family: var(--font_mona);
    font-weight: 400;
    font-size: 14px;
    line-height: 160%;
    letter-spacing: 0%;
    transition: color 0.3s ease;
}

.header-top__arabic:hover {
    color: var(--secondary);
}

.footer1 {
    position: relative;
    background-color: #131315;
    color: var(--white);
    overflow: hidden;
    margin-top: -4px;
    font-family: "Outfit", sans-serif;
}

.footer1__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.05;
}

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

.footer1__top {
    padding: 80px 0 65px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 1;
}

@media only screen and (max-width: 991px) {
    .footer1__top {
        padding: 70px 0 40px;
    }
}

.footer1__title {
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.2;
    letter-spacing: -1.2px;
    color: var(--white);
    margin-bottom: 0;
}

@media only screen and (max-width: 1399px) {
    .footer1__title {
        font-size: 36px;
    }
}

@media only screen and (max-width: 991px) {
    .footer1__title {
        font-size: 30px;
    }
}

.footer1__title span {
    color: #0408e352;
    font-style: italic;
    font-family: "Playfair Display", serif;
}

.footer1__newsletter-label {
    font-family: "Outfit", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0%;
    text-transform: capitalize;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.footer1__newsletter {
    position: relative;
    z-index: 2;
}

.footer1__newsletter .footer1__form {
    display: flex;
    align-items: center;
    gap: 15px;
}

@media (max-width: 575px) {
    .footer1__newsletter .footer1__form {
        flex-direction: column;
        align-items: stretch;
    }
}

.footer1__newsletter .footer1__input-wrap {
    position: relative;
    flex: 1;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 2px 5px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.03);
}

.footer1__newsletter .footer1__input-wrap:focus-within {
    border-color: #020d6e;
    box-shadow: 0 0 10px rgba(39, 42, 216, 0.2)
}

.footer1__newsletter .footer1__input-wrap input {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 16px;
    padding: 12px 45px 12px 20px;
    outline: none;
}

.footer1__newsletter .footer1__input-wrap input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

@media only screen and (max-width: 1399px) {
    .footer1__newsletter .footer1__input-wrap input {
        font-size: 14px;
    }

    .footer1__newsletter .footer1__input-wrap input::placeholder {
        font-size: 14px;
    }
}

.footer1__newsletter .footer1__input-wrap .icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
    font-size: 18px;
    pointer-events: none;
}

.footer1__newsletter .theme-btn {
    background: #0310c2;
    color: var(--white);
    border: 1px solid #1a04e3;
    border-radius: 30px;
    padding: 14px 28px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.footer1__newsletter .theme-btn .text {
    color: var(--white);
}

.footer1__newsletter .theme-btn .icon {
    color: var(--white);
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer1__newsletter .theme-btn:hover {
    background: var(--white);
    border-color: var(--white);
}

.footer1__newsletter .theme-btn:hover .text {
    color: #131315;
}

.footer1__newsletter .theme-btn:hover .icon {
    color: #131315;
    transform: translateX(3px);
}

.footer1__main {
    position: relative;
    z-index: 9;
    padding-top: 100px;
    padding-bottom: 70px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 76px;
}

@media only screen and (max-width: 1399px) {
    .footer1__main {
        gap: 30px;
    }
}

@media only screen and (max-width: 1199px) {
    .footer1__main {
        flex-wrap: wrap;
        gap: 23px;
    }
}

@media only screen and (max-width: 991px) {
    .footer1__main {
        flex-wrap: wrap;
        gap: 20px;
        padding-top: 40px;
        padding-bottom: 60px;
    }
}

@media only screen and (max-width: 767px) {
    .footer1__main {
        padding-top: 40px;
    }
}

.footer1__widget:first-child {
    max-width: 303px;
}

@media only screen and (max-width: 1199px) {
    .footer1__widget:first-child {
        max-width: 250px;
    }
}

@media only screen and (max-width: 991px) {
    .footer1__widget:first-child {
        max-width: 210px;
    }
}

@media only screen and (max-width: 767px) {
    .footer1__widget:first-child {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 575px) {
    .footer1__widget {
        width: 100%;
    }
}

.footer1__desc {
    font-family: "Outfit", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    max-width: 305px;
    margin-top: 25px;
    margin-bottom: 25px;
}

@media only screen and (max-width: 1399px) {
    .footer1__desc {
        font-size: 15px;
        margin-bottom: 20px;
        margin-top: 20px;
    }
}

.footer1__contact {
    position: relative;
    z-index: 9;
}

.footer1__contact-item {
    display: flex;
    align-items: center;
    gap: 8.25px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    font-family: "Outfit", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 160%;
    letter-spacing: 0%;
}

.footer1__contact-item i {
    color: #0310c2;
    font-size: 14px;
    width: 20px;
}

.footer1__contact-item a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer1__contact-item a:hover {
    color: #0310c2;
}

.footer1__widget-title {
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: 0%;
    text-transform: capitalize;
    color: var(--white);
    margin-bottom: 40px;
    position: relative;
}

.footer1__widget-title::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 20px;
    height: 2px;
    background: #0310c2;
}

@media only screen and (max-width: 1399px) {
    .footer1__widget-title {
        margin-bottom: 25px;
    }
}

@media only screen and (max-width: 767px) {
    .footer1__widget-title {
        margin-bottom: 15px;
    }
}

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

.footer1__links li {
    margin-bottom: 12px;
}

@media only screen and (max-width: 767px) {
    .footer1__links li {
        margin-bottom: 6px;
    }
}

.footer1__links li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: "Outfit", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 160%;
    letter-spacing: 0%;
}

.footer1__links li a:hover {
    color: #0310c2;
    padding-left: 5px;
}

.footer1__widget--app {
    position: relative;
    padding-left: 85px;
}

.footer1__widget--app::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 240px;
    background: rgba(255, 255, 255, 0.08);
}

@media only screen and (max-width: 1199px) {
    .footer1__widget--app::before {
        display: none;
    }
}

@media only screen and (max-width: 1399px) {
    .footer1__widget--app {
        padding-left: 50px;
    }
}

@media only screen and (max-width: 1199px) {
    .footer1__widget--app {
        padding-left: 0;
        border-left: none;
    }
}

.footer1__bottom {
    position: relative;
    z-index: 9;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

@media only screen and (max-width: 767px) {
    .footer1__bottom {
        flex-wrap: wrap;
        gap: 5px;
        justify-content: center;
        text-align: center;
        padding: 15px 0;
    }
}

.footer1__bottom .copyright {
    font-family: "Outfit", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 160%;
    letter-spacing: 0%;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.6);
}

.footer1__bottom .copyright span {
    color: #0310c2;
    font-weight: 600;
}

.footer1__social {
    display: flex;
    justify-content: flex-end;
    gap: 23px;
}

@media only screen and (max-width: 991px) {
    .footer1__social {
        justify-content: center;
    }
}

@media only screen and (max-width: 767px) {
    .footer1__social {
        flex-wrap: wrap;
        gap: 15px;
        align-items: center;
    }
}

.footer1__social a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-family: "Outfit", sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 120%;
    letter-spacing: 0%;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.footer1__social a i {
    color: #0310c2;
    transition: all 0.3s ease;
}

.footer1__social a:hover {
    color: #0310c2;
    transform: translateY(-2px);
}

.footer1__social a:hover i {
    color: var(--white);
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.preloader__noise {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 60;
    opacity: 0.05;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    mix-blend-mode: overlay;
}

.preloader__inner {
    position: relative;
    z-index: 100;
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.preloader {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.preloader__images {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.preloader__img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    opacity: 0;
    transform: scale(1.05);

    filter: blur(8px) brightness(0.3);

    will-change: transform, opacity;
}

.preloader__content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 600px;
    padding: 0 30px;
}

.preloader__category {
    font-family: var(--font_teko);
    font-weight: 700;
    font-size: 120px;
    line-height: 1;
    color: var(--white);
    
    letter-spacing: 10px;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
}

@media only screen and (max-width: 991px) {
    .preloader__category {
        font-size: 80px;
    }
}

@media (max-width: 575px) {
    .preloader__category {
        font-size: 50px;
        letter-spacing: 5px;
    }
}

.preloader__progress-wrap {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.preloader__progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--theme);
    transform: scaleX(0);
    transform-origin: left;
}

.preloader__panels {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    z-index: 50;
}

.preloader__panel {
    width: 100%;
    height: 50%;
    background-color: #0c0d11;
}

.preloader__panel--top {
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.05);
}

.preloader__panel--bottom {
    border-top: 0.5px solid rgba(255, 255, 255, 0.05);
}

.scroll__down {
    display: flex;
    gap: 20px;
    align-items: center;
}

.scroll__down p {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.9;
    
    color: var(--white);
}

.scroll__down span {
    width: 66px;
    height: 106px;
    border: 1px solid var(--black-6);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 89px;
}

.scroll__down span i {
    color: var(--white);
}

.scroll__down-wrapper {
    height: 425px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media only screen and (max-width: 1399px) {
    .scroll__down-wrapper {
        height: 380px;
    }
}

@media only screen and (max-width: 1199px) {
    .scroll__down-wrapper {
        height: 350px;
    }
}

@media only screen and (max-width: 767px) {
    .scroll__down-wrapper {
        height: auto;
        padding: 40px 0;
    }
}

.scroll-top {
    width: 50px;
    height: 50px;
    position: fixed;
    right: 15px;
    bottom: 0px;
    z-index: 9999;
    background: var(--white);
    border-radius: 100px;
    mix-blend-mode: exclusion;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
}

.scroll-top.showed {
    opacity: 1;
    visibility: visible;
    bottom: 20px;
}

.go-top-writer {
    width: 105px;
    font-size: 16px;
    cursor: pointer;
    text-align: left;
    color: var(--white);
    background-image: url(../images/writer/go-top.webp);
    background-position: right center;
    background-repeat: no-repeat;
    right: 16%;
    visibility: hidden;
    opacity: 0;
    z-index: 9;
    transition: all 0.5s;
}

.dark .go-top-writer {
    color: var(--black);
    background-image: url(../images/writer/go-top-light.webp);
}

.go-top-writer:hover {
    color: var(--primary);
}

.go-top-writer.showed {
    opacity: 1;
    visibility: visible;
    bottom: 20px;
}

@media only screen and (max-width: 767px) {
    .go-top-writer br {
        display: block;
    }
}

.progress-wrap {
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    border-radius: 50%;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
    .progress-wrap {
        right: 20px;
        bottom: 20px;
        height: 44px;
        width: 44px;
    }
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.progress-wrap:hover {
    transform: translateY(-5px) scale(1.1);
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(216, 120, 39, 0.25);
}

.progress-wrap:hover::after {
    color: var(--secondary);
    transform: translate(-50%, -50%) translateY(-2px);
}

.progress-wrap:hover svg.progress-circle path {
    stroke-opacity: 1;
}

.progress-wrap::after {
    position: absolute;
    content: "\f062";
    font: var(--fa-font-solid);
    text-align: center;
    line-height: 1;
    font-size: 18px;
    color: var(--primary);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    transition: all 0.3s ease;
}

.progress-wrap svg.progress-circle path {
    fill: none;
    stroke: var(--primary);
    stroke-width: 4;
    box-sizing: border-box;
    transition: all 0.2s linear;
    stroke-opacity: 0.6;
}

.light .scroll__down p {
    color: var(--black);
}

.light .scroll__down span {
    border-color: var(--white);
}

.light .scroll__down span i {
    color: var(--black);
}

.light.go-top-writer {
    color: var(--black);
    background-color: transparent;
    background-image: url(../images/writer/go-top-light.webp);
}

.light .progress-wrap {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
}

.light .progress-wrap::after {
    color: var(--primary);
}

.btn-main {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 6px 6px 6px 20px;
    background-color: transparent;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: border-color 0.4s, box-shadow 0.4s, transform 0.3s;
}

.btn-main::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary);
    transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
    z-index: -1;
}

.btn-main:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.btn-main:hover::before {
    top: 0;
}

.btn-main:hover .text {
    color: var(--white);
}

.btn-main:hover .icon {
    background-color: var(--white);
    color: var(--primary);
}

.btn-main:hover .icon i,
.btn-main:hover .icon svg {
    transform: rotate(0deg) translateX(3px);
}

.btn-main .text {
    font-family: var(--font_mona);
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    white-space: nowrap;
    transition: color 0.4s;
}

.btn-main .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 37px;
    height: 37px;
    background-color: var(--secondary);
    color: var(--white);
    border-radius: 6px;
    font-size: 16px;
    transition: background-color 0.4s, color 0.4s;
    flex-shrink: 0;
}

.btn-main .icon i,
.btn-main .icon svg {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: rotate(-45deg);
}

.btn-main--full {
    width: 100%;
    gap: 0;
}

.btn-main--dark {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-main--dark .text {
    color: var(--white);
}

.btn-main--dark::before {
    background-color: var(--secondary);
}

.btn-main--dark:hover {
    border-color: var(--secondary);
}

.btn-main-primary,
.btn-main-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0px;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.btn-main-primary .text,
.btn-main-secondary .text {
    font-family: var(--font_teko);
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.5px;
    padding: 18px 36.4px 14px;
    color: var(--white);
    background-color: var(--theme);
    border-radius: 100px;
    
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.btn-main-primary .text::after,
.btn-main-secondary .text::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.btn-main-primary .icon,
.btn-main-secondary .icon {
    width: 56px;
    height: 56px;
    background-color: var(--white);
    color: var(--black);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transform: rotate(-45deg);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
    margin-left: -10px;
}

.btn-main-primary .icon i,
.btn-main-secondary .icon i {
    transition: transform 0.4s ease;
}

.btn-main-primary:hover,
.btn-main-secondary:hover {
    transform: translateY(-3px);
}

.btn-main-primary:hover .text,
.btn-main-secondary:hover .text {
    background-color: var(--white);
    color: var(--black);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.btn-main-primary:hover .text::after,
.btn-main-secondary:hover .text::after {
    left: 100%;
}

.btn-main-primary:hover .icon,
.btn-main-secondary:hover .icon {
    background-color: var(--theme);
    color: var(--black);
    transform: rotate(0deg) scale(1.1) translateX(5px);
    box-shadow: 0 10px 25px rgba(182, 227, 4, 0.4);
}

.btn-main-secondary .text {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 18px 36.4px 14px;
    transition: all 0.4s ease;
}

.btn-main-secondary .text::after {
    display: none;
}

.btn-main-secondary .icon {
    background-color: var(--theme);
    border: 1px solid transparent;
    color: var(--black);
    margin-left: -10px;
}

.btn-main-secondary:hover .text {
    background-color: var(--theme);
    border-color: var(--theme);
    color: var(--black);
    box-shadow: 0 15px 30px rgba(182, 227, 4, 0.3);
}

.btn-main-secondary:hover .icon {
    background-color: var(--white);
    border-color: var(--white);
    color: var(--black);
    transform: rotate(0deg) scale(1.1) translateX(5px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/*----------------------------------------*/

/* section-top css (global)               */

/*----------------------------------------*/

.section-top {
    text-align: center;
    margin-bottom: 64px;
}

.section-top.text-start {
    text-align: left;
}

.section-top.text-start .section-top__subtitle {
    justify-content: flex-start;
}

@media only screen and (max-width: 991px) {
    .section-top {
        margin-bottom: 40px;
    }
}

@media (max-width: 575px) {
    .section-top {
        margin-bottom: 30px;
    }
}

.section-top__subtitle {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font_kanit);
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0;
    
    color: var(--white);
    margin-bottom: 24px;
}

.section-top__subtitle::before {
    position: absolute;
    content: "";
    bottom: -8px;
    left: 0%;
    width: 100%;
    height: 1px;
    background-color: var(--border);
}

.section-top__subtitle::after {
    position: absolute;
    content: "";
    bottom: -8px;
    left: 0%;
    width: 380px;
    height: 1px;
    background-color: var(--theme);
}

.section-top__subtitle--left {
    justify-content: flex-start;
}

.section-top__subtitle--center {
    justify-content: center;
    text-align: center;
}

.section-top__subtitle--center::after {
    left: 50%;
    transform: translateX(-50%);
}

@media only screen and (max-width: 991px) {
    .section-top__subtitle {
        font-size: 20px;
        line-height: 28px;
    }
}

@media (max-width: 575px) {
    .section-top__subtitle {
        font-size: 14px;
        line-height: 20px;
    }
}

.section-top__title {
    font-family: var(--font_teko);
    font-weight: 600;
    font-size: 72px;
    line-height: 1;
    letter-spacing: 0;
    
    color: var(--white);
    margin: 0;
}

@media only screen and (max-width: 1399px) {
    .section-top__title {
        font-size: 80px;
        line-height: 80px;
    }
}

@media only screen and (max-width: 1199px) {
    .section-top__title {
        font-size: 70px;
        line-height: 70px;
    }
}

@media only screen and (max-width: 991px) {
    .section-top__title {
        font-size: 50px;
        line-height: 50px;
    }
}

@media (max-width: 575px) {
    .section-top__title {
        font-size: 40px;
        line-height: 40px;
    }
}

.section-top__title span {
    color: var(--theme);
}

body {
    cursor: none;
}

@media only screen and (max-width: 1024px) {
    body {
        cursor: auto;
    }
}

.mouse-follower {
    z-index: 99999;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
}

@media only screen and (max-width: 1024px) {
    .mouse-follower {
        display: none !important;
    }
}

.mouse-follower span {
    z-index: 99999;
    opacity: 1;
    position: fixed;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease, opacity 0.3s ease;
    will-change: transform;
}

.mouse-follower .cursor-outline {
    height: 40px;
    width: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), height 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.3s ease;
}

.mouse-follower .cursor-arrow {
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme);
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -50%) rotate(45deg);
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mouse-follower.arrow-mode .cursor-dot {
    opacity: 0;
    visibility: hidden;
}

.mouse-follower.arrow-mode .cursor-outline {
    border-color: var(--theme);
    border-width: 2px;
    background: rgba(182, 227, 4, 0.1);
}

.mouse-follower.arrow-mode .cursor-arrow {
    opacity: 1;
    visibility: visible;
}

.mouse-follower.link-hover .cursor-outline {
    height: 60px;
    width: 60px;
    border-color: var(--theme);
    background: rgba(182, 227, 4, 0.05);
}

.mouse-follower.link-hover .cursor-dot {
    scale: 1.5;
}

.mouse-follower.link-hover .cursor-arrow {
    scale: 1.2;
    color: #fff;
}

.mouse-follower.highlight-cursor-head .cursor-outline {
    height: 0;
    width: 0;
}

.mouse-follower.highlight-cursor-head .cursor-dot {
    height: 120px;
    width: 120px;
    background: #fff;
    mix-blend-mode: difference;
}

.mouse-follower.highlight-cursor-para .cursor-outline {
    height: 0;
    width: 0;
}

.mouse-follower.highlight-cursor-para .cursor-dot {
    height: 80px;
    width: 80px;
    background: #fff;
    mix-blend-mode: difference;
}

.mouse-follower.hide-cursor {
    opacity: 0;
    visibility: hidden;
}

/* ### GSAP ANIMATION CLASSES ### */

.char-item {
    display: inline-block;
    will-change: transform, opacity;
    transform-origin: center bottom;
    perspective: 1000px;
}

.word-anim {
    overflow: hidden;
}

.reveal-item {
    opacity: 0;
    transform: translateY(30px);
}

.projects__item img,
.solutions__main-thumb img,
.contact__shape img {
    will-change: transform;
    transition: none !important;
    /* Disable CSS transitions when GSAP is active */
}

#smooth-content {
    overflow: visible !important;
    width: 100%;
}

.parallax-wrap {
    display: inline-block;
    position: relative;
    will-change: transform;
}

/* ### BACKGROUND ANIMATION CSS ### */

.bg-noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.05;
    pointer-events: none;
    z-index: -1;
    mix-blend-mode: overlay;
}

.bg-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;

    background:
        radial-gradient(circle at 15% 20%,
            rgba(18, 58, 143, 0.25) 0%,
            transparent 35%),

        radial-gradient(circle at 85% 80%,
            rgba(255, 255, 255, 0.05) 0%,
            transparent 30%),

        radial-gradient(circle at 50% 50%,
            rgba(4, 12, 85, 0.20) 0%,
            transparent 45%),

        linear-gradient(135deg,
            #02040d 0%,
            #06112b 25%,
            #0a1b45 50%,
            #06112b 75%,
            #02040d 100%);
}

.bg-blobs::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.03) 1px,
            transparent 1px);

    background-size: 60px 60px;
    opacity: 0.5;
}

.bg-lines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    pointer-events: none;
    opacity: 0.25;
    z-index: 1;
}

.bg-line {
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom,
            transparent,
            rgba(204, 153, 51, 0.12),
            transparent);
}

.bg-line__droplet {
    background: linear-gradient(to bottom,
            transparent,
            #Cc9933);

    box-shadow:
        0 0 15px rgba(204, 153, 51, .7),
        0 0 30px rgba(204, 153, 51, .4);
}

/* .bg-line {
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.05), transparent);
    position: relative;
    overflow: hidden;
} */

/* .bg-line__droplet {
    position: absolute;
    top: -150px;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, transparent, var(--theme));
    box-shadow: 0 0 10px var(--theme);
} */

/* ### PROJECTS CSS ### */

.projects {
    background-color: var(--black);
    position: relative;
    z-index: 1;
    overflow: visible;
}

.projects__header {
    margin-bottom: 60px !important;
}

.projects__studio-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.projects__studio-tag .line {
    height: 1px;
    background-color: var(--white);
    flex: 1;
    opacity: 24%;
    max-width: 188px;
}

@media (max-width: 575px) {
    .projects__studio-tag .line {
        max-width: 50px;
    }
}

.projects__studio-tag .text {
    font-family: var(--font_instrument);
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    
    letter-spacing: 0.5px;
    color: var(--white);
    display: inline-flex;
    align-items: center;
}

.projects__studio-tag .text span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--white);
    display: inline-block;
    margin: 0 4px 0 10px;
}

@media (max-width: 575px) {
    .projects__studio-tag .text {
        font-size: 14px;
    }
}

.project-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 20px;
}

.project-list__item {
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.4s ease;
    z-index: 2;
}

.project-list__item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle 250px at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.04) 0%, transparent 80%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.project-list__item:hover {
    border-color: rgba(255, 255, 255, 0.25);
}

.project-list__item:hover::before {
    opacity: 1;
}

.project-list__item:hover .project-list__num {
    color: var(--theme);
    transform: translateX(5px);
}

.project-list__item:hover .project-list__title {
    color: var(--white);
    transform: translateX(15px);
}

.project-list__item:hover .project-list__sub {
    color: var(--white);
    transform: translateX(15px);
}

.project-list__item:hover .project-list__tag {
    border-color: var(--theme);
    color: var(--theme);
    background-color: rgba(255, 255, 255, 0.02);
}

.project-list__item:hover .project-list__year {
    color: var(--white);
}

.project-list__item:hover .project-list__arrow {
    background-color: var(--theme);
    border-color: var(--theme);
    color: var(--black);
    transform: rotate(-45deg) scale(1.05);
}

.project-list__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 0;
    text-decoration: none;
    position: relative;
    z-index: 1;
    width: 100%;
}

.project-list__num {
    font-family: var(--font_instrument);
    font-size: 20px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.3);
    margin-right: 50px;
    transition: color 0.4s ease, transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    display: inline-block;
}

@media only screen and (max-width: 1199px) {
    .project-list__num {
        margin-right: 30px;
    }
}

.project-list__thumb-mobile {
    display: none;
}

.project-list__details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-list__title {
    font-family: var(--font_teko);
    font-size: 56px;
    font-weight: 600;
    line-height: 1.1;
    
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 6px 0;
    transition: color 0.4s ease, transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

@media only screen and (max-width: 1399px) {
    .project-list__title {
        font-size: 48px;
    }
}

@media only screen and (max-width: 1199px) {
    .project-list__title {
        font-size: 40px;
    }
}

.project-list__sub {
    font-family: var(--font_instrument);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.45);
    transition: color 0.4s ease, transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.project-list__meta {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-right: 50px;
}

@media only screen and (max-width: 1199px) {
    .project-list__meta {
        gap: 20px;
        margin-right: 30px;
    }
}

.project-list__tags {
    display: flex;
    gap: 12px;
}

.project-list__tag {
    font-family: var(--font_inter);
    font-size: 11px;
    font-weight: 500;
    
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    padding: 6px 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    white-space: nowrap;
}

.project-list__year {
    font-family: var(--font_instrument);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.35);
    transition: color 0.4s ease;
}

.project-list__arrow {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    flex-shrink: 0;
}

.project-hover-reveal {
    position: fixed;
    top: 0;
    left: 0;
    width: 330px;
    height: 420px;
    pointer-events: none;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -50%) scale(0.6) rotate(-10deg);
    transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1), transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.4s;
    will-change: transform, opacity;
}

.project-hover-reveal__inner {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    background-color: rgba(26, 26, 26, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.project-hover-reveal__img-wrap {
    width: 100%;
    height: 100%;
    position: relative;
}

.project-hover-reveal__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 0.5s ease;
}

@media (max-width: 991px) {
    .project-hover-reveal {
        display: none !important;
    }

    .project-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 991px) and (max-width: 575px) {
    .project-list {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 991px) {
    .project-list__item {
        border: none;
        background-color: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 20px;
        overflow: hidden;
        padding: 24px;
        transition: background-color 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .project-list__item::before {
        display: none;
    }

    .project-list__item:hover {
        background-color: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.1);
        transform: translateY(-5px);
    }

    .project-list__item:hover .project-list__num {
        transform: none;
    }

    .project-list__item:hover .project-list__title {
        transform: none;
    }

    .project-list__item:hover .project-list__sub {
        transform: none;
    }

    .project-list__item:hover .project-list__arrow {
        transform: rotate(-45deg);
    }

    .project-list__link {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
        width: 100%;
    }

    .project-list__num {
        position: absolute;
        top: 24px;
        right: 24px;
        margin: 0;
        font-size: 16px;
        opacity: 0.5;
    }

    .project-list__thumb-mobile {
        display: block;
        width: 100%;
        border-radius: 7px;
        overflow: hidden;
        margin-bottom: 20px;
    }

    .project-list__thumb-mobile img {
        width: 100%;
        height: auto;
        display: block;
    }

    .project-list__details {
        margin-bottom: 20px;
        width: 100%;
    }

    .project-list__title {
        font-size: 32px;
        margin: 0 0 4px 0;
        color: var(--white);
    }

    .project-list__sub {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.5);
    }

    .project-list__meta {
        margin: 0;
        width: 100%;
        justify-content: space-between;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding-top: 16px;
    }

    .project-list__tags {
        gap: 8px;
    }

    .project-list__tag {
        padding: 4px 12px;
        font-size: 10px;
    }

    .project-list__year {
        font-size: 14px;
    }

    .project-list__arrow {
        display: none;
    }
}

/* ### SOLUTIONS CSS ### */

.solutions {
    background-color: var(--bg);
    color: var(--white);
    overflow: hidden;
}

.solutions .section-top__title {
    margin-left: 200px;
}

@media only screen and (max-width: 1399px) {
    .solutions .section-top__title {
        margin-left: 100px;
    }
}

@media only screen and (max-width: 1199px) {
    .solutions .section-top__title {
        margin-left: 0px;
    }
}

.solutions {
    /* --- SIDEBAR NAV --- */
}

.solutions__sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    padding-left: 10px;
}

@media only screen and (max-width: 1199px) {
    .solutions__sidebar-nav {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 10px;
        margin-bottom: 20px;
        white-space: nowrap;
        gap: 12px;
    }

    .solutions__sidebar-nav::-webkit-scrollbar {
        height: 4px;
    }

    .solutions__sidebar-nav::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 2px;
    }
}

.solutions__sidebar-item {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 20px 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    cursor: pointer;
    width: 100%;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    overflow: hidden;
}

@media only screen and (max-width: 1199px) {
    .solutions__sidebar-item {
        width: auto;
        flex-shrink: 0;
        padding: 12px 20px;
        border-radius: 30px;
        gap: 10px;
    }
}

.solutions__sidebar-item .num {
    font-family: var(--font_teko);
    font-size: 24px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.35);
    transition: color 0.4s ease;
}

@media only screen and (max-width: 1199px) {
    .solutions__sidebar-item .num {
        font-size: 16px;
    }
}

.solutions__sidebar-item .title {
    font-family: var(--font_inter);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.5);
    
    transition: color 0.4s ease;
}

.solutions__sidebar-item .indicator-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background-color: var(--theme);
    box-shadow: 0 0 10px rgba(227, 86, 4, 0.8);
    transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.solutions__sidebar-item:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    transform: translateX(5px);
}

@media only screen and (max-width: 1199px) {
    .solutions__sidebar-item:hover {
        transform: translateY(-2px);
    }
}

.solutions__sidebar-item:hover .title {
    color: var(--white);
}

.solutions__sidebar-item:hover .num {
    color: var(--theme);
}

.solutions__sidebar-item.active {
    border-color: rgba(227, 86, 4, 0.3);
    background: rgba(227, 86, 4, 0.05);
    box-shadow: inset 0 0 20px rgba(227, 86, 4, 0.04), 0 10px 30px rgba(0, 0, 0, 0.15);
}

@media only screen and (max-width: 1199px) {
    .solutions__sidebar-item.active {
        transform: translateY(-2px);
    }
}

.solutions__sidebar-item.active .num {
    color: var(--theme);
}

.solutions__sidebar-item.active .title {
    color: var(--white);
}

.solutions__sidebar-item.active .indicator-bar {
    width: 100%;
}

.solutions {
    /* --- SLIDER STYLING --- */
}

.solutions__slider {
    width: 100%;
    overflow: visible !important;
}

.solutions {
    /* --- MAIN THUMB & COLLAGE --- */
}

.solutions__collage-wrap {
    position: relative;
    width: 100%;
}

.solutions__main-thumb {
    border-radius: 24px;
    overflow: hidden;
    min-height: 520px;
    max-height: 520px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    background-color: rgba(255, 255, 255, 0.02);
}

@media only screen and (max-width: 1199px) {
    .solutions__main-thumb {
        min-height: 400px;
        max-height: 400px;
        margin-bottom: 20px;
    }
}

@media (max-width: 575px) {
    .solutions__main-thumb {
        min-height: 280px;
        max-height: 280px;
    }
}

.solutions__main-thumb::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
    pointer-events: none;
}

.solutions__main-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.solutions__main-thumb:hover img {
    transform: scale(1.08);
}

.solutions {
    /* --- FLOATING TECH BADGES --- */
}

.solutions__metric-badge {
    position: absolute;
    z-index: 5;
    background: rgba(20, 20, 20, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 14px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: auto;
}

.solutions__metric-badge.metric--top {
    top: 24px;
    left: 24px;
    animation: floatBadge1 4s infinite alternate ease-in-out;
}

.solutions__metric-badge.metric--bottom {
    bottom: 24px;
    right: 24px;
    animation: floatBadge2 4s infinite alternate ease-in-out;
}

.solutions__metric-badge:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: var(--theme);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(227, 86, 4, 0.2);
    background: rgba(20, 20, 20, 0.8);
}

.solutions__metric-badge .badge-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.solutions__metric-badge .badge-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.solutions__metric-badge .badge-info .label {
    font-family: var(--font_inter);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.45);
    
}

.solutions__metric-badge .badge-info .val {
    font-family: var(--font_kanit);
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    white-space: nowrap;
}

.solutions {
    /* --- GLASS DETAILS CARD --- */
}

.solutions__glass-card {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media only screen and (max-width: 991px) {
    .solutions__glass-card {
        padding: 24px;
    }
}

.solutions__index {
    font-family: var(--font_teko);
    font-weight: 600;
    font-size: 48px;
    line-height: 1;
    letter-spacing: 0.5px;
    color: var(--theme);
    margin-bottom: 20px;
    display: inline-block;
}

.solutions__index span {
    font-family: var(--font_kanit);
    font-weight: 400;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.35);
}

.solutions__item-title {
    font-family: var(--font_teko);
    font-weight: 600;
    font-size: 54px;
    line-height: 1.1;
    letter-spacing: 0.5px;
    
    margin-bottom: 16px;
    color: var(--white);
}

@media only screen and (max-width: 1199px) {
    .solutions__item-title {
        font-size: 40px;
    }
}

@media (max-width: 575px) {
    .solutions__item-title {
        font-size: 32px;
    }
}

.solutions__item-text {
    font-family: var(--font_kanit);
    font-weight: 400;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 30px;
    max-width: 100%;
}

.solutions__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 35px;
}

.solutions__tag {
    font-family: var(--font_kanit);
    font-weight: 500;
    font-size: 11px;
    padding: 5px 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    
    background: rgba(255, 255, 255, 0.01);
}

.solutions__tag:hover {
    background-color: var(--theme);
    border-color: var(--theme);
    color: var(--black);
    box-shadow: 0 4px 15px rgba(227, 86, 4, 0.25);
    transform: translateY(-2px);
}

.solutions__actions-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
}

@media only screen and (max-width: 1199px) {
    .solutions__actions-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

.solutions__btn-wrap {
    flex-shrink: 0;
}

.solutions__sub-thumbs {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 200px;
}

@media (max-width: 575px) {
    .solutions__sub-thumbs {
        max-width: 100%;
        width: 100%;
    }
}

.solutions__sub-thumb {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    width: 80px;
    height: 60px;
    transition: all 0.4s ease;
}

@media (max-width: 575px) {
    .solutions__sub-thumb {
        width: 50%;
        height: 80px;
    }
}

.solutions__sub-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.solutions__sub-thumb:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: var(--theme);
    box-shadow: 0 15px 30px rgba(227, 86, 4, 0.15);
}

.solutions__sub-thumb:hover img {
    transform: scale(1.1);
}

/* Animations for Badge Floating */

@keyframes floatBadge1 {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    100% {
        transform: translateY(-10px) rotate(2deg);
    }
}

@keyframes floatBadge2 {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    100% {
        transform: translateY(-8px) rotate(-1.5deg);
    }
}

/* ### CONTACT CSS ### */

@keyframes statusBlink {
    0% {
        opacity: 0.3;
        transform: scale(0.95);
        box-shadow: 0 0 6px rgba(0, 255, 102, 0.4);
    }

    100% {
        opacity: 1;
        transform: scale(1.05);
        box-shadow: 0 0 16px rgba(0, 255, 102, 0.9);
    }
}

.contact {
    background-color: var(--black);
    color: var(--white);
    position: relative !important;
    z-index: 99 !important;
    scroll-margin-top: 120px;
}

@media only screen and (max-width: 991px) {
    .contact {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

@media (max-width: 575px) {
    .contact {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

.contact__status-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(227, 86, 4, 0.05);
    border: 1px solid rgba(227, 86, 4, 0.15);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    margin-bottom: 24px;
    align-self: flex-start;
}

.contact__status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #00ff66;
    animation: statusBlink 1.5s infinite alternate ease-in-out;
}

.contact__status-txt {
    font-family: var(--font_inter);
    font-size: 10px;
    font-weight: 700;
    
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1.5px;
}

.contact .section-top {
    margin-bottom: 10px !important;
}

.contact__desc {
    font-family: var(--font_kanit);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    max-width: 440px;
}

@media only screen and (max-width: 991px) {
    .contact__desc {
        max-width: 100%;
    }
}

.contact__cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.contact__card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.04);
    cursor: pointer;
    transition: background-color 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    overflow: hidden;
}

.contact__card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(227, 86, 4, 0.06) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.contact__card:hover {
    transform: translateX(6px);
    border-color: rgba(227, 86, 4, 0.25);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.contact__card:hover::before {
    opacity: 1;
}

.contact__card:hover .contact__card-icon {
    background: var(--theme);
    color: var(--black);
    border-color: var(--theme);
}

.contact__card:hover .contact__copy-btn {
    opacity: 1;
    transform: translate(0, -50%) scale(1);
}

.contact__card-icon {
    position: relative;
    z-index: 1;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--theme);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    flex-shrink: 0;
}

.contact__card-body {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact__card-label {
    font-family: var(--font_inter);
    font-size: 10px;
    font-weight: 500;
    
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 5px;
}

.contact__card-value {
    font-family: var(--font_kanit);
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
}

.contact__card-value a {
    color: inherit !important;
    text-decoration: none !important;
}

.contact__copy-btn {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translate(8px, -50%) scale(0.95);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 2;
}

.contact__copy-btn:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.contact__copy-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translate(-50%, -8px) scale(0.9);
    background: var(--theme);
    color: var(--white);
    font-family: var(--font_inter);
    font-size: 9px;
    font-weight: 600;
    
    letter-spacing: 1px;
    padding: 4px 8px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.contact__copy-tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 4px;
    border-style: solid;
    border-color: var(--theme) transparent transparent transparent;
}

.contact__copy-btn:hover .contact__copy-tooltip {
    opacity: 1;
    transform: translate(-50%, -8px) scale(1);
}

.contact__social-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact__social-title {
    font-family: var(--font_inter);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.3);
}

.contact__social-links {
    display: flex;
    gap: 10px;
}

.contact__social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 13px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.contact__social-link:hover {
    background: var(--theme);
    color: var(--black);
    border-color: var(--theme);
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(227, 86, 4, 0.2);
}

.contact__form-card {
    position: relative;
    padding: 40px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

@media only screen and (max-width: 767px) {
    .contact__form-card {
        padding: 30px 20px;
    }
}

.contact__form-label {
    display: block;
    font-family: var(--font_inter);
    font-size: 11px;
    font-weight: 500;
    
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 15px;
}

.contact__chips-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.contact__chip {
    font-family: var(--font_inter);
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    user-select: none;
    background: rgba(255, 255, 255, 0.03);
}

.contact__chip:hover {
    border-color: var(--theme);
    color: var(--white);
    transform: translateY(-2px);
    background: rgba(227, 86, 4, 0.08);
}

.contact__chip.active {
    background: var(--theme);
    border-color: var(--theme);
    color: var(--black);
    font-weight: 600;
    box-shadow: 0 6px 18px rgba(227, 86, 4, 0.4);
    transform: translateY(-2px) scale(1.02);
}

.contact__input-group {
    position: relative;
    width: 100%;
}

.contact__input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 0;
    font-family: var(--font_kanit);
    font-size: 15px;
    color: var(--white);
    transition: all 0.3s ease;
    outline: none;
}

.contact__input:focus~.contact__input-label,
.contact__input:valid~.contact__input-label {
    transform: translateY(-22px);
    font-size: 10px;
    color: var(--theme);
    letter-spacing: 1px;
}

.contact__input:focus~.contact__input-line {
    width: 100%;
}

.contact__textarea {
    min-height: 80px;
    resize: none;
}

.contact__input-label {
    position: absolute;
    left: 0;
    top: 10px;
    pointer-events: none;
    font-family: var(--font_inter);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    
    letter-spacing: 0.5px;
}

.contact__input-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--theme);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.contact__submit-wrap {
    margin-top: 10px;
}

.contact__submit-wrap #submitBtn {
    border: none;
    outline: none;
    box-shadow: none;
}

.contact__submit-wrap #submitBtn .text {
    color: var(--white) !important;
    background-color: var(--theme) !important;
}

.contact__submit-wrap #submitBtn .icon {
    color: var(--theme) !important;
    background-color: var(--white) !important;
}

.contact__submit-wrap #submitBtn:hover .text {
    background-color: var(--white) !important;
    color: var(--black) !important;
}

.contact__submit-wrap #submitBtn:hover .icon {
    background-color: var(--theme) !important;
    color: var(--black) !important;
}

.contact__success-state {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 0;
    animation: form-scale-in 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.contact__success-icon {
    position: relative;
    width: 70px;
    height: 70px;
    margin-bottom: 24px;
}

.contact__success-icon .success-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(46, 213, 115, 0.15);
}

.contact__success-icon .success-checkmark {
    width: 100%;
    height: 100%;
}

.contact__success-icon .success-checkmark svg {
    width: 100%;
    height: 100%;
    display: block;
}

.contact__success-icon .success-checkmark svg .success-circle {
    stroke-width: 2;
    stroke: #2ed573;
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-miterlimit: 10;
    animation: stroke-circle 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.contact__success-icon .success-checkmark svg .success-check {
    transform-origin: 50% 50%;
    stroke-width: 3;
    stroke: #2ed573;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke-check 0.4s cubic-bezier(0.65, 0, 0.45, 1) 0.5s forwards;
}

.contact__success-title {
    font-family: var(--font_teko);
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #2ed573;
    margin-bottom: 8px;
}

.contact__success-desc {
    font-family: var(--font_kanit);
    font-size: 14px;
    line-height: 1.6;
    color: var(--text);
    max-width: 400px;
}

.contact__shapes {
    position: absolute;
    top: 0%;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.contact__shape {
    position: absolute;
    z-index: 1;
    animation: contact-float 5s infinite ease-in-out;
}

.contact__shape-blur {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.64;
    filter: blur(20px);
    pointer-events: none;
}

.contact__shape img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.contact__shape--1 {
    top: 45%;
    left: 160px;
    animation: none;
    z-index: 2;
}

.contact__shape--1 .contact__shape-blur {
    top: 46%;
    left: -40px;
}

@media only screen and (max-width: 1399px) {
    .contact__shape--1 {
        top: 50px;
        left: 60px;
        opacity: 0.3;
    }
}

@media only screen and (max-width: 1199px) {
    .contact__shape--1 {
        top: 20px;
        left: 20px;
        opacity: 0.3;
    }
}

@media only screen and (max-width: 991px) {
    .contact__shape--1 {
        display: none;
    }
}

.contact__shape--2 {
    bottom: 144px;
    left: 420px;
    animation-delay: 1s;
    z-index: 1;
}

.contact__shape--2 .contact__shape-blur {
    left: -80px;
    bottom: -80px;
}

@media only screen and (max-width: 1399px) {
    .contact__shape--2 {
        bottom: 60px;
        left: 100px;
        opacity: 0.3;
    }
}

@media only screen and (max-width: 1199px) {
    .contact__shape--2 {
        bottom: 20px;
        left: 20px;
        opacity: 0.3;
    }
}

@media only screen and (max-width: 991px) {
    .contact__shape--2 {
        display: none;
    }
}

.contact__shape--3 {
    bottom: 120px;
    right: 348px;
    animation-delay: 2s;
    z-index: 1;
}

.contact__shape--3 .contact__shape-blur {
    top: -56px;
    left: -27px;
}

@media only screen and (max-width: 1399px) {
    .contact__shape--3 {
        bottom: 30px;
        right: 100px;
    }
}

@media only screen and (max-width: 1199px) {
    .contact__shape--3 {
        bottom: 20px;
        right: 50px;
        opacity: 0.3;
    }
}

@media only screen and (max-width: 991px) {
    .contact__shape--3 {
        display: none;
    }
}

.contact__shape--4 {
    bottom: 220px;
    right: 160px;
    animation-delay: 3s;
    z-index: 1;
}

.contact__shape--4 .contact__shape-blur {
    bottom: -70px;
    right: -40px;
}

@media only screen and (max-width: 1399px) {
    .contact__shape--4 {
        bottom: 200px;
        right: 30px;
        opacity: 0.3;
    }
}

@media only screen and (max-width: 1199px) {
    .contact__shape--4 {
        bottom: 220px;
        right: 50px;
        opacity: 0.3;
    }
}

@media only screen and (max-width: 991px) {
    .contact__shape--4 {
        display: none;
    }
}

.contact__bg-shape {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
    pointer-events: none;
}

@media only screen and (max-width: 991px) {
    .contact__bg-shape {
        max-width: 300px;
    }
}

.contact__bg-shape img {
    width: 100%;
    height: auto;
}

@keyframes contact-float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes contact-glow-move {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(100px, 100px);
    }
}

@keyframes form-scale-in {
    0% {
        opacity: 0;
        transform: scale(0.9) translateY(10px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes stroke-circle {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes stroke-check {
    100% {
        stroke-dashoffset: 0;
    }
}

/* ==========================================================================
   ### DIGITAL AGENCY CUSTOM COMPONENT STYLES ###
   ========================================================================== */

/* --- HERO AGENCY --- */

.hero-agency {
    position: relative;
    background-color: var(--black);
    overflow: hidden;
    padding-top: 180px;
    padding-bottom: 120px;
    z-index: 10;
}

@media only screen and (max-width: 1199px) {
    .hero-agency {
        padding-top: 140px;
        padding-bottom: 90px;
    }
}

@media only screen and (max-width: 991px) {
    .hero-agency {
        padding-top: 120px;
        padding-bottom: 70px;
    }
}

@media (max-width: 575px) {
    .hero-agency {
        padding-top: 100px;
        padding-bottom: 60px;
    }
}

.hero-agency__content {
    position: relative;
    z-index: 5;
}

.hero-agency__subtitle {
    display: inline-block;
    font-family: var(--font_instrument);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--text);
    
    margin-bottom: 24px;
    padding: 6px 16px;
    background: rgba(26, 4, 227, 0.08);
    border: 1px solid rgba(227, 86, 4, 0.15);
    border-radius: 100px;
}

@media (max-width: 575px) {
    .hero-agency__subtitle {
        font-size: 12px;
        margin-bottom: 16px;
    }
}

.hero-agency__title {
    font-family: var(--font_teko);
    font-weight: 700;
    font-size: 80px;
    line-height: 0.95;
    letter-spacing: -0.5px;
    color: var(--white);
    margin-bottom: 30px;
}

.hero-agency__title span {
    color: var(--theme);
    position: relative;
    background: linear-gradient(90deg, var(--theme), #FFFFFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-agency__title span::after {
    content: "";
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--theme);
    border-radius: 2px;
    opacity: 0.3;
    filter: blur(1px);
}

@media only screen and (max-width: 1399px) {
    .hero-agency__title {
        font-size: 70px;
    }
}

@media only screen and (max-width: 1199px) {
    .hero-agency__title {
        font-size: 64px;
    }
}

@media only screen and (max-width: 991px) {
    .hero-agency__title {
        font-size: 56px;
        margin-bottom: 20px;
    }
}

@media (max-width: 575px) {
    .hero-agency__title {
        font-size: 44px;
    }
}

.hero-agency__text {
    font-family: var(--font_instrument);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.65;
    color: var(--text);
    max-width: 580px;
    margin-bottom: 40px;
}

@media only screen and (max-width: 991px) {
    .hero-agency__text {
        font-size: 16px;
        margin-bottom: 30px;
    }
}

.hero-agency__buttons {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.hero-agency__buttons .btn-main-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font_kanit);
    font-weight: 600;
    font-size: 16px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-2);
    padding: 14px 32px;
    border-radius: 50px;
    transition: all 0.4s ease;
}

.hero-agency__buttons .btn-main-secondary:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
    transform: translateY(-2px);
}

@media (max-width: 575px) {
    .hero-agency__buttons {
        gap: 16px;
    }

    .hero-agency__buttons .theme-btn,
    .hero-agency__buttons .btn-main-secondary {
        width: 100%;
        text-align: center;
    }
}

.hero-agency {
    /* --- OVERLAPPING VISUALS --- */
}

.hero-agency__visual {
    position: relative;
    min-height: 480px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media only screen and (max-width: 991px) {
    .hero-agency__visual {
        margin-top: 50px;
        min-height: 400px;
    }
}

@media (max-width: 575px) {
    .hero-agency__visual {
        min-height: 320px;
    }
}

.hero-agency__showcase {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-agency__showcase-card {
    position: absolute;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(22, 22, 22, 0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-agency__showcase-card .card-inner {
    padding: 20px;
    width: 100%;
    height: 100%;
}

.hero-agency__showcase-card:hover {
    border-color: var(--theme);
    box-shadow: 0 30px 60px rgba(227, 86, 4, 0.15);
    transform: scale(1.05) translateY(-5px) !important;
    z-index: 10 !important;
}

.hero-agency__showcase-card {
    /* Card 1: UI Chart Card */
}

.hero-agency__showcase-card.card--1 {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin-left: auto;

    padding: 0;
    background: transparent;
    border: none;

    animation: heroFloatRotate 8s ease-in-out infinite;
}


.hero-agency__showcase-card.card--1 .card-top .dots {
    display: flex;
    gap: 6px;
}

.hero-agency__showcase-card.card--1 .card-top .dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.hero-agency__showcase-card.card--1 .card-top .dots .dot:nth-child(1) {
    background: #FF5F56;
}

.hero-agency__showcase-card.card--1 .card-top .dots .dot:nth-child(2) {
    background: #FFBD2E;
}

.hero-agency__showcase-card.card--1 .card-top .dots .dot:nth-child(3) {
    background: #27C93F;
}

.hero-agency__showcase-card.card--1 .card-top .label {
    font-family: var(--font_instrument);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text);
}

.hero-agency__showcase-card.card--1 .card-body__title {
    font-family: var(--font_teko);
    font-size: 20px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 16px;
    
}

.hero-agency__showcase-card.card--1 .card-body .chart-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 80px;
    padding: 0 10px;
}

.hero-agency__showcase-card.card--1 .card-body .chart-bars .bar {
    width: 28px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    transition: height 0.5s ease;
    position: relative;
    overflow: hidden;
}

.hero-agency__showcase-card.card--1 .card-body .chart-bars .bar::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--theme);
    border-radius: 4px;
    transition: height 0.5s ease;
}

.hero-agency__showcase-card.card--1 .card-body .chart-bars .bar-1 {
    height: 100%;
}

.hero-agency__showcase-card.card--1 .card-body .chart-bars .bar-1::after {
    height: 70%;
}

.hero-agency__showcase-card.card--1 .card-body .chart-bars .bar-2 {
    height: 100%;
}

.hero-agency__showcase-card.card--1 .card-body .chart-bars .bar-2::after {
    height: 45%;
}

.hero-agency__showcase-card.card--1 .card-body .chart-bars .bar-3 {
    height: 100%;
}

.hero-agency__showcase-card.card--1 .card-body .chart-bars .bar-3::after {
    height: 90%;
}

.hero-agency__showcase-card.card--1 .card-body .chart-bars .bar-4 {
    height: 100%;
}

.hero-agency__showcase-card.card--1 .card-body .chart-bars .bar-4::after {
    height: 60%;
}

@media (max-width: 575px) {
    .hero-agency__showcase-card.card--1 {
        width: 180px;
        top: 0px;
    }

    .hero-agency__showcase-card.card--1 .card-body .chart-bars {
        height: 60px;
    }

    .hero-agency__showcase-card.card--1 .card-body .chart-bars .bar {
        width: 20px;
    }
}

.hero-agency__showcase-card {
    /* Card 2: Interactive Avatar Status Card */
}

.hero-agency__showcase-card.card--2 {
    width: 220px;
    right: 10px;
    top: 60px;
    z-index: 2;
    animation: float-slow-2 10s ease-in-out infinite alternate;
}

.hero-agency__showcase-card.card--2 .avatar-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-agency__showcase-card.card--2 .avatar-group img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--theme);
}

.hero-agency__showcase-card.card--2 .avatar-group .avatar-info__title {
    font-family: var(--font_teko);
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
    margin: 0 0 2px 0;
    
}

.hero-agency__showcase-card.card--2 .avatar-group .avatar-info p {
    font-family: var(--font_instrument);
    font-size: 12px;
    color: var(--text);
    margin: 0;
}

@media (max-width: 575px) {
    .hero-agency__showcase-card.card--2 {
        width: 170px;
        right: 0px;
        top: 30px;
    }

    .hero-agency__showcase-card.card--2 .avatar-group img {
        width: 36px;
        height: 36px;
    }

    .hero-agency__showcase-card.card--2 .avatar-group .avatar-info h5 {
        font-size: 15px;
    }
}

.hero-agency__showcase-card {
    /* Card 3: Visual Creative Image Mockup */
}

.hero-agency__showcase-card.card--3 {
    width: 340px;
    left: 80px;
    bottom: 20px;
    z-index: 1;
    padding: 8px;
    animation: float-slow-3 12s ease-in-out infinite alternate;
}

.hero-agency__showcase-card.card--3 .card-inner {
    padding: 0;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.hero-agency__showcase-card.card--3 img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-agency__showcase-card.card--3 .card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(18, 18, 18, 0.9) 10%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 16px;
}

.hero-agency__showcase-card.card--3 .card-overlay .text {
    font-family: var(--font_teko);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--white);
    
}

.hero-agency__showcase-card.card--3:hover img {
    transform: scale(1.08);
}

@media (max-width: 575px) {
    .hero-agency__showcase-card.card--3 {
        width: 240px;
        left: 30px;
        bottom: -10px;
    }

    .hero-agency__showcase-card.card--3 img {
        height: 140px;
    }
}

/* Float Animations for Hero Cards */

@keyframes float-slow-1 {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    100% {
        transform: translateY(-15px) rotate(1.5deg);
    }
}

@keyframes float-slow-2 {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    100% {
        transform: translateY(-22px) rotate(-2deg);
    }
}

@keyframes float-slow-3 {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    100% {
        transform: translateY(-10px) rotate(1deg);
    }
}

/* --- ABOUT AGENCY --- */

.about-agency {
    position: relative;
    background-color: var(--bg);
    overflow: hidden;
}

.about-agency__image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    width: 100%;
    height: 520px;
}

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

.about-agency__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(22, 22, 22, 0.8) 100%);
    pointer-events: none;
}

@media only screen and (max-width: 1199px) {
    .about-agency__image {
        height: 440px;
    }
}

@media only screen and (max-width: 991px) {
    .about-agency__image {
        height: 380px;
        margin-bottom: 40px;
    }
}

@media (max-width: 575px) {
    .about-agency__image {
        height: 280px;
    }
}

.about-agency__image-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background-color: var(--black);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--theme);
    padding: 16px 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 5;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.about-agency__image-badge .number {
    font-family: var(--font_teko);
    font-size: 40px;
    font-weight: 700;
    color: var(--theme);
    line-height: 1;
}

.about-agency__image-badge .label {
    font-family: var(--font_instrument);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--white);
    
    line-height: 1.3;
}

@media (max-width: 575px) {
    .about-agency__image-badge {
        bottom: 20px;
        left: 20px;
        padding: 12px 18px;
    }

    .about-agency__image-badge .number {
        font-size: 32px;
    }

    .about-agency__image-badge .label {
        font-size: 9px;
    }
}

.about-agency__content {
    padding-left: 20px;
}

@media only screen and (max-width: 991px) {
    .about-agency__content {
        padding-left: 0;
    }
}

.about-agency__title {
    font-family: var(--font_teko);
    font-weight: 600;
    font-size: 56px;
    line-height: 1.05;
    color: var(--white);
    
    margin-bottom: 24px;
    margin-top: 15px;
}

@media only screen and (max-width: 1399px) {
    .about-agency__title {
        font-size: 48px;
    }
}

@media only screen and (max-width: 1199px) {
    .about-agency__title {
        font-size: 42px;
    }
}

@media only screen and (max-width: 991px) {
    .about-agency__title {
        font-size: 40px;
    }
}

@media (max-width: 575px) {
    .about-agency__title {
        font-size: 32px;
    }
}

.about-agency__text {
    font-family: var(--font_instrument);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 35px;
}

.about-agency__features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-agency__feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: all 0.4s ease;
}

.about-agency__feature-item .icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(227, 86, 4, 0.1);
    color: var(--theme);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.about-agency__feature-item .info h3 {
    font-family: var(--font_teko);
    font-size: 20px;
    font-weight: 500;
    color: var(--white);
    margin: 0 0 6px 0;
    
    letter-spacing: 0.5px;
}

.about-agency__feature-item .info p {
    font-family: var(--font_instrument);
    font-size: 14px;
    line-height: 1.5;
    color: var(--text);
    margin: 0;
}

.about-agency__feature-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(227, 86, 4, 0.25);
    transform: translateX(5px);
}

.about-agency__feature-item:hover .icon-wrap {
    background: var(--theme);
    color: var(--black);
}

/* --- PROCESS AGENCY --- */

.process-agency {
    position: relative;
    background-color: var(--bg);
    overflow: hidden;
}

.process-agency .process-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
}

.process-agency .process-card__number {
    font-family: var(--font_teko);
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
    color: rgba(255, 255, 255, 0.05);
    margin-bottom: 24px;
    transition: all 0.4s ease;
}

.process-agency .process-card__title {
    font-family: var(--font_teko);
    font-size: 28px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    
}

.process-agency .process-card__text {
    font-family: var(--font_instrument);
    font-size: 15px;
    line-height: 1.6;
    color: var(--text);
    margin: 0;
}

.process-agency .process-card__line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--theme);
    transition: all 0.5s ease;
}

.process-agency .process-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(227, 104, 4, 0.25);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.process-agency .process-card:hover .process-card__number {
    color: var(--theme);
    transform: scale(1.05);
}

.process-agency .process-card:hover .process-card__line {
    width: 100%;
}

/* --- MARQUEE AGENCY --- */

.marquee-agency {
    background-color: var(--black);
    padding: 60px 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid var(--border-2);
    border-bottom: 1px solid var(--border-2);
    z-index: 10;
}

.marquee-agency__inner {
    width: 100%;
    overflow: hidden;
}

.marquee-agency__track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 28s linear infinite;
    align-items: center;
    gap: 60px;
}

.marquee-agency__item {
    font-family: var(--font_teko);
    font-size: 40px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.15);
    
    display: flex;
    align-items: center;
    gap: 15px;
    letter-spacing: 2px;
    transition: color 0.4s ease;
}

.marquee-agency__item i {
    font-size: 32px;
    color: rgba(255, 255, 255, 0.1);
    transition: color 0.4s ease;
}

.marquee-agency__item:hover {
    color: var(--theme);
}

.marquee-agency__item:hover i {
    color: var(--theme);
}

@media only screen and (max-width: 991px) {
    .marquee-agency__item {
        font-size: 32px;
    }

    .marquee-agency__item i {
        font-size: 26px;
    }
}

@media (max-width: 575px) {
    .marquee-agency__item {
        font-size: 26px;
    }

    .marquee-agency__item i {
        font-size: 20px;
    }
}

/* Endless Marquee Animation */

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

    100% {
        transform: translateX(calc(-50% - 30px));
    }
}

/* --- AGENCY HEADER & ACCESSIBILITY CONTRAST OVERRIDES --- */

.header-area-1 {
    /* Set desktop menu links to be high-contrast light colors by default floating on dark hero */
}

.header-area-1 .main-menu>ul>li>a {
    color: rgba(255, 255, 255, 0.8) !important;
    font-family: var(--font_kanit) !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
}

.header-area-1 .main-menu>ul>li>a:hover {
    color: var(--theme) !important;
}

/* Style sticky state cleanly with custom class from JS (.header-sticky.sticky) */

.header-sticky.sticky {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999;
    background-color: rgba(22, 22, 22, 0.95) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    transform: translateY(0%) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
    padding: 10px 0 !important;
    /* Make sure links remain highly readable when sticky */
}

.header-sticky.sticky .main-menu>ul>li>a {
    color: rgba(255, 255, 255, 0.9) !important;
}

.header-sticky.sticky .main-menu>ul>li>a:hover {
    color: var(--theme) !important;
}

.header-sticky.sticky {
    /* Make text logo white dot stand out */
}

.header-sticky.sticky .logo-text {
    color: var(--white) !important;
}

/* Off-canvas Sidebar Mobile Drawer link contrast */

.side-info .main-menu a,
.side-info .side-info__item a,
.side-info .contact-meta a,
.side-info .social-links a {
    color: rgba(255, 255, 255, 0.8) !important;
}

.side-info .main-menu a:hover,
.side-info .side-info__item a:hover,
.side-info .contact-meta a:hover,
.side-info .social-links a:hover {
    color: var(--theme) !important;
}

.side-info .logo-text {
    color: var(--white) !important;
}

.side-info .logo-text .dot {
    color: var(--theme) !important;
}

.side-info {
    /* Target mobile inner menu links */
}

.side-info .mobile-menu.mean-container .mean-nav ul li a {
    color: rgba(255, 255, 255, 0.85) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.side-info .mobile-menu.mean-container .mean-nav ul li a:hover {
    color: var(--theme) !important;
    background: transparent !important;
}

/* Hero primary button high-contrast font override */

.hero-agency__buttons .theme-btn.btn-move {
    background-color: var(--theme) !important;
    color: var(--black) !important;
    border-color: var(--theme) !important;
    font-family: var(--font_kanit) !important;
    font-weight: 600 !important;
}

.hero-agency__buttons .theme-btn.btn-move span {
    color: var(--black) !important;
}

.hero-agency__buttons .theme-btn.btn-move:hover {
    background-color: var(--white) !important;
    color: var(--black) !important;
    border-color: var(--white) !important;
}

.hero-agency__buttons .theme-btn.btn-move:hover span {
    color: var(--black) !important;
}

.hero-agency__buttons .btn-main-secondary {
    border-color: rgba(255, 255, 255, 0.15) !important;
}

.hero-agency__buttons .btn-main-secondary:hover {
    background-color: var(--white) !important;
    color: var(--black) !important;
    border-color: var(--white) !important;
}

/* Header right Agency primary CTA style */

.header-agency-cta {
    background-color: var(--theme) !important;
    color: var(--black) !important;
    border-color: var(--theme) !important;
    font-family: var(--font_kanit) !important;
    font-weight: 600 !important;
}

.header-agency-cta .text {
    color: var(--black) !important;
}

.header-agency-cta .icon svg path {
    fill: var(--black) !important;
}

.header-agency-cta:hover {
    background-color: var(--white) !important;
    border-color: var(--white) !important;
}

.header-agency-cta:hover .text {
    color: var(--black) !important;
}

/* ### HOME 2 STYLES (CREATIVE SHOWCASE) ### */

/* --- SPLIT SCREEN SHOWCASE HERO --- */

.hero-showcase {
    position: relative;
    height: 100vh;
    min-height: 750px;
    width: 100%;
    background-color: var(--black);
    overflow: hidden;
    display: flex;
    align-items: stretch;
}

@media only screen and (max-width: 991px) {
    .hero-showcase {
        flex-direction: column;
        height: auto;
        min-height: auto;
    }
}

.hero-showcase__left {
    width: 45%;
    padding: 120px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 10;
    background-color: #0c0d11;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

@media only screen and (max-width: 1399px) {
    .hero-showcase__left {
        padding: 100px 50px;
    }
}

@media only screen and (max-width: 1199px) {
    .hero-showcase__left {
        padding: 80px 30px;
        width: 50%;
    }
}

@media only screen and (max-width: 991px) {
    .hero-showcase__left {
        width: 100%;
        padding: 120px 20px 60px 20px;
    }
}

.hero-showcase__right {
    width: 55%;
    position: relative;
    overflow: hidden;
}

@media only screen and (max-width: 1199px) {
    .hero-showcase__right {
        width: 50%;
    }
}

@media only screen and (max-width: 991px) {
    .hero-showcase__right {
        width: 100%;
        height: 450px;
    }
}

.hero-showcase__subtitle {
    font-family: var(--font_inter);
    font-size: 11px;
    font-weight: 600;
    
    color: var(--theme);
    letter-spacing: 3px;
    margin-bottom: 20px;
    display: block;
}

.hero-showcase__title {
    font-family: var(--font_teko);
    font-size: 84px;
    line-height: 0.95;
    font-weight: 700;
    
    color: var(--white);
    margin-bottom: 30px;
}

@media only screen and (max-width: 1399px) {
    .hero-showcase__title {
        font-size: 70px;
    }
}

@media only screen and (max-width: 1199px) {
    .hero-showcase__title {
        font-size: 56px;
    }
}

@media (max-width: 575px) {
    .hero-showcase__title {
        font-size: 42px;
    }
}

.hero-showcase__title span {
    display: block;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
}

.hero-showcase__title span.active {
    color: var(--white);
    -webkit-text-stroke: none;
}

.hero-showcase__desc {
    font-family: var(--font_kanit);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 40px;
    max-width: 420px;
}

.hero-showcase {
    /* Showcase Swiper slider elements */
}

.hero-showcase .showcase-slider {
    width: 100%;
    height: 100%;
}

.hero-showcase .showcase-slide {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.hero-showcase .showcase-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
    transform: scale(1.05);
    filter: brightness(0.65);
}

.hero-showcase .showcase-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(12, 13, 17, 0.8) 0%, transparent 40%, rgba(12, 13, 17, 0.3) 100%);
    pointer-events: none;
}

@media only screen and (max-width: 991px) {
    .hero-showcase .showcase-slide::after {
        background: linear-gradient(180deg, rgba(12, 13, 17, 0.8) 0%, transparent 50%);
    }
}

.hero-showcase .showcase-slide.swiper-slide-active img {
    transform: scale(1.15);
}

.hero-showcase {
    /* Custom Swiper navigation arrows */
}

.hero-showcase .showcase-nav {
    position: absolute;
    bottom: 50px;
    right: 50px;
    display: flex;
    gap: 12px;
    z-index: 100;
}

@media only screen and (max-width: 991px) {
    .hero-showcase .showcase-nav {
        bottom: 20px;
        right: 20px;
    }
}

.hero-showcase .showcase-nav .arrow-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-showcase .showcase-nav .arrow-btn:hover {
    background: var(--theme);
    color: var(--black);
    border-color: var(--theme);
}

/* --- VERTICAL ACCORDION SERVICES --- */

.accordion-services {
    background-color: var(--black);
    position: relative;
}

.accordion-services__list {
    display: flex;
    flex-direction: column;
}

.accordion-services__item {
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px 0;
    cursor: pointer;
    transition: all 0.4s ease;
}

@media (max-width: 575px) {
    .accordion-services__item {
        padding: 30px 0;
    }
}

.accordion-services__item::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--theme);
    transition: width 0.5s ease;
}

.accordion-services__item:hover::after {
    width: 100%;
}

.accordion-services__item:hover .accordion-services__num {
    color: var(--theme);
    transform: translateX(10px);
}

.accordion-services__item:hover .accordion-services__title {
    color: var(--white);
    transform: translateX(15px);
}

.accordion-services__item:hover .accordion-services__arrow {
    transform: rotate(45deg);
    color: var(--theme);
    border-color: var(--theme);
}

.accordion-services__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.accordion-services__meta {
    display: flex;
    align-items: center;
    gap: 40px;
}

@media only screen and (max-width: 767px) {
    .accordion-services__meta {
        gap: 20px;
    }
}

.accordion-services__num {
    font-family: var(--font_teko);
    font-size: 28px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
}

.accordion-services__title {
    font-family: var(--font_teko);
    font-size: 38px;
    font-weight: 600;
    
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.4s ease;
    letter-spacing: 0.5px;
}

@media only screen and (max-width: 991px) {
    .accordion-services__title {
        font-size: 30px;
    }
}

@media (max-width: 575px) {
    .accordion-services__title {
        font-size: 24px;
    }
}

.accordion-services__arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.accordion-services__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.accordion-services__body.active {
    max-height: 250px;
}

.accordion-services__content {
    padding: 30px 0 0 68px;
    display: flex;
    gap: 60px;
}

@media only screen and (max-width: 991px) {
    .accordion-services__content {
        flex-direction: column;
        gap: 20px;
        padding-left: 0;
    }
}

.accordion-services__text {
    font-family: var(--font_kanit);
    font-size: 13px;
    line-height: 1.6;
    color: var(--text);
    max-width: 500px;
    margin: 0;
}

.accordion-services__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.accordion-services__tag {
    font-family: var(--font_inter);
    font-size: 10px;
    font-weight: 600;
    
    letter-spacing: 1px;
    padding: 6px 12px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.5);
}

/* --- HORIZONTAL SCROLLING PORTFOLIO SECTION --- */

.horizontal-works {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: #0c0d11;
    overflow: hidden;
}

.horizontal-works__outer {
    display: flex;
    flex-wrap: nowrap;
    width: 400vw;
    height: 100vh;
    will-change: transform;
}

.horizontal-works__panel {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 10%;
    overflow: hidden;
    border-right: 1px solid rgba(255, 255, 255, 0.03);
}

@media only screen and (max-width: 991px) {
    .horizontal-works__panel {
        padding: 0 5%;
    }
}

.horizontal-works__panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(12, 13, 17, 0.95) 0%, rgba(12, 13, 17, 0.4) 100%);
    z-index: 1;
    pointer-events: none;
}

.horizontal-works__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.horizontal-works__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) grayscale(0.2);
    transition: transform 0.5s ease;
}

.horizontal-works__content {
    position: relative;
    z-index: 5;
    max-width: 600px;
}

.horizontal-works__meta {
    font-family: var(--font_inter);
    font-size: 11px;
    font-weight: 600;
    
    color: var(--theme);
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
}

.horizontal-works__title {
    font-family: var(--font_teko);
    font-size: 72px;
    font-weight: 700;
    line-height: 1;
    
    color: var(--white);
    margin-bottom: 25px;
}

@media only screen and (max-width: 991px) {
    .horizontal-works__title {
        font-size: 50px;
    }
}

@media (max-width: 575px) {
    .horizontal-works__title {
        font-size: 38px;
    }
}

.horizontal-works__desc {
    font-family: var(--font_kanit);
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 35px;
}

/* --- SPOTLIGHT TEAM GRID --- */

.team-spotlight {
    background-color: var(--black);
    position: relative;
}

.team-spotlight__card {
    position: relative;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 10px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
}

.team-spotlight__card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.team-spotlight__card:hover .team-spotlight__img img {
    filter: grayscale(0);
    transform: scale(1.05);
}

.team-spotlight__card:hover .team-spotlight__social {
    opacity: 1;
    transform: translateY(0);
}

.team-spotlight__img {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 380px;
}

@media only screen and (max-width: 1199px) {
    .team-spotlight__img {
        height: 320px;
    }
}

@media (max-width: 575px) {
    .team-spotlight__img {
        height: 280px;
    }
}

.team-spotlight__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    transition: all 0.5s ease;
}

.team-spotlight__img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(12, 13, 17, 0.85) 100%);
}

.team-spotlight__info {
    padding: 20px 10px 10px 10px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.team-spotlight__name {
    font-family: var(--font_teko);
    font-size: 24px;
    font-weight: 600;
    
    color: var(--white);
    margin: 0 0 4px 0;
    letter-spacing: 0.5px;
}

.team-spotlight__role {
    font-family: var(--font_inter);
    font-size: 11px;
    font-weight: 500;
    color: var(--theme);
    
    letter-spacing: 1px;
    margin: 0;
}

.team-spotlight__social {
    position: absolute;
    bottom: 80px;
    left: 30px;
    z-index: 10;
    display: flex;
    gap: 8px;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s ease;
}

.team-spotlight__social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--white);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.3s ease;
}

.team-spotlight__social a:hover {
    background: var(--theme);
    color: var(--black);
    transform: translateY(-3px);
}

/* --- TESTIMONIAL SHOWCASE & ENDLESS MARQUEE --- */

.testimonial-showcase {
    background-color: #0c0d11;
    position: relative;
    padding-top: 120px;
    padding-bottom: 120px;
    overflow: hidden;
}

@media only screen and (max-width: 991px) {
    .testimonial-showcase {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

/* Endless Marquee */

.logo-marquee-rail {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background-color: transparent;
    display: flex;
}

.marquee-scroll-track {
    display: inline-flex;
    width: max-content;
    animation: marquee-scroll-h2 24s linear infinite;
}

.marquee-scroll-item {
    font-family: var(--font_teko, "Teko", sans-serif);
    font-size: 54px;
    color: rgba(255, 255, 255, 0.02);
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.15);
    margin: 0 40px;
    letter-spacing: 3px;
    
    transition: all 0.4s ease;
    cursor: default;
    display: inline-block;
}

@media only screen and (max-width: 991px) {
    .marquee-scroll-item {
        font-size: 40px;
        margin: 0 25px;
    }
}

.marquee-scroll-item:hover {
    color: var(--theme);
    -webkit-text-stroke: 1px var(--theme);
    text-shadow: 0 0 20px rgba(227, 86, 4, 0.4);
}

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

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

/* Premium Swiper Slider Card */

.testimonial-carousel-h2 {
    width: 100%;
    position: relative;
}

.testimonial-card-h2 {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 50px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    text-align: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 575px) {
    .testimonial-card-h2 {
        padding: 40px 24px;
        border-radius: 16px;
    }
}

.testimonial-card-h2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(227, 86, 4, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

.testimonial-card-h2:hover {
    border-color: rgba(227, 86, 4, 0.3);
    box-shadow: 0 30px 60px rgba(227, 86, 4, 0.1);
    transform: translateY(-5px);
}

.testimonial-quote-icon {
    font-size: 54px;
    color: var(--theme);
    opacity: 0.15;
    margin-bottom: 24px;
    display: inline-block;
}

.testimonial-text-h2 {
    font-family: var(--font_kanit, "Kanit", sans-serif);
    font-size: 26px;
    font-weight: 300;
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 35px;
    font-style: italic;
}

@media only screen and (max-width: 991px) {
    .testimonial-text-h2 {
        font-size: 20px;
    }
}

@media (max-width: 575px) {
    .testimonial-text-h2 {
        font-size: 18px;
    }
}

.testimonial-author-h2 {
    font-family: var(--font_teko, "Teko", sans-serif);
    font-size: 32px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 6px;
    letter-spacing: 1.5px;
    
}

@media (max-width: 575px) {
    .testimonial-author-h2 {
        font-size: 26px;
    }
}

.testimonial-role-h2 {
    font-family: var(--font_inter, "Inter", sans-serif);
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    
    letter-spacing: 2px;
    display: block;
}

/* ### INNER PAGES STYLES ### */

/* --- BREADCRUMB HERO --- */

.breadcrumb-area {
    position: relative;
    padding: 200px 0 120px 0;
    background-color: #0c0d11;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

@media only screen and (max-width: 991px) {
    .breadcrumb-area {
        padding: 160px 0 80px 0;
    }
}

.breadcrumb-area__title {
    font-family: var(--font_teko);
    font-size: 72px;
    font-weight: 700;
    
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 20px;
}

@media only screen and (max-width: 991px) {
    .breadcrumb-area__title {
        font-size: 56px;
    }
}

@media (max-width: 575px) {
    .breadcrumb-area__title {
        font-size: 42px;
    }
}

.breadcrumb-area__links {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font_inter);
    font-size: 11px;
    font-weight: 600;
    
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumb-area__links a {
    color: var(--theme);
    transition: color 0.3s ease;
}

.breadcrumb-area__links a:hover {
    color: var(--white);
}

.breadcrumb-area__links i {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.2);
}

.breadcrumb-area__shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.breadcrumb-area__shape-blur {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(182, 227, 4, 0.04) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    border-radius: 50%;
    filter: blur(50px);
}

/* --- ABOUT VERTICAL MANIFESTO TIMELINE --- */

.about-timeline {
    position: relative;
    background-color: var(--black);
    padding: 100px 0;
}

.about-timeline__container {
    position: relative;
}

.about-timeline__line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background: linear-gradient(to bottom, var(--theme), rgba(255, 255, 255, 0.05));
}

@media only screen and (max-width: 991px) {
    .about-timeline__line {
        left: 30px;
        transform: none;
    }
}

.about-timeline__item {
    position: relative;
    margin-bottom: 80px;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

@media only screen and (max-width: 991px) {
    .about-timeline__item {
        flex-direction: column;
        padding-left: 70px;
        margin-bottom: 50px;
    }
}

.about-timeline__item:nth-child(even) {
    flex-direction: row-reverse;
}

@media only screen and (max-width: 991px) {
    .about-timeline__item:nth-child(even) {
        flex-direction: column;
    }
}

.about-timeline__item:nth-child(even) .about-timeline__content {
    text-align: left;
}

.about-timeline__item:hover .about-timeline__dot {
    background: var(--theme);
    box-shadow: 0 0 20px var(--theme);
    transform: translate(-50%, -50%) scale(1.3);
}

@media only screen and (max-width: 991px) {
    .about-timeline__item:hover .about-timeline__dot {
        transform: scale(1.3);
    }
}

.about-timeline__item:hover .about-timeline__card {
    border-color: rgba(227, 86, 4, 0.2);
    background: rgba(255, 255, 255, 0.02);
}

.about-timeline__dot {
    position: absolute;
    left: 50%;
    top: 40px;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #0c0d11;
    border: 2px solid var(--theme);
    z-index: 10;
    transition: all 0.4s ease;
}

@media only screen and (max-width: 991px) {
    .about-timeline__dot {
        left: 23px;
        transform: none;
    }
}

.about-timeline__content-wrap {
    width: 45%;
}

@media only screen and (max-width: 991px) {
    .about-timeline__content-wrap {
        width: 100%;
    }
}

.about-timeline__card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 35px;
    border-radius: 20px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

@media (max-width: 575px) {
    .about-timeline__card {
        padding: 24px;
    }
}

.about-timeline__year {
    font-family: var(--font_teko);
    font-size: 36px;
    font-weight: 700;
    color: var(--theme);
    line-height: 1;
    margin-bottom: 12px;
    display: block;
}

.about-timeline__title {
    font-family: var(--font_teko);
    font-size: 24px;
    font-weight: 600;
    
    color: var(--white);
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.about-timeline__text {
    font-family: var(--font_kanit);
    font-size: 14px;
    line-height: 1.6;
    color: var(--text);
    margin: 0;
}

/* --- TRANSPARENT BOUTIQUE PRICING TABLE --- */

.pricing-matrix {
    background-color: var(--black);
    position: relative;
}

.pricing-matrix__card {
    position: relative;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 50px 40px;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (max-width: 575px) {
    .pricing-matrix__card {
        padding: 40px 24px;
    }
}

.pricing-matrix__card--featured {
    background: rgba(255, 255, 255, 0.025);
    border-color: rgba(227, 86, 4, 0.15);
    transform: scale(1.02);
}

@media only screen and (max-width: 991px) {
    .pricing-matrix__card--featured {
        transform: none;
    }
}

.pricing-matrix__card--featured .badge-popular {
    position: absolute;
    top: 24px;
    right: 40px;
    background: var(--theme);
    color: var(--black);
    font-family: var(--font_inter);
    font-size: 9px;
    font-weight: 700;
    
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 4px;
}

.pricing-matrix__card:hover {
    transform: translateY(-8px);
    border-color: rgba(227, 86, 4, 0.25);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.pricing-matrix__card:hover.pricing-matrix__card--featured {
    transform: translateY(-8px) scale(1.02);
}

@media only screen and (max-width: 991px) {
    .pricing-matrix__card:hover.pricing-matrix__card--featured {
        transform: translateY(-8px);
    }
}

.pricing-matrix__header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 30px;
    margin-bottom: 40px;
}

.pricing-matrix__plan {
    font-family: var(--font_inter);
    font-size: 11px;
    font-weight: 600;
    
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    display: block;
}

.pricing-matrix__price {
    font-family: var(--font_teko);
    font-size: 56px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.pricing-matrix__price span {
    font-size: 18px;
    font-weight: 400;
    color: var(--text);
    
    font-family: var(--font_inter);
    letter-spacing: 0.5px;
}

.pricing-matrix__list {
    list-style: none;
    padding: 0;
    margin: 0 0 45px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pricing-matrix__list li {
    font-family: var(--font_kanit);
    font-size: 14px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-matrix__list li i {
    color: var(--theme);
    font-size: 12px;
}

.pricing-matrix__list li.inactive {
    color: rgba(255, 255, 255, 0.25);
}

.pricing-matrix__list li.inactive i {
    color: rgba(255, 255, 255, 0.15);
}

/* --- INTERACTIVE PORTFOLIO FILTER --- */

.portfolio-filter {
    background-color: var(--black);
    position: relative;
}

.portfolio-filter__tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 60px;
}

.portfolio-filter__tab {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    padding: 10px 24px;
    font-family: var(--font_inter);
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.portfolio-filter__tab:hover {
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    transform: translateY(-2px);
}

.portfolio-filter__tab.active {
    background: var(--theme);
    border-color: var(--theme);
    color: var(--black);
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(227, 86, 4, 0.25);
    transform: translateY(-2px);
}

.portfolio-filter__grid {
    position: relative;
    width: 100%;
}

.portfolio-filter__card {
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    background: rgba(255, 255, 255, 0.01);
    padding: 12px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.portfolio-filter__card:hover {
    transform: translateY(-6px);
    border-color: rgba(227, 86, 4, 0.15);
}

.portfolio-filter__card:hover .portfolio-filter__img img {
    transform: scale(1.08);
}

.portfolio-filter__img {
    position: relative;
    border-radius: 16px;
    overflow: hidden;

    /* Remove fixed height */
    height: auto;
}

.portfolio-filter__img img {
    width: 100%;
    height: auto;
    display: block;

    object-fit: contain;
    transition: transform 0.5s ease;
}

.portfolio-filter__img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(12, 13, 17, 0.8) 100%);
}

.portfolio-filter__info {
    padding: 20px 10px 10px 10px;
}

.portfolio-filter__card-tag {
    font-family: var(--font_inter);
    font-size: 10px;
    font-weight: 600;
    
    color: var(--theme);
    letter-spacing: 1px;
    margin-bottom: 6px;
    display: block;
}

.portfolio-filter__card-title {
    font-family: var(--font_teko);
    font-size: 24px;
    font-weight: 600;
    
    color: var(--white);
    margin: 0;
    letter-spacing: 0.5px;
}

/* --- COLLAPSIBLE GLASSMORPHIC FAQ ACCORDION --- */

.faq-accordion {
    background-color: var(--black);
    position: relative;
}

.faq-accordion__item {
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(15px);
    transition: all 0.4s ease;
}

.faq-accordion__item.active {
    border-color: rgba(227, 86, 4, 0.2);
    background: rgba(255, 255, 255, 0.02);
}

.faq-accordion__item.active .faq-accordion__trigger {
    color: var(--white);
}

.faq-accordion__item.active .faq-accordion__icon {
    background: var(--theme);
    color: var(--black);
    border-color: var(--theme);
    transform: rotate(180deg);
}

.faq-accordion__trigger {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    padding: 24px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
    font-family: var(--font_teko);
    font-size: 22px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

@media (max-width: 575px) {
    .faq-accordion__trigger {
        padding: 20px;
        font-size: 19px;
    }
}

.faq-accordion__trigger:hover {
    color: var(--white);
}

.faq-accordion__trigger:hover .faq-accordion__icon {
    border-color: var(--theme);
    color: var(--theme);
}

.faq-accordion__icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.faq-accordion__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-accordion__content {
    padding: 0 30px 24px 30px;
}

@media (max-width: 575px) {
    .faq-accordion__content {
        padding: 0 20px 20px 20px;
    }
}

.faq-accordion__content p {
    font-family: var(--font_kanit);
    font-size: 14px;
    line-height: 1.6;
    color: var(--text);
    margin: 0;
}

/* --- SERVICE DETAILS PAGE --- */

.service-details {
    background-color: var(--black);
}

.service-details__sidebar {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 40px 30px;
    border-radius: 24px;
    backdrop-filter: blur(15px);
}

@media (max-width: 575px) {
    .service-details__sidebar {
        padding: 30px 20px;
    }
}

.service-details__sidebar-title {
    font-family: var(--font_teko);
    font-size: 28px;
    font-weight: 600;
    
    color: var(--white);
    margin-bottom: 30px;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 15px;
}

.service-details__category-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-details__category-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font_inter);
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    
    letter-spacing: 1px;
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    background: rgba(255, 255, 255, 0.005);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-details__category-list li a i {
    font-size: 10px;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.service-details__category-list li a:hover,
.service-details__category-list li a.active {
    color: var(--black);
    background: var(--theme);
    border-color: var(--theme);
    font-weight: 700;
}

.service-details__category-list li a:hover i,
.service-details__category-list li a.active i {
    opacity: 1;
    transform: translateX(0);
}

.service-details__cta-card {
    background: radial-gradient(circle at top right, rgba(227, 86, 4, 0.08) 0%, transparent 70%);
    border: 1px dashed rgba(227, 86, 4, 0.2);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
}

.service-details__cta-title {
    font-family: var(--font_teko);
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.service-details__cta-text {
    font-family: var(--font_kanit);
    font-size: 13px;
    color: var(--text);
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-details__main-img {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 45px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.service-details__main-img img {
    width: 100%;
    height: auto;
    display: block;
}

@media only screen and (max-width: 991px) {
    .service-details__main-img img {
        height: 360px;
    }
}

@media (max-width: 575px) {
    .service-details__main-img img {
        height: 280px;
    }
}

.service-details__main-title {
    font-family: var(--font_teko);
    font-size: 48px;
    font-weight: 700;
    
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.1;
}

@media (max-width: 575px) {
    .service-details__main-title {
        font-size: 36px;
    }
}

.service-details__main-desc {
    font-family: var(--font_kanit);
    font-size: 15px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 40px;
}

.service-details__deliverables-title {
    font-family: var(--font_teko);
    font-size: 28px;
    font-weight: 600;
    
    color: var(--white);
    margin-bottom: 20px;
}

.service-details__deliverables-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 575px) {
    .service-details__deliverables-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

.service-details__deliverables-list li {
    font-family: var(--font_kanit);
    font-size: 14px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-details__deliverables-list li i {
    color: var(--theme);
    font-size: 12px;
}

/* --- PROJECT DETAILS PAGE --- */

.project-details {
    background-color: var(--black);
}

.project-details__meta-box {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 40px;
    border-radius: 24px;
    margin-bottom: 60px;
    backdrop-filter: blur(15px);
}

@media (max-width: 575px) {
    .project-details__meta-box {
        padding: 24px;
    }
}

.project-details__meta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media only screen and (max-width: 991px) {
    .project-details__meta-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 575px) {
    .project-details__meta-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.project-details__meta-item {
    display: flex;
    flex-direction: column;
}

.project-details__meta-label {
    font-family: var(--font_inter);
    font-size: 10px;
    font-weight: 600;
    
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.project-details__meta-val {
    font-family: var(--font_teko);
    font-size: 20px;
    font-weight: 500;
    
    color: var(--white);
    letter-spacing: 0.5px;
    margin: 0;
}

.project-details__cover {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 80px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.project-details__cover img {
    width: 100%;
    height: 640px;
    object-fit: cover;
}

@media only screen and (max-width: 991px) {
    .project-details__cover img {
        height: 440px;
    }
}

@media (max-width: 575px) {
    .project-details__cover img {
        height: 300px;
    }
}

.project-details__section-title {
    font-family: var(--font_teko);
    font-size: 36px;
    font-weight: 600;
    
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.project-details__section-desc {
    font-family: var(--font_kanit);
    font-size: 15px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 40px;
}

.project-details__img-row {
    margin-top: 50px;
    margin-bottom: 50px;
}

.project-details__img-row img {
    width: 100%;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.project-details__loop-banner {
    position: relative;
    background: #0c0d11;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 120px 0;
    text-align: center;
    overflow: hidden;
    margin-top: 100px;
}

@media only screen and (max-width: 991px) {
    .project-details__loop-banner {
        padding: 80px 0;
    }
}

.project-details__loop-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(227, 86, 4, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.project-details__loop-banner:hover .project-details__loop-title {
    color: var(--theme);
    transform: scale(1.03);
}

.project-details__loop-banner:hover .project-details__loop-link i {
    transform: translateX(10px);
}

.project-details__loop-sub {
    font-family: var(--font_inter);
    font-size: 11px;
    font-weight: 600;
    
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
}

.project-details__loop-title {
    font-family: var(--font_teko);
    font-size: 80px;
    font-weight: 700;
    
    color: var(--white);
    line-height: 1;
    margin-bottom: 30px;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    display: inline-block;
}

@media only screen and (max-width: 991px) {
    .project-details__loop-title {
        font-size: 56px;
    }
}

@media (max-width: 575px) {
    .project-details__loop-title {
        font-size: 40px;
    }
}

.project-details__loop-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font_inter);
    font-size: 12px;
    font-weight: 700;
    color: var(--theme);
    
    letter-spacing: 1.5px;
    text-decoration: none;
}

.project-details__loop-link i {
    transition: transform 0.3s ease;
}

/*# sourceMappingURL=style.css.map */







.header-logo {
    display: flex;
    align-items: center;
}

.header-logo a {
    display: inline-flex;
    align-items: center;
}

.header-logo img {
    max-height: 60px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: all 0.3s ease;
}

.header-logo img:hover {
    transform: scale(1.05);
}







/* PREMIUM BACKGROUND */

.bg-blobs {
    background:
        radial-gradient(circle at 15% 20%,
            rgba(204, 153, 51, 0.18),
            transparent 35%),

        radial-gradient(circle at 85% 80%,
            rgba(255, 255, 255, 0.05),
            transparent 30%),

        radial-gradient(circle at 50% 50%,
            rgba(204, 153, 51, 0.08),
            transparent 45%),

        linear-gradient(135deg,
            #040404 0%,
            #0b0b0b 20%,
            #111111 50%,
            #0a0a0a 80%,
            #030303 100%) !important;
}

body::before {
    content: "";
    position: fixed;
    width: 600px;
    height: 600px;
    top: -250px;
    left: -250px;
    border-radius: 50%;
    background: rgba(18, 58, 143, .18);
    filter: blur(120px);
    pointer-events: none;
    z-index: -1;
}

body::after {
    content: "";
    position: fixed;
    width: 500px;
    height: 500px;
    bottom: -200px;
    right: -200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
    filter: blur(120px);
    pointer-events: none;
    z-index: -1;
}


.hero-agency {
    position: relative;
    overflow: hidden;
}

.hero-agency::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.03) 1px,
            transparent 1px);

    background-size: 80px 80px;

    mask-image: radial-gradient(circle at center,
            black 40%,
            transparent 100%);

    opacity: .7;
    pointer-events: none;
}

.hero-agency::after {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;

    top: -250px;
    right: -200px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(18, 58, 143, .25),
            transparent 70%);

    filter: blur(80px);

    pointer-events: none;
}

.hero-agency__content::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;

    left: -250px;
    bottom: -250px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(255, 255, 255, .08),
            transparent 70%);

    filter: blur(100px);

    pointer-events: none;
}













































.hero-agency {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0;
}

/* ==========================================
   CONTENT
========================================== */

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.hero-content::before {
    content: "";
    position: absolute;
    width: 800px;
    height: 800px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);

    background: radial-gradient(circle,
            rgba(37, 99, 235, 0.08),
            transparent 70%);

    filter: blur(100px);
    z-index: -1;
}

/* ==========================================
   BADGE
========================================== */

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: 100px;

    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.15);

    color: #2563eb;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    

    margin-bottom: 25px;
}

/* ==========================================
   TITLE
========================================== */

.hero-title {
    font-size: clamp(4rem, 8vw, 7rem);
    line-height: 0.95;
    font-weight: 800;
    letter-spacing: -3px;

    color: #ffffff;

    margin-bottom: 25px;

    text-shadow:
        0 0 20px rgba(255, 255, 255, 0.15),
        0 0 40px rgba(37, 99, 235, 0.15);

    animation: heroTextFloat 5s ease-in-out infinite;
}

.hero-title span {
    background: linear-gradient(135deg,
            #ffffff 0%,
            #b8d9ff 25%,
            #4d8eff5e 60%,
            #08163b 100%);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text {
    max-width: 700px;
    margin: 0 auto 40px;

    font-size: 18px;
    line-height: 1.9;

    color: rgba(255, 255, 255, 0.75);
}

/* ==========================================
   BUTTONS
========================================== */

/* ==========================================
   BUTTON WRAPPER
========================================== */

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 10px;
}

/* ==========================================
   BASE BUTTON STYLE
========================================== */

.btn-main-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 30px;
    border-radius: 14px;

    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;

    text-decoration: none;

    transition: all 0.35s ease;

    overflow: hidden;
}

/* ==========================================
   PRIMARY BUTTON (FIRST ONE)
========================================== */

/* ==========================================
   BUTTON WRAPPER
========================================== */

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ==========================================
   BASE BUTTON STYLE
========================================== */

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 28px;
    border-radius: 14px;

    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;

    text-decoration: none;

    transition: all 0.35s ease;

    overflow: hidden;

    will-change: transform;
}

/* ==========================================
   PRIMARY BUTTON (PREMIUM GRADIENT + GLOW)
========================================== */

.btn-primary {
    color: #fff;

    background: linear-gradient(135deg,
            #2563eb,
            #1e3a8a);

    box-shadow:
        0 10px 25px rgba(37, 99, 235, 0.25),
        inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

/* hover lift */
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow:
        0 18px 45px rgba(37, 99, 235, 0.35);
}

/* animated shine */
.btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 80%;
    height: 100%;

    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.25),
            transparent);

    transition: all 0.6s ease;
}

.btn-primary:hover::before {
    left: 120%;
}

/* ==========================================
   SECONDARY BUTTON (GLASS PREMIUM)
========================================== */

.btn-secondary {
    color: #ffffff;

    background: rgba(255, 255, 255, 0.06);

    border: 1px solid rgba(255, 255, 255, 0.15);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

/* hover */
.btn-secondary:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(37, 99, 235, 0.35);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.25);
}

/* subtle glow ring effect */
.btn-secondary::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 14px;

    background: radial-gradient(circle at center,
            rgba(37, 99, 235, 0.15),
            transparent 70%);

    opacity: 0;
    transition: 0.4s ease;
}

.btn-secondary:hover::after {
    opacity: 1;
}

/* ==========================================
   ACTIVE CLICK FEEL
========================================== */

.btn:active {
    transform: translateY(-1px) scale(0.98);
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 768px) {
    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .hero-buttons {
        gap: 12px;
    }
}

/* ==========================================
   HERO BACKGROUND IMAGES (FIXED ARCHITECTURE)
========================================== */

/* POSITION ONLY */
.hero-bg-image {
    position: absolute;
    top: -180px;
    left: -180px;
    z-index: 1;
    pointer-events: none;
}

.hero-bg-image-2 {
    position: absolute;
    bottom: -120px;
    right: -120px;
    z-index: 1;
    pointer-events: none;
}

/* ==========================================
   ANIMATION WRAPPER FIX
========================================== */

.hero-bg-image .img-wrap {
    display: inline-block;
    animation: heroPulse 18s ease-in-out infinite;
    transform-origin: top left;
}

.hero-bg-image-2 .img-wrap {
    display: inline-block;
    animation: heroPulseReverse 20s ease-in-out infinite;
    transform-origin: bottom right;
}

/* ==========================================
   IMAGE STYLES
========================================== */

.hero-bg-image img {
    width: 700px;
    opacity: 0.08;

    filter: blur(1px) drop-shadow(0 0 60px rgba(37, 99, 235, 0.35));
}

.hero-bg-image-2 img {
    width: 500px;
    opacity: 0.08;

    filter: blur(2px) drop-shadow(0 0 60px rgba(235, 37, 37, 0.952));

    -webkit-mask-image: radial-gradient(circle at center,
            transparent 0%,
            rgba(0, 0, 0, 0.25) 35%,
            rgba(0, 0, 0, 0.7) 60%,
            rgba(0, 0, 0, 1) 85%);

    mask-image: radial-gradient(circle at center,
            transparent 0%,
            rgba(0, 0, 0, 0.25) 35%,
            rgba(0, 0, 0, 0.7) 60%,
            rgba(0, 0, 0, 1) 85%);
}

/* ==========================================
   ANIMATIONS
========================================== */

@keyframes heroPulse {
    0%, 100% {
        transform: scale(1) rotate(-5deg);
    }

    50% {
        transform: scale(1.08) rotate(5deg);
    }
}

@keyframes heroPulseReverse {
    0%, 100% {
        transform: scale(1) rotate(5deg);
    }

    50% {
        transform: scale(1.08) rotate(-5deg);
    }
}

@keyframes heroTextFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 768px) {

    .hero-title {
        font-size: 3.5rem;
        letter-spacing: -2px;
    }

    .hero-text {
        font-size: 16px;
    }

    .hero-bg-image img {
        width: 350px;
    }

    .hero-bg-image-2 img {
        width: 300px;
    }

    .hero-bg-image {
        top: -80px;
        left: -80px;
    }

    .hero-bg-image-2 {
        bottom: -80px;
        right: -80px;
    }
}




.about-agency__bg-shape {
    position: absolute;
    top: 50%;
    right: 0;

    transform: translateY(-50%);

    z-index: 1;
    pointer-events: none;
}

.about-agency__bg-shape img {
    width: 600px;
    opacity: 0.2;
}

/* ==========================================
   TABLET
========================================== */
@media (max-width: 991px) {

    .about-agency__bg-shape {
        right: 40px;
    }

    .about-agency__bg-shape img {
        width: 300px;
        opacity: 0.6;
    }
}

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


    .about-agency__bg-shape img {
        width: 220px;
        opacity: 0.5;
    }
}

/* ==========================================
   SMALL MOBILE
========================================== */
@media (max-width: 575px) {

    .about-agency__bg-shape {
        right: -30px;
    }

    .about-agency__bg-shape img {
        width: 180px;
        opacity: 0.4;
    }
}








.about-agency__bg-shape-2 {
    position: absolute;
    top: 50%;
    right: 0;

    transform: translateY(-50%);

    z-index: 1;
    pointer-events: none;
}

.about-agency__bg-shape-2 img {
    width: 600px;
    opacity: 0.6;
}

/* ==========================================
   TABLET
========================================== */
@media (max-width: 991px) {

    .about-agency__bg-shape-2 {
        right: 40px;
    }

    .about-agency__bg-shape-2 img {
        width: 300px;
        opacity: 0.6;
    }
}

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


    .about-agency__bg-shape-2 img {
        width: 7000px;
        opacity: 0.8;
    }
}

/* ==========================================
   SMALL MOBILE
========================================== */
@media (max-width: 575px) {

    .about-agency__bg-shape-2 {
        right: -30px;
    }

    .about-agency__bg-shape-2 img {
        width: 600px;
        opacity: 0.4;
    }
}







.marquee-agency__item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    padding: 0 40px;
}

.marquee-agency__item img {
    max-width: 160px;
    max-height: 60px;
    width: auto;
    height: auto;

    object-fit: contain;

    opacity: 0.7;
    transition: all 0.4s ease;

}

.marquee-agency__item:hover img {
    opacity: 1;
    transform: scale(1.05);
}





.privacy-policy {
    position: relative;
}

.privacy-policy__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
}

.privacy-policy__intro {
    max-width: 850px;
    margin: 0 auto 60px;
    color: rgba(255,255,255,.75);
    line-height: 1.8;
}

.privacy-policy__content {
    max-width: 1000px;
    margin: 0 auto;
}

.privacy-policy__item {
    padding: 35px;
    margin-bottom: 20px;

    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 20px;

    backdrop-filter: blur(12px);
}

.privacy-policy__item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #fff;
}

.privacy-policy__item p {
    color: rgba(255,255,255,.75);
    line-height: 1.9;
    margin: 0;
}

@media (max-width: 768px) {

    .privacy-policy__item {
        padding: 25px;
    }

    .privacy-policy__item h3 {
        font-size: 20px;
    }
}



.terms-condition {
    position: relative;
}

.terms-condition__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
}

.terms-condition__intro {
    max-width: 850px;
    margin: 0 auto 60px;
    color: rgba(255,255,255,.75);
    line-height: 1.8;
}

.terms-condition__content {
    max-width: 1000px;
    margin: 0 auto;
}

.terms-condition__item {
    padding: 35px;
    margin-bottom: 20px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 20px;
    backdrop-filter: blur(12px);
}

.terms-condition__item h3 {
    margin-bottom: 15px;
    color: white;
}

.terms-condition__item p {
    line-height: 1.9;
    color: rgba(255,255,255,.75);
}








.client-reviews {
    position: relative;
    overflow: hidden;
    margin-top: -6rem;
}

.client-reviews__title {
    margin-bottom: 20px;
    color: #ffffff;
}

.client-reviews__text {
    max-width: 700px;
    margin: 0 auto 60px;
    color: rgba(255,255,255,.7);
}

.client-review-card {
    position: relative;

    height: 100%;

    padding: 35px;

    border-radius: 24px;

    background: rgba(255,255,255,.03);

    border: 1px solid rgba(255,255,255,.08);

    backdrop-filter: blur(20px);

    transition: all .4s ease;
}

.client-review-card:hover {
    transform: translateY(-8px);

    border-color: rgba(37,99,235,.3);

    box-shadow: 0 20px 50px rgba(37,99,235,.15);
}

.client-review-card__quote {
    font-size: 40px;
    color: #2563eb;
    margin-bottom: 20px;
}

.client-review-card__desc {
    color: rgba(255,255,255,.75);
    line-height: 1.9;
    margin-bottom: 30px;
}

.client-review-card__footer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-review-card__avatar {
    width: 60px;
    height: 60px;

    border-radius: 50%;

    overflow: hidden;

    border: 2px solid rgba(37,99,235,.3);
}

.client-review-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-review-card__footer h5 {
    margin: 0;
    color: #fff;
    font-size: 18px;
}

.client-review-card__footer span {
    color: rgba(255,255,255,.6);
    font-size: 14px;
}



/* ==========================================
   COMPLIANCE BLUEPRINT
========================================== */

.compliance-blueprint__title {
    color: #fff;
    margin-bottom: 20px;
}

.compliance-blueprint__intro {
    max-width: 800px;
    margin: 0 auto 60px;
    color: rgba(255,255,255,.75);
    line-height: 1.9;
}

.compliance-blueprint__card {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 24px;
    padding: 50px;
    backdrop-filter: blur(20px);
}

.compliance-blueprint__step {
    display: flex;
    gap: 30px;
}

.compliance-blueprint__number {
    width: 90px;
    height: 90px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        #2563eb,
        #1e40af
    );

    color: #fff;
    font-size: 28px;
    font-weight: 700;
}

.compliance-blueprint__content h3 {
    color: #fff;
    margin-bottom: 15px;
}

.compliance-blueprint__content p {
    color: rgba(255,255,255,.75);
    line-height: 1.9;
    margin-bottom: 30px;
}

.compliance-blueprint__grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 25px;
}

.compliance-box {
    padding: 30px;
    border-radius: 18px;
}

.compliance-box h4 {
    color: #fff;
    margin-bottom: 20px;
}

.compliance-box ul {
    margin: 0;
    padding-left: 20px;
}

.compliance-box li {
    color: rgba(255,255,255,.8);
    margin-bottom: 12px;
    line-height: 1.7;
}

.compliance-box--success {
    background: rgba(16,185,129,.08);
    border: 1px solid rgba(16,185,129,.2);
}

.compliance-box--danger {
    background: rgba(239,68,68,.08);
    border: 1px solid rgba(239,68,68,.2);
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 991px) {

    .compliance-blueprint__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {

    .compliance-blueprint__card {
        padding: 30px;
    }

    .compliance-blueprint__step {
        flex-direction: column;
    }

    .compliance-blueprint__number {
        width: 70px;
        height: 70px;
        font-size: 22px;
    }
}




/* ==========================================
   AML POLICY
========================================== */

.aml-policy {
    position: relative;
}

.aml-policy__title {
    color: #fff;
    margin-bottom: 20px;
}

.aml-policy__intro {
    max-width: 850px;
    margin: 0 auto 60px;
    color: rgba(255,255,255,.75);
    line-height: 1.9;
}

.aml-policy__wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.aml-policy__item {
    display: flex;
    gap: 25px;

    padding: 30px;
    margin-bottom: 20px;

    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 20px;

    backdrop-filter: blur(15px);

    transition: all .3s ease;
}

.aml-policy__item:hover {
    transform: translateY(-5px);
    border-color: rgba(37,99,235,.3);
}

.aml-policy__number {
    width: 70px;
    height: 70px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        #2563eb,
        #1d4ed8
    );

    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

.aml-policy__content h3 {
    color: #fff;
    margin-bottom: 12px;
}

.aml-policy__content p {
    color: rgba(255,255,255,.75);
    line-height: 1.9;
    margin: 0;
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 768px) {

    .aml-policy__item {
        flex-direction: column;
        padding: 25px;
    }

    .aml-policy__number {
        width: 60px;
        height: 60px;
        font-size: 18px;
    }

    .aml-policy__intro {
        margin-bottom: 40px;
    }
}



/* ==========================================
   PREMIUM WHATSAPP FLOAT
========================================== */

.whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 9999;
    text-decoration: none;
}

.whatsapp-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;

    min-width: 220px;
    padding: 14px 18px;

    border-radius: 18px;

    background: rgba(7, 17, 35, 0.95);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border: 1px solid rgba(255,255,255,0.08);

    box-shadow:
        0 20px 40px rgba(0,0,0,0.25),
        0 0 30px rgba(11, 31, 65, 0.3);

    transition: all .35s ease;
}

.whatsapp-float:hover .whatsapp-content {
    transform: translateY(-5px);
    box-shadow:
        0 25px 50px rgba(0,0,0,0.35),
        0 0 40px rgba(21, 58, 120, 0.45);
}

.whatsapp-status {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #22c55e;
    position: relative;
    flex-shrink: 0;
}

.whatsapp-status::before {
    content: "";
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid #22c55e;
    animation: onlinePulse 2s infinite;
}

.whatsapp-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.whatsapp-text .small {
    font-size: 12px;
    color: rgba(255,255,255,.65);
}

.whatsapp-text .big {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

.whatsapp-icon {
    width: 52px;
    height: 52px;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        #0f172a,
        #1e3a8a
    );

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    font-size: 24px;

    box-shadow:
        0 10px 20px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.15);
}

.whatsapp-pulse {
    position: absolute;
    right: 10px;
    bottom: 10px;

    width: 60px;
    height: 60px;

    border-radius: 50%;
    background: rgba(30,58,138,.25);

    animation: whatsappRing 2.5s infinite;
}

@keyframes whatsappRing {
    0% {
        transform: scale(1);
        opacity: .8;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes onlinePulse {
    0% {
        transform: scale(1);
        opacity: .8;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Mobile */

@media (max-width: 768px) {

    .whatsapp-float {
        right: 15px;
        bottom: 20px;
    }

    .whatsapp-content {
        min-width: auto;
        padding: 12px;
        border-radius: 50px;
    }

    .whatsapp-text {
        display: none;
    }

    .whatsapp-icon {
        width: 55px;
        height: 55px;
        font-size: 26px;
    }
}