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


--------------------
CSS Index
---------------------

# Default CSS
# Hero Section CSS
# About Section CSS
# Service Section CSS
# Process Section CSS
# Project Section CSS
# Choose Section CSS
# Testimonial Section CSS
# Faqs Section CSS
# CTA Section CSS
# Blog Section CSS

------------------------------------------------------*/
/*======= Default CSS =======*/
:root {
    --primary-color: #8d029b;
    --primary-black-color: #191919;
    --gray-dark: #7869e4;
}

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

.theme-btn.style-one {
    color: var(--white-color);
}
.theme-btn.style-two:hover {
    color: var(--white-color);
}

@media (max-width: 767.98px) {
    .section-title h2 {
        font-size: 30px;
        line-height: 40px;
    }
}

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

.type-cursor {
    color: var(--primary-color);
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/*====== Start Hero Section ======*/
.xeno-hero-wa {
    padding: 0;
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
}
@media screen and (max-width: 1199.98px) {
    .xeno-hero-wa {
        min-height: auto;
        padding: 140px 0 80px;
    }
}
.xeno-hero-wa .shape {
    position: absolute;
    z-index: -1;
	pointer-events: none;
}
.xeno-hero-wa .shape.shape-one {
    top: 40%;
    left: 10%;
}
.xeno-hero-wa .shape.curve-shape {
    top: 0;
    right: 7%;
}
.xeno-hero-wa .hero-content {
    padding-right: 15px;
    padding-top: 120px;
    padding-bottom: 60px;
}
.xeno-hero-wa .hero-content h1 {
    margin-bottom: 40px;
    font-size: 85px;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 800;
}
@media screen and (max-width: 1199.98px) {
    .xeno-hero-wa .hero-content h1 {
        font-size: 80px;
    }
}
@media screen and (max-width: 991.98px) {
    .xeno-hero-wa .hero-content h1 {
        font-size: 60px;
    }
}
@media (max-width: 767.98px) {
    .xeno-hero-wa .hero-content h1 {
        font-size: 40px;
        line-height: 1.2;
        margin-bottom: 50px;
    }
}
@media (max-width: 575.98px) {
    .xeno-hero-wa .hero-content h1 {
        font-size: 30px;
        line-height: 1.2;
    }
}
.xeno-hero-wa .hero-content .text-box {
    max-width: 630px;
}
.xeno-hero-wa .hero-content .text-box p {
    margin-bottom: 40px;
}

/* Mimi Statue image */
.hero-statue-img {
    width: 100%;
    max-width: 800px;
    height: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.12));
    margin-bottom: -200px;
}

/* Watermark background text */
.hero-watermark {
    position: absolute;
    bottom: -20px;
    left: -10px;
    font-size: clamp(80px, 15vw, 240px);
    font-weight: 800;
    font-family: var(--heading-font);
    color: var(--primary-black-color);
    opacity: 0.04;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
    pointer-events: none;
    z-index: -1;
    -webkit-user-select: none;
    user-select: none;
}

/* Social Sidebar */
.hero-social-sidebar {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 120px;
    z-index: 5;
}
.hero-social-sidebar a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 400;
    color: var(--primary-black-color);
    text-transform: capitalize;
    transform: rotate(-90deg);
    white-space: nowrap;
    transition: color 0.3s ease;
}
.hero-social-sidebar a:hover {
    color: var(--primary-color);
}
.hero-social-sidebar a i {
    font-size: 18px;
}

@media (max-width: 991.98px) {
    .hero-social-sidebar {
        display: none;
    }
}

/*====== End Hero Section ======*/
/*====== Start About Section ======*/
.xeno-about-wa {
    position: relative;
    z-index: 1;
}
.xeno-about-wa .xeno-content-box {
    max-width: 520px;
    padding-left: 80px;
}
@media screen and (max-width: 991.98px) {
    .xeno-about-wa .xeno-content-box {
        padding-left: 0;
    }
}
.xeno-about-wa .xeno-line-wrap {
    bottom: 20%;
    left: 0;
}
@media screen and (max-width: 1199.98px) {
    .xeno-about-wa .xeno-line-wrap {
        max-width: 450px;
    }
}
@media screen and (max-width: 991.98px) {
    .xeno-about-wa .xeno-line-wrap {
        bottom: 0;
    }
}
.xeno-about-wa .xeno-line-wrap span {
    background-color: var(--primary-black-color);
}

.xeno-counter-item {
    border-bottom: 1px solid rgba(25, 25, 25, 0.07);
}
.xeno-counter-item .content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 30px;
}
.xeno-counter-item .content h2 {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    font-size: 80px;
}

.xeno-line-wrap {
    position: absolute;
    max-width: 610px;
    width: 100%;
    z-index: -1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
}
.xeno-line-wrap span.line-shape {
    width: 100%;
    height: 1px;
}

/*====== End About Section ======*/
/*====== Start Service Section ======*/
.wa-service-list {
    overflow: hidden;
    border-bottom: 1px solid var(--heading-color);
}

.xeno-service-item {
    background-color: var(--gray-dark);
    border-bottom: 1px solid var(--heading-color);
}
.xeno-service-item:first-child {
    border-top: 1px solid var(--heading-color);
}
.xeno-service-item .service-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
@media screen and (max-width: 1199.98px) {
    .xeno-service-item .service-header {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}
@media (max-width: 767.98px) {
    .xeno-service-item .service-header {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
.xeno-service-item .service-header .number {
    width: 20%;
    -ms-flex-item-align: end;
    align-self: flex-end;
    font-size: 30px;
    font-weight: 300;
    color: var(--heading-color);
}
@media (max-width: 767.98px) {
    .xeno-service-item .service-header .number {
        width: 100%;
        margin-bottom: 30px;
    }
}
.xeno-service-item .service-header .title {
    font-size: 100px;
    font-weight: 700;
    font-family: var(--heading-font);
    text-transform: uppercase;
    color: var(--heading-color);
    width: 60%;
    line-height: 1;
}
@media screen and (max-width: 1199.98px) {
    .xeno-service-item .service-header .title {
        font-size: 40px;
    }
}
@media (max-width: 767.98px) {
    .xeno-service-item .service-header .title {
        font-size: 30px;
        width: 100%;
    }
}
.xeno-service-item .service-header .button {
    padding-top: 20px;
    width: 20%;
    text-align: right;
}
.xeno-service-item .service-header .button a {
    color: var(--heading-color);
}
@media (max-width: 767.98px) {
    .xeno-service-item .service-header .button {
        width: 100%;
        text-align: left;
    }
}
.xeno-service-item .service-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 30px 0;
    background-color: #7869e4;
}
@media screen and (max-width: 1199.98px) {
    .xeno-service-item .service-content {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}
@media (max-width: 767.98px) {
    .xeno-service-item .service-content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
.xeno-service-item .service-content .content {
    padding-left: 20%;
    max-width: 710px;
}
.xeno-service-item .service-content .content p {
    margin-bottom: 25px;
    color: #252525 !important;
}
.xeno-service-item .service-content .content ul.check-list li {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #252525 !important;
}
.xeno-service-item .service-content .content ul.check-list li:not(:last-child) {
    margin-bottom: 10px;
}
.xeno-service-item .service-content .content ul.check-list li:before {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #252525;
    margin-right: 10px;
}
@media screen and (max-width: 1199.98px) {
    .xeno-service-item .service-content .content {
        padding-left: 0;
        max-width: 380px;
        padding-right: 60px;
    }
}
@media (max-width: 767.98px) {
    .xeno-service-item .service-content .content {
        padding-left: 0;
        margin-bottom: 30px;
    }
}
.xeno-service-item .service-content .thumbnail {
    margin-left: auto;
}
@media (max-width: 767.98px) {
    .xeno-service-item:first-child {
        padding-top: 30px;
    }
    .xeno-service-item:not(:last-child) {
        margin-bottom: 30px;
    }
}

/*====== End Service Section ======*/
/*====== Start Process Section ======*/
.xeno-process-wa .section-title {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.xeno-process-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid rgba(25, 25, 25, 0.07);
}
@media screen and (max-width: 991.98px) {
    .xeno-process-item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}
.xeno-process-item:hover .step-box .number {
    color: var(--primary-color) !important;
}
.xeno-process-item:hover {
    border-color: var(--primary-color);
}
.xeno-process-item .step-box {
    position: relative;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 220px;
    padding: 60px 60px;
    border-right: 1px solid rgba(25, 25, 25, 0.07);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
@media screen and (max-width: 991.98px) {
    .xeno-process-item .step-box {
        width: 100%;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        border-right: none;
        border-bottom: 1px solid rgba(25, 25, 25, 0.07);
    }
}
.xeno-process-item .step-box span {
    position: absolute;
    top: 30px;
    left: 30px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
}
.xeno-process-item .step-box .number {
    font-size: 85px;
    font-weight: 800;
    margin-bottom: 0;
    line-height: 1;
    transition: all 0.3s ease;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--primary-color);
    color: transparent;
    font-family: var(--heading-font);
}
.xeno-process-item .content {
    padding: 40px 60px 30px;
}
.xeno-process-item .content h4 {
    font-size: 22px;
    margin-bottom: 12px;
}

/*====== End Process Section ======*/
/*====== Start Projects Section ======*/
.xeno-projects-wa {
    background-color: #191919;
}

.xeno-project-item {
    background-color: #252525;
    padding: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
@media screen and (max-width: 991.98px) {
    .xeno-project-item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}
@media (max-width: 767.98px) {
    .xeno-project-item {
        padding: 20px 15px;
    }
}
.xeno-project-item .content {
    padding: 50px 70px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}
@media screen and (max-width: 1199.98px) {
    .xeno-project-item .content {
        padding: 50px 50px;
    }
}
@media screen and (max-width: 991.98px) {
    .xeno-project-item .content {
        padding: 20px 10px;
    }
}
.xeno-project-item .content .post-categories a {
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    line-height: 1;
    color: var(--white-color);
    margin-bottom: 15px;
    margin-right: 5px;
}
.xeno-project-item .content h3 {
    color: var(--white-color);
}
.xeno-project-item .content p {
    padding-top: 150px;
    max-width: 400px;
    line-height: 26px;
    color: var(--white-color);
    margin-bottom: 25px;
}
@media screen and (max-width: 991.98px) {
    .xeno-project-item .content p {
        padding-top: 30px;
    }
}
.xeno-project-item .thumbnail {
    text-align: right;
}

/*====== End Projects Section ======*/
/*====== Start Choose Section ======*/
.xeno-choose-wa {
    position: relative;
    z-index: 1;
}
.xeno-choose-wa .xeno-image-box {
    margin-left: -50%;
}
@media screen and (max-width: 1199.98px) {
    .xeno-choose-wa .xeno-image-box {
        margin-left: 0;
    }
}
.xeno-choose-wa .xeno-choose-list {
    padding-left: 100px;
}
@media screen and (max-width: 1199.98px) {
    .xeno-choose-wa .xeno-choose-list {
        padding-left: 0;
        margin-top: 50px;
    }
}
.xeno-choose-wa .xeno-line-wrap {
    position: relative;
    max-width: 100%;
}
.xeno-choose-wa .xeno-line-wrap span {
    background-color: var(--primary-black-color);
}
.xeno-choose-wa .xeno-line-wrap span:first-child {
    height: 10px;
}

.xeno-iconic-box {
    padding: 40px 50px;
    border: 1px solid rgba(25, 25, 25, 0.1);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.xeno-iconic-box:hover {
    background-color: var(--primary-color);
}
.xeno-iconic-box:hover .content p {
    color: var(--heading-color);
}
.xeno-iconic-box .icon {
    font-size: 55px;
    color: var(--heading-color);
    margin-bottom: 30px;
}
.xeno-iconic-box .content h4 {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(25, 25, 25, 0.1);
}

/*====== End Choose Section ======*/
/*====== Start Team Section ======*/
.xeno-team-wa .xeno-counter-item {
    margin-left: auto;
    max-width: 520px;
}

.xeno-team-item:hover .thumbnail .hover-content {
    visibility: visible;
    opacity: 1;
}
.xeno-team-item:hover .thumbnail img {
    transform: scale(1.1);
}
.xeno-team-item .thumbnail {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
}
.xeno-team-item .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.xeno-team-item .thumbnail .hover-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s ease;
    width: 100%;
    text-align: center;
}
.xeno-team-item .thumbnail .social-link {
    display: inline-flex;
    gap: 12px;
    justify-content: center;
}
.xeno-team-item .thumbnail .social-link a {
    width: 45px;
    height: 45px;
    background-color: #ffffff;
    color: #1a1a1a;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
}
.xeno-team-item .thumbnail .social-link a:hover {
    background-color: var(--primary-color);
    color: #ffffff;
}
.xeno-team-item .content {
    padding-top: 20px;
}
.xeno-team-item .content h5 {
    margin-bottom: 5px;
    font-size: 20px;
    color: var(--heading-color);
}
.xeno-team-item .content .position {
    font-size: 14px;
    color: #666;
    display: block;
}

/* Team Slider Alignment */
.team-carousel-container {
    padding-left: calc((100% - 1320px) / 2 + 15px); /* Standard BS container alignment */
    padding-right: 0;
    overflow: hidden;
}

@media (max-width: 1399.98px) {
    .team-carousel-container {
        padding-left: calc((100% - 1140px) / 2 + 15px);
    }
}
@media (max-width: 1199.98px) {
    .team-carousel-container {
        padding-left: calc((100% - 960px) / 2 + 15px);
    }
}
@media (max-width: 991.98px) {
    .team-carousel-container {
        padding-left: 15px; /* Revert to standard padding on mobile */
        padding-right: 15px;
    }
}

/* Slick Slider Overrides for Team */
.team-slider .slick-list {
    margin: 0 -5px;
    overflow: visible; /* Allows the bleed to the right */
}
.team-slider .slick-slide {
    padding: 0 5px;
}
/* Team Custom Cursor Style */
.team-custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    background-color: #1a1a1a;
    border-radius: 50%;
    z-index: 10000;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #fff;
    opacity: 0;
    transform: scale(0);
}
.team-custom-cursor i {
    font-size: 14px;
}
/* Team Slider overrides removed to allow natural mouse cursor */
/*====== Start Testimonial Section ======*/
.xeno-testimonial-wa {
    background-color: #191919;
    position: relative;
    z-index: 1;
}
.xeno-testimonial-wa .shape {
    position: absolute;
    z-index: -1;
}
.xeno-testimonial-wa .shape.blur-shape {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background-color: #ba56fd;
    -webkit-filter: blur(200px);
    filter: blur(200px);
}
.xeno-testimonial-wa .line-bg {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
}

.xeno-testimonial-item {
    text-align: center;
}
.xeno-testimonial-item .testimonial-content .icon {
    margin-bottom: 40px;
}
.xeno-testimonial-item .testimonial-content .icon img {
    display: inline-block;
}
.xeno-testimonial-item .testimonial-content .author-thumb-item .author-thumb {
    margin-bottom: 20px;
}
.xeno-testimonial-item
    .testimonial-content
    .author-thumb-item
    .author-thumb
    img {
    display: inline-block;
}
.xeno-testimonial-item .testimonial-content .author-thumb-item .author-info h5 {
    color: var(--white-color);
    margin-bottom: 15px;
}
.xeno-testimonial-item
    .testimonial-content
    .author-thumb-item
    .author-info
    span.position {
    color: var(--white-color);
}
.xeno-testimonial-item .testimonial-content p {
    line-height: 56px;
    font: 600 48px var(--heading-font);
    color: var(--white-color);
    margin-bottom: 40px;
}
@media screen and (max-width: 1199.98px) {
    .xeno-testimonial-item .testimonial-content p {
        font-size: 34px;
        line-height: 45px;
    }
}
@media (max-width: 767.98px) {
    .xeno-testimonial-item .testimonial-content p {
        font-size: 24px;
        line-height: 35px;
    }
}

/*====== End Testimonial Section ======*/
/*====== Start Faqs Section ======*/
.xeno-accordion-item {
    padding: 20px 30px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
}
.xeno-accordion-item .accordion-header .accordion-title {
    line-height: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
}
.xeno-accordion-item .accordion-header .accordion-title span.sn {
    margin-right: 8px;
}
.xeno-accordion-item .accordion-header .accordion-title:after {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    content: "\f061";
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    margin-left: auto;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.xeno-accordion-item
    .accordion-header
    .accordion-title[aria-expanded="true"]:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.xeno-accordion-item .accordion-content p {
    padding-top: 15px;
}

/*====== End Faqs Section ======*/
/*====== Start CTA Section ======*/
.xeno-cta-wa .xeno-cta-wrapper {
    position: relative;
    padding: 90px 0 100px;
    background-color: var(--primary-color);
    z-index: 1;
    overflow: hidden;
}
/*custom style*/
.xeno-cta-wa .xeno-cta-wrapper h2,
.xeno-cta-wa .xeno-cta-wrapper p {
    color: #f0f0f0 !important;
}
.xeno-cta-wa .xeno-cta-wrapper .theme-btn {
    background-color: #f0f0f0 !important;
    color: #191919 !important;
}
.xeno-cta-wa .xeno-cta-wrapper .theme-btn:hover {
    background-color: var(--gray-dark) !important;
    color: #f0f0f0 !important;
	border-color: var(--gray-dark) !important;
}
/*end*/
.xeno-cta-wa .xeno-cta-wrapper .xeno-line-wrap {
    top: 10px;
    left: 0;
}
.xeno-cta-wa .xeno-cta-wrapper .xeno-line-wrap span {
    background-color: rgba(25, 25, 25, 0.1);
}
.xeno-cta-wa .xeno-cta-wrapper .shape {
    position: absolute;
    z-index: -1;
	pointer-events: none;
}
@media (max-width: 767.98px) {
    .xeno-cta-wa .xeno-cta-wrapper .shape {
        display: none;
    }
}
.xeno-cta-wa .xeno-cta-wrapper .shape.shape-one {
    left: 85px;
    bottom: 40px;
}
.xeno-cta-wa .xeno-cta-wrapper .shape.shape-two {
    top: 50px;
    right: 60px;
}
.xeno-cta-wa .xeno-cta-wrapper .big-text {
    position: absolute;
    right: -30px;
    bottom: -25px;
	pointer-events: none;
}
.xeno-cta-wa .xeno-cta-wrapper .big-text h2 {
    font-size: 200px;
    line-height: 190px;
    /* color: var(--heading-color); */
    color: #fefefe;
    opacity: 0.05;
}
@media (max-width: 767.98px) {
    .xeno-cta-wa .xeno-cta-wrapper .big-text h2 {
        font-size: 100px;
    }
}
@media (max-width: 767.98px) {
    .xeno-cta-wa .xeno-content-box {
        padding: 0 15px;
    }
}
.xeno-cta-wa .xeno-content-box h2 {
    font-size: 55px;
    line-height: 65px;
    margin-bottom: 25px;
}
@media screen and (max-width: 1199.98px) {
    .xeno-cta-wa .xeno-content-box h2 {
        font-size: 42px;
        line-height: 55px;
    }
}
@media (max-width: 767.98px) {
    .xeno-cta-wa .xeno-content-box h2 {
        font-size: 24px;
        line-height: 35px;
    }
}
.xeno-cta-wa .xeno-content-box p {
    font-size: 24px;
    font-weight: 500;
    color: var(--heading-color);
    margin-bottom: 35px;
}
@media (max-width: 767.98px) {
    .xeno-cta-wa .xeno-content-box p {
        font-size: 18px;
    }
}
.xeno-cta-wa .xeno-content-box .theme-btn.style-two {
    border: 1px solid var(--heading-color);
    color: var(--heading-color);
}

/*====== End CTA Section ======*/
/*====== Start Blogs Section ======*/
.xeno-blog-post {
    display: flex;
    transition: all 0.4s ease;
    padding: 20px;
    border-radius: 12px;
}
.xeno-blog-post:hover {
    background: rgba(255, 255, 255, 0.02);
    transform: translateX(10px);
}
@media (max-width: 767.98px) {
    .xeno-blog-post {
        flex-direction: column;
        padding: 0;
    }
    .xeno-blog-post:hover {
        transform: translateY(-5px);
    }
}
.xeno-blog-post .thumbnail {
    flex: 0 0 auto;
    max-width: 260px;
    margin-right: 40px;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}
.xeno-blog-post .thumbnail img {
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.xeno-blog-post:hover .thumbnail img {
    transform: scale(1.1);
}
.xeno-blog-post .thumbnail::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}
.xeno-blog-post:hover .thumbnail::after {
    opacity: 1;
}
@media (max-width: 767.98px) {
    .xeno-blog-post .thumbnail {
        margin-bottom: 25px;
        margin-right: 0;
        max-width: 100%;
    }
}
.xeno-blog-post .content .post-meta {
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}
.xeno-blog-post .content .post-meta span:not(:last-child):after {
    display: inline-block;
    content: "";
    margin-left: 20px;
    margin-right: 15px;
    vertical-align: middle;
    width: 50px;
    height: 1px;
    background-color: var(--border-color);
}
@media (max-width: 1650px) {
    .xeno-blog-post .content .post-meta span:not(:last-child):after {
        margin-left: 10px;
        margin-right: 10px;
    }
}
@media (max-width: 1399.98px) {
    .xeno-blog-post .content .post-meta span:not(:last-child):after {
        margin-left: 10px;
        margin-right: 5px;
    }
}
.xeno-blog-post .content h3.title {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 15px;
    transition: color 0.3s;
}
.xeno-blog-post:hover h3.title a {
    color: var(--primary-color);
}
.xeno-blog-post .content .read-more {
    color: var(--heading-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.xeno-blog-post .content .read-more i {
    transition: transform 0.3s;
}
.xeno-blog-post:hover .content .read-more i {
    transform: translateX(8px);
    color: var(--primary-color);
}

/*====== End Blogs Section ======*/

/*====== Start Footer Section ======*/
.xeno-footer-wa {
    background-color: #0b0b0b;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-marquee-ribbon {
    overflow: hidden;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.005);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding: 12px 0;
}

.marquee-content {
    display: inline-block;
    animation: marquee-scroll 60s linear infinite;
    opacity: 0.6;
}

.marquee-content span {
    display: inline-block;
    padding-right: 80px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.3);
}

@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.xeno-footer-wa .footer-top {
    padding-top: 50px;
    padding-bottom: 30px;
}
.xeno-footer-wa .footer-top h2 {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0;
    color: #ffffff !important;
    letter-spacing: -1px;
}
@media (max-width: 991px) {
    .xeno-footer-wa .footer-top h2 {
        font-size: 45px;
    }
}
.xeno-footer-wa .footer-top .theme-btn.style-two {
    border-color: rgba(255,255,255,0.2);
    color: #fff;
    background: transparent;
}
.xeno-footer-wa .footer-top .theme-btn.style-two:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}
.xeno-footer-wa .footer-widget-area {
    padding-top: 40px;
    padding-bottom: 40px;
}
.xeno-footer-wa .widget-title {
    margin-bottom: 15px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.xeno-footer-wa .footer-nav li {
    margin-bottom: 12px;
}
.xeno-footer-wa .footer-nav li a {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    transition: all 0.3s;
}
.xeno-footer-wa .footer-nav li a:hover {
    color: var(--primary-color);
    padding-left: 8px;
}
.xeno-footer-wa .footer-about-widget p,
.xeno-footer-wa .footer-newsletter-widget p {
    color: rgba(255,255,255,0.4);
    font-size: 14px;
    line-height: 1.6;
    max-width: 320px;
    margin-bottom: 0;
}
.xeno-footer-wa .footer-about-widget .footer-logo img {
    max-width: 240px;
    height: auto;
    margin-bottom: 5px;
}
.xeno-footer-wa .newsletter-form .form-group {
    position: relative;
}
.xeno-footer-wa .newsletter-form .form-control {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    color: #fff;
    padding: 15px 25px;
    height: 50px;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.xeno-footer-wa .newsletter-form .form-control:focus {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.2);
    box-shadow: none;
}
.xeno-footer-wa .newsletter-form .form-control::placeholder {
    color: rgba(255,255,255,0.3);
}
.xeno-footer-wa .newsletter-form .submit-btn {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 4px;
    border: none;
    transition: all 0.3s;
}
.xeno-footer-wa .newsletter-form .submit-btn:hover {
    background: #fff;
    color: var(--primary-color);
    transform: rotate(-45deg);
}
.xeno-footer-wa .social-box {
    display: flex;
    gap: 15px;
}
.xeno-footer-wa .social-box a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #999;
    transition: all 0.3s;
}
.xeno-footer-wa .social-box a:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: translateY(-5px);
}
.footer-divider-line {
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent) !important;
    height: 1px;
    width: 100%;
}
.footer-copyright {
    padding: 20px 0;
    background: rgba(0,0,0,0.2);
}
.copyright-text p {
    font-size: 13px;
    color: rgba(255,255,255,0.3);
    margin-bottom: 0;
}
.copyright-nav ul {
    display: flex;
    justify-content: flex-end;
    gap: 25px;
}
.copyright-nav ul li a {
    font-size: 14px;
    color: #777;
    transition: all 0.3s;
}
.copyright-nav ul li a:hover {
    color: #fff;
}
/*====== End Footer Section ======*/

/*====== Global Elite Theme Fixes ======*/
.xeno-inner-page, .xeno-inner-page main {
    background-color: #ffffff;
    color: #333;
}

.bg-rgba-light-2 { background: rgba(255,255,255,0.02) !important; }

.border-rgba-light { border: 1px solid rgba(255,255,255,0.05) !important; }
.border-rgba-light-6 { border: 1px solid rgba(255,255,255,0.06) !important; }
.border-bottom-rgba-light { border-bottom: 1px solid rgba(255,255,255,0.05) !important; }

.text-silver-muted { color: rgba(255,255,255,0.6) !important; }
.text-primary-color { color: var(--primary-color) !important; }

.font-size-12 { font-size: 12px !important; }
.font-size-18 { font-size: 18px !important; }
.font-size-24 { font-size: 24px !important; }
.font-size-32 { font-size: 32px !important; }
.font-size-45 { font-size: 45px !important; }
.font-weight-800 { font-weight: 800 !important; }
.font-weight-700 { font-weight: 700 !important; }

.letter-spacing-2 { letter-spacing: 2px !important; }
.line-height-1-8 { line-height: 1.8 !important; }

.p-60 { padding: 60px !important; }
.h-450 { height: 450px !important; }
.z-index-2 { z-index: 2 !important; }

.bg-primary-rgba { background: rgba(147, 34, 184, 0.1) !important; }

section.xeno-contact-sec, section.xeno-contact-map, section.page-title-banner {
    background-color: #ffffff;
}

.xeno-contact-form .form_control {
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid #f0f0f0 !important;
    color: #111 !important;
    width: 100%;
    padding: 25px 15px 25px 45px !important;
    border-radius: 0;
    transition: all 0.3s;
    font-size: 16px !important;
}

.xeno-contact-form .form_control:focus {
    background: transparent !important;
    border-bottom-color: var(--primary-color) !important;
    outline: none;
    box-shadow: none;
}

.xeno-contact-form .form_control::placeholder {
    color: #bbb !important;
}

.xeno-contact-form .form-group {
    margin-bottom: 35px !important;
}

.xeno-contact-form .form-group i {
    position: absolute;
    left: 0;
    top: 28px;
    color: #ccc;
    transition: all 0.3s;
    font-size: 18px;
}

.xeno-contact-form .form_control:focus + i {
    color: var(--primary-color) !important;
}

/* Brand Pill Button */
.brand-pill-btn {
    background: var(--primary-color) !important;
    color: #fff !important;
    padding: 15px 45px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    border: none !important;
    letter-spacing: 1px !important;
    transition: all 0.3s !important;
    box-shadow: 0 10px 30px rgba(141, 2, 155, 0.2) !important;
}

.brand-pill-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(141, 2, 155, 0.3) !important;
}

/* Scroll To Top Progress */
.progress-wrap {
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 60px;
    width: 60px;
    cursor: pointer;
    display: block;
    border-radius: 50%;
    box-shadow: inset 0 0 0 2px rgba(141, 2, 155, 0.2);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 200ms linear;
    background-color: var(--white-color);
}
.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.progress-wrap i {
    position: absolute;
    text-align: center;
    line-height: 60px;
    font-size: 20px;
    color: var(--heading-color);
    left: 0;
    top: 0;
    height: 60px;
    width: 60px;
    cursor: pointer;
    display: block;
    z-index: 1;
    transition: all 200ms linear;
}
.progress-wrap:hover i {
    color: var(--white-color);
}
.progress-wrap::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    z-index: 0;
    opacity: 0;
    transition: all 200ms linear;
}
.progress-wrap:hover::before {
    opacity: 1;
}
.progress-wrap svg path {
    fill: none;
}
.progress-wrap svg.progress-circle path {
    stroke: var(--primary-color);
    stroke-width: 4;
    box-sizing: border-box;
    transition: all 200ms linear;
}
.progress-wrap svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    transform: rotate(-90deg);
}
