.bgBlack {
    background-color: #000;
}

.ourCount-section {
    position: relative;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 120px 0px 92px;
}

.ourCount-main-title {
    font-size: 90px;
    font-weight: 600;
}

.ourCount-video-wrapper {
    width: 100%;

    z-index: 1;
    pointer-events: none;
    mix-blend-mode: screen;
}

.videocontent-wrapper {
    max-width: 600px;
    margin-left: 25%;
    margin-right: auto;
}

.ourCount-bg-video {
    width: 100%;
    height: auto;
}

.ourCount-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    z-index: 2;
    flex-wrap: wrap;
    gap: 30px;
}

.ourCount-disclaimer {
    font-size: 16px;
    color: #A9A9A9;
    font-weight: 500;
    max-width: 330px;
}

.ourCount-stats-grid {
    display: flex;
    gap: 50px;
    padding-right: 80px;
}

.ourCount-stat-item {
    padding-left: 50px;
}

.ourCount-stat-item:not(:first-child) {
    border-left: 1px solid #333;
}

.ourCount-number-wrapper {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 2px;
}

.ourCount-label {
    font-size: 20px;
    color: #B8B8B8;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 0px;
}

.ourCount-side-text {
    position: absolute;
    right: -20px;
    top: 35%;
    transform: translateY(-50%) rotate(270deg);
    font-size: 14px;
    color: #A9A9A9;
    font-weight: 500;
    display: flex;
    column-gap: 15px;
    align-items: center;
}

.infinite-slider-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: #000;
}


.infinite-slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.infinite-slider-track {
    display: flex;
    width: max-content;
    column-gap: 200px;
    padding-right: 200px;
}


.infinite-slider-track img {
    display: flex;
    margin: auto;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.7;
}


.infinite-track-left {
    animation: scrollLeft 10s linear infinite;
}

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

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


.infinite-track-right {
    animation: scrollRight 10s linear infinite;
}

@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }

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



/* Updated Explore Button Style */
.ourCount-btn-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

/* button */
.theme-btn {
    position: relative;
    padding: 2px 18px;
    background: transparent;
    color: #fff;
    border: 0px solid #000;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.5s ease, border-color 0.5s ease;
    z-index: 1;
    overflow: visible;
    text-decoration: none;
    width: fit-content;
}

.theme-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: white;
    transition: left 0.4s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.4s ease;
    z-index: -1;
    opacity: 0;
    pointer-events: none;
}

.theme-btn-text {
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.theme-arrow-svg {
    transition: transform 0.4s ease;
}

.theme-btn:hover {
    color: black;
    border-color: transparent;
}

.theme-btn:hover::before {
    left: 0;
    opacity: 1;
}

.theme-btn:hover .theme-arrow-svg {
    transform: translate(3px, -3px);
}

.theme-corner {
    position: absolute;
    width: 5px;
    height: 5px;
    border: 1px solid #ffffff;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.theme-top-left {
    top: 0px;
    left: 0px;
    border-right: 0;
    border-bottom: 0;
}

.theme-top-right {
    top: 0px;
    right: 0px;
    border-left: 0;
    border-bottom: 0;
}

.theme-bottom-left {
    bottom: 0px;
    left: 0px;
    border-right: 0;
    border-top: 0;
}

.theme-bottom-right {
    bottom: 0px;
    right: 0px;
    border-left: 0;
    border-top: 0;
}

.theme-btn:hover .theme-top-left {
    transform: translate(-4px, -4px);
    border-color: #fff;
}

.theme-btn:hover .theme-top-right {
    transform: translate(4px, -4px);
    border-color: #fff;
}

.theme-btn:hover .theme-bottom-left {
    transform: translate(-4px, 4px);
    border-color: #fff;
}

.theme-btn:hover .theme-bottom-right {
    transform: translate(4px, 4px);
    border-color: #fff;
}

.theme-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: -1;
}

.theme-btn:hover {
    color: black;
}

.theme-btn:hover::before {
    transform: scaleX(1);
}

.theme-arrow-svg {
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    transform: rotate(0deg);
}

.theme-btn:hover .theme-arrow-svg {
    transform: rotate(45deg) translateX(2px);
}

/* button */

/* dark button */
.darkbtn .theme-btn {
    color: #000000;
    border: 0px solid #fff;
}

.darkbtn .theme-btn::before {
    background: #000;
}

.darkbtn .theme-btn:hover {
    color: black;
    border-color: transparent;
}

.darkbtn .theme-corner {
    border: 1px solid #000;
}

.darkbtn .theme-top-left {
    top: 0px;
    left: 0px;
    border-right: 0;
    border-bottom: 0;
}

.darkbtn .theme-top-right {
    top: 0px;
    right: 0px;
    border-left: 0;
    border-bottom: 0;
}

.darkbtn .theme-bottom-left {
    bottom: 0px;
    left: 0px;
    border-right: 0;
    border-top: 0;
}

.darkbtn .theme-bottom-right {
    bottom: 0px;
    right: 0px;
    border-left: 0;
    border-top: 0;
}

.darkbtn .theme-btn:hover .theme-top-left {
    border-color: #000;
}

.darkbtn .theme-btn:hover .theme-top-right {
    border-color: #000;
}

.darkbtn .theme-btn:hover .theme-bottom-left {
    border-color: #000;
}

.darkbtn .theme-btn:hover .theme-bottom-right {
    border-color: #000;
}

.darkbtn .theme-btn::before {
    background: #000;
}

.darkbtn .theme-btn:hover {
    color: #fff;
}

/* dark button */

.full-videowrapper {
    border: 1px solid #252525;
}

.full-videowrapper,
.full-videowrapper video {
    border-radius: 8px;
}

.serviceRow-container .serviceRow-item:last-child {
    border-bottom: 1px solid #e0e0e0;
}

.slidingwords-track {
    display: inline-flex;
    animation: scroll 30s linear infinite;
    padding: 15px 0px 20px;
}

.slidingwords-item {
    font-size: 150px;
    font-weight: 400;
    color: #ffffff26;
    padding: 0 250px 0px 0px;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.globe-icon {
    color: #fff;
    margin-left: 15px;
    font-size: 0.9em;
}

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

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

.slidingwords-item img {
    padding: 0px 10px;
}


.portfolio-slider {
    padding-left: 25px;
    border-bottom: 1px solid #FFFFFF1A;
}

.portfolio-slider-container {
    overflow: hidden;
    width: 100%;
}

.portfolio-slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
    /* Premium smooth feel */
}

.portfolio-slide {
    min-width: calc(30% - 20px);
    flex-shrink: 0;
}

.portfolio-img-container {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
}

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

.portfolio-tags span {
    font-size: 10px;
    border: 1px solid #FFFFFF33;
    padding: 4px 12px;
    border-radius: 20px;
    margin-right: 5px;
    color: #888;
}

/* Controls */
.portfolio-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
}

.portfolio-progress-bar {
    width: 100px;
    height: 2.5px;
    background: #FFFFFF33;
    position: relative;
}

.portfolio-progress-fill {
    width: 0%;
    height: 100%;
    background: #fff;
    transition: width 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    transform-origin: left;
}

button {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 20px;
}

.see-all {
    column-gap: 10px;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
}

.section-titlerow h2 {
    font-size: 24px;
    color: #fff;
    font-weight: 500;
}

.see-all .theme-btn {
    padding: 7px 7px;
}


.see-all:hover .theme-btn {
    color: black;
    border-color: transparent;
}

.see-all:hover .theme-btn::before {
    left: 0;
    opacity: 1;
}

.see-all:hover .theme-btn .theme-arrow-svg {
    transform: translate(3px, -3px);
}

.see-all:hover .theme-btn .theme-top-left {
    transform: translate(-4px, -4px);
    border-color: #fff;
}

.see-all:hover .theme-btn .theme-top-right {
    transform: translate(4px, -4px);
    border-color: #fff;
}

.see-all:hover .theme-btn .theme-bottom-left {
    transform: translate(-4px, 4px);
    border-color: #fff;
}

.see-all:hover .theme-btn .theme-bottom-right {
    transform: translate(4px, 4px);
    border-color: #fff;
}

.see-all:hover .theme-btn {
    color: black;
}

.see-all:hover .theme-btn::before {
    transform: scaleX(1);
}

.see-all:hover .theme-btn .theme-arrow-svg {
    transform: rotate(45deg) translateX(2px);
}

.portfolio-slider-track {
    display: flex;
    cursor: grab;
    transition: transform 0.3s ease-out;
    user-select: none;
}

.portfolio-slider-track:active {
    cursor: grabbing;
}

.portfolio-slide img {
    pointer-events: none;
    border-radius: 8px;
}

.slidingwords-section {
    overflow: hidden;
}

.service-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag-points {
    color: #B8B8B8;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.5em;
    background: rgb(255 255 255 / 10%);
    padding: 8px 16px;
    border-radius: 70px;
    border: 1px solid rgb(255 255 255 / 10%);
}

.prjt-name {
    color: #fff;
    font-weight: 500;
    font-size: 22px;
    line-height: 1.5em;
    margin: 12px 0 16px;
}

/**********creative-website************/
.creative-hero {

    padding: 200px 0px 250px;

}

.creative-hero-section {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.creative-bg-video {
    position: absolute;
    top: -110px;
    left: 40px;
    width: 700px;
    height: 400px;
    z-index: 1;

}

.creative-container {
    position: relative;
    z-index: 10;
    width: 87%;
    margin-left: 0px;
    display: flex;
    flex-direction: column;
    margin-right: auto;
}

/* "Creative" Text Styling */
.creative-main-title {
    font-size: 232px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    line-height: 0.8;
}

.creative-main-title span {
    font-family: serif;
    font-weight: 300;
}

.creative-description {
    color: #fff;
    max-width: 330px;
    font-size: 16px;
    margin-top: 70px;
    margin-left: 20%;
    line-height: 1.4;
    opacity: 0.7;
}

.creative-title-row {
    display: flex;
    column-gap: 95px;
    align-items: baseline;
}

/* Floating Video Card on the Right */
.creative-video-card {

    width: 250px;
    height: 140px;
    overflow: hidden;
    transform: rotate(0deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.creative-video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* "Website" Text Styling */
.creative-text-bottom {
    display: flex;
    justify-content: space-between;
}

.icon-title {
    display: flex;
    align-items: start;
}

.creative-sub-title {
    font-size: 232px;
    font-family: 'Playfair Display', serif;
    /* Ensure you import this font */
    font-style: italic;
    font-weight: 400;
    color: #fff;
    margin: 0;
    line-height: 1;
}

/* Animated Sticker/Icon */
.creative-floating-icon {
    position: absolute;
    right: 0%;
    bottom: -15%;
    width: 130px;
    /* Sets the 'hinge' point to the top center of the icon */
    transform-origin: top center;

    /* The timing function 'ease-in-out' makes the ends of the swing feel heavy */
    animation: creative-swing 2s ease-in-out infinite;
}

@keyframes creative-swing {
    0% {
        /* Swing to the left */
        transform: rotate(0deg) translateX(-15px);
    }

    50% {
        /* Swing to the right */
        transform: rotate(30deg) translateX(15px);
    }

    100% {
        /* Back to the left */
        transform: rotate(0deg) translateX(-15px);
    }
}

/***********creative-website?************/
/***********featured-stories************/

.stories-section {
    background-color: #ffffff;
}

.stories-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 52px;
}

.stories-title {
    font-size: 40px;
    font-weight: 600;
    color: #000000;
}

.stories-subtitle {
    text-align: right;
    font-size: 18px;
    color: #000;
    max-width: 360px;
    font-weight: 500;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stories-card {
    display: flex;
    flex-direction: column;
}

.stories-image-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.stories-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.stories-image-container:hover .stories-image {
    transform: scale(1.05);
}

.stories-play-button {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
}




.stories-content {
    padding-top: 20px;
}

.stories-tag {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 25px;
    background-color: #FF00001A;
    border: 1px solid #FF000033;
    color: #D82028;
}

.stories-client-name {
    font-size: 22px;
    font-weight: 500;
    color: #000;
    margin-bottom: 15px;
}

.stories-description {
    font-size: 16px;
    color: #707070;

}

.stories-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.stories-modal-content {
    position: relative;
    width: 80%;
    max-width: 900px;
    aspect-ratio: 16 / 9;
    background-color: #000;
}

.stories-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

.stories-modal iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 992px) {
    .stories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .stories-header {
        flex-direction: column;
    }

    .stories-subtitle {
        text-align: left;
        margin-top: 15px;
        max-width: 100%;
    }

    .stories-grid {
        grid-template-columns: 1fr;
    }

    .stories-modal-content {
        width: 95%;
    }
}

/*********featured-stories************/
/*********blog-section************/
.blog-section {
    padding: 64px 0px 120px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #fff;
}

.blog-card .tag-points {
    padding: 5px 16px;
}

.blog-img-box {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 24px;
}

.blog-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img-box img {
    transform: scale(1.05);
    /* Subtle zoom on hover */
}

.blog-meta {
    display: inline-flex;
    align-items: center;
    background: #1a1a1a;
    /* Dark pill background */
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    width: fit-content;
    margin-bottom: 15px;
    color: #ccc;
}

.blog-card-title {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 16px;
}

.blog-card-text {
    font-size: 16px;
    color: #A9A9A9;
    margin-bottom: 0px;
}

/*********blog-section************/
/*********faq-section************/
.faq-section {
    background: #000;
    color: #fff;
    padding: 55px 0px 0px;
    overflow: hidden;
    position: relative;
}

.faq-container {
    display: flex;
    gap: 40px;
}

.faq-visuals {
    flex: 0.9;
}

.faq-orb-container {
    width: 420px;
    height: 420px;
    margin-right: 15%;
    margin-left: auto;
}

.faq_video {
    width: 100%;
    height: 100%;
}

.faq-main-title {
    font-size: 70px;
}

.faq-main-title span {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    display: block;
    margin-top: 10px;
}

.faq-orb {
    width: 300px;
    animation: orb-float 6s ease-in-out infinite;
}

.visual-mob {
    display: none;
}

/* Accordion Logic */
.faq-accordion {
    flex: 1.2;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    padding: 40px 0;
    text-align: left;
    font-size: 24px;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    column-gap: 28px;
}

.faq-accordion .faq-item:first-child .faq-question {
    padding-top: 0px;
}

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

.faq-answer p {
    padding-bottom: 40px;
    color: #A9A9A9;
    font-size: 22px;
    margin-bottom: 0px;
}

.stripscroll-container {
    position: relative;
    height: 350px;
    margin-top: 165px;
}

.stripscroll-banner {

    width: 150%;
    white-space: nowrap;
    display: flex;
    overflow: hidden;
    font-size: 80px;
    line-height: 95px;
    font-weight: 400;
    align-items: center;
    border-top: 2px solid rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    margin-left: -20px;
}

.stripscroll-yellow {
    background: #FFCC00;
    color: #000;
    transform: rotate(-6deg);
    z-index: 1;
}

.stripscroll-white {
    background: #ffffff;
    color: #000;
    transform: rotate(5deg);
    z-index: 2;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
}

.stripscroll-wrapper {
    display: flex;
    animation: stripscroll-move-left 45s linear infinite;
}

.stripscroll-white .stripscroll-wrapper {
    animation: stripscroll-move-right 45s linear infinite;
}

.stripscroll-item {
    display: flex;
    align-items: center;
    padding: 0 40px;
}

.stripscroll-globe {

    margin-left: 15px;
}

@keyframes stripscroll-move-left {
    0% {
        transform: translateX(0);
    }

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

@keyframes stripscroll-move-right {
    0% {
        transform: translateX(-50%);
    }

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



/* Mobile Responsive */
@media (max-width: 991px) {
    .faq-container {
        flex-direction: column;
        text-align: left;
    }

    .faq-main-title {
        font-size: 2.5rem;
    }

    .faq-orb {
        width: 150px;
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .faq-tape {
        font-size: 1.2rem;
        padding: 10px 0;
    }
}

/*********faq-section************/


.connect-banner-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.connect-lottie-bg {

    margin: auto;
    z-index: 1;
    width: 100%;
}

/* Force Lottie SVG to fill the container */
.connect-lottie-bg svg {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}

.connect-banner-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    margin: auto;
    bottom: 0PX;
    z-index: 2;
    /* Sits above the Lottie animation */
    text-align: center;
    max-width: 950px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.connect-title-row {
    background-color: #D0FF00;
    /* The neon lime color from your image */
    padding: 8px 40px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.connect-banner-title {
    font-family: "DM Sans";
    display: inline-block;
    font-size: 70px;
    font-weight: 600;
    color: #000;
    letter-spacing: -3px;
    margin-bottom: 0px;
    column-gap: 5px;
}

.connect-icon {
    vertical-align: middle;
    margin-right: 5px;
}

.connect-banner-sub {
    font-size: 20px;
    color: #000;
    margin-bottom: 42px;
    font-weight: 500;
    max-width: 540px;
}

.connect-talk-btn {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 10px 28px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    border: none;
    border-radius: 50px;
    overflow: hidden;
    transition: color 0.4s ease;
    z-index: 1;
    position: relative;
}


.connect-talk-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transition: left 0.4s ease;
    z-index: -1;
}


.connect-talk-btn:hover::before {
    left: 0;
}

.connect-talk-btn:hover {
    color: #ffffff;
}

.connect-talk-btn:hover .connect-btn-arrow {
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}


.bg-purple,
.bar-yellow,
.bar-blue {
    position: absolute;
    top: 0;
    left: -100%;
    height: 100%;
    width: 100%;
    transform: translateX(0);
    transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

/* Layer colors */
.bg-purple {
    background-color: #008CFF;
    z-index: -3;
    transition-delay: 0.05s;
}

.bar-yellow {
    background-color: #E1FF00;
    z-index: -2;
    transition-delay: 0.1s;
}

.bar-blue {
    background-color: #8A38F5;
    z-index: -1;
    transition-delay: 0.03s;
}

/* Hover IN animation */
.connect-talk-btn:hover .bar-blue {
    transform: translateX(100%);
    transition-delay: 0.1s;
}

.connect-talk-btn:hover .bar-yellow {
    transform: translateX(100%);
    transition-delay: 0.05s;
}

.connect-talk-btn:hover .bg-purple {
    transform: translateX(100%);
    transition-delay: 0s;
}

/* Hover OUT animation (same timing, reversed automatically) */
.connect-talk-btn:not(:hover) .bar-blue {
    transition-delay: 0s;
}

.connect-talk-btn:not(:hover) .bar-yellow {
    transition-delay: 0.05s;
}

.connect-talk-btn:not(:hover) .bg-purple {
    transition-delay: 0.1s;
}


/********************************contact-page Start******************************/



.contact-wrapper {
    padding: 130px 0px 100px;
    font-family: "DM Sans";
}

/* Header & Form Grid */
.contact-grid-top {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    margin-bottom: 60px;
}

.contact-main-title {
    font-size: 120px;
    line-height: 120px;
    font-family: "DM Sans";
    color: #fff;
    font-weight: 600;
    padding-bottom: 50px;
}

.contact-subtext {
    color: #FFF;
    font-size: 18px;
    font-family: "DM Sans";
    max-width: 375px;
    margin-bottom: 53px;
}

.contact-careers {
    color: #AAAAAA;
    font-size: 22px;
    font-weight: 600;
    padding-top: 35px;
    margin-bottom: 16px;
}

.contact-careers a {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: underline;
}

.contact-careers a:hover {
    color: #AAAAAA;
}

/* Tabs */
.contact-tabs {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 30px;
    display: flex;
    gap: 30px;
}

.contact-tab-btn {
    background: none;
    border: none;
    color: #fff;
    padding: 22px 42px;
    cursor: pointer;
    font-size: 20px;
    font-weight: 500;
    position: relative;
}

.contact-tab-btn.contact-active {
    color: white;
}

.contact-tab-btn.contact-active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: white;
}

/* Form Styles */
.contact-form-content {
    display: none;
}

.contact-form-content.contact-show {
    display: block;
}

.contact-form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}

.contact-input-group label {
    font-size: 16px;
    color: #fff;
    margin-bottom: 10px;
}

.contact-input-group input,
.contact-input-group select,
.contact-input-group textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid #ffffff33;
    color: #fff;
    padding: 10px 0;
    outline: none;
    font-size: 20px;
    font-weight: 500;
}

.contact-form-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 40px;
}

.contact-submit-btn {
    background: #fff;
    color: #000;
    border: 1px solid #fff;
    padding: 10px 40px;
    font-weight: 500;
    cursor: pointer;
    font-size: 20px;
    width: 390px;
    transition: all 0.4s ease;
}

.contact-submit-btn svg {
    margin-left: 10px;
}

.contact-submit-btn:hover svg {
    transform: rotate(45deg) translateX(0px);
}

.contact-submit-btn:hover {
    background-color: #000;
    color: #fff;
}

/* Locations */
.contact-location-row {
    display: grid;
    grid-template-columns: 276px 1fr 1fr 1fr;
    align-items: center;
    gap: 24px;
    padding: 30px 0;
    border-bottom: 1px solid #ffffff33;
    font-family: "DM Sans";
    color: #fff;
    align-items: flex-end;
}

.location-picture {
    width: 100%;
    height: 186px;
}

.contact-loc-details h3 {
    font-size: 42px;
    font-weight: 500;
    font-family: "DM Sans";
    margin-bottom: 24px;
}

.contact-loc-details a,
.contact-loc-phone a {
    text-decoration: underline;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
}

.contact-loc-address a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    width: 77%;
    display: inline-block;
}

.contact-loc-address {
    font-size: 18px;
    color: #fff;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.contact-input-group textarea {
    max-height: 180px;
    min-height: 80px;
}

.contact-input-group select option {
    color: #000;
    font-size: 18px;
}

.contact-form-col input input::placeholder,
.contact-form-col input textarea::placeholder {
    color: #A4A4A4;
}

.contact-input-group select.contact-select-field option:disabled {
    color: #727272;
}

.contact-input-group select.contact-select-field:invalid {
    color: #727272;
}

.contact-input-group select.contact-select-field:valid {
    color: #ffff;
}

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

/* Track */
textarea::-webkit-scrollbar-track {
    background: #ececec;
}

/* Handle */
textarea::-webkit-scrollbar-thumb {
    background: #A4A4A4;
}

/* Handle on hover */
textarea::-webkit-scrollbar-thumb:hover {
    background: #5c5c5c;
}

.contact-captcha-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.contact-captcha-display {
    border: 1px dashed #3c3c3c;
    background-color: #ffffff0d;
    color: #AAAAAA;
    padding: 12px 30px;
    font-family: "DM Sans";
    font-size: 16px;
    letter-spacing: 2px;
    user-select: none;
    min-width: 118px;
    text-align: center;
}

.contact-captcha-equals {
    color: #888;
    font-size: 16px;
}

.contact-captcha-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.contact-captcha-input {
    background: transparent;
    border: none;
    border-bottom: 1px solid #ffffff33;
    color: #fff;
    padding: 10px 10px 10px 0;
    font-size: 16px;
    outline: none;
}

.contact-refresh-btn {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.contact-refresh-btn:active {
    transform: rotate(180deg);
}

.contact-section-title {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    font-family: "DM Sans";
    margin-bottom: 12px;
}

.contact-loc-phone {
    display: flex;
    align-items: center;
    column-gap: 12px;
    flex-wrap: wrap;
    row-gap: 12px;
}

.contact-loc-details a:hover,
.contact-loc-phone a:hover,
.contact-loc-address a:hover {
    color: #aaaaaa;
}

/* Initial state of the section */
.slide-up {
    opacity: 0;
    transform: translateY(50px);
    /* Move down by 50px */
    transition: all 0.8s ease-out;
    /* Smooth transition */
}

/* State when the section is visible */
.slide-up.contact-visible {
    opacity: 1;
    transform: translateY(0);
    /* Return to original position */
}

/********************************contact-page end******************************/
/********************************work-page start******************************/

.work-top-section {
    background-color: #000;
    background-image: url("../images/work/work-background.svg");
    background-repeat: no-repeat;
    background-position: center center;
    /* background-size: cover;
    width: 100%; */
    padding: 70px 0px 85px;
    margin: 250px 0px 40px;
    border-top: 1PX solid #ffffff4d;
    border-bottom: 1PX solid #ffffff4d;
}
.work-content-row{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Heading Style */
.work-title {
    color: #ffffff;
    font-family: 'DM Sans';
    font-size: 70px;
    font-weight: 400;
}
.work-title-italic {
    font-style: italic;
    font-family: 'Playfair Display', serif;
}

/* Description Style */
.work-description {
    color: #ffff;
    font-size: 16px;
    max-width: 580px;
    text-transform: capitalize;
}


.work-list-section {
    background-color: #000;
    padding: 40px 0px 130px;
}

/* Tabs Layout */
.work-list-tabs-container {
    display: flex;
    gap: 12px;
    margin-bottom: 96px;
}

.work-list-tab {
    border: 1px solid #ffffff1a;
    color: #fff;
    padding: 12px 24px;
    border-radius: 33px;
    cursor: pointer;
    font-size: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.work-list-tab sup{
    font-size: 14px;
}
.work-list-tab-active {
    background: #ffffff1a; /* Your highlight color */
    border-color: #ffffff1a;
    color: #FF006E;
}
.work-list-tab-active .tab-dot{
    color: #FF006E;
}
.work-list-tab-active sup{
    color: #fff;
}
.tab-dot{
    color: #fff;
    font-size: 40px;
    line-height: 0px;
}

.work-card-link{
    text-decoration: none;
}
.work-list-grid {
    display: grid;
   grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    row-gap: 92px;
}


.work-list-card {
    opacity: 1;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.work-list-card-hidden {
    display: none;
}

.work-list-animate-in {
    animation: workListFadeUp 0.6s forwards;
}

@keyframes workListFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Image Styling */
.work-list-image-wrapper {
    width: 100%;
    background: #111;
    overflow: hidden;
    margin-bottom: 30px;
}

.work-list-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.work-list-card:hover .work-list-image-wrapper img {
    transform: scale(1.08);
}

/* Typography */
.work-list-card-title {
    color: #fff;
    font-size: 22px;
    line-height: 1.4;
    font-weight: 400;
    margin-bottom: 25px;
}

.work-list-client-name {
    color: #B1B1B1;
    font-size: 18px;
    margin-bottom: 34px;
    text-transform: capitalize;
}

.work-list-tag {
    display: inline-block;
    background: #ffffff1a;
    border: 1px solid #ffffff1a;
    color: #B8B8B8;
    padding: 8px 16px;
    border-radius: 70px;
    font-size: 14px;
    font-weight: 600;
    margin-right: 8px;
    margin-bottom: 10px;
}



.work-list-hidden {
    display: none;
}

/* Button Wrapper */
.work-list-btn-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 130px;
}


/********************************work-page end******************************/



/* Prevent background scroll */
body.no-scroll {
    overflow: hidden;
    height: 100vh;
}

.side-popup {
    position: fixed;
    top: 0; right: 0;
    width: 100%; height: 100%;
    visibility: hidden;
    opacity: 0;
    z-index: 9999;
    display: flex;
    justify-content: flex-end;
    transition: all 0.4s ease;
}

.side-popup.active { visibility: visible; opacity: 1; }

.popup-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
   background: rgb(0 0 0 / 75%);
}


.popup-content {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 100%;
    background: #fff;
    z-index: 10001;
    overflow-y: auto; /* ENABLE SCROLL INSIDE POPUP */
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
}

.side-popup.active .popup-content {
    transform: translateX(0);
}

/* Close Button Styling - Circular and Top-Right */
.popup-scroll-container{margin-top: -30px;}
.close-popup {
    position: sticky;
    top: 10px;
    left: calc(100% - 40px);
    width: 30px;
    height: 30px;
    background: #fff;
    border: 1px solid rgb(215 215 215);
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    z-index: 10002;
    color: #000;
}

.close-popup:hover {
    /* background: rgba(0,0,0,0.2); */
}

.popup-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.btn-talk {
    padding: 12px 30px;
    border: 1px solid #000;
    text-decoration: none;
    color: #000;
    font-weight: 500;
    transition: 0.3s;
}

.btn-talk:hover {
    background: #000;
    color: #fff;
}

.popup-nav {
    display: flex;
    border: 1px solid #eee;
}

.nav-arrow {
    background: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 18px;
    transition: 0.2s;
}

.nav-arrow:first-child {
    border-right: 1px solid #eee;
}

.nav-arrow:hover {
    background: #f8f8f8;
}

/* Ensure the image doesn't squash */
.p-hero-img {
    width: 100%;
    height:590px;
    object-fit: cover;
}

.p-meta-row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 20px;
    padding: 22px 0px;
    font-size: 16px;
    font-weight: 500;
    color: #666666;
    border-bottom: 1px solid #D8D8D8;
}
.p-main-title{
    font-size: 35px;
    font-weight: 500;
    color: #000;
    padding: 30px 0px 25px;
    /* max-width: 502px; */
}
.p-main-desc{
    color: #282828;
    font-size: 20px;
    font-weight: 200;
    max-width: 95%;
    padding-bottom: 95px;
}
.p-view-live{
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 20px;
    border-bottom: 1px solid #D8D8D8;
    padding-bottom: 10px;
}
.p-year-label{
    color: #000;
    font-size: 14px;
    font-weight: 500;
}
.section-label{
    font-size: 30px;
    font-weight: 500;
    padding: 70px 0px 35px;
}
.popup-service-tag{
    font-size: 20px;
    font-weight: 400;
    color: #000;
    border: 1px solid #D8D8D8;
    border-radius: 233px;
    padding: 12px 25px;
    width: fit-content;
    display: flex;
    align-items: center;
    column-gap: 12px;
}
.p-services-grid{
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    width: 95%;
}
.p-gallery-grid img{
    border-radius: 8px;
}

.p-gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    margin-top: 36px;
    padding-bottom: 50px;
      border-bottom: 1px solid #D8D8D8;
}

.p-gallery-grid img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}


.p-gallery-grid .full-span {
    grid-column: span 2;
    height: auto;
}
.p-footer-top-row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 20px;
    padding: 15px 0px 65px;
}
.p-disclaimer{
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
    color: #000;
    column-gap: 3px;
    max-width: 250px;
    justify-content: end;
}
.p-cta-title{
    font-size: 35px;
    font-weight: 500;
    color: #000;
    max-width: 558px;
    margin-bottom: 20px;
}
.p-cta-text{
    color: #282828;
    font-size: 20px;
    font-weight: 200;
    max-width: 90%;
}
.p-cta-text a {
    color: #282828;
    font-size: 20px;
    font-weight: 200;
    text-decoration: none;
}
.p-cta-text a:hover {
    color: #000;
    text-decoration: underline;
}
.p-footer{
    position: sticky;
    bottom: 0;
    z-index: 10;
    padding: 20px 0px;
    background: #000;
    transform: translateY(100%);
}

.p-footer.animate-in {
    animation: slideUpFooter 0.5s ease forwards;
}

@keyframes slideUpFooter {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.p-footer-row{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.p-btn-talk{
    border-radius: 4px;
    background-color: #fff;
    border: 1px solid #fff;
    font-weight: 600;
    font-size: 16px;
    color: #000;
    padding: 10px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 5px;
    transition: all 0.4s ease;
}
.p-btn-talk:hover{
background-color: #000;
color: #fff;
}
.p-btn-talk:hover img {
    transform: rotate(45deg) translateX(0px);
    filter: invert(1);
}
.p-nav-btns{
    display: flex;
    align-items: center;
    column-gap: 11px;
}
.p-nav-arrow{
    background-color: #fff;
    border: 1px solid #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}
.p-nav-arrow:hover{
    background-color: #000;
}
.p-nav-arrow:hover img {
    filter: invert(1);
}
.p-cta-section{
    padding-bottom: 70px;
}

/*----------------------------------
privacy policy
-------------------------------------*/

.policy-banner{
text-align:center;
margin-bottom:60px;
}

.policy-banner h1{
font-size:64px;
font-weight:400;
letter-spacing:.5px;
}

.policy-banner h1 span{
color:#ff2b2b;
font-style:italic;
}

.policy-banner p{
margin-top:12px;
color:#bfbfbf;
font-size:14px;
max-width:600px;
margin-left:auto;
margin-right:auto;
}

.divider{
height:1px;
background:rgba(255,255,255,0.08);
margin-top:30px;
}

/* section */

.policy-section{
display:flex;
gap:20px;
margin-top:55px;
}

.policy-icon{
font-size:22px;
color:#7a7a7a;
margin-top:4px;
}

.policy-content h3{
font-size:20px;
font-weight:500;
margin-bottom:12px;
}

.policy-content p{
color:#bfbfbf;
font-size:15px;
}

.policy-content ul{
margin-top:12px;
padding-left:20px;
}

.policy-content ul li{
list-style:none;
color:#bfbfbf;
margin-bottom:10px;
position:relative;
font-size:15px;
}

.policy-content ul li::before{
content:"›";
position:absolute;
left:-18px;
color:#ff2b2b;
font-weight:700;
}

/* responsive */

@media(max-width:768px){

.policy-banner h1{
font-size:36px;
}

.policy-section{
gap:12px;
}


.policy-content h3{
font-size:18px;
}

}


/******************case studies*****************/


section.tajvi-hero-section{
    background: url(../images/case-study/tajvi/tajvi-banner.webp) center / cover no-repeat;
}
section.khaleel-hero-section{
    background: url(../images/case-study/tkkhaleel/banner.webp) center / cover no-repeat;
}
section.fourstar-hero-section{
    background: url(../images/case-study/four-star/banner.webp) center / cover no-repeat;
}
section.josalukkas-hero-section{
    background: url(../images/case-study/jos-alukkas/banner.webp) center / cover no-repeat;
}
section.oxypro-hero-section{
    background: url(../images/case-study/jos-alukkas/banner.webp) center / cover no-repeat;
}
section.sas-hero-section{
    background: url(../images/case-study/sas/banner.webp) center / cover no-repeat;
}
section.safeway-hero-section{
    background: url(../images/case-study/safeway/banner.webp) center / cover no-repeat;
}
.sp-dgreen{
    background: #003033 !important;
}
.sp-red {
    background: #2e0201 !important;
}


.cs-video-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.cs-video-section video {
    width: 100%;
    height: auto;
    display: block;
}



/* Container Setup */
.cs-image-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

/* Base Item Styles */
.cs-image-grid-item {
    overflow: hidden;
    border-radius: 8px; /* Optional: matches the slight rounding in the image */
}

.cs-image-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures images fill the space without stretching */
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                filter 0.5s ease;
}
.cs-image-grid-item:hover img {
    /* Slight zoom (1.1x) */
    transform: scale(1.1);
    /* Subtle brightness boost */
    filter: brightness(1.1) contrast(1.05);
}


/* Large Engine (Left Top) */
.cs-item-1 {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

/* Top Center Mechanic */
.cs-item-2 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

/* Top Right Engine */
.cs-item-3 {
    grid-column: 3 / 4;
    grid-row: 1 / 3;
}

/* Center Cockpit (Tall) */
.cs-item-4 {
    grid-column: 2 / 3;
    grid-row: 2 / 4;
}

/* Bottom Left Mechanic */
.cs-item-5 {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
}

/* Bottom Right Hangar (Tall) */
.cs-item-6 {
    grid-column: 3 / 4;
    grid-row: 3 / 4;
}





.cs-row-grid-container {
    display: grid;
    /* Using 6 columns allows for easy 1/3 and 2/3 splits */
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
}

.cs-row-grid-item {
    overflow: hidden;
    border-radius: 12px;
    position: relative;
}

.cs-row-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

/* Row 1: Storefront (Spans 4 columns) */
.cs-row-1 {
    grid-column: span 4;
}

/* Row 1: Bracelet (Spans 2 columns) */
.cs-row-2 {
    grid-column: span 2;
}

/* Row 2: Model (Spans 2 columns) */
.cs-row-3 {
    grid-column: span 2;
    grid-row: span 1;
}

/* Row 2: Jewelry Set (Spans 4 columns) */
.cs-row-4 {
    grid-column: span 4;
}

/* Hover Animation: Zoom + Soft Glow */
.cs-row-grid-item:hover img {
    transform: scale(1.05);
}




.content-video {
    position: relative;
    width: 100%;
    height: 100vh; /* Full screen height */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures video fills space without stretching */
    z-index: 1;
}

/* The Overlay Container */
.video-overlay-text {
    position: relative;
    z-index: 2; /* Sits on top of video */
    width: 100%;
    padding: 0 5%;
    color: #ffffff;
}

/* General Heading Styles */
.video-overlay-text h1 {

    font-size: 232px;
    margin: 0;
}

/* "Creative." - Sans Serif & Left Aligned */
.text-line-1 {
    font-weight: 600;
    text-align: left;
}

/* "Website" - Serif, Italic & Right Aligned */
.text-line-2 {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    text-align: right;
    display: block;
    margin-top: -10px; /* Pulls the lines closer together */
}

.service-optn-icon img{
    filter: brightness(0) invert(1);
}

.testimonials-pg{
    color: #fff;
}
.testimonials-pg .stories-client-name{
    color: #fff;
}
.testimonials-pg .stories-description{
    color: #fff;
}
/* privacy policy */
.terms-page {background-color:#000; font-family:'DM Sans', sans-serif; color:#cfcfcf; padding:275px 0px 100px;}
.terms-page .terms-title {color:#fff; font-size:100px; font-weight:400;}
.terms-page .terms-title span {font-family:"Playfair Display", serif; font-style:italic; background:linear-gradient(90deg, #FB5607, #FF006E); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; color:transparent;}
.terms-page .terms-subtitle {font-size:16px; line-height:1.8; color:#ffffff; max-width:800px; margin:0 auto; font-weight:200; text-transform:capitalize;}
.terms-page .terms-divider {width:100%; height:1px; background-color:#ffffff4d; margin-bottom:110px;}
.terms-page .terms-content-area {display:flex; flex-direction:column; gap:75px;}
.terms-page .terms-block {display:flex; gap:30px; align-items:flex-start;}
.terms-page .terms-block a {font-size:18px; color:#D4D4D4; font-weight:400; text-decoration:none;}
.terms-page .terms-block a:hover {text-decoration:underline;}
.terms-page .terms-icon {flex-shrink:0; width:28px; height:28px; margin-top:2px;}
.terms-page .terms-icon svg {width:100%; height:100%; object-fit:contain;}
.terms-page .terms-content {flex:1;}
.terms-page .terms-content h3 {font-size:30px; font-weight:600; color:#ffffff; text-transform:capitalize;}
.terms-page .terms-content p {font-size:18px; color:#D4D4D4; font-weight:400; width:88%;}
.terms-page .terms-content p:last-child {margin-bottom:0;}
.terms-list {list-style:none; padding:0; margin:0;}
.terms-page .terms-list li {font-size:18px; font-weight:500; color:#D4D4D4; position:relative; padding-left:40px; margin-bottom:25px;}
.terms-page .terms-list li::before {content:""; position:absolute; left:0; top:7px; background-image:url("../images/icons/list-arrow.svg"); background-repeat:no-repeat; width:15px; height:15px;}
.terms-page .terms-highlight {background:linear-gradient(90deg, #FB5607 0%, #FB5607 59%); background-clip:text; -webkit-background-clip:text; color:transparent;}
.text-slide-up {opacity:0; transform:translateY(60px); transition:all 0.8s ease;}
.text-slide-up.active {opacity:1; transform:translateY(0);}
.terms-content-box {border-radius:21px; border:0.5px solid #ffffff3b; background:#D9D9D921; padding:60px 75px 68px;}
.terms-page .terms-content-box a {color:#D4D4D4; text-decoration:none;}
.terms-page .terms-content-box a:hover {text-decoration:underline;}
.terms-page .terms-content-box p {font-size:18px; color:#D4D4D4; font-weight:400; width:95%;}